--
> From: Andreas Veithen [mailto:[email protected]]
> Sent: quinta-feira, 26 de Maio de 2011 12:53
> To: [email protected]
> Subject: Re: Problem using byte[] in POJO web service
>
> I remember that there were a couple of issues with base64binary data
> in ADB
: [email protected]
Subject: Re: Problem using byte[] in POJO web service
I remember that there were a couple of issues with base64binary data
in ADB that have been fixed not so long ago. What version of Axis2 are
you using?
Andreas
On Mon, May 23, 2011 at 18:48, Mario Oliveira Rodrigues
I remember that there were a couple of issues with base64binary data
in ADB that have been fixed not so long ago. What version of Axis2 are
you using?
Andreas
On Mon, May 23, 2011 at 18:48, Mario Oliveira Rodrigues
wrote:
> I have defined a web service like
>
>
>
> // the service
>
> public clas
[mailto:[email protected]]
Sent: quarta-feira, 25 de Maio de 2011 13:19
To: [email protected]
Subject: RE: Problem using byte[] in POJO web service
//in any case the schema your wsdl supports should reflect that ArrayOfBytes
complexType element e.g
http://www.w3.org/2001/XMLSchema
[email protected]
To: [email protected]
Subject: RE: Problem using byte[] in POJO web service
Date: Wed, 25 May 2011 08:59:19 +
Update, if the byte[] is a parameter of the web service method, everything
works fine.
So the problem is only if the byte[] is insid
Update, if the byte[] is a parameter of the web service method, everything
works fine.
So the problem is only if the byte[] is inside other POJO.
Best regards,
Mário Rodrigues
Declaração:
A informação contida nesta mensagem, e os ficheiros anexos, é privilegi
I have defined a web service like
// the service
public class MyService{
public void handleMessage(Message msg) {
…
}
}
// message class
public class Message {
byte data[];
….
}
Then I have generated the wsdl using maven2 plugin.
The problem is that I’m