• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

JAX WS CLIENT program error -SOAP message formation

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I have a jax ws client program which is working fine and i receive the response when invoked from multiple machines...However when invoked from one particular machine i get the following error:

Transaction Status Status : Transaction failed, Message : Exception has occured
Exception occured XML reader error: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[25,15]
Message: Open quote is expected for attribute "{1}" associated with an element type "border".
INVOKING FROM CLIENT PROGRAM---Status : Transaction failed, Message : Exception has occured.

Please suggest..

Thanks
 
Ranch Hand
Posts: 2198
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
Take a look at the request sent and the response received by the client that has the problem using WireShark, SOAP Membrane or some other TCP monitor.
From the information you have supplied, there seem to be something wrong with the response message.
Best wishes!
 
swetha manjunath
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Ivan,

The request does not hit the server. i am unable to view the soap message formed at the server. I use the handlerchain annotation to log the SOAP messages at the server.However im not sure how to log soap messages formed at the client side..

Thanks in advance.

 
Ivan Krizsan
Ranch Hand
Posts: 2198
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
You can use a handler to log SOAP messages on the client side too!
In fact, I think you can use the same handler - perhaps only minor modifications needed.
Best wishes!
 
reply
    Bookmark Topic Watch Topic
  • New Topic