Link to home
Start Free TrialLog in
Avatar of marianatagliaferro
marianatagliaferro

asked on

WEB SERVICE IN VB.NET AND JAVA

Hi All, I have implemented my webservice using java and using
Axis 1.3. The client is developed using .Net 2005 (vb.net).

basically the client sends to the server a string.

my problem is that sometimes. i get this error when i'm sending the string......

org.xml.sax.SAXParseException: Character reference "&#x0" is an invalid XML character.

 i don't know which character cannot reconize.....
 
Avatar of nayernaguib
nayernaguib
Flag of Egypt image

I think your problem is that the string you pass to the web service sometimes contains invalid characters.
You probably need to encode the string to guarantee that no invalid characters will be sent. Base64 encoding is one good choice.

_______________

  Nayer Naguib
Avatar of marianatagliaferro
marianatagliaferro

ASKER

do you have an example to this encode in vb.net and decoded in java
ASKER CERTIFIED SOLUTION
Avatar of nayernaguib
nayernaguib
Flag of Egypt image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you very much!!!!! it worked perfectly.... :)