Forum Discussion

coolani's avatar
coolani
New Contributor
13 years ago

Need help !!

Hello all
I am new to soapui world and trying to test the web service which gives citizenship verification information in response by giving SSN and name in request.But the response I am getting for some portion of test data

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
<soap:Header>
<Action xmlns="http://www.w3.org/2005/08/addressing">some URL </Action>
<MessageID xmlns="http://www.w3.org/2005/08/addressing">urn:uuid:21ed44d6-c849-4211-8a4c-0233f6b4e83c</MessageID>
<RelatesTo xmlns="http://www.w3.org/2005/08/addressing">uuid:76a43e46-133c-406c-9e82-a2adc4d90fe0</RelatesTo>
</soap:Header>
<soap:Body>
<exch:SSACompositeResponse xmlns:exch=".............">
<ssac:SSACompositeIndividualResponse xmlns:ssac="........................">
<ssac:ResponseMetadata>
<ssac:ResponseCode>HX005001</ssac:ResponseCode>
<ssac:ResponseDescriptionText>Unexpected Exception Occurred at Trusted Data Source</ssac:ResponseDescriptionText>
</ssac:ResponseMetadata>
<ssac:PersonSSNIdentification>118541701</ssac:PersonSSNIdentification>
</ssac:SSACompositeIndividualResponse>
</exch:SSACompositeResponse>
</soap:Body>
</soap:Envelope>

Can anyone tell me why am I getting such response like "Unexpected Exception Occurred at Trusted Data Source" and why for some test data not for all test data?

Thanks !!

3 Replies

  • nmrao's avatar
    nmrao
    Icon for Champion Level 1 rankChampion Level 1
    Hi,

    May be it is not able to find the information that is sent in the request. Usaually, response contains code and the reason when the request did not meet the criteria which you are seeing in your response. There can be response code and message for succesfull response as well based on the service implementation.

    You may try with correct data in the request and it should give you correct details, other wise it could be an issue in the service, please talk to your service proivder or concerned person who hosted the service.

    Hope this helps.

    Regards,
    Rao.
  • Hi,

    Though, from your post it is visible that you have an error in your response, which itself is not complete.Not exactly, but similar issue occured for me, when only 25% of response data was visible in the GUI. As I used to save all my responses, I notice that all expected response data was available in the saved file.Still i am not able to figure it out the reason for the same, and opened up a case in the forum.My reason for this behaviour says that, could be GUI resposne may not be able to handle big volume of data & thus has its limitation on how much to show from GUI response screen.

    In your case,any trace/logs from the application also serves good purpose,if error is user defined.Anyhow, if it occurs for few service alone, as already suggested, you need to be in touch with the service provider.

    Thanks
    Gurpreet
  • coolani's avatar
    coolani
    New Contributor
    Thanks a lot guys !! I contacted the service provider and it seems like there is an issue in the service itself. Service provider will get back to me as soon as they find out the problem. I will post the solution when I get one.