n1 Lucaino
Andy
-Original Message-
From: Luciano Fiandesio [mailto:[EMAIL PROTECTED]
Sent: 26 May 2004 10:09
To: [EMAIL PROTECTED]
Subject: Axis tutorial published
Hi,
a couple of weeks ago a discussion about Axis best
practices was started. Also a wiki page has been
opened on the subje
Nice tutorial!
Could you expand on it and discuss how to create custom "typeMappings" in
the deploy.wsdd file.
Specifically, how would you create a typeMapping to correct the following
error:
No deserializer defined for array type
{http://www.w3.org/2003/05/soap-encoding}string
Thanks,
John M.
HI!
You can either generate a proxy with the WSDL2Java tool or do it dynamically like this:
service = new Service();
call = (Call)service.createCall();
call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE);
call.setTargetEndpointAddress(new URL(urlString));
call.setOperationNa