Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problems creating SAAJ object model in SOAP request

I have a JMeter test case which contains SOAP requests with various files attached to these. So same request is sent with different files. It is working properly with some files, but it gives HTTP 500 error code with following message:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><soap:Fault><faultcode>soap:Client</faultcode><faultstring>Problems creating SAAJ object model</faultstring></soap:Fault></soap:Body></soap:Envelope>

I checked raw request and found it is correct syntactically, only difference is the file, which is attached in Base64 encoded format.

like image 534
plaidshirt Avatar asked Jan 29 '18 14:01

plaidshirt


1 Answers

From the elements you provide it is very hard to say anything.

But I guess that there is some kind of relation between uploaded file and the request content which leads to the server error.

Unless you show the server logs, we cannot help more.

Another option is that your request uses an incorrect header or parameter in relation to the attached file. To further investigate you should show your request (GUI + Content).

like image 69
UBIK LOAD PACK Avatar answered Dec 25 '22 05:12

UBIK LOAD PACK