D
D
Dobr2017-12-06 07:28:50
Java
Dobr, 2017-12-06 07:28:50

Is there a php SoapClient equivalent in java?

Hello. Unfortunately, I couldn't find a simple enough solution to my problem. It is necessary to receive data from 1C via SOAP.
This is very easy to do in php:

$soap  = new SoapClient("http://localhost/db01/ws/ORG?wsdl",[
  'login' => 'user',
  'password' => 'userpass',
  'trace' => false,
  'exceptions' => true,
  'cache_wsdl' => WSDL_CACHE_NONE
]);
try {
  $res = $soap->$func($params);
}

But I need to get and process data in Play Framework.
Is there a similarly simple SOAP client for Java?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
E
Eugene, 2017-12-06
@Dobr

I'm not implying anything, but...

M
Mikhail Osher, 2017-12-06
@miraage

https://stackoverflow.com/questions/15948927/worki...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question