So will sending the request the attribute needs to be prefixed with urn. like: urn:Destination_Objectabc</urn:Destination_Object>
If we do not send urn prefix then corresponding attribute cannot be fetched.
Is it possible to use same WSDL and send without prefix urn in the request.
Is there any setting which I can make.
You can edit the WSDL and change the below setting as “unqualified” <xsd:schema elementFormDefault=“qualified” targetNamespace=“urn:Integration_Request_R8A”>
I will remove the namespace from your WSDL file at both side. i.e. request/response.
I meant the same. I mentioned we can change the namespace(Prefix).
From your first message, i could get that you want to remove the prefix and send the request? Am I correct?
If such is the case then while sending the request you can use a regular expression and remove the prefix from the document and send it.
Thanks for the input.
When the WSDL is imported to designer, it has created the i/p and o/p with prefix.
When customer sends the request they will not send the prefix.
So in my flow service, request will not reach if they do not send with prefix.
What step do I need to add in flow service to achieve this.
Is there a way to handle with and without prefix with the same WSDL.
When the client has shared the WSDL with Namespace then they should send all the requests with the namespace is there any specific reason they are not doing so?
Anyways what you can try is create a duplicate document for input with similar structure (Remove Namespace prefix for this document) as that of the generated one(with Namespace) and include it into the connector/service in place of the default generated one.
I am not sure if this works but you can give it a try and update us.
So Conclusion is client should send the prefix with the request if they want to use the same WSDL or they should change the WSDL tag to “unspecified” if they do not want prefix.