Can a Java application call a DotNet WCF service?
-
Can a java application call a WCF service?If Yes can any one help me how to do it? I have created a WCF service in .net . I have simple java application. I want to use WCF service in Java application..
-
Can a java application call a WCF service?If Yes can any one help me how to do it? I have created a WCF service in .net . I have simple java application. I want to use WCF service in Java application..
It should be possible based on how you are exposing the WCF service. If you expose it over HTTP, you should be able to consume it from any application/any platform.
-
It should be possible based on how you are exposing the WCF service. If you expose it over HTTP, you should be able to consume it from any application/any platform.
Thank you for replying. But I want to know how to read WCF service in Java application.
-
Can a java application call a WCF service?If Yes can any one help me how to do it? I have created a WCF service in .net . I have simple java application. I want to use WCF service in Java application..
Make your WCF service able to return a wsdl and confirm that on the Java application side.
April Comm100 - Leading Live Chat Software Provider
-
Thank you for replying. But I want to know how to read WCF service in Java application.
When you expose your WCF service over HTTP you will be able to extract WSDL and Reference map for your service. You can use it in your JAVA application just like any other classic web service's WSDL and configure it to consume the same. My experience is close to 0 on JAVA so I'm not in a position to help you with the details.