active questions tagged webrequest - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T18:56:23Z http://stackoverflow.com/feeds/tag/webrequest http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1861061/javascript-webrequest-invoke-cache-problem 0 Javascript WebRequest Invoke/Cache problem Wineshtain 2009-12-07T16:21:34Z 2009-12-07T16:26:57Z <p>Hello,</p> <p>I am using ASP .Net 3.5 and trying to invoke a WebService using javascript and Sys.Net.WebRequest.</p> <p>The service gets invoked for the first time and everything is fine until I try to refresh.</p> <p>on a refresh th WebRequest object invoke method is called but instead of invoking the service is jumps right to the callback function, as if it's using some cached results.</p> <p>How should this be solved so on every refresh the service will be executed?</p> <p>Thanks,</p> <p>Wineshtain</p> http://stackoverflow.com/questions/1474322/how-many-concurrent-outbound-httpwebrequest-calls-can-be-made-in-asp-net-iis7 2 How many concurrent outbound HttpWebRequest calls can be made in ASP.NET / IIS7? frankadelic 2009-09-24T21:43:17Z 2009-12-07T05:58:33Z <p>I'm writing an ASP.NET web application which will run on Windows Server 2008 (IIS7).</p> <p>Each page's codebehind will need to make at least one synchronous web service call to an external server using HttpWebRequest and GET.</p> <p>My question - is there any limit to the number of outbound HttpWebRequest calls I can make? (assume that the server I'm calling has no limit)</p> <p>Is there any means to pool these connections to make the app scale better? Would a web garden configuration help?</p> http://stackoverflow.com/questions/1597152/2-valid-requests-and-then-timeout 0 2 valid requests and then timeout miro 2009-10-20T20:37:40Z 2009-12-06T20:35:38Z <p>Here is my code. It iterates all files from database and try to get the length of the web file. It works only 2 times. After that it gives timeout. If i restart the application it process again 2 files and then fail. I have no idea what might be the problem. I appreciate any help.</p> <pre><code> public void GetFilesSize() { List&lt;int&gt; ftl = new List&lt;int&gt;(){(int)eFileTypes.JADFile, (int)eFileTypes.SISFile, (int)eFileTypes.SITFile, (int)eFileTypes.ZIPFile }; foreach (File f in dc.Files.Where(fg =&gt; ftl.Contains(fg.FileTypeID) &amp;&amp; fg.Size == 0)) { try { WebRequest request = WebRequest.Create(new Uri(f.MSWebPath)); request.Method = "HEAD"; request.Timeout = 2000; WebResponse response = request.GetResponse(); dc.Files.Single(f1 =&gt; f1.FileID == f.FileID).Size = (int)response.ContentLength; dc.SubmitChanges(); } catch (Exception ex) { Console.WriteLine(ex.ToString()); } } } </code></pre> http://stackoverflow.com/questions/1849455/how-can-i-get-visual-studio-web-development-server-cassini-to-send-the-domain-n 0 How can I get Visual Studio Web Development Server (Cassini) to send the domain name of the request to the web application? iamtyler 2009-12-04T20:27:40Z 2009-12-04T20:27:40Z <p>We're developing an application that is sensitive to the domain name of the request. The problem we're running into is that we have to use IIS in order to test the application because Cassini will only send "localhost" as the requested domain despite using a different domain in the address bar. While IIS does give us better performance than Cassini, we would still like to be able to hit F5 to run our application from within Visual Studio.</p> <p>Is there any configuration that can be done to specify the domain name to use in Cassini?</p> http://stackoverflow.com/questions/1183691/sending-gzipped-data-in-webrequest 3 Sending gzipped data in WebRequest? Charlie 2009-07-26T03:57:38Z 2009-12-03T19:22:02Z <p>I have a large amount of data (~100k) that my C# app is sending to my Apache server with mod_gzip installed. I'm attempting to gzip the data first using System.IO.Compression.GZipStream. PHP receives the raw gzipped data, so Apache is not uncompressing it as I would expect. Am I missing something?</p> <pre><code>System.Net.WebRequest req = WebRequest.Create(this.Url); req.Method = this.Method; // "post" req.Timeout = this.Timeout; req.ContentType = "application/x-www-form-urlencoded"; req.Headers.Add("Content-Encoding: gzip"); System.IO.Stream reqStream = req.GetRequestStream(); GZipStream gz = new GZipStream(reqStream, CompressionMode.Compress); System.IO.StreamWriter sw = new System.IO.StreamWriter(gz, Encoding.ASCII); sw.Write( large_amount_of_data ); sw.Close(); gz.Close(); reqStream.Close() System.Net.WebResponse resp = req.GetResponse(); // (handle response...) </code></pre> <p>I'm not entirely sure "Content-Encoding: gzip" applies to client-supplied headers.</p> http://stackoverflow.com/questions/1792713/threading-web-requests-handled-in-main 0 Threading Web requests handled in Main? Matt 2009-11-24T20:28:41Z 2009-11-24T23:20:53Z <p>I'm writing an application in C#, and I am creating multiple BackgroundWorker threads to grab information from webpages. Despite them being BackgroundWorkers, my GUI Form is becoming unresponsive. </p> <p>When I am debugging, I pause when the program goes unresponsive, and I can see that I am in the Main Thread, and I am paused on the webpage fetching method. This method is only called from new threads, though, so I can’t figure out why I would be there in the Main Thread. </p> <p>Does this make any sense? What can I do to make sure the web requests are only being handled in their respective threads?</p> <p><strong>EDIT: some code and explanation</strong></p> <p>I am processing a large list of addresses. Each thread will be processing one or more addresses. I can choose how many threads I want to create (I keep it modest :))</p> <pre><code>//in “Controller” class public void process() { for (int i = 1; i &lt;= addressList.Count &amp;&amp; i&lt;= numthreads; i++) { BackgroundWorker bw = new BackgroundWorker(); bw.DoWork += doWork; bw.RunWorkerAsync((object)i); } } public void doWork(object sender, DoWorkEventArgs e) { //create an object that has the web fetching method, call it WorkObject //WorkObject keeps a reference to Controller. //When it is done getting information, it will send it to Controller to print //generate a smaller list of addresses to work on, using e.Argument (should be 'i' from the above 'for' loop) WorkObject.workingMethod() } </code></pre> <p>When WorkObject is created, it uses “i” to know what thread number it is. It will use this to get a list of web addresses to get information from (from a larger list of addresses which is shared by the main Form, the Controller, and each of the WorkObjects – each thread will process a smaller list of addresses). As it iterates over the list, it will call the “getWebInfo” method. </p> <pre><code>//in “WorkObject” class public static WebRequest request; public void workingMethod() { //iterate over the small list of addresses. For each one, getWebInfo(address) //process the info a bit...then myController.print() //note that this isn’t a simple “for” loop, it involves event handlers and threading //Timers to make sure one is done before going on to the next } public string getWebInfo (string address) { request = WebRequest.Create(address); WebResponse response = request.GetResponse(); StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8); string content = reader.ReadToEnd(); return content; } </code></pre> http://stackoverflow.com/questions/1167067/post-data-to-php-page-using-c-in-place-of-form-url 0 POST Data to PHP Page Using C# in Place of Form URL James 2009-07-22T17:56:21Z 2009-11-18T13:10:25Z <p>Hello!</p> <p>I have an C# cart application that needs to POST some data to a PHP page and redirect the user to that page to view the data. Everything is working fine! So, what is the problem??</p> <p>Since we are using a Javascript function to POST the form to the PHP page through setting its action to the PHP URL, it is not allowing us to clear our Session variable with our cart contents.</p> <p>Once the user clicks checkout and is sent to the third party site, we want our session variable that stores their cart contents to go away. To my knowledge I cannot clear this via the Javascript, so my idea was to send the POST data and the user to the PHP page through the C# code. </p> <p>When the user clicks checkout, the Javascript reloads the page, sets the cart data to a string variable, clears the session, then POSTs the data and sends the user to the PHP page.</p> <p>All of this is working, except for the POST of data and redirecting the user. Unfortunately, the third party page cannot accept a URL.PHP?=var type parameter for security reasons, so we have to POST it.</p> <p>Using WebRequest I believe I can get the data posted, but I cannot get the user redirected to that page to finish out their order. Any ideas?</p> http://stackoverflow.com/questions/1742810/c-maintaining-session-over-https-on-the-client 1 C# maintaining session over HTTPS on the client Kelly 2009-11-16T15:15:17Z 2009-11-16T17:09:22Z <p>I need to login to a website and perform an action. The website is REST based so I can easily login by doing this (the login info is included as a querystring on the URL, so I dont't need to set the credentials):</p> <pre><code>CookieContainer cookieJar = new CookieContainer(); HttpWebRequest firstRequest = (HttpWebRequest) WebRequest.Create(loginUrl); firstRequest.CookieContainer = cookieJar; firstRequest.KeepAlive = true; firstRequest.Method = "POST"; HttpWebResponse firstResponse = (HttpWebResponse)firstRequest.GetResponse(); </code></pre> <p>That works and logs me in. I get a cookie back to maintain the session and it's stored in the cookieJar shown above. Then I do a second request such as this: </p> <pre><code>HttpWebRequest secondRequest = (HttpWebRequest) WebRequest.Create(actionUrl); secondRequest.Method = "POST"; secondRequest.KeepAlive = true; secondRequest.CookieContainer = cookieJar; WebResponse secondResponse = secondRequest.GetResponse(); </code></pre> <p>And I ensure I assign the cookies to the new request. But for some reason this doesn't appear to work. I get back an error telling me "my session has timed out or expired", and this is done one right after the other so its not a timing issue. </p> <p>I've used Fiddler to examine the HTTP headers but I'm finding that difficult since this is HTTPS. (I know i can decrypt it but doesn't seem to work well.)</p> <p>I can take my URL's for this rest service and paste them into firefox and it all works fine, so it must be something I'm doing wrong and not the other end of the connection.</p> <p>I'm not very familiar with HTTPS. Do I need to do something else to maintain my session? I thought the cookie would be it, but perhaps there is something else I need to maintain across the two requests?</p> <p>Here are the headers returned when I send in the first request (except I changed the cookie to protect the innocent!):</p> <pre><code>X-DB-Content-length=19 Keep-Alive=timeout=15, max=50 Connection=Keep-Alive Transfer-Encoding=chunked Content-Type=text/html; charset=WINDOWS-1252 Date=Mon, 16 Nov 2009 15:26:34 GMT Set-Cookie:MyCookie stuff goes here Server=Oracle-Application-Server-10g </code></pre> <p>Any help would be appreciated, I'm running out of ideas.</p> http://stackoverflow.com/questions/91275/is-webrequest-the-right-c-tool-for-interacting-with-websites 4 Is WebRequest The Right C# Tool For Interacting With Websites? Lee 2008-09-18T09:46:29Z 2009-11-16T10:34:45Z <p>I'm writing a small tool in C# which will need to send and receive data to/from a website using POST and json formatting. I've never done anything like this before in C# (or any language really) so I'm struggling to find some useful information to get me started.</p> <p>I've found some information on the WebRequest class in C# (specifically from <a href="http://msdn.microsoft.com/en-us/library/debx8sh9.aspx" rel="nofollow">here</a>) but before I start diving into it, I wondered if this was the right tool for the job.</p> <p>I've found plenty of tools to convert data into the json format but not much else, so any information would be really helpful here in case I end up down a dead end.</p> http://stackoverflow.com/questions/295557/c-downloading-a-url-with-timeout 3 C#: Downloading a URL with timeout orip 2008-11-17T13:21:58Z 2009-11-15T14:00:48Z <p>What's the best way to do it in .NET? I always forget what I need to <code>Dispose()</code> (or wrap with <code>using</code>).</p> <p>EDIT: after a long time using <code>WebRequest</code>, I found out about customizing <code>WebClient</code>. Much better.</p> http://stackoverflow.com/questions/1656717/c-httpwebrequest-posting-failing 1 c# HttpWebRequest POST'ing failing KJ Tsanaktsidis 2009-11-01T09:19:36Z 2009-11-15T13:25:47Z <p>So i'm trying to POST something to a webserver.</p> <pre><code>System.Net.HttpWebRequest EventReq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create("url"); System.String Content = "id=" + Id; EventReq.ContentLength = System.Text.Encoding.UTF8.GetByteCount(Content); EventReq.Method = "POST"; EventReq.ContentType = "application/x-www-form-urlencoded"; System.IO.StreamWriter sw = new System.IO.StreamWriter(EventReq.GetRequestStream(), System.Text.Encoding.UTF8); sw.Write(Content); sw.Flush(); sw.Close(); </code></pre> <p>Looks alright, i'm setting content-length based on the size of the ENCODED data... Anyway it fails at sw.flush() with "bytes to be written to the stream exceed the Content-Length size specified"</p> <p>Is StreamWriter doing some magic behind my back i'm not aware of? Is there a way i can peer into what StreamWriter is doing?</p> http://stackoverflow.com/questions/1709004/get-credential-from-app-pool-for-webrequest 0 Get Credential from App Pool for WebRequest Adrian 2009-11-10T15:56:16Z 2009-11-10T16:05:46Z <p>How do I use the App Pools Crendentials to authenticate a WebRequest?</p> <p>I have a web site that call a page from itself, but I keep getting 401....</p> http://stackoverflow.com/questions/1636151/how-to-get-the-response-stream-on-a-non-201-status-code 0 How to get the response stream on a non 201 status code tazer 2009-10-28T09:43:27Z 2009-11-04T20:39:49Z <p>I'm having some problem's grabbing a response stream from a request that returning status code 422.</p> <pre><code>HttpWebResponse objResponse = (HttpWebResponse)wr.GetResponse(); </code></pre> <p>The wr.GetResponse throws an webexception because the status code isnt 201.<br /> So i can never get the response stream from the remote server. But it does return important information in the ResponseStream.</p> <p>So my question is how to retrieve the ResponseStream on a request that doesnt return 201 but still returns data.</p> http://stackoverflow.com/questions/1651105/problem-with-making-web-request-in-silverlight 1 problem with making Web Request in Silverlight Daniel 2009-10-30T17:03:04Z 2009-10-30T20:31:48Z <p>Hey, I am making restful requests in my silverlight app, I want to get information that might be pushed to the page so i continously make the request to get the updated data, doing something like </p> <pre><code>.... Uri url = new Uri(theUrl);WebClient wc = new WebClient(); wc.DownloadStringCompleted += RetreiveUserMessagesResponse; wc.DownloadStringAsync(url); </code></pre> <p>My problem is, for some reason, once i make the request (and it returns some data) subsequent requests keep returning the same data and does not change! (almost like it cached the request and its saying, i did this already let me just return what i got before), when i copy the URL and put it in my browser I get the expected behavior, why is this happening when i am making the requests through the Silverlight app? Thanks for your help Daniel</p> http://stackoverflow.com/questions/1636295/consuming-java-written-webservices-without-adding-web-reference-in-c 1 Consuming java written webservices without adding web reference in c# surajitkhamrai 2009-10-28T10:11:07Z 2009-10-28T10:25:17Z <p>how to Consume java(apache axis) written webservices without adding <strong>web reference(in visual studio)</strong> in c#</p> http://stackoverflow.com/questions/87200/mocking-webresponses-from-a-webrequest 7 Mocking WebResponse's from a WebRequest Rob Cooper 2008-09-17T20:21:04Z 2009-10-18T21:50:01Z <p>I have finally started messing around with creating some apps that work with RESTful web interfaces, however, I am concerned that I am hammering their servers every time I hit F5 to run a series of tests..</p> <p>Basically, I need to get a series of web responses so I can test I am parsing the varying responses correctly, rather than hit their servers every time, I thought I could do this once, save the XML and then work locally.</p> <p>However, I don't see how I can "mock" a WebResponse, since (AFAIK) they can only be instantiated by <strong>WebRequest.GetResponse</strong></p> <p>How do you guys go about mocking this sort of thing? Do you? I just really don't like the fact I am hammering their servers :S I dont want to change the code <em>too</em> much, but I expect there is a elegant way of doing this..</p> <h2>Update Following Accept</h2> <p>Will's answer was the slap in the face I needed, I knew I was missing a fundamental point!</p> <ul> <li>Create an Interface that will return a proxy object which represents the XML.</li> <li>Implement the interface twice, on that uses WebRequest, the other that returns static "responses".</li> <li>The interface implmentation then either instantiates the return type based on the response, or the static XML.</li> <li>You can then pass the required class when testing or at production to the service layer.</li> </ul> <p>Once I have the code knocked up, I'll paste some samples.</p> <p>Thanks Will :)</p> http://stackoverflow.com/questions/856885/httpwebrequest-to-url-with-dot-at-the-end 1 HttpWebRequest to URL with dot at the end ado 2009-05-13T09:03:09Z 2009-10-13T00:20:03Z <p>Hi, when i do a GET with WebRequest.Create("http://abc/test.") i get 404 because according to fiddler the trailing dot gets stripped away by .NET and the web server needs the dot. how can i prevent that or work around it. any workaround is appreciated!</p> http://stackoverflow.com/questions/1267571/view-webrequest-xml 0 View WebRequest XML Steve 2009-08-12T17:30:40Z 2009-10-09T04:00:02Z <p>Hello, I'm having a strange issue - I saw a similar post on this forum, but it didn't have an answer.</p> <p>Long story short, I am sending an HttpWebRequest using C# to a web service (stubs were created by adding a web reference in Visual Studio 2008, .NET 2.0) which breaks with the following message: "Unable to parse the incoming request". This is a java based webservice running on weblogic.</p> <p>Here is the strange part, if I have fiddler running to monitor my request - IT WORKS FINE!!??</p> <p>My theory is that fiddler is reformatting the request in some manner which the server likes?</p> <p>Does anyone know what .NET could be doing to the request which fiddler could be fixing? If not, is there a way I can view my XML programmatically without using fiddler?</p> <p>Caveat - I do not have access to make changes to the server hosting the web service.</p> <p>Thanks, Steve</p> <p>UPDATE - When I remove the "Decrypt HTTPS traffic" option in fiddler it no longer works. So whatever fiddler is doing to decrypt the HTTPS traffic is what is making this work....</p> http://stackoverflow.com/questions/1522209/obtaining-information-from-webpage-displaying-it-in-an-iphone-app 1 Obtaining information from Webpage - displaying it in an Iphone app samfu_1 2009-10-05T20:28:53Z 2009-10-05T20:39:32Z <p>Is it possible to pull information from a website and display it in an iphone application? I am looking to pull the current temperature and barometric pressure for an airport from the <a href="http://adds.aviationweather.noaa.gov" rel="nofollow">http://adds.aviationweather.noaa.gov</a> website and display those two pieces of information in an app. </p> <p>This sounds like a common task that programs do all the time but I'm not sure how it's incorporated into an app.. (what is the process of pulling webdata called?)</p> <p>What methods or tools are available to do this? I am unfamiliar with handling web data for iphone at this time.</p> http://stackoverflow.com/questions/1498985/returning-value-from-ajax-request-in-a-global-variable 0 Returning value from AJAX request in a global variable Teknotica 2009-09-30T15:47:35Z 2009-09-30T16:05:17Z <p>Hi all,</p> <p>Sorry if this question is duplicated but I couldn't solve my problem from other solutions.</p> <p>I've got this code in a sepate file included in my main index: </p> <pre><code>var getSuggestedData = { serviceURL: $("input[name=suggestedServices]").val(), dataR:"", doRequest:function(){ //request data to controller $.ajax({ url:this.serviceURL, success:function(msg){ this.dataR = msg; } }) } </code></pre> <p>}</p> <p>When I'm trying to get the variable "dataR" from my index this way it's UNDEFINED! PLEASE, can someone help me out?</p> <pre><code>$().ready(function() { getSuggestedData.doRequest(); alert(getSuggestedData.dataR); </code></pre> <p>});</p> <p>Thank you in advance!</p> http://stackoverflow.com/questions/1455567/webrequest-how-to-find-a-postal-code-using-a-webrequest-against-this-contenttype 2 WebRequest: How to find a postal code using a WebRequest against this ContentType="application/xhtml+xml, text/xml, text/html; charset=utf-8"? Will the Thrill 2009-09-21T16:57:22Z 2009-09-24T16:57:12Z <p>I first posted this: <a href="http://stackoverflow.com/questions/1444563/httpwebrequest-how-to-find-a-postal-code-at-canada-post-through-a-webrequest-wit">HttpWebRequest: How to find a postal code at Canada Post through a WebRequest with x-www-form-enclosed?</a>.</p> <p>Following AnthonyWJones suggestions, I changed my code following his suggestions.</p> <p>On a continuation of my inquiry, I have noticed with time that the content-type of Canada Post is more likely to be <strong>"application/xhtml+xml, text/xml, text/html; charset=utf-8"</strong>.</p> <p>My questions are: </p> <ol> <li>How do we webrequest against such a content-type website?</li> <li>Do we have to keep on going with the NameValueCollection object?</li> <li>According to Scott Lance who generously provided me with precious information within my preceding question, the WebRequest shall return the type of information whatever the content-type may be, am I missing something here?</li> <li>Do I have to change my code because of the content-type change?</li> </ol> <p>Here is my code so that it might be easier to understand my progress.</p> <pre><code>internal class PostalServicesFactory { /// &lt;summary&gt; /// Initializes an instance of GI.BusinessSolutions.Services.PostalServices.Types.PostalServicesFactory class. /// &lt;/summary&gt; internal PostalServicesFactory() { } /// &lt;summary&gt; /// Finds a Canadian postal code for the provided Canadian address. /// &lt;/summary&gt; /// &lt;param name="address"&gt;The instance of GI.BusinessSolutions.Services.PostalServices.ICanadianCityAddress for which to find the postal code.&lt;/param&gt; /// &lt;returns&gt;The postal code found, otherwise null.&lt;/returns&gt; internal string FindPostalCode(ICanadianCityAddress address) { if (address == null) throw new InvalidOperationException("No valid address specified."); using (ServicesWebClient swc = new ServicesWebClient()) { var values = new System.Collections.Specialized.NameValueCollection(); values.Add("streetNumber", address.StreetNumber.ToString()); values.Add("numberSuffix", address.NumberSuffix); values.Add("suite", address.Suite); values.Add("streetName", address.StreetName); values.Add("streetDirection", address.StreetDirection); values.Add("city", address.City); values.Add("province", address.Province); byte[] resultData = swc.UploadValues(@"http://www.canadapost.ca/cpotools/apps/fpc/personal/findByCity", "POST", values); return Encoding.UTF8.GetString(resultData); } } private class ServicesWebClient : WebClient { public ServicesWebClient() : base() { } protected override WebRequest GetWebRequest(Uri address) { var request = (HttpWebRequest)base.GetWebRequest(address); request.CookieContainer = new CookieContainer(); return request; } } } </code></pre> <p>This code actually returns the HTML source code of the form one must fill with the required information in order to process with the postal code search. What I wish is to get the HTML source code or whatever it may be with the found postal code.</p> <blockquote> <p><strong>EDIT:</strong> Here's the WebException I get now: "Unable to send a content body with this type of verb." (This is a translation from the French exception "Impossible d'envoyer un corps de contenu avec ce type de verbe.")</p> </blockquote> <p>Here's my code:</p> <pre><code> internal string FindPostalCode(string url, ICanadianAddress address) { string htmlResult = null; using (var swc = new ServiceWebClient()) { var values = new System.Collections.Specialized.NameValueCollection(); values.Add("streetNumber", address.StreetNumber.ToString()); values.Add("numberSuffix", address.NumberSuffix); values.Add("suite", address.Suite); values.Add("streetName", address.StreetName); values.Add("streetDirection", address.StreetDirection); values.Add("city", address.City); values.Add("province", address.Province); swc.UploadValues(url, @"POST", values); string redirectUrl = swc.ResponseHeaders.GetValues(@"Location")[0]; =&gt; swc.UploadValues(redirectUrl, @"GET", values); } return htmlResult; } </code></pre> <p>The line that causes the exception is pointed with "=>". It seems that I can't use GET as the method, yet this is what has been told me me to do...</p> <p>Any idea what I'm missing here? I try to do what Justin (see answer) recommended me to do.</p> <p>Thanks in advance for any help! :-)</p> http://stackoverflow.com/questions/1460749/iis-cache-problem 0 IIS/Cache problem? Shawn 2009-09-22T15:23:20Z 2009-09-22T15:39:59Z <p>I have a program that checks if a file is present every 3 seconds, using webrequest and webresponse. If that file is present it does something if not, ect, that part works fine. I have a web page that controls the program by creating the file with a message and other variables as entered into the page, and then creates it and shoots it over to the folder that the program is checking. There is also a "stop" button that deletes that file.</p> <p>This works well except that after one message is launched and then deleted, when it is launched the second time with a different message the program still sees the old message. I watch the file be deleted in IIS, so that is not the issue.</p> <p>I've thought about meta tags to prevent caching, but would having the file be dynamically named solve this issue also? How would I make the program be able to check for a file where only the first part of the filename is known? I've found solutions for checking directories on local machines, but that won't work here.</p> <p>Any ideas welcome, thanks.</p> http://stackoverflow.com/questions/1368419/c-post-xml-to-url-not-working 0 C# Post XML to URL not working johnnycrash 2009-09-02T15:32:41Z 2009-09-10T04:49:40Z <p>First of all, I am a WEB NOOB. Which probably explains this question. Anyway, when I use the <a href="http://reports.gogetagrip.com/gateway/xml-submit-orders-test" rel="nofollow">web page test app</a> to post xml to a url, everything works fine. Here is the pertinant code from the web page (i think):</p> <pre><code>&lt;form action="/gateway/xml" method="post" id="xml-test-form"&gt; &lt;textarea name="data"&gt; {some xml is in here} &lt;/textarea&gt; &lt;input type="submit" value="Submit Test" /&gt; &lt;/form&gt; </code></pre> <p>When I try to submit the exact same XML using C# (WebRequest or HttpWebRequest) with content type of ("text/xml" or "application/x-www-form-urlencoded") with a buffer encoded (ASCII or UTF8) I get an error that implies the XML cant be read at all on the other end. Here is the error:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;SubmitOrdersResponse&gt; &lt;status code="0"&gt;FAILURE&lt;/status&gt; &lt;errors&gt; &lt;error code="1001"&gt;Invalid XML Version&lt;/error&gt; &lt;/errors&gt; &lt;/SubmitOrdersResponse&gt; &lt;br /&gt;&lt;b&gt;Warning&lt;/b&gt;: DOMDocument::loadXML() [&lt;a href='domdocument.loadxml'&gt;domdocument.loadxml&lt;/a&gt;]: Empty string supplied as input in &lt;b&gt;/var/www/vhosts/reports.gogetagrip.com/httpdocs/application/models/Gateway.php&lt;/b&gt; on line &lt;b&gt;90&lt;/b&gt;&lt;br /&gt; </code></pre> <p>I can reproduce this error using the web tester by removing a XML element named . I think this is the first element that is checked for, and hence the "INVALID XML VERSION" error. I think what is happening is my submittal is comming accross slighlty in the wrong format and that element can't be read. I think specifically I have to simulate a posting data where my data is comming from the "data" form field (see above). I don't know how to set that using the WebRequest class, so I can't test it. Here is my code:</p> <pre><code>static private void Post(string sURL, string sXml) { try { //Our postvars byte[] buffer = Encoding.UTF8.GetBytes(sXml); // Tried ASCII...same result HttpWebRequest WebReq = (HttpWebRequest)WebRequest.Create(sURL); // Tried WebRequest ... same result WebReq.Method = "POST"; WebReq.ContentType = "application/x-www-form-urlencoded"; // tried "text/xml"... same result WebReq.ContentLength = buffer.Length; Stream ReqStream = WebReq.GetRequestStream(); ReqStream.Write(buffer, 0, buffer.Length); ReqStream.Close(); WebResponse WebRes = WebReq.GetResponse(); //Console.WriteLine(WebResp.StatusCode); //Console.WriteLine(WebResp.Server); Stream ResStream = WebRes.GetResponseStream(); StreamReader ResReader = new StreamReader(ResStream); string sResponse = ResReader.ReadToEnd(); } catch (Exception ex) { } finally { } } </code></pre> <p>Any Ideas?????</p> http://stackoverflow.com/questions/1371689/soapextensions-are-used-only-for-asp-net 0 SoapExtensions are used only for ASP.NET ariel 2009-09-03T06:27:21Z 2009-09-03T06:42:02Z <p>Hello, I'm trying to implement a SoapExtension for log purposes (print the xml soap request) on an .NET 2.0 client application (not ASP.NET). I first tried a simple console application just to check and I'm not able to see that the extension is called. The simple code is just two lines:</p> <p>System.Net.WebRequest request = System.Net.WebRequest.Create("http://www.ynet.com"); WebResponse response = request.GetResponse();</p> <p>and my config file is the following: </p> <p>What I'm doing wrong? are the extension usable only in ASP.NET? Thanks</p> http://stackoverflow.com/questions/1349862/write-a-c-script-to-test-hundreds-of-domain-names 1 Write a C# script to test hundreds of domain names frankadelic 2009-08-28T23:26:19Z 2009-09-02T03:02:25Z <p>A client has given me a spreadsheet of hundreds of domain names.</p> <p>My task is to determine the following about each:</p> <ul> <li>Which domains are connected to a web server / website.</li> <li>Of those that are, which redirect to another site.</li> <li>What is the server software running (ASP, ASP.NET, Apache, etc)</li> </ul> <p>...and output the results in an organized fashion.</p> <p>Is there a script, preferably c#, that can help with this?</p> http://stackoverflow.com/questions/1363715/webrequest-retreived-site-loads-different-then-original 0 WebRequest retreived site loads different then original Wineshtain 2009-09-01T17:43:10Z 2009-09-01T17:51:25Z <p>Hello,</p> <p>I am using WebRequest to retreive a html page from the web and then displaying it using Response.Write.</p> <p>The resulting page looks different from the original mostly in font and layout.</p> <p>What could be the possible reasons and how to fix it?</p> <p>With thanks,</p> <p>Wineshtain.</p> http://stackoverflow.com/questions/1336203/httpwebrequest-or-webrequest-resume-download-asp-net 2 HttpWebRequest or WebRequest - Resume Download ASP.NET Cleiton 2009-08-26T17:03:49Z 2009-08-26T22:52:57Z <p>I would like to know if there is a way to know if a server supports resume download functionallity and if supported, how do I send a request to resume?</p> <p>I was looking for a solution where my ASP.NET page can do a download from a server to mine, something like "<strong><a href="http://www.rapidleech.com/" rel="nofollow">rapidleech</a></strong>" does today, but I would like to check if the server where i'm requesting the download supports resume functionallity.</p> http://stackoverflow.com/questions/547347/remote-http-post-with-csharp 1 Remote HTTP Post with CSharp localhost 2009-02-13T19:33:12Z 2009-08-16T21:11:49Z <p>How do you do a Remote HTTP Post (request) in CSharp? </p> <p>i really needs this pls. :(</p> http://stackoverflow.com/questions/1203040/c-webrequest-in-a-windows-service 0 C#-WebRequest in a Windows Service 2009-07-29T21:05:42Z 2009-08-04T19:23:51Z <p>Hi there,</p> <p>I'm currently developing a Windows Service to download some emails in the background. For easy testing, the core of this service can be run in a standalone application, too. There's no problem while downloading the mails (service and standalone) but I'm not able to get a WebRequest when running the service (everything's find in the standalone app). I know, Windows Services are limited by the local system account - but is there a way to work with (Http-)WebRequest without changing the service-user manually.</p> <p>Thanks in advance, Bert</p> http://stackoverflow.com/questions/1171083/how-can-i-fetch-full-name-and-picture-from-any-users-facebook-page 2 How can I fetch full name and picture from any user's Facebook page? Noop 2009-07-23T11:14:51Z 2009-07-23T12:31:21Z <p>I'd like to get access to the <em>public</em> information about any user on Facebook. Basically, that means only user pictures and full names, that's all. It's the information you get when you open a page without being logged in, like this:</p> <p><a href="http://www.facebook.com/jurgenappelo" rel="nofollow">http://www.facebook.com/jurgenappelo</a></p> <p>However, when I try to do this from code, Facebook returns this message:</p> <p><strong>"You are using an incompatible web browser."</strong></p> <p>I'm trying to mimic a Firefox browser, but that doesn't seem to work. Am I doing something wrong? Or is Facebook using other techniques to block this?</p> <pre><code> var requestString = "http://www.facebook.com/jurgenappelo"; var request = (HttpWebRequest)WebRequest.Create(requestString); request.Headers.Add("HTTP_USER_AGENT", "Gecko/20050511 Firefox/1.0.4"); try { HttpWebResponse response =(HttpWebResponse)request.GetResponse(); if (response != null) { if (response.StatusCode == HttpStatusCode.OK) { Stream stream = response.GetResponseStream(); using (StreamReader reader = new StreamReader(stream)) { var html = reader.ReadToEnd(); } } response.Close(); } } catch { } </code></pre>