Esempio n. 1
0
        public LandData GetParcelInfo(UUID InfoUUID)
        {
            Dictionary <string, object> sendData = new Dictionary <string, object>();

            sendData["INFOUUID"] = InfoUUID.ToString();
            sendData["METHOD"]   = "getparcelinfo";

            string reqString = WebUtils.BuildQueryString(sendData);

            try
            {
                List <string> m_ServerURIs = m_registry.RequestModuleInterface <IConfigurationService>().FindValueOf("RemoteServerURI");
                foreach (string m_ServerURI in m_ServerURIs)
                {
                    string reply = SynchronousRestFormsRequester.MakeRequest("POST",
                                                                             m_ServerURI,
                                                                             reqString);
                    if (reply != string.Empty)
                    {
                        Dictionary <string, object> replyData = WebUtils.ParseXmlResponse(reply);

                        if (replyData != null)
                        {
                            Dictionary <string, object> .ValueCollection replyvalues = replyData.Values;
                            LandData land = null;
                            foreach (object f in replyvalues)
                            {
                                if (f is Dictionary <string, object> )
                                {
                                    land = new LandData();
                                    land.FromKVP((Dictionary <string, object>)f);
                                    break;
                                }
                                else
                                {
                                    m_log.DebugFormat("[AuroraRemoteDirectoryServiceConnector]: GetParcelInfo {0} received invalid response type {1}",
                                                      InfoUUID, f.GetType());
                                }
                            }
                            // Success
                            return(land);
                        }

                        else
                        {
                            m_log.DebugFormat("[AuroraRemoteDirectoryServiceConnector]: GetParcelInfo {0} received null response",
                                              InfoUUID);
                        }
                    }
                }
            }
            catch (Exception e)
            {
                m_log.DebugFormat("[AuroraRemoteDirectoryServiceConnector]: Exception when contacting server: {0}", e.ToString());
            }

            return(null);
        }
Esempio n. 2
0
        public LandData[] GetParcelByOwner(UUID OwnerID)
        {
            Dictionary <string, object> sendData = new Dictionary <string, object>();

            sendData["OWNERID"] = OwnerID;
            sendData["METHOD"]  = "getparcelbyowner";

            string          reqString = WebUtils.BuildQueryString(sendData);
            List <LandData> Land      = new List <LandData>();

            try
            {
                List <string> m_ServerURIs = m_registry.RequestModuleInterface <IConfigurationService>().FindValueOf("RemoteServerURI");
                foreach (string m_ServerURI in m_ServerURIs)
                {
                    string reply = SynchronousRestFormsRequester.MakeRequest("POST",
                                                                             m_ServerURI,
                                                                             reqString);
                    if (reply != string.Empty)
                    {
                        Dictionary <string, object> replyData = WebUtils.ParseXmlResponse(reply);

                        foreach (object f in replyData)
                        {
                            KeyValuePair <string, object> value = (KeyValuePair <string, object>)f;
                            if (value.Value is Dictionary <string, object> )
                            {
                                Dictionary <string, object> valuevalue = value.Value as Dictionary <string, object>;
                                LandData land = new LandData();
                                land.FromKVP(valuevalue);
                                Land.Add(land);
                            }
                        }
                    }
                }
                return(Land.ToArray());
            }
            catch (Exception e)
            {
                m_log.DebugFormat("[AuroraRemoteDirectoryServiceConnector]: Exception when contacting server: {0}", e.ToString());
            }
            return(Land.ToArray());
        }
        public byte[] AddLandObject(Dictionary<string, object> request)
        {
            Dictionary<string, object> result = new Dictionary<string, object>();

            LandData land = new LandData();
            land.FromKVP(request);
            DirectoryServiceConnector.AddLandObject(land);

            return SuccessResult();
        }
        public LandData GetParcelInfo(UUID InfoUUID)
        {
            Dictionary<string, object> sendData = new Dictionary<string, object>();

            sendData["INFOUUID"] = InfoUUID.ToString();
            sendData["METHOD"] = "getparcelinfo";

            string reqString = WebUtils.BuildQueryString(sendData);

            try
            {
                foreach (string m_ServerURI in m_ServerURIs)
                {
                    string reply = SynchronousRestFormsRequester.MakeRequest("POST",
                           m_ServerURI + "/auroradata",
                           reqString);
                    if (reply != string.Empty)
                    {
                        Dictionary<string, object> replyData = WebUtils.ParseXmlResponse(reply);

                        if (replyData != null)
                        {
                            Dictionary<string, object>.ValueCollection replyvalues = replyData.Values;
                            LandData land = null;
                            foreach (object f in replyvalues)
                            {
                                if (f is Dictionary<string, object>)
                                {
                                    land = new LandData();
                                    land.FromKVP((Dictionary<string, object>)f);
                                    break;
                                }
                                else
                                    m_log.DebugFormat("[AuroraRemoteDirectoryServiceConnector]: GetParcelInfo {0} received invalid response type {1}",
                                        InfoUUID, f.GetType());
                            }
                            // Success
                            return land;
                        }

                        else
                            m_log.DebugFormat("[AuroraRemoteDirectoryServiceConnector]: GetParcelInfo {0} received null response",
                                InfoUUID);
                    }
                }
            }
            catch (Exception e)
            {
                m_log.DebugFormat("[AuroraRemoteDirectoryServiceConnector]: Exception when contacting server: {0}", e.ToString());
            }

            return null;
        }
        public LandData[] GetParcelByOwner(UUID OwnerID)
        {
            Dictionary<string, object> sendData = new Dictionary<string, object>();

            sendData["OWNERID"] = OwnerID;
            sendData["METHOD"] = "getparcelbyowner";

            string reqString = WebUtils.BuildQueryString(sendData);
            List<LandData> Land = new List<LandData>();
            try
            {
                foreach (string m_ServerURI in m_ServerURIs)
                {
                    string reply = SynchronousRestFormsRequester.MakeRequest("POST",
                           m_ServerURI + "/auroradata",
                           reqString);
                    if (reply != string.Empty)
                    {
                        Dictionary<string, object> replyData = WebUtils.ParseXmlResponse(reply);

                        foreach (object f in replyData)
                        {
                            KeyValuePair<string, object> value = (KeyValuePair<string, object>)f;
                            if (value.Value is Dictionary<string, object>)
                            {
                                Dictionary<string, object> valuevalue = value.Value as Dictionary<string, object>;
                                LandData land = new LandData();
                                land.FromKVP(valuevalue);
                                Land.Add(land);
                            }
                        }
                    }
                }
                return Land.ToArray();
            }
            catch (Exception e)
            {
                m_log.DebugFormat("[AuroraRemoteDirectoryServiceConnector]: Exception when contacting server: {0}", e.ToString());
            }
            return Land.ToArray();
        }