NealWalters
NealWalters

Reputation: 18167

Specify a Proxy in config vs code for a WSE/SOAP web service

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.

Upvotes: 0

Views: 510

Answers (1)

Wim
Wim

Reputation: 12082

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

See an example here.

Upvotes: 1

Related Questions