tags:

views:

67

answers:

1

Is there a way to specify a WSE3 proxy in the config file instead of code. I figured out how to get it working in code as follows:

valservice.Proxy = new System.Net.WebProxy("http://10.192.xx.xx:8080", true);

Details: I have a WCF wrapper web service that is calling a WSE3 external vendor web service. The WSE3 code was working fine when called from a form, but not when running under IIS as another web service.

+1  A: 

Any reason why you cannot use the normal appSettings for this?

See an example here.

Wim Hollebrandse
No, I was just guessing that there was a more standardized way to do it. In WCF, there seem to be XML for everything, but maybe not with WSE3?
NealWalters
So the Proxy was indeed the connectivity issue as per your previous question then, I take it?
Wim Hollebrandse
Wim - Yes - http://stackoverflow.com/questions/1752646/unable-to-connect-to-the-remote-server/1757012#1757012 I put in my own answer there.
NealWalters