• 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

deserialization ERROR

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
im calling a payments web service from
a stub made from JDeveloper and
im getting the following error:

java.rmi.RemoteException: Runtime exception; nested exception is:
deserialization error: unexpected XML reader state. expected: END but found: START: clearerID

at oracle.j2ee.ws.client.StreamingSender._handleRuntimeExceptionInSend(StreamingSender.java:102)

at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:314)

at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:98)

at com.dps.services.payments.runtime.CheckAuthorizationServicePortSoapBinding_Stub.createCheckAuthorization(CheckAuthorizationServicePortSoapBinding_Stub.java:251)

at com.dps.services.payments.CheckAuthorizationServicePortClient.createCheckAuthorization(CheckAuthorizationServicePortClient.java:359)

at com.dps.services.payments.CheckAuthorizationServicePortClient.main(CheckAuthorizationServicePortClient.java:234)

Caused by: deserialization error: unexpected XML reader state. expected: END but found: START: clearerID

at oracle.j2ee.ws.common.util.exception.JAXRPCExceptionBase.<init>(JAXRPCExceptionBase.java:75)

at oracle.j2ee.ws.common.util.exception.JAXRPCExceptionBase.<init>(JAXRPCExceptionBase.java:71)

at oracle.j2ee.ws.common.encoding.DeserializationException.<init>(DeserializationException.java:61)

at oracle.j2ee.ws.common.encoding.ObjectSerializerBase.deserialize(ObjectSerializerBase.java:224)

at oracle.j2ee.ws.common.encoding.ReferenceableSerializerImpl.deserialize(ReferenceableSerializerImpl.java:140)

at com.dps.services.payments.runtime.CheckAuthorizationServicePortSoapBinding_createCheckAuthorization_RespS_SOAPSerializer.doDeserialize(CheckAuthorizationServicePortSoapBinding_createCheckAuthorization_RespS_SOAPSerializer.java:42)

at oracle.j2ee.ws.common.encoding.ObjectSerializerBase.deserialize(ObjectSerializerBase.java:179)

at oracle.j2ee.ws.common.encoding.ReferenceableSerializerImpl.deserialize(ReferenceableSerializerImpl.java:140)

at com.dps.services.payments.runtime.CheckAuthorizationServicePortSoapBinding_Stub._deserialize_createCheckAuthorization(CheckAuthorizationServicePortSoapBinding_Stub.java:347)

at com.dps.services.payments.runtime.CheckAuthorizationServicePortSoapBinding_Stub._readFirstBodyElement(CheckAuthorizationServicePortSoapBinding_Stub.java:295)

at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:243)

... 4 more

can anyone please help me in this issue.
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If this was my problem I would start by using TCPMON or similar program to capture the full text of the SOAP messages being sent and received. The problem may be obvious when you look at the full text. The AXIS toolkit includes a copy of TCPMON.

Bill
 
To do a great right, do a little wrong - shakepeare. twisted little ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic