• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

SOAP and java.net.SocketException

 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am executing a client-server application that uses SOAP for exchanging data. The client recently has been receiving the following SOAPException

[SOAPException: faultCode=SOAP-ENV:Client; msg=Connection reset by peer: socket write error; targetException=java.net.SocketException: Connection reset by peer: socket write error]


The exception message i.e. Connection reset by peer: socket write error is the message for which I need possible scenarios in which case these exceptions arise. The most intriguing part is that a Socket has not been explicitly declared anywhere in the client or server code. So can anyone help me out with it? Any kind of help will be most welcomed.
 
Ranch Hand
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think that it just means that there has been a problem writing to the underlying socket and this has arisen because the other side of the connection has killed the socket.
 
reply
    Bookmark Topic Watch Topic
  • New Topic