Exemplo n.º 1
0
        public IAsyncResult BeginProcessRequest (HttpContext context, AsyncCallback cb, object extraData)
        {
            m_asyncResult = new NuxleusAsyncResult(cb, extraData);
            IPLocation location = new IPLocation(context.Request.UserHostAddress);
            HttpCookieCollection collection = context.Request.Cookies;

            string guid = "not-set";
            string openid = "not-set";

            if (collection.Count > 0)
            {
                if (collection.Get("guid").Value != null)
                    guid = collection.Get("openid").Value;
                if (collection.Get("openid").Value != null)
                    openid = collection.Get("openid").Value;
            }

            using(XmlWriter writer = XmlWriter.Create(context.Response.Output))
            {
                writer.WriteStartDocument();
                    writer.WriteStartElement("message", "http://nuxleus.com/message/response");
                        writer.WriteStartElement("session");
                            writer.WriteStartAttribute("session-id");
                                writer.WriteString(guid);
                            writer.WriteEndAttribute();
                            writer.WriteStartAttribute("openid");
                                writer.WriteString(openid);
                            writer.WriteEndAttribute();
                        writer.WriteEndElement();
                        writer.WriteStartElement("request-date");
                            writer.WriteString(DateTime.Now.ToShortDateString());
                        writer.WriteEndElement();
                        writer.WriteStartElement("request-guid");
                            writer.WriteString(Guid.NewGuid().ToString());
                        writer.WriteEndElement();
                        writer.WriteStartElement("geo");
                            writer.WriteStartElement("city");
                                writer.WriteString(location.City);
                            writer.WriteEndElement();
                            writer.WriteStartElement("country");
                                writer.WriteString(location.Country);
                            writer.WriteEndElement();
                            writer.WriteStartElement("lat");
                                writer.WriteString(location.Lat);
                            writer.WriteEndElement();
                            writer.WriteStartElement("long");
                                writer.WriteString(location.Long);
                            writer.WriteEndElement();
                        writer.WriteEndElement();
                    writer.WriteEndElement();
                writer.WriteEndDocument();
            }

            return m_asyncResult;
        }
Exemplo n.º 2
0
		public void ProcessRequest(HttpContext context)
		{
			IPLocation location = new IPLocation(context.Request.UserHostAddress);

			using(XmlWriter writer = XmlWriter.Create(context.Response.Output))
			{
				writer.WriteStartDocument();
				writer.WriteStartElement("message", "http://nuxleus.com/message/response");
				writer.WriteStartElement("city");
				writer.WriteString(location.City);
				writer.WriteEndElement();
				writer.WriteStartElement("country");
				writer.WriteString(location.Country);
				writer.WriteEndElement();
				writer.WriteStartElement("lat");
				writer.WriteString(location.Lat);
				writer.WriteEndElement();
				writer.WriteStartElement("long");
				writer.WriteString(location.Long);
				writer.WriteEndElement();
				writer.WriteEndElement();
				writer.WriteEndDocument();
			}


		/*
			string title = req.Form["title"];
			string location = req.Form["location"];
			DateTime startDate = DateTime.Parse(req.Form["startdate"]);
			DateTime endDate = DateTime.Parse(req.Form["enddate"]);
			string genre = req.Form["genre"];
			string[] tags = req.Form["tags"].Split(',');
			string desc = req.Form["description"];

			AtomEntry entry = new AtomEntry();
			entry.Id = "tag:someid";
			entry.Title = title;
			entry.Published = DateTime.UtcNow;
			entry.Updated = DateTime.UtcNow;

			entry.Summary = new TextConstruct(TextElement.Summary);
			entry.Summary.Mediatype = "text";
			entry.Summary.TextContent = desc;

			foreach (string tag in tags)
			{
				Category cat = new Category();
				cat.Term = tag;
				//entry.Categories.Add(cat);
			}

			ForeignElement point = new ForeignElement("georss", "point", "http://www.georss.org/georss");
			point.Content = location;
			//entry.Foreigns.Add(point);

			string[] coordinates = location.Split(' ');
			ForeignElement Point = new ForeignElement("geo", "Point", "http://www.w3.org/2003/01/geo/wgs84_pos#");
			ForeignElement lat = new ForeignElement("geo", "lat", "http://www.w3.org/2003/01/geo/wgs84_pos#");
			lat.Content = coordinates[0];
			Point.Children.Add(lat);
			ForeignElement lg = new ForeignElement("geo", "long", "http://www.w3.org/2003/01/geo/wgs84_pos#");
			lg.Content = coordinates[1];
			Point.Children.Add(lg);
			//entry.Foreigns.Add(Point);

			ForeignElement startTime = new ForeignElement("llup", "start-time", "http://www.x2x2x.org/llup");
			startTime.Content = startDate.ToString("o");
			//entry.Foreigns.Add(startTime);

			ForeignElement endTime = new ForeignElement("llup", "end-time", "http://www.x2x2x.org/llup");
			endTime.Content = endDate.ToString("o");
			//entry.Foreigns.Add(endTime);

			ForeignElement expires = new ForeignElement("llup", "expires", "http://www.x2x2x.org/llup");
			expires.Content = endDate.ToString("o");
			//entry.Foreigns.Add(expires);

			XmlDocument doc = entry.Document;
			resp.Write(doc.OuterXml);

			Client client = (Client)context.Application["memcached"];
			MemcachedStorageResourceInfo memInfo = new MemcachedStorageResourceInfo();
			memInfo.Client = client;
			memInfo.Key = entry.Id;

			StorageResourceInfo info = new StorageResourceInfo();
			info.MemcachedResourceInfo = memInfo;

			Store.Process(info);
		*/
		}
Exemplo n.º 3
0
 public static string ToDelimitedString(string delimiter, IPLocation location)
 {
     return String.Join(delimiter, location.LocationArray);
 }