Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
848 views

Proxy Authentication in POCO Net C++ library

I have been playing with the Poco Net library for some time, it is quite nice. Very convenient and easy to understand. I was able to set a proxy address, and it is saying 407 Proxy authorization ...
3
votes
1answer
1k views

ClickOnce Not Obeying Installation Folder for Localhost

I'm testing a ClickOnce application deployment. I have setup a virtual directory on my machine (running IIS). I have specified http://localhost/SampleApplication as the Installation Folder URL in the ...
1
vote
1answer
101 views

Proxy Authentication Error

HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create("https://www.example.com"); NetworkCredential nc = new NetworkCredential("myname", "mypass"); WebProxy myproxy = new ...
1
vote
2answers
137 views

Client Webservice in java - proxy authentication

I have made a web service client importing a third party wsdl in eclipse. But I got this exception: javax.xml.ws.WebServiceException: Connection IO Exception. Check nested exception for details. ...
1
vote
3answers
8k views

The remote server returned an error: (407) Proxy Authentication Required

I'm getting this error when I call a web service: "The remote server returned an error: (407) Proxy Authentication Required". I get the general idea and I can get the code to work by adding ...
0
votes
0answers
11 views

http proxy with authentication in xulrunner application is prompting with username and password every time

Xulrunner application is able to go through the http proxy, prompting for the username and password. Even though I checked the save credentials check box, Every time this proxy prompt is showing up. ...
0
votes
1answer
35 views

My WCF service is throwing Error when running through a windows service

I have created one WCF service, in which I am reading the msn whether feeds and new feeds through HttpWebRequest and HttpWebResponse using C# coding. When I execute the service in my local PC its ...
0
votes
0answers
63 views

Consuming web service with proxy authentication using objective C?

I have built new iphone app where allow the user to consuming a web service. I follow all the instruction in the below site:- http://www.devx.com/wireless/Article/43209/1954 note: I using the SOAP ...
0
votes
1answer
77 views

WSDL2Objc code crash behind authentication HTTP proxy - Help to understand the crash log

I successfully invoke WS from my App with WSDL2Objc Generated code. I sent my application to colleagues for testing purpose and they reported me that the App crashes whenever try to connect to WS. The ...
0
votes
0answers
83 views

How to use ASIHTTPRequest in code from wsdl2objc for proxy access

this is my first post on SO and i hope to be clear in my problem explanation. I successfully invoke web services from IOS using code generated from wsdl2objc but now my problem is that often the ...
0
votes
0answers
238 views

Apache Reverse proxy with proxy authentication

I have the following setup Box A (192.168.8.180 - running apache reverse proxy) Box B (192.168.8.100:808 - Proxy server to connect to internet) Due to internal reasons, The IP of box A is ...
0
votes
3answers
459 views

add web service reference from behind a proxy server

I'm using vs2010. In a simple console app I try to add a service reference to http://***/service1.asmx , old asmx service. My computer is behind a proxy server, so i get an error : "The remote ...
0
votes
1answer
79 views

Proxy Authorization in actionscript to avoid OS prompt

I have an air app and I want to add proxy-authorization header whenever my client is behind a proxy. I am adding 'proxy-Authoriztion' header in urlRequest headers but still I am getting the OS prompt ...
0
votes
1answer
533 views

Apache HttpClient 4.1 - Proxy Authentication

I've been trying to configure the user and password for proxy authentication from the configured properties while using Apaches HttpComponent's httpclient, but with no success. All examples I have ...
0
votes
1answer
290 views

Resolving a Proxy Authentication Required Issue

I've written a Delphi application which requires communication with a remote web server. I pass INTERNET_OPEN_TYPE_PRECONFIG flag into the InternetOpen function to initialise my app's use of the ...
0
votes
1answer
107 views

Proxy Authentication — HTTP/HTML Details?

My company produces a program that, among other things, needs to connect to the company's servers for updates and e-commerce purposes. We've had this for a long time, but we've never figured out how ...