I am trying to implement a webservice using Delphi 6. Web service uses soap version 1.2 and my delphi has a soap agent of 1.1. When I tried to import the wsdl, soap header "Autenticacao" is missing in the interface. Provider insists to send the 4 parameters as part of this soap header before calling the web service ? I have attached both my wsdl xml file and the imported pas file ?
Can anyone help me to set the parameters of "Autenticacao" ?
Thanks in advance .
Kind Regards Sinu
.xml file content
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="https://www.nfp.sp.gov.br/ws" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="https://www.nfp.sp.gov.br/ws" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<s:schema elementFormDefault="qualified" targetNamespace="https://www.nfp.sp.gov.br/ws">
<s:element name="Enviar">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="NomeArquivo" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="ConteudoArquivo" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="Observacoes" type="s:string"/>
</s:sequence>
</s:complexType>
</s:element>
<s:element name="EnviarResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="EnviarResult" type="s:string"/>
</s:sequence>
</s:complexType>
</s:element>
<s:element name="Autenticacao" type="tns:Autenticacao"/>
<s:complexType name="Autenticacao">
<s:attribute name="Usuario" type="s:string"/>
<s:attribute name="Senha" type="s:string"/>
<s:attribute name="CNPJ" type="s:string"/>
<s:attribute name="CategoriaUsuario" type="s:unsignedByte" use="required"/>
<s:anyAttribute/>
</s:complexType>
<s:element name="Consultar">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="Protocolo" type="s:string"/>
</s:sequence>
</s:complexType>
</s:element>
<s:element name="ConsultarResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="ConsultarResult" type="s:string"/>
</s:sequence>
</s:complexType>
</s:element>
</s:schema>
</wsdl:types>
<wsdl:message name="EnviarSoap12In">
<wsdl:part name="parameters" element="tns:Enviar"/>
</wsdl:message>
<wsdl:message name="EnviarSoap12Out">
<wsdl:part name="parameters" element="tns:EnviarResponse"/>
</wsdl:message>
<wsdl:message name="EnviarAutenticacao">
<wsdl:part name="Autenticacao" element="tns:Autenticacao"/>
</wsdl:message>
<wsdl:message name="ConsultarSoap12In">
<wsdl:part name="parameters" element="tns:Consultar"/>
</wsdl:message>
<wsdl:message name="ConsultarSoap12Out">
<wsdl:part name="parameters" element="tns:ConsultarResponse"/>
</wsdl:message>
<wsdl:message name="ConsultarAutenticacao">
<wsdl:part name="Autenticacao" element="tns:Autenticacao"/>
</wsdl:message>
<wsdl:portType name="ArquivoNF_Mod1Soap12">
<wsdl:operation name="Enviar">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"><br />Este método deve ser usado para envio do arquivo de Nota Fiscal modelo 1/1A.<br />Os parâmetros de autenticação, informados via SOAP Header, são:<br /><ul><li><b>Usuario</b>: login do usuário que está fazendo a requisição de acordo com o perfil escolhido</li><li><b>Senha</b>: senha do usuário</li><li><b>CNPJ</b>: CNPJ do estabelecimento ao qual o usuário está vinculado e o arquivo pertence</li><li><b>CategoriaUsuario</b>: perfil do usuário informado (1 para contribuintes e 2 para contabilistas)</li></ul><br />Os parâmetros do método são:<br /><ul><li><b>NomeArquivo</b>: nome do arquivo enviado</li><li><b>ConteudoArquivo</b>: conteúdo do arquivo enviado</li><li><b>Observacoes</b>: observações, caso existam, relativas ao arquivo ou envio</li></ul><br /></wsdl:documentation>
<wsdl:input message="tns:EnviarSoap12In"/>
<wsdl:output message="tns:EnviarSoap12Out"/>
</wsdl:operation>
<wsdl:operation name="Consultar">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"><br />Este método é utilizado para consultar o resultado de processamento para um arquivo de Nota Fiscal modelo 1.<br />Os parâmetros de autenticação, informados via SOAP Header, são:<br /><ul><li><b>Usuario</b>: login do usuário que está fazendo a requisição de acordo com o perfil escolhido</li><li><b>Senha</b>: senha do usuário</li><li><b>CNPJ</b>: CNPJ do estabelecimento ao qual o usuário está vinculado e o arquivo pertence</li><li><b>CategoriaUsuario</b>: perfil do usuário informado (1 para contribuintes e 2 para contabilistas)</li></ul><br />O parâmetro do método é:<br /><ul><li><b>Protocolo</b>: número do protocolo a ser consultado</li></ul><br /></wsdl:documentation>
<wsdl:input message="tns:ConsultarSoap12In"/>
<wsdl:output message="tns:ConsultarSoap12Out"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="ArquivoNF_Mod1Soap12" type="tns:ArquivoNF_Mod1Soap12">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="Enviar">
<soap12:operation soapAction="https://www.nfp.sp.gov.br/ws/Enviar" style="document"/>
<wsdl:input>
<soap12:body use="literal"/>
<soap12:header message="tns:EnviarAutenticacao" part="Autenticacao" use="literal"/>
</wsdl:input>
<wsdl:output>
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="Consultar">
<soap12:operation soapAction="https://www.nfp.sp.gov.br/ws/Consultar" style="document"/>
<wsdl:input>
<soap12:body use="literal"/>
<soap12:header message="tns:ConsultarAutenticacao" part="Autenticacao" use="literal"/>
</wsdl:input>
<wsdl:output>
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="ArquivoNF_Mod1">
<wsdl:port name="ArquivoNF_Mod1Soap12" binding="tns:ArquivoNF_Mod1Soap12">
<soap12:address location="https://www.nfp.fazenda.sp.gov.br/ws/arquivonf_mod1.asmx"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
.pas file content
// ************************************************************************ //
// The types declared in this file were generated from data read from the
// WSDL File described below:
// WSDL : C:\Projects\Delphi 6\WBWaiter\arquivonf_mod1.asmx.xml
// Encoding : UTF-8
// Version : 1.0
// (10/02/2011 4:37:33 p.m. - $Revision: 1.9.1.0.1.0.1.9 $)
// ************************************************************************ //
unit arquivonf_mod1;
interface
uses InvokeRegistry, Types, XSBuiltIns;
type
// ************************************************************************ //
// The following types, referred to in the WSDL document are not being represented
// in this file. They are either aliases[@] of other types represented or were referred
// to but never[!] declared in the document. The types from the latter category
// typically map to predefined/known XML or Borland types; however, they could also
// indicate incorrect WSDL documents that failed to declare or import a schema type.
// ************************************************************************ //
// !:string - "http://www.w3.org/2001/XMLSchema"
ConsultarResponse = class; { "https://www.nfp.sp.gov.br/ws" }
Consultar = class; { "https://www.nfp.sp.gov.br/ws" }
EnviarResponse = class; { "https://www.nfp.sp.gov.br/ws" }
Enviar = class; { "https://www.nfp.sp.gov.br/ws" }
// ************************************************************************ //
// ************************************************************************ //
ConsultarResponse = class(TRemotable)
private
FConsultarResult: String;
published
property ConsultarResult: String read FConsultarResult write FConsultarResult;
end;
// ************************************************************************ //
//
// ************************************************************************ //
Consultar = class(TRemotable)
private
FProtocolo: String;
published
property Protocolo: String read FProtocolo write FProtocolo;
end;
// ************************************************************************ //
//
// ************************************************************************ //
EnviarResponse = class(TRemotable)
private
FEnviarResult: String;
published
property EnviarResult: String read FEnviarResult write FEnviarResult;
end;
// ************************************************************************ //
//
// ************************************************************************ //
Enviar = class(TRemotable)
private
FNomeArquivo: String;
FConteudoArquivo: String;
FObservacoes: String;
published
property NomeArquivo: String read FNomeArquivo write FNomeArquivo;
property ConteudoArquivo: String read FConteudoArquivo write FConteudoArquivo;
property Observacoes: String read FObservacoes write FObservacoes;
end;
// ************************************************************************ //
// Namespace :
// binding : ArquivoNF_Mod1Soap12
// service : ArquivoNF_Mod1
// port : ArquivoNF_Mod1Soap12
// ************************************************************************ //
ArquivoNF_Mod1Soap12 = interface(IInvokable)
['{AD787B4C-A2C5-BE98-12B8-A37CF0CEA897}']
function Enviar(const parameters: Enviar): EnviarResponse; stdcall;
function Consultar(const parameters: Consultar): ConsultarResponse; stdcall;
end;
implementation
uses SOAPHTTPClient;
initialization
InvRegistry.RegisterInterface(TypeInfo(ArquivoNF_Mod1Soap12), 'https://www.nfp.sp.gov.br/ws', 'UTF-8');
InvRegistry.RegisterDefaultSOAPAction(TypeInfo(ArquivoNF_Mod1Soap12), '');
RemClassRegistry.RegisterXSClass(ConsultarResponse, 'https://www.nfp.sp.gov.br/ws', 'ConsultarResponse');
RemClassRegistry.RegisterXSClass(Consultar, 'https://www.nfp.sp.gov.br/ws', 'Consultar');
RemClassRegistry.RegisterXSClass(EnviarResponse, 'https://www.nfp.sp.gov.br/ws', 'EnviarResponse');
RemClassRegistry.RegisterXSClass(Enviar, 'https://www.nfp.sp.gov.br/ws', 'Enviar');
end.
I think the easiest solution would be to upgrade to a newer Delphi version, preferably Delphi XE, which has better SOAP support. Delphi 6 isn't really suitable anymore for modern development. Especially the SOAPy part...
As an alternative, you could ask someone with Delphi XE to import the service for you in XE, then migrate the code back to Delphi 6. But I fear you'd have too many incompatibilities if you'd try that.
Yet another solution would include the use of Visual Studio to create a client proxy for your Delphi application. This happens to be a solution I had to choose in the past for some project. You would use C# to create a COM-enabled assembly which you can call from your Delphi application. This assembly then executes the calls to the web service. It's an irritating work-around but when you get it working, it works quite nice too.