More tweaks related to my previous commit. Tweaks sux.
							parent
							
								
									18213d26ec
								
							
						
					
					
						commit
						85e9160552
					
				| 
						 | 
				
			
			@ -86,7 +86,7 @@ namespace OpenSim.Services.Connectors.Hypergrid
 | 
			
		|||
            paramList.Add(hash);
 | 
			
		||||
 | 
			
		||||
            XmlRpcRequest request = new XmlRpcRequest("link_region", paramList);
 | 
			
		||||
            string uri = "http://" + ((info.ServerURI == string.Empty) ? info.ExternalEndPoint.Address + ":" + info.HttpPort + "/" : info.ServerURI);
 | 
			
		||||
            string uri = "http://" + ((info.ServerURI == string.Empty && !info.ServerURI.StartsWith("http:")) ? info.ExternalEndPoint.Address + ":" + info.HttpPort + "/" : info.ServerURI);
 | 
			
		||||
            m_log.Debug("[GATEKEEPER SERVICE CONNECTOR]: Linking to " + uri);
 | 
			
		||||
            XmlRpcResponse response = null;
 | 
			
		||||
            try
 | 
			
		||||
| 
						 | 
				
			
			@ -188,7 +188,7 @@ namespace OpenSim.Services.Connectors.Hypergrid
 | 
			
		|||
            paramList.Add(hash);
 | 
			
		||||
 | 
			
		||||
            XmlRpcRequest request = new XmlRpcRequest("get_region", paramList);
 | 
			
		||||
            string uri = "http://" + ((gatekeeper.ServerURI == string.Empty) ? gatekeeper.ExternalEndPoint.Address + ":" + gatekeeper.HttpPort + "/" : gatekeeper.ServerURI);
 | 
			
		||||
            string uri = "http://" + ((gatekeeper.ServerURI == string.Empty && !gatekeeper.ServerURI.StartsWith("http:")) ? gatekeeper.ExternalEndPoint.Address + ":" + gatekeeper.HttpPort + "/" : gatekeeper.ServerURI);
 | 
			
		||||
            m_log.Debug("[GATEKEEPER SERVICE CONNECTOR]: contacting " + uri);
 | 
			
		||||
            XmlRpcResponse response = null;
 | 
			
		||||
            try
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -107,7 +107,7 @@ namespace OpenSim.Services.Connectors.Simulation
 | 
			
		|||
            string uri = string.Empty;
 | 
			
		||||
 | 
			
		||||
            // HACK -- Simian grid make it work!!!
 | 
			
		||||
            if (destination.ServerURI != string.Empty)
 | 
			
		||||
            if (destination.ServerURI != string.Empty && !destination.ServerURI.StartsWith("http:"))
 | 
			
		||||
                uri = "http://" + destination.ServerURI + AgentPath() + aCircuit.AgentID + "/";
 | 
			
		||||
            else
 | 
			
		||||
            {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue