Click here to Skip to main content
15,906,467 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to develop a WCF service which works on a Windows Server SQL Express R2 remote machine (cloud).
How to design that WCF service?
I want to access that service from local machine how to access that service?

I refer the link : http://msdn.microsoft.com/en-us/library/ff650619.aspx[^]
It doesn't satisfied my requirement.

Please guide me!!
Posted
Updated 16-Feb-12 1:01am
v2
Comments
André Kraak 16-Feb-12 7:02am    
Edited question:
"Treat my content as plain text..." option disabled.
Corrected link

1 solution

I have done a project in WPF which use WCF services.
It goes like following.
1. Add a new project as WCF Class library in a solution.
2. Add 1 WCF service.
3. Write function in Service.svc.cs file.
4. add function in Interface page(IService.cs) with Service and Operation Contract.
5. Build the service
6. Publish service.
7. Host it on IIS. (.Net framework 4 is required)
8. Give this service reference to your windows/ WPF project. and use function wrote in service.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900