How to consume wcf service in java?

I have a .net restful wcf service. I want to know how I can consume in java. Please help me.

thank

+3
source share
2 answers

Calling the WebService Rest Guide

This is a link to a tutorial that I wrote with source code that uses apache http to request a calm webservice

+3
source

No matter what technology is used to implement the REST-based service, assuming it uses HTTP, you should use something like http://hc.apache.org/httpcomponents-client-ga/tutorial/html from the Java client /

0
source

Source: https://habr.com/ru/post/1788925/


All Articles