Add Authorization role to access an XML(WSDL) file by using xsl

HarryH

New Member
I have a WSDL and I want to add permission on it that all people can't see all the methods on it:\[code\] <wsdl:types> ... </wsdl:types> <wsdl:message> ... </wsdl:message> <wsdl:portType name="countrySoap"> <wsdl:operation name="GetCountryByCountryCode"> <wsdl:documentation>Get country name by country code</wsdl:documentation> <wsdl:input message="tns:GetCountryByCountryCodeSoapIn" /> <wsdl:output message="tns:GetCountryByCountryCodeSoapOut" /> </wsdl:operation> <wsdl:operation name="GetISD"> <wsdl:documentation>Get International Dialing Code </wsdl:documentation> <wsdl:input message="tns:GetISDSoapIn" /> <wsdl:output message="tns:GetISDSoapOut" /> </wsdl:operation> ... </wsdl:portType>\[/code\]....Now I want to restrict access to this part of my WSDL :\[code\]<wsdl:operation name="GetISD"> <wsdl:documentation>Get International Dialing Code </wsdl:documentation> <wsdl:input message="tns:GetISDSoapIn" /> <wsdl:output message="tns:GetISDSoapOut" /></wsdl:operation>\[/code\]it means: I want to CLient-X has this role for seeing this method but Client-Y doesn't have enough role for seeing this method?How can I use this issue in .xslt file by using xsl language?
 
Back
Top