Questions tagged as 'wsdl'

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

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

Generate classes with XSD or import WSDL [ANS / TISS]

ANS provides the .XSD , and .WSDL files for TISS implementation. S and I generate the code by .XSD, I have the classes structured correctly. Example: namespace TissV3 { class Cabecalho { ... } class...
asked by 11.06.2018 / 16:29
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
3
answers

Custom tool warning: Can not import wsdl: portType

I can not use ServiceReference after successfully importing. After executing the import, writing the class and using its methods in the compilation occurs the Warnings: Warning 1 Custom tool warning: Cannot import wsdl:portType Det...
asked by 03.02.2014 / 19:19
2
answers

Error generating files / classes from a Web Service with Netbeans

I'm trying to generate files / class from a Web Service and bring it to my Java project. For this I am using Netbeans IDE 8.0.2 At first I'm getting the message "Uma classe/interface com o mesmo nome já está sendo usada. Use a personali...
asked by 13.01.2015 / 20:21
1
answer

SIGEP WSDL problem

I'm a time with a project of the post office, I had to make a connection with the webservice SIGEP WEB, I found something already in development in, was using the same and everything OK, from one day to the other the same stopped working , I mad...
asked by 21.01.2016 / 19:47
1
answer

Delphi class with optional integer field

The question is: how should I build my TPESSOA class so that the _id_city field can be null. Database Create Table PESSOA ( ID INTEGER NOT NULL, NOME VARCHAR(100) NOT NULL, ID_CIDADE INTEGER) No Dephi TPESSOA = Class(TRemotable)...
asked by 03.11.2015 / 12:23
1
answer

Webservice authentication mechanism SOAP Java

I'm building a Java webservice (wsdl) that will be consumed via SOAP. I need to implement a form of authentication in each webservice method so that every request is tested if the source is someone with permission. I tried to follow this tut...
asked by 11.01.2017 / 16:12
0
answers

Define custom parameters SoapClient PHP

I'm consuming an external webservice via PHP and it requests authentication in a different way, the login and password has to be passed inside the XML. But I'm not able to authenticate. The call to the service is being created as follows. p...
asked by 19.08.2015 / 15:37