For my project at school I must create some SOAP web services with WCF in a C# app, in order to make it interact with a Java EE app.
I can’t find any tutorial telling me how to do this with WCF. What should I do?
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.
Just create a WCF project in Visual Studio, and write all the code in C#.
The actual problem you’re going to have is making SOAP calls from Java EE.
The WCF service will be hosted in IIS not a Windows Service hosting WCF.
Tutorials on how to get started with WCF:
http://msdn.microsoft.com/en-us/library/dd936243.aspx
Enjoy!