how do i enable remote access for WCF services?
WCF and WF
1
Posts
1
Posters
4
Views
1
Watching
-
hi i am using vs.net 2012 to build a simple rest wcf application. i reference the tutorial from http://www.topwcftutorials.net/2013/09/simple-steps-for-restful-service.html[^] and managed to get it to work locally. i am now trying to configure it to allow me to use my browser on the same network to access the service with a specific port. could anyone give some guidance? i tried to search about it and tested it but always end up with a http error, the request hostname is invalid error when i tried to put
<host>
<baseAddresses>
<!--<add baseAddress="http://192.168.1.10:54029/Test\_WCF\_App1/ProductRESTService.svc"/>-->
<add baseAddress="http://192.168.1.10/Test\_WCF\_App1/ProductRESTService.svc"/>
</baseAddresses>
</host>into my web.config