Submit and vote on feature ideas.

Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.

Unmarshalling error with virtual responder

Options
mcguiredev
mcguiredev Posts: 3

Hello,

I have a responder set up to simulate a service our web application depends on. However, when we use the responder in our application workflow we are receiving the following error:

org.springframework.oxm.UnmarshallinFailureException: JAXB unmarshalling exception; nested exception is javax.xml.bind.UnmarshalException: unexpected element (uri:"http://bac.com/xmlschema/cbl/bac024",local:"evaluateArrangementRequestResponse")

The body of the responder is an XML response. We suspect that the problem is with implementing the correct XML schema however I am having trouble achieving this in Parasoft Virtualize. What documentation can I refer to for working with schemas? Thank you.

Tagged:

Comments

  • williammccusker
    williammccusker Posts: 643 ✭✭✭
    Options

    Hi,

    From the error message, it sounds like the issue is that there is an element in the XML response payload that the application doesn't allow. Based on the error message it seems to indicate that perhaps there is an "evaluateArragementRequestResponse" element that shouldn't be present. Is that an element that can be removed or is it the root xml element?

    Are you able to compare the expected response xml, from say recorded traffic or some other capture, to what the responder is sending back?

  • mcguiredev
    mcguiredev Posts: 3
    Options

    That is the root element. The response I am using is a sample from the application in production and that element is definitely there.

  • williammccusker
    williammccusker Posts: 643 ✭✭✭
    Options

    Hi,

    Strange, based on the error from Spring it seems to indicate it doesn't expect that response. Could it be that a different request message was sent and being sent this response instead? You can use the Event Monitoring perspective to review what request was received and what response was sent by a virtual asset. That would help to understand what request Virtualize received when it sent back that response.

    https://docs.parasoft.com/display/VIRT9105/Gaining+Visibility+into+Server+Events

  • mcguiredev
    mcguiredev Posts: 3
    Options

    Thank you. I will try monitoring the traffic.