If a web service is written in .net using WCF, can a java client use it without an issue or are there problems with returning specific types/collections like List ?
Would using guava (which I believe is a set of types) help?
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.
This will depend on what binding you are using on the WCF service. You should expose an interoperable binding endpoind such as
basicHttpBindingorwsHttpBindingso that a Java client can consume it. If you use a proprietary binding such asnetTcpBindingonly .NET clients can consume your service.So I invite you to go ahead and read about the different available bindings that you could use in WCF.