I think I saw something like
int.class
example:
params.addElement(new Parameter("messageType", int.class, messageType,
null));
Someone correct me if I am wrong.
Abraham
> -----Original Message-----
> From: Jeremy Levy [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, November 15, 2001 2:29 PM
> To: [EMAIL PROTECTED]
> Subject: Parameters types
>
>
> Okay, I am very new to SOAP and this is probably a very stupid
> question but
> I have spent the better part of the day trying to figure this out...
>
> What is the java.lang type of an int? According to the docs the
> SOAPMappingRegistry includes support for all primitives including int...
> here is my code
>
> ...
>
>
> MAC is a String
> messageType is a int
>
> params.addElement(new Parameter("MAC", String.class, MAC, null)); //this
> line works fine
>
> params.addElement(new Parameter("messageType", Integer.class, messageType,
> null));
> ^
> doesn't like that....
>
> Thank you
>
> Jeremy
>
>