I have java code parsing wsdl . For a complex wsdl i need to make some change to wsdl to parse . want to know like the wsdl i am using is a standard one
in wsdl <definitions> i have something defined as below xmlns:mtyp="http://abc.com/ab/xyz/2005/02/ws/schema"
Have defined something like this in message <message name="GetMyRequest"> <part name="request" element="mtyp:GetMyRequest"/> </message>
In schema for GetMyRequest is something complex defined this way
would like to know if data type is complex do we need to specify in schema as "mtyp:MyRequestType" . or can directly need to be given as ="MyRequestType". which is the standard way ? becuase the code i am using should parse all the standards wsdl . so i want to what is standard convention so that i can decide i should change my code or not .