Hello, I am using CXF 2.2.5 and I am seeing an interesting behavior from some of the client code. In the SOAP Envelope request, the client is able to specify a completely random namespace and the request header still goes through, the server is able to fulfill the response and return correct values. Now, is there a way to enforce the correct namespace to be used? For example, here is a sample request:
<?xml version='1.0' encoding='UTF-8'?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" *xmlns:nsXXXX="**http://tempuri.org* <http://tempuri.org/>*">* <SOAP-ENV:Header> <password>*****</password> <username>test</username> </SOAP-ENV:Header> <SOAP-ENV:Body> *<getStudent xmlns="**http://student.test.com/services/v01*<http://student.test.com/services/v01> *">* <request> <studentId>12345</studentId> </request> </getStudent> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Now, the confusing part for me is the 'xmlns:nsXXXX=http://tempuri.org' (where XXXX is some random 4 digit number), because ideally the request should be generated like this: <?xml version='1.0' encoding='UTF-8'?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" *xmlns:v01="http://student.test.com/services/v01**">* <SOAP-ENV:Header> <password>*****</password> <username>test</username> </SOAP-ENV:Header> <SOAP-ENV:Body> *<v01:getStudent**>* <*v01:*request> <*v01:*studentId>12345</*v01:*studentId> </*v01:*request> </*v01:*getStudent> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Is there a way to enforce that somehow? Thank you. Arik.
