From c5eeaadf18aaef687664569b8372c9801360abd9 Mon Sep 17 00:00:00 2001 From: inoussa Date: Thu, 1 Jul 2010 22:30:37 +0000 Subject: [PATCH] fix wsdl operation attributes parsing when there are multiple attributes. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1242 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- wst/trunk/ws_helper/wsdl_parser.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wst/trunk/ws_helper/wsdl_parser.pas b/wst/trunk/ws_helper/wsdl_parser.pas index e3daa428a..d38da8987 100644 --- a/wst/trunk/ws_helper/wsdl_parser.pas +++ b/wst/trunk/ws_helper/wsdl_parser.pas @@ -1102,7 +1102,7 @@ var ) ); tmpCrs.Reset(); - if tmpCrs.MoveNext() then begin + while tmpCrs.MoveNext() do begin nd := (tmpCrs.GetCurrent() as TDOMNodeRttiExposer).InnerObject; if AnsiSameText(nd.NodeName,s_style) then begin SymbolTable.Properties.SetValue(AOp,s_soapStyle,nd.NodeValue);