autoscout24
15 years agoContributor
Compatability Check
Hi Support Team,
We have more than 2500 test cases defined in the soap UI tool and we covered almost all the functional behavior of the our web service method. But when we delivered our tested web service product to our customers, we got a compliant stating that our web service has compatibility issues while integrating with JAVA and PHP client. After the analysis we found that we made something wrong in the namespace naming (Our Web service developed using dot net). So I would like to ask you is there any settings or assertions available in soap UI, which check this compatibility thing.
Would be great if you provide us some idea, so that we can test this compatibility problems before releasing the product.
the below info is for your information
Thank you
Regards
Vijay
We have more than 2500 test cases defined in the soap UI tool and we covered almost all the functional behavior of the our web service method. But when we delivered our tested web service product to our customers, we got a compliant stating that our web service has compatibility issues while integrating with JAVA and PHP client. After the analysis we found that we made something wrong in the namespace naming (Our Web service developed using dot net). So I would like to ask you is there any settings or assertions available in soap UI, which check this compatibility thing.
Would be great if you provide us some idea, so that we can test this compatibility problems before releasing the product.
the below info is for your information
Before the compatibility problem fix:-
<xsd:import schemaLocation="http://localhost:8076/Insertion.svc?xsd=xsd2" />
This is an error, because the namespace attribute is missing.
After the fix:-
<xsd:import schemaLocation="http://localhost:8076/Insertion.svc?xsd=xsd2" namespace="hhttp://localhost:8076//webapi/data/" />
Thank you
Regards
Vijay