gracias
a mi no me entra en el beforeExecute; (tengo un showmessage), cuando ejecuta, me dice: invalid url XXX (como dices, no tiene la ruta, ok), que viene en SistemaFacturacionSOAPv12, en defURL.
tengo los siguientes valores en HTTPRIO:
Código Delphi
[-]Port: SistemaFacturacionPruebas
Service: sfService
tag: 0
URL:
WSDLLocation: (una ruta wl archoivo xsd)
Código Delphi
[-]procedure TForm2.HTTPRIO1BeforeExecute(const MethodName: string;
SOAPRequest: TStream);
var
ss:TFileStream;
begin
showmessage('hola');
ss:=TFileStream.Create( 'c:\copiar\1v.xml' , fmCreate);
ss.CopyFrom(SOAPRequest, SOAPRequest.size);
ss.Free;
end;
Voy a seguir comprobando a ver que puede ser.