Using a HTTPS Resource in Yahoo Pipes?
Is possible to use a HTTPS: resource in a URLBuilder in Yahoo Pipes? I have used a HTTP: easily, but when I change it to HTTPS: I get an error. ...
Is possible to use a HTTPS: resource in a URLBuilder in Yahoo Pipes? I have used a HTTP: easily, but when I change it to HTTPS: I get an error. ...
How to detect on server side that cookies in browser are disabled? Is it possible? Detailed explanation of question: I am processing HTTP request on the server. I want to set cookie via Set-Cookie header. I need to know at that time whether cookie will be set by client browser or my request to set cookie will be ignored. ...
Is there a way to monitor and capture all outgoing HTTP requests from a machine using C#? I need a browser independent way of logging visited URLs. ...
Description of how a webhook works from http://webhooks.pbwiki.com/ - How do they work? By letting the user specify a URL for various events, the application will POST data to those URLs when the events occur...Among other things, you can: create notifications to you or anybody via email, IRC, Jabber, ... put the data ...
Anyone have an idea where can I look up that information? I'm pretty sure that IE 4 has the "Use HTTP 1.1" parameter on by default and the "Use HTTP 1.1 through proxy connections" off. Got this information from here. I assume the later versions would have "Use HTTP 1.1" on too. How about older versions of IE? How about Firefox, Opera, Sa...
How can I check for a javascript file in user's cache. If he refreshed the page or visits the site after sometime. I need not download that js file again. Does the js files get cleaned up after a site is closed. ...
Hi i am getting path of the context directory in my local system using.. String myfile = application.getRealPath("/"); but the method getRealPath("/") is returning null when application is deployed in war file in www.eatj.com.. can any one provide me possible solution and sample code please... The purpose is i have to create a xml fil...
I have asked this question today already but this time I want to know if I can achieve this via PHP since Javascript wasn't up to it. I have a link to a file on another server. If i provide this link to my users the headers are pushed out to download that file from that server. Is there a way for me to capture those headers and file an...
I just discovered, quite by accident, that a WCF service hosted in a Windows Service ill work with a HTTP binding. It seems to implement its own web server, but I have never seen this capability mentioned anywhere, and can't find any documentation on what the capabilities of the HTTP listener are (in terms of worker threads, etc.) Anyo...
I have a C# console app (.NET 2.0 framework) that does an HTTP post using the following code: StringBuilder postData = new StringBuilder(100); postData.Append("post.php?"); postData.Append("Key1="); postData.Append(val1); postData.Append("&Key2="); postData.Append(val2); byte[] dataArray = Encoding.UTF8.GetBytes(postData.ToString()); ...
Hello all, I can download remote files using PHP but how do you download from a link that pushes headers out? I mean, you can click on some links and it will force a download and present you with dialog box to save the file. How can I download and save this sort of thing using PHP? Any examples or links to tutorials would be great sinc...
I need to track http/url requests & redirects from a windows forms application using C#. It should handle both IE & firefox. Not sure if Fiddler is open-source but if i'm not mistaken, it's written using .NET. Sample codes or online articles on how to listen to http/url requests & redirects will be appreciated. Thanks! ...
We just purchased a webcam to visually monitor some equipment remotely. Currently we are monitoring thorough the intranet only. The software that came with the webcam is installed on the computer that is physically connected to the webcam. From anywhere on the intranet, I can type that computer's address in the browser, for ex., http://1...
When analyzing traffic with a packet sniffer, we are seeing an http response from a weblogic server prior to the completion of the http post to that server. In this case, the jsp page on the server is basically a static page, no logic to do anything with the contents of the post at this time. But why would the server send the response ...
My problem is that sometimes the CPU usage on the webserver is going to 100% (caused by the W3wp.exe) At that moment the website will become "service unavailable" Question: Where can I check from the IIS/HTTPERR logs where the website became "service unavailable"? Can I used Log Parser to identify at which time this is happening? If y...
Hi! In a upcoming project I'm going to write an application in C# which partly has to communicate with a HTTP server. I'm very fond of writing my code TDD-style, and I would just love it if I could mock all of the HTTP requests in my tests. Does any one here know about an easly mockable HTTP client framework? Ps. I usually use Moq for...
I'm looking for a tool / library (preferably .NET based) that does web page record/playback. I want this tool to issue http requests directly instead of automating a browser for performance reasons. Come to think of it, I'm pretty much looking for a recorder that can generate code that uses the WebClient class in .NET. All of the tool I...
I'm looking for a thread pool library in .NET I should able to push about 100.000 tasks, therefore should provide support for "blocking" . (obviously I can't push so many tasks at once, so should support some blocking while adding new tasks, and should block the thread until a new slot is available) Not overly complicated Not so expen...
Hi all! I'm wondering if it's possible (and how) to build a tool to add support for proxy connection to an existing application. Let me explain. Take the CodePlex Client (cpc.exe), it's a command line utility used to connect to CodePlex TFS. I'm behind a proxy and not being able to use it. I'd like to write an application, let's say "P...
The Scenario I am building a custom CMS for a communications application. The users can upload images to the server and then later reference them in posts they write using markdown. Images are stored in a database and referenced with a url of the form images/{id}. A custom image handler retrieves these and sets a far future expires h...