Running a .Net exe over a particular port number.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Does anyone know how to run a .Net exe using a particualr port number to
connect to a web service? How do you do this programmatically.

Thanks
 
You set the Url of the proxy, can't you just specify the port as part of the
Url?

I'm assuming here you have code access and can recompile your app. If not,
then you will have to find whatever configuration files your application is
running
from and update the Url there.
 
Thanks

But I am calling a web service via a proxy within my executable. I have the
url with port number specified for the web service I am trying to call which
works fine when not using the proxy. How do I call the web service via a
proxy? To connect to the proxy I am supposed to use a particular port number
and then the proxy will use a different port number again to call the web
service?

Thanks
 
Back
Top