Well Google doesn’t like you to use their maps api unless you pay them 10 grand for enterprise use, so we decided to go a slightly different route. The problem was that G blocked the service to our IP address for 24 hours after repeatedly using the service. Thanks G! Â Instead of using the API […]
Tag Archives | Req
How To Use .NET Cookies
If you want to access, read, write or otherwise store and send cookies in .NET you will need to access the request objects cookiecontainer. Once you have that in your sights, you can grab the cookiecollection and pick up the cookie that you need. Here is an example; Dim req As HttpWebRequest = CType(WebRequest.Create(http://urlgoeshere.com, HttpWebRequest) […]
Posting XML using .NET
Well, I’m into the new xml project somewhat now and have created the xml output file and the code to post it using .NET. If you are unfamiliar with the procedure, here is a sample. ‘first we create a request Dim req As WebRequest = HttpWebRequest.Create(http://www.trstechnology.com) ‘set the request method to POST req.Method = “POST” […]