active questions tagged http - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T22:21:24Z http://stackoverflow.com/feeds/tag/http http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903446/how-does-web-filtering-software-hook-into-outbound-browser-requests-without-brows 0 How does web filtering software hook into outbound browser requests without browser configuration? Joe Koberg 2009-12-14T20:58:12Z 2009-12-14T21:11:08Z <p>I would like to duplicate the functionality of some web filtering software, however I don't want the user to have to configure their browser. <a href="http://www1.k9webprotection.com/" rel="nofollow">Some other products</a> on the market do this without any apparent configuration in the browser settings. </p> http://stackoverflow.com/questions/1902367/c-httpwebrequest-post 1 C# - HttpWebRequest - POST Jonathan.Peppers 2009-12-14T17:44:06Z 2009-12-14T21:10:49Z <p>I am trying to make an Http POST to an Apache web server.</p> <p>I am finding that setting ContentLength seems to be required for the request to work.</p> <p>I would rather create an XmlWriter directly from GetRequestStream() and set SendChunked to true, but the request hangs indefinitely when doing so.</p> <p>Here is how my request is created:</p> <pre><code> private HttpWebRequest MakeRequest(string url, string method) { HttpWebRequest request = HttpWebRequest.Create(url) as HttpWebRequest; request.Method = method; request.Timeout = Timeout; //Property in my class, assume it's 10000 request.ContentType = "text/xml"; //I am only writing xml with XmlWriter if (method != WebRequestMethods.Http.Get) { request.SendChunked = true; } return request; } </code></pre> <p>How can I make SendChunked work so I do not have to set ContentLength? I do not see a reason to store the XmlWriter's string somewhere before sending it to the server.</p> <p>EDIT: Here is my code causing the problem:</p> <pre><code> using (Stream stream = webRequest.GetRequestStream()) { using (XmlWriter writer = XmlWriter.Create(stream, XmlTags.Settings)) { Generator.WriteXml&lt;TRequest&gt;(request, writer); } } </code></pre> <p>Before I did not have a using on the Stream object returned from GetRequestStream(), I assumed XmlWriter closed the stream when disposed, but this is not the case.</p> <p>One of the answers below, let me to this. I'll mark them as the answer.</p> <p>As far as HttpWebRequest is concerned, my original code works just fine.</p> http://stackoverflow.com/questions/1593275/firewall-visited-websites-logger 1 Firewall / visited websites logger Lucian Podereu 2009-10-20T08:50:49Z 2009-12-14T20:44:19Z <p>Hi.</p> <p>I have a firewall implementation and I want to log all the websites visited on the machine. So when the user enters an address in the browser(any browser) or clicks a link to be able to log the visited address. The problem is that I want to log only the visited address and NOT the other resources requested by the page (ads, iframes, Google stats and so on). Is there a method to do this by looking at the HTTP or TCP headers? Or any other method.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1903011/refresh-image-with-javascript-but-only-if-changed-on-server 1 Refresh image with Javascript, but only if changed on server David Maymudes 2009-12-14T19:41:40Z 2009-12-14T19:54:32Z <p>I want to check if an image on a page has been updated on the server. In <a href="http://stackoverflow.com/questions/1077041/refresh-image-with-a-new-one-at-the-same-url">other questions</a> it has been suggested to do something like</p> <pre><code>newImage.src = "http://localhost/image.jpg?" + new Date().getTime(); </code></pre> <p>to force the image to be re-loaded, but that means that it will get downloaded again even if it really hasn't changed.</p> <p>Is there any Javascript code that will cause a new request for the same image to be generated with a proper <code>If-Modified-Since</code> header so the image will only be downloaded if it has actually changed?</p> http://stackoverflow.com/questions/1875151/delay-in-multiple-tcp-connections-from-java-to-the-same-machine 1 Delay in multiple TCP connections from Java to the same machine ripper234 2009-12-09T16:40:55Z 2009-12-14T19:31:23Z <p>(See <a href="http://serverfault.com/questions/92589/what-causes-a-delay-of-100-ms-in-initiating-an-http-connection">this question in ServerFault</a>)</p> <p>I have a Java client that uses Socket to open concurrent connections to the same machine. I am witnessing a phenomenon where one request completes extremely fast, but the others see a delay of 100-3000 milliseconds. Packet inspection using Wireshark shows all SYN packets beyond the first wait a long time before leaving the client. I am seeing this on both Windows and Linux clients. What could be causing this? This happens when the client is a Windows 2008 or a Linux box.</p> <p>Code attached:</p> <pre><code>import java.util.*; import java.net.*; public class Tester { public static void main(String[] args) throws Exception { if (args.length &lt; 3) { usage(); return; } final int n = Integer.parseInt(args[0]); final String ip = args[1]; final int port = Integer.parseInt(args[2]); ExecutorService executor = Executors.newFixedThreadPool(n); ArrayList&lt;Callable&lt;Long&gt;&gt; tasks = new ArrayList&lt;Callable&lt;Long&gt;&gt;(); for (int i = 0; i &lt; n; ++i) tasks.add(new Callable&lt;Long&gt;() { public Long call() { Date before = new Date(); try { Socket socket = new Socket(); socket.connect(new InetSocketAddress(ip, port)); } catch (Throwable e) { e.printStackTrace(); } Date after = new Date(); return after.getTime() - before.getTime(); } }); System.out.println("Invoking"); List&lt;Future&lt;Long&gt;&gt; results = executor.invokeAll(tasks); System.out.println("Invoked"); for (Future&lt;Long&gt; future : results) { System.out.println(future.get()); } executor.shutdown(); } private static void usage() { System.out.println("Usage: prog &lt;threads&gt; &lt;url/IP Port&gt;"); System.out.println("Examples:"); System.out.println(" prog tcp 10 127.0.0.1 2000"); } } </code></pre> <p><strong>Update</strong> - the problem reproduces consistently if I clear the relevant ARP entry before running the test program. I've tried tuning the <a href="http://windowsitpro.com/Articles/ArticleID/15004/pg/1/1.html" rel="nofollow">TCP retransmission timeout</a>, but that didn't help. Also, we ported this program to .Net, but the problem still happens.</p> http://stackoverflow.com/questions/1902570/sending-xml-over-http-in-a-simple-neutral-way 1 Sending XML over HTTP in a simple, neutral way... Boden 2009-12-14T18:20:46Z 2009-12-14T19:16:26Z <p>We have some standalone devices that will send XML messages to arbitrary processing software (may be developed by us, may be 3rd party) over HTTP. The messages are relatively simple, and will conform to an existing schema. No specific reply is necessary.</p> <p>I suddenly find myself lost in a world of web service technology jargon. I'd like the following: </p> <ol> <li>To keep the devices as simple as possible, and not tied to any particular technology like SOAP (unless it's beneficial). </li> <li>To make it as simple as possible to consume the messages. For instance, I could just send XML over HTTP, but then the receiver would have to manually process the message (I think). It would be great if anyone could use WSDL-like tools to easily create consumers in any language.</li> </ol> <p>Please help fill in the giant gaps in my understanding...and point me in the right direction. Thanks!</p> <p>UPDATE: I should have made myself a little more clear. I'm not against using any "technology", I'm just looking for advice to strike a good balance. The standalone devices will have very limited capabilities, but enough to send an XML message over HTTP -- I don't want to complicate these things any more than I have to.</p> <p>Then I can certainly just consume and manually process the XML messages..... but it would be neat if there was a way to generate this code (the way I can generate code from WSDL). What I've got is an .xsd describing the messages themselves, nothing more.</p> http://stackoverflow.com/questions/1181751/send-iphone-http-request-to-apache-php-webserver 1 Send iPhone HTTP request to Apache PHP webserver Brock Woolf 2009-07-25T09:40:22Z 2009-12-14T18:10:16Z <p>I am programmer with a games and 3D graphics background and at the moment I would like to brush up on my networking and web development skills.</p> <p>I have a task that I would like to accomplish to do this. My idea is that I would like to be able to send a HTTP request or something similar to my webserver, which runs a LAMP based setup. I would like to know how I can send a HTTP request containing some information from my iPhone using the Cocoa Touch framework, to my webserver.</p> <p>I would like the webserver (using PHP) to be able to record the sent information into a plain text file, that I can use later to make graphs. For my example we could just send the current date.</p> <p>I think that people must do this very often and I really want to know how to do this. Thanks for your help.</p> <p>P.S. If you don't know the Cocoa code in order to send the request, that's okay I'm sure I can figure that out, but I would like to at least know how to get the Linux server to save the HTTP request, preferrably PHP but another appropriate language is fine. Bonus marks for away to do this <strong>securely</strong>.</p> <p>Also: I am a total noob at this and require source code, cheers :D</p> http://stackoverflow.com/questions/1886674/http-error-in-j2me-app 0 Http Error in J2ME app pujakhemka 2009-12-11T08:46:01Z 2009-12-14T17:28:37Z <p>Hi,</p> <p>I am trying to make an Http connection in a J2ME application.</p> <p>Problem is that it is running fine in the emulator; but in a mobile, it is showing IO exception- Error in Http Operation.</p> <p>Can anyone tell me what prompts this kind of error. Thanks in adv.</p> http://stackoverflow.com/questions/1900730/url-error-object-not-found -4 URL Error - Object not found Steven 2009-12-14T12:46:26Z 2009-12-14T13:24:12Z <pre><code>http://www.mydomainname.com/en/common/loginprocess.php? http=http://www.mydomainname.com/en/bidding/bid.php?taskid=59 </code></pre> <p>The URL above is the URL in my Firefox address bar. However I can access </p> <pre><code>http://www.mydomainname.com/en/bidding/bid.php?taskid=59 </code></pre> <p>What's the problem?</p> http://stackoverflow.com/questions/247483/http-get-request-in-javascript 3 HTTP GET request in Javascript? mclaughlinj 2008-10-29T16:31:34Z 2009-12-14T10:38:56Z <p>I need to do an HTTP GET request in JS, what's the best way to do that?</p> <p>Thanks</p> <p><em>EDIT</em>: I need to do this in a Mac OS X dashcode widget</p> http://stackoverflow.com/questions/1882196/blackberry-is-this-a-guaranteed-approach-for-detecting-a-valid-connection-type 1 Blackberry - Is this a guaranteed approach for detecting a valid connection type? AtariPete 2009-12-10T16:25:32Z 2009-12-14T10:00:37Z <p>I've created following two methods for reliably building a connection for making a data connection. So far I haven't had any issues testing this approach with users.</p> <p>I'd love to get some community feedback about this approach and letting me know if anything seems in buildConnectionString(). Please see code below:</p> <pre><code>private static String buildConnectionString() { //The Device is a simultaor --&gt; TCP if (DeviceInfo.isSimulator()) return ";deviceside=true;ConnectionTimeout=20000"; String st = ""; //A carrier is providing us with the data service if ((CoverageInfo.getCoverageStatus() &amp; CoverageInfo.COVERAGE_CARRIER) == CoverageInfo.COVERAGE_CARRIER) { // blackberry internet service ServiceRecord rec = getBIBSRecord();//Apply for BIS access to get info about BIS recordset if (rec != null)//couldn't find the right record st = "[THIS CONNECTION STRING IS REMOVED, PLEASE APPLY FOR BIS ACCESS TO GET THIS STRING]"; else if(GetWap2().length() &gt; 0) st = GetWap2(); else st = ";deviceside=true";// let the phone try to do the work } else if ((CoverageInfo.getCoverageStatus() &amp; CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS) st = ";deviceside=false";// use the clients blackberry enterprise server else st = ";deviceside=true";// let the phone do the work if it can return st + ";ConnectionTimeout=45000"; } public static String GetWap2() { String wap2Postfix = null; final ServiceBook sb = ServiceBook.getSB(); final ServiceRecord[] records = sb.findRecordsByCid("WPTCP"); for (int i = 0; i &lt; records.length; i++) { // Search through all service records to find the valid non Wi-Fi // WAP 2.0 Gateway Service Record. if (records[i].isValid() &amp;&amp; !records[i].isDisabled() &amp;&amp; records[i].getUid() != null &amp;&amp; records[i].getUid().length() != 0 &amp;&amp; records[i].getUid().toLowerCase().indexOf("wifi") == -1 &amp;&amp; records[i].getUid().toLowerCase().indexOf("mms") == -1) { wap2Postfix = ";ConnectionUID=" + records[i].getUid(); break; }//endif }//end for return wap2Postfix; }// end wap postfix </code></pre> <p>Possible questions to consider:<br></p> <ul> <li>If a BIS string exists (recordset found), will it always work (aside from being blocked by a corporate network)?</li> <li>If a WAP2 string exists (recordset found), will it always work (aside from being blocked by a corporate network)?</li> <li>Should I check for MDS support first as opposed to carrier support?</li> <li>Beyond extreme cases where carriers block a connection, will the above approach work?</li> </ul> <p>Let me me know!</p> http://stackoverflow.com/questions/1899860/net-syntax-of-responsestring-to-match-js-callback-function-with-multiple-paramet 0 .NET syntax of responsestring to match JS-callback function with multiple parameter David 2009-12-14T09:21:44Z 2009-12-14T09:48:45Z <p>Hi,</p> <p>i would like to pass multiple parameters in my callback function and don't know who to do this...</p> <p>This would be the C# code:</p> <pre><code> Response.Clear(); Response.ContentType = "text/plain"; Response.Write("content of param1"); Response.Write("content of param2"); Response.End(); </code></pre> <p>and the JS code:</p> <pre><code> $.getJSON("localhost/myFunction", dataString, function(param1, param2) { alert(param1); alert(param2); }); </code></pre> <p>How would i perform the actual mapping of parameter in the C# code, so JavaScript recognizes them as the 2 parameters of the callback function? ( In detail i want to pass a JSON-object and a "status" parameter here... )</p> http://stackoverflow.com/questions/1835074/sending-http-request-with-multiple-parameters-having-same-name 1 Sending HTTP request with multiple parameters having same name n0rd 2009-12-02T19:00:52Z 2009-12-14T03:44:40Z <p>I need to send a HTTP request (and get XML response) from Flash that looks similar to following:</p> <pre><code>http://example.com/somepath?data=1&amp;data=2&amp;data=3 </code></pre> <p>I.e. having several parameters that share same name, but have different values. </p> <p>Until now I used following code to make HTTP requests:</p> <pre><code>var resp:XML = new XML(); resp.onLoad = function(success:Boolean) {/*...*/}; resp.ignoreWhite = true; var req:LoadVars = new LoadVars(); req["someParam1"] = 3; req["someParam2"] = 12; req.sendAndLoad("http://example.com/somepath", resp, "GET"); </code></pre> <p>In this case this will not do: there will be only one parameter having last value.</p> <p>What are my options? I'm using actionscript 2.</p> <p><strong>Added</strong></p> <p>I guess, I can do something like that:</p> <pre><code>var url:String = myCustomFunctionForBuildingRequestString(); var resp:XML = new XML(); resp.onLoad = function(success:Boolean) {/*...*/}; resp.load(url); </code></pre> <p>But in that case I am loosing ability to do POST requests. Any alternatives?</p> <p>Changing request is not appropriate.</p> http://stackoverflow.com/questions/1898506/why-would-a-browser-make-two-separate-requests-for-the-same-file 2 Why would a browser make two separate requests for the same file? oskar 2009-12-14T01:37:40Z 2009-12-14T01:52:47Z <p>I'm debugging a program I wrote and noticed something strange. I set up an HTTP server on port 12345 that servers a simple OGG video file, and attempted to access it from Firefox.</p> <p>Upon sniffing the network requests, I found these two requests were made:</p> <pre><code>GET /video.ogv HTTP/1.1 Host: 127.0.0.1:12345 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive GET /video.ogv HTTP/1.1 Host: 127.0.0.1:12345 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Range: bytes=8122368- </code></pre> <p>The video is almost 8 MB in size, so the fact that the second request specifics 8122368 bytes, which is 7932 KB, suggests it is requesting the very end of the file for some reason. Anyone have ideas?</p> http://stackoverflow.com/questions/1898319/trying-to-wget-my-stock-portfolio 0 trying to wget my stock portfolio Hugh Allen 2009-12-14T00:14:53Z 2009-12-14T01:08:08Z <p>I'm trying to read my stock portfolio into a script. The following works with NAB Online Trading but not <a href="https://www.belldirect.com.au/" rel="nofollow">Bell Direct</a>.</p> <ul> <li>install the <a href="https://addons.mozilla.org/en-US/firefox/addon/12360" rel="nofollow">Export Domain Cookies</a> Firefox addon</li> <li>log in to my online broker with Firefox</li> <li>save the domain cookies to a file (eg <code>cookies.txt</code>)</li> <li><code>wget --no-check-certificate --load-cookies=cookies.txt -O folio.htm <a href="https://..." rel="nofollow">https://...</a></code>(portfolio URL)</li> </ul> <p>-- The idea being to reuse the browser's login session. When I try it with Bell Direct, <code>wget</code> is redirected to the login page. I get the same results with <code>curl</code>. What am I missing? Is there some state that is stored in the browser besides in the cookies? Bell isn't using "basic authentication" because the login page is a form for username / password - it doesn't pop up the browser's built-in login dialog.</p> <p>Here is what happens (under Windows XP with Cygwin):</p> <blockquote> <p><code>$ wget --server-response --no-check-certificate --load-cookies=cookies-bell.txt -O folio-bell.htm <a href="https://www.belldirect.com.au/trade/portfoliomanager/" rel="nofollow">https://www.belldirect.com.au/trade/portfoliomanager/</a></code><br> <code>--2009-12-14 10:52:08-- <a href="https://www.belldirect.com.au/trade/portfoliomanager/" rel="nofollow">https://www.belldirect.com.au/trade/portfoliomanager/</a></code><br> <code>Resolving www.belldirect.com.au... 202.164.26.80</code><br> <code>Connecting to www.belldirect.com.au|202.164.26.80|:443... connected.</code><br> <code>WARNING: cannot verify www.belldirect.com.au's certificate, issued by '/C=ZA/ST=Western Cape/L=Cape Town/O=Thawte Consulting cc/OU=Certification Services Division/CN=Thawte Server CA/emailAddress=server-certs@thawte.com':</code><br> <code> Unable to locally verify the issuer's authority.</code><br> <code>HTTP request sent, awaiting response...</code><br> <code> HTTP/1.1 302 Found</code><br> <code> Connection: keep-alive</code><br> <code> Date: Sun, 13 Dec 2009 23:52:16 GMT</code><br> <code> Server: Microsoft-IIS/6.0</code><br> <code> X-Powered-By: ASP.NET</code><br> <code> X-AspNet-Version: 2.0.50727</code><br> <code> Location: /account/login.html?redirect=<a href="https://www.belldirect.com.au/trade/portfoliomanager/index.html" rel="nofollow">https://www.belldirect.com.au/trade/portfoliomanager/index.html</a></code><br> <code> Cache-Control: private</code><br> <code> Content-Type: text/html; charset=utf-8</code><br> <code> Content-Length: 229</code><br> <code>Location: /account/login.html?redirect=<a href="https://www.belldirect.com.au/trade/portfoliomanager/index.html" rel="nofollow">https://www.belldirect.com.au/trade/portfoliomanager/index.html</a> [following]</code><br> <code>...</code> </p> </blockquote> http://stackoverflow.com/questions/1897748/executing-server-side-unix-scripts-asynchronously 1 Executing server-side Unix scripts asynchronously knipknap 2009-12-13T21:07:43Z 2009-12-13T21:12:01Z <p>We have a collection of Unix scripts (and/or Python modules) that each perform a long running task. I would like to provide a web interface for them that does the following:</p> <ul> <li>Asks for relevant data to pass into scripts.</li> <li>Allows for starting/stopping/killing them.</li> <li>Allows for monitoring the progress and/or other information provided by the scripts.</li> <li>Possibly some kind of logging (although the scripts already do logging).</li> </ul> <p>I do know how to write a server that does this (e.g. by using Python's built-in HTTP server/JSON), but doing this properly is non-trivial and I do not want to reinvent the weel.</p> <p>Are there any existing solutions that allow for maintaining asynchronous server-side tasks?</p> http://stackoverflow.com/questions/1895949/will-this-urllib2-python-code-download-the-page-of-the-file 0 Will this urllib2 python code download the page of the file? alex 2009-12-13T08:54:20Z 2009-12-13T16:36:51Z <p><strong>urllib2.urlopen(theurl).read()</strong> ...this downloads the file.</p> <p><strong>urllib2.urlopen(theurl).geturl()</strong>...does this download the file? (how long does it take)</p> http://stackoverflow.com/questions/1896237/how-to-open-a-web-page-and-search-for-a-word-in-ruby 0 How to open a web page and search for a word in ruby [closed] Markus 2009-12-13T11:32:50Z 2009-12-13T11:51:08Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1878891/how-to-load-a-web-page-and-search-for-a-word-in-ruby">How to load a Web page and search for a word in Ruby</a> </p> </blockquote> <p>How to open a web page and search for a word in ruby?</p> http://stackoverflow.com/questions/1893608/how-can-i-automate-and-share-sessions-between-firefox-and-perl 4 How can I automate and share sessions between Firefox and Perl? Learner 2009-12-12T14:35:50Z 2009-12-13T11:23:16Z <p>Is it possible to do part of a web flow in Perl and then transfer the rest of the session to Firefox?<br> I need to retry(with Perl) logging in to a website which returns 500 every now and then on a successful login, transfer the authenticated session to Firefox, from where I can continue my normal browsing. Is this possible?<br> If this is possible, how do I do it? Can you point me to some resources on how can transfer the cookie/session, etc ?</p> http://stackoverflow.com/questions/1895760/i-keep-getting-quit-and-connect-http-methods-sent-to-my-server-what-do-they-mean 0 I keep getting QUIT and CONNECT HTTP methods sent to my server, what do they mean? go minimal 2009-12-13T06:41:05Z 2009-12-13T10:11:38Z <p>I keep getting the two following errors from my server, I assumed they were just bots looking for potential targets, but does anyone know specifically why I'm getting these? I'm using the SslRequirement plugin to make sure all hits to the login/signup page are redirected to SSL, so all of these weird https requests to root should just be redirected to regular http.</p> <p><hr></p> <p>A ActionController::UnknownHttpMethod occurred in application#index: quit, accepted HTTP methods are get, head, put, post, delete, and options</p> <p>/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-2.3.4/lib/action_controller/request.rb:35:in `request_method'</p> <ul> <li>PATH_INFO : /</li> <li>REMOTE_ADDR : 99.19.208.249</li> <li>REMOTE_PORT : 6376</li> <li>REQUEST_METHOD : CONNECT</li> <li>REQUEST_URI : /</li> <li>SERVER_PORT : 443</li> <li>SERVER_PROTOCOL : HTTP/1.0</li> <li>SERVER_SOFTWARE : Apache</li> </ul> <p><hr></p> <p>A ActionController::UnknownHttpMethod occurred in application#index: CONNECT, accepted HTTP methods are get, head, put, post, delete, and options</p> <p>/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-2.3.4/lib/action_controller/request.rb:35:in `request_method'</p> <ul> <li>HTTPS : on</li> <li>HTTP_X_FORWARDED_PROTO : https</li> <li>PATH_INFO : /</li> <li>REMOTE_ADDR : 91.209.196.76</li> <li>REMOTE_PORT : 50751</li> <li>REQUEST_METHOD : quit</li> <li>REQUEST_URI : /</li> <li>SERVER_PORT : 443</li> <li>SERVER_PROTOCOL : HTTP/0.9</li> </ul> http://stackoverflow.com/questions/1499086/poco-c-net-ssl-how-to-post-https-request 2 POCO C++ - NET SSL - how to POST HTTPS request dominolog 2009-09-30T15:59:21Z 2009-12-13T08:25:42Z <p>Hello</p> <p>How to correctly do a POST to HTTPS server and embed the login data correctly. Below code does not return any cookies (in Wininet it does). I wonder how POCO HTTP library handles HTTP redirections?</p> <pre><code>MyApp() { try { const Poco::URI uri( "https://localhost.com" ); const Poco::Net::Context::Ptr context( new Poco::Net::Context( Poco::Net::Context::CLIENT_USE, "", "", "rootcert.pem" ) ); Poco::Net::HTTPSClientSession session(uri.getHost(), uri.getPort(), context ); Poco::Net::HTTPRequest req(Poco::Net::HTTPRequest::HTTP_POST, "/login.php" ); req.setContentType("Content-Type: application/x-www-form-urlencoded\r\n"); req.setKeepAlive(true); std::string reqBody("username=dominolog&amp;password=qwe123&amp;action_login=Log+In\r\n\r\n"); req.setContentLength( reqBody.length() ); //Poco::Net::HTTPBasicCredentials cred("username", "password"); //cred.authenticate(req); session.sendRequest(req) &lt;&lt; reqBody; Poco::Net::HTTPResponse res; std::istream&amp; rs = session.receiveResponse(res); std::string resp; std::vector&lt;Poco::Net::HTTPCookie&gt; cookies; res.getCookies( cookies ); } catch( const Poco::Net::SSLException&amp; e ) { std::cerr &lt;&lt; e.what() &lt;&lt; ": " &lt;&lt; e.message() &lt;&lt; std::endl; } catch( const std::exception&amp; e ) { std::cerr &lt;&lt; e.what() &lt;&lt; std::endl;; } }; </code></pre> http://stackoverflow.com/questions/1895424/audio-files-reading-mixing-and-encoding 0 Audio files reading, mixing and encoding. Nicolas Goy 2009-12-13T02:56:51Z 2009-12-13T02:56:51Z <p>I have an FCGI application that have to stream audio via HTTP. The audio is composed of 1 to 3 files mixed together. Everything is in plain C.</p> <p>I'd like to know what will be a good way or library to read the audio files by 1 second chunks, mix them and encode them as an HTTP friendly format.</p> <p>I need to read the files by chunks because I don't known in advance which files to use, my CGI receive the mixing information in real time, like: play file A, then 2 seconds later, play file B, then 3 seconds later, stop A, play C and D. That's why my idea was to read files according to the playlist, mixing 1 sec, sending them via HTTP and waiting for new info.</p> <p>Of course, the 1 sec value will be a parameter that could be tuned depending on network performances, as the client are iPhone using 3G.</p> <p>My questions, to summarize are:</p> <ul> <li>How to read the audio files (I can provide any format), I know how to read WAV, but I'd like your opinion.</li> <li>How to encore the stream, what is the best format to use.</li> <li>How to mix the streams to have a constant volume of each stream.</li> </ul> http://stackoverflow.com/questions/1895189/saving-just-the-deltas-over-a-network-internet 0 saving just the deltas over a network/internet kjs3 2009-12-13T00:36:17Z 2009-12-13T00:54:28Z <p>Is there currently a filesystem agnostic way to have a file in two locations on a network, change one copy, and have just the changed bits (or more likely blocks) synced to the other copy?</p> <p>It would be awesome to have media files in the cloud, allow another service to read them and me to edit them with their web app, and then only have to save back the delta for time/efficiency.</p> <p>I'm sure people have done this with proprietary in-house methods (Dropbox claims to only need to sync changes rather than the whole file), but is there a more standardized way to do this? This strikes me as something that would be a VERY useful addition to WebDAV if it hasn't been done already.</p> <p>I'm pretty much thinking of ZFS/BTRFS style snapshots/backups but over http or some other web protocol that can handle latency and dropped packets.</p> http://stackoverflow.com/questions/1892161/what-does-result-statuscode-200-in-python-mean 1 What does "result.status_code == 200" in Python mean? brilliant 2009-12-12T03:26:03Z 2009-12-12T16:33:45Z <p>In this little piece of code, what is the fourth line all about? </p> <pre><code>from google.appengine.api import urlfetch url = "http://www.google.com/" result = urlfetch.fetch(url) if result.status_code == 200: doSomethingWithResult(result.content) </code></pre> http://stackoverflow.com/questions/1888503/secure-connection-between-client-and-server 1 Secure connection between client and server Pablo Fernandez 2009-12-11T14:42:37Z 2009-12-12T16:18:32Z <p>Hi,</p> <p>I'm developing a server component that will serve requests for a embedded client, which is also under my control.</p> <p>Right now everything is beta and the security works like this:</p> <ol> <li><p>client sends username / password over https.</p></li> <li><p>server returns access token.</p></li> <li><p>client makes further requests over http with the access token in a custom header.</p></li> </ol> <p>This is fine for a demo, but it has some problems that need to be fixed before releasing it:</p> <ul> <li><p><strike>Anyone can copy a <code>login</code> request, re-send it and get an access token back.</strike> As some users replied this is not an issue since it goes over https. My mistake.</p></li> <li><p>Anyone can listen and get an access key just by inspecting the request headers.</p></li> </ul> <p>I can think of a symmetric key encryption, with a timestamp so I can reject duplicate requests, but I was wondering if there are some well known good practices for this scenario (that seems a pretty common).</p> <p>Thanks a lot for the insight.</p> <p>PS: I'm using Java for the server and the client is coded in C++, just in case.</p> http://stackoverflow.com/questions/1888202/i-need-some-tool-to-view-http-request 1 I need some tool to view Http Request. Roman 2009-12-11T13:52:32Z 2009-12-12T15:04:20Z <p>It's probably some browser plugin or a proxy. </p> <p>For example, I open google.com, and type something and press 'Search'. And I want to see all params of http-request (like, method, domain, params etc)</p> http://stackoverflow.com/questions/1878060/how-do-i-cache-images-on-the-client-for-a-wpf-application 1 How do I cache images on the client for a WPF application? Simon Hartcher 2009-12-10T01:14:24Z 2009-12-12T11:54:12Z <p>We are developing a WPF desktop application that is displaying images that are currently being fetched over HTTP.</p> <p>The images are already optimised for quality/size but there is an obvious wait each time that the image is fetched. </p> <p><strong>Is there a way to cache images on the client so that they aren't downloaded each time?</strong></p> http://stackoverflow.com/questions/1890013/django-python-is-there-a-simple-way-to-convert-php-style-bracketed-post-keys-to 0 Django, Python: Is there a simple way to convert PHP-style bracketed POST keys to multidimensional dict? Berislav Lopac 2009-12-11T18:33:04Z 2009-12-12T10:21:08Z <p>Specifically, I got a form that calls a Django service (written using Piston, but I don't think that's relevant), sending via POST something like this:</p> <pre><code>edu_type[3][name] =&gt; a edu_type[3][spec] =&gt; b edu_type[3][start_year] =&gt; c edu_type[3][end_year] =&gt; d edu_type[4][0][name] =&gt; Cisco edu_type[4][0][spec] =&gt; CCNA edu_type[4][0][start_year] =&gt; 2002 edu_type[4][0][end_year] =&gt; 2003 edu_type[4][1][name] =&gt; fiju edu_type[4][1][spec] =&gt; briju edu_type[4][1][start_year] =&gt; 1234 edu_type[4][1][end_year] =&gt; 5678 </code></pre> <p>I would like to process this on the Python end to get something like this:</p> <pre><code>edu_type = { '3' : { 'name' : 'a', 'spec' : 'b', 'start_year' : 'c', end_year : 'd' }, '4' : { '0' : { 'name' : 'Cisco', 'spec' : 'CCNA', 'start_year' : '2002', 'end_year' : '2003' }, '1' : { 'name' : 'fiju', 'spec' : 'briju', 'start_year' : '1234', 'end_year' : '5678' }, }, } </code></pre> <p>Any ideas? Thanks!</p> http://stackoverflow.com/questions/1872965/get-vs-post-in-ajax 4 GET vs POST in ajax ? Xinus 2009-12-09T10:23:19Z 2009-12-12T09:10:16Z <p>Why are there GET and POST requests in AJAX as it does not affect page url anyway? What difference it makes by passing sensitive data over GET in ajax as the data is not getting reflected to page URL .. </p> http://stackoverflow.com/questions/1891993/why-dont-we-send-binary-around-instead-of-text-on-http 1 Why don't we send binary around instead of text on http? Pierreten 2009-12-12T02:06:00Z 2009-12-12T03:04:22Z <p>It seems that binary would be more compact and can be deserialized in a standard way, why is text used instead? It seems inefficient and web frameworks are forced to do nothing more than screwing around with strings. Why isn't there a binary standard? The web would be way faster and browsers would be able to load binary pages very fast.</p> <p>If I were to start a binary protocol (HBP hyper binary protocol) what sort of standards would I define?</p>