Hi Sergey,
I am trying to have a SOAP service calling a RESTFUL service, both deployed
within the same CXF servlet.
What is the best or most efficient way to invoke the RestFul service from
the SOAP service?. I want the RestFul service to behave as if its being
called from an external source so that the invokers etc are all called as
normal.
I'm trying the following call but it doesn't seem to be invoking the
service. Both the SOAP and REST service are within the same Servlet Context.
WebClient wc = WebClient.create(
"
http://localhost:8080/deploy-mms-billing/rest/function/mmsBilling",
"test", "test", null);
Regards
Kiren