I wrote WCF service ( web service ).
I never work with the IIS – and i dont know if i need to change \ config something in the IIS to work with my service.
Someone can help me ?
Thanks
P.S: IIS version is 7.5
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Hosting a service on an IIS Web server is very similar to hosting a traditional Web service (with an .asmx file extension).
Services hosted in IIS require the creation of a file with an .svc file extension. This is done for you automatically if you use the Visual Studio 2008/2010 WCF Service template. The Service.svc file is an XML-based file that must include an @ServiceHost directive.
in the web config you can leave the address attribute blank.
For more info take a look at: http://msdn.microsoft.com/en-us/library/ms733766.aspx