Questions tagged as 'soap'

5
answers

SOAP is safer than REST?

When implementing online billing software, I asked the responsible company if the REST version of the API existed. The answer was that they did not use REST because of security, that SOAP would be safer because it is software that handles fin...
asked by 20.01.2017 / 16:33
2
answers

What is Web Services Description Language (WSDL)?

Related to: Differences in Web Service Types: SOAP, REST, XML What is WSDL? What is your relationship with REST and SOAP? Where can I find the WSDL documentation?
asked by 15.08.2014 / 14:43
1
answer

What is SOAP technology?

I've been following a project (a college news site) where multiple languages (PHP to build the site where the news is placed and android, ios, c #, where they will be accessed by the site developers as per users) are used to do almost the same a...
asked by 04.10.2015 / 19:45
1
answer

Connect webservice with SOAP in PHP

I am trying to connect to the webservice but it is not working. The wsdl address is link PHP code: <?php if (!class_exists('SoapClient')) { die ("You haven't installed the PHP-Soap module."); } $clientSoap = new SoapClient(...
asked by 10.02.2015 / 00:13
1
answer

Webservice delphi soap with authentication

I'm using delphi to read a webservice from an insurance company. It turns out that it comes in XML format in SOAP. I make the WSDL import get the methods. But to connect to the Web Service I have to send a token that I do not know how t...
asked by 19.11.2015 / 10:53
2
answers

What is the difference between SOAP 1.1 and SOAP 1.2?

When I use the SOAP UI ( link ) and refer to my asmx webServices, it always creates the operations interface for SOAP 1.1 and 1.2. And I do not realize what the practical difference is. For me the result is the same. What's different about SO...
asked by 28.07.2014 / 14:04
2
answers

Understanding documents from a SOAP web service

I'm working with a system that provides web service integration, more precisely SOAP. It provides me with some URLs, which I understand, access, describe, and document the entire system . They are: link link link The docu...
asked by 12.04.2017 / 22:16
1
answer

Error in SOAP communication. Lack of tag termination character in XML

It took some time to implement communication with SOAP WebServices in legacy applications written in Delphi 6 . The WebServices that I needed to communicate with these systems were written in Delphi (newer versions with unicode) and C # (asa...
asked by 25.04.2015 / 01:59
1
answer

WCF SOAP request in PHP

I'm trying to consume a webservice from a shipping company. However, PHP is not mounting the request correctly. PHP request: <?php $client = new SoapClient('http://data.../bidservice.svc?wsdl', [ 'soap_version' => SOAP_1_1,...
asked by 31.08.2017 / 14:09
1
answer

How to consume a WebService SOAP with AngularJS?

My current application does the following process Angular <-> PHP <-> service.wsdl I discovered the possibility of deleting this PHP bridge, consuming directly the WebService SOAP, using angular-soap . But when...
asked by 25.11.2015 / 19:54