alansiqueira27
alansiqueira27

Reputation: 8506

Which port to open by a WCF service?

I created a WCF service, and its working if I type this url: http://192.169.1.103/MyService/SomeService.svc

That IP is from my intranet.

It also work if I change that IP to localhost.

Unfortunately, I guess I need to port foward, because if I change that IP to my internet IP, it doesn't work. =(.

I have a router and a modem-router. (So thats 2 routers =x). But what port do I have to open? I dont understand this part.

Edit: I have a few knownledge in port foward. But It's the main problem.

Upvotes: 1

Views: 4190

Answers (2)

Josh
Josh

Reputation: 44906

Currently you are serving it up over port 80 on your local computer. You can port forward to that, but it probably isn't a great idea for lots of reasons.

Upvotes: 2

empi
empi

Reputation: 15881

Standard http port is 80, if you use https then it would be 443.

Upvotes: 2

Related Questions