You've already forked lazarus-ccr
SOAP : the "Body" element must be namespace qualified.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4247 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -76,13 +76,18 @@ end;
|
|||||||
{ TSOAPFormatter }
|
{ TSOAPFormatter }
|
||||||
|
|
||||||
procedure TSOAPFormatter.BeginCallResponse(Const AProcName,ATarget:string);
|
procedure TSOAPFormatter.BeginCallResponse(Const AProcName,ATarget:string);
|
||||||
|
var
|
||||||
|
locOldStyle : TSOAPDocumentStyle;
|
||||||
begin
|
begin
|
||||||
if ( FCallContext = nil ) then
|
if ( FCallContext = nil ) then
|
||||||
FCallContext := TSimpleCallContext.Create();
|
FCallContext := TSimpleCallContext.Create();
|
||||||
Clear();
|
Clear();
|
||||||
Prepare();
|
Prepare();
|
||||||
WriteHeaders(FCallContext);
|
WriteHeaders(FCallContext);
|
||||||
|
locOldStyle := Style;
|
||||||
|
Style := Document;
|
||||||
BeginScope('Body',sSOAP_ENV,'',stObject,asNone);
|
BeginScope('Body',sSOAP_ENV,'',stObject,asNone);
|
||||||
|
Style := locOldStyle;
|
||||||
BeginScope(AProcName + 'Response',ATarget,'',stObject,asNone);
|
BeginScope(AProcName + 'Response',ATarget,'',stObject,asNone);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user