Answer the question
In order to leave comments, you need to log in
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);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question