assertEquals(0, outParams.size());
}
public void testEchoSimpleUserType() throws Exception
{
ServiceFactoryImpl factory = new ServiceFactoryImpl();
Service service = factory.createService(new QName("ANY_SERVICE_NAME"));
Call call = service.createCall();
call.setOperationName(new QName(TARGET_NAMESPACE, "echoSimpleUserType"));
call.addParameter("String_1", Constants.TYPE_LITERAL_STRING, ParameterMode.IN);
call.addParameter("SimpleUserType_2", new QName(TARGET_NAMESPACE, "SimpleUserType"), SimpleUserType.class, ParameterMode.IN);