Author: RobHood | Posted on: 7/23/2009 4:58:20 PM | Views : 1234

Hi all,
I have a wcf service running successfully on my local iis; I can connect and use it from the same machine. When I upload it to a shared web hosting server, I am getting an error when trying to connect to it from the same domain. btw, on my local iis, I have changed the Host file to memic the DNS functionality.
anyway, here are some chuncks of my configuration:
*********** The service *********************
<service name="ITIWCFContentManagement.Language" behaviorConfiguration="serviceBehavior">
<endpoint binding="wsHttpBinding" contract="ITIWCFContentManagement.ILanguage" address="" />
<endpoint binding="mexHttpBinding" contract="IMetadataExchange" address="mex" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8000/ITIContentManagement/Laguage" />
< ...

Go to the complete details ...