fixed a bug

This commit is contained in:
Ziver Koc 2014-02-26 14:27:28 +00:00
parent bfe95652a0
commit c82672ee0d

View file

@ -250,13 +250,13 @@ public class SOAPHttpPage implements HttpPage{
Object[] params = new Object[ m.getInputCount() ];
// Get the parameter values
for(int i=0; i<m.getInputCount() ;i++){
for(int i=0; i<m.getInputCount() ;i++){
WSParameterDef param = m.getInput( i );
if( e.element(param.getName()) != null )
if( e.element(param.getName()) != null ){
params[i] = Converter.fromString(
e.element(param.getName()).getTextTrim(),
param.getParamClass());
i++;
}
}
// Invoke