I have a problem with i create a new step: Test request.
the steps are:
- the tool generate a automatic request (xsd).
- the endpoint is
http://localhost/... ( mockservice)
- submit request
- response --> OK
- modify endpoint to specific url :
http://maq:port/.. ( web service )
- submit request
- response --> fault
- modify xsd request by xml request
- submit request
- response --> OK
the problem maybe because some nodes are very complex, wsdl example:
...
<xs:element maxOccurs="unbounded" name="aplicaciones" nillable="true" type="ax21:Aplicacion" />
...
<xs:element name="Aplicacion" type="ax21:Aplicacion" />
<xs:complexType name="Aplicacion">
<xs:sequence>
<xs:element name="idAplicacion" type="xs:long" />
<xs:element maxOccurs="unbounded" name="nodos" nillable="true" type="ax21:Concentrador" />
<xs:element name="nombreAplicacion" nillable="true" type="xs:string" />
<xs:element maxOccurs="unbounded" name="tareas" nillable="true" type="ax21:Tarea" />
<xs:element name="url" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
thanx alot!!!
Javier