fixed a bug
This commit is contained in:
parent
bfe95652a0
commit
c82672ee0d
1 changed files with 3 additions and 3 deletions
|
|
@ -250,13 +250,13 @@ public class SOAPHttpPage implements HttpPage{
|
||||||
Object[] params = new Object[ m.getInputCount() ];
|
Object[] params = new Object[ m.getInputCount() ];
|
||||||
|
|
||||||
// Get the parameter values
|
// 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 );
|
WSParameterDef param = m.getInput( i );
|
||||||
if( e.element(param.getName()) != null )
|
if( e.element(param.getName()) != null ){
|
||||||
params[i] = Converter.fromString(
|
params[i] = Converter.fromString(
|
||||||
e.element(param.getName()).getTextTrim(),
|
e.element(param.getName()).getTextTrim(),
|
||||||
param.getParamClass());
|
param.getParamClass());
|
||||||
i++;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Invoke
|
// Invoke
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue