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> <wsdlortType name="countrySoap"> <wsdlperation name="GetCountryByCountryCode"> <wsdl:documentation>Get country name by country code</wsdl:documentation> <wsdl:input message="tns:GetCountryByCountryCodeSoapIn" /> <wsdlutput message="tns:GetCountryByCountryCodeSoapOut" /> </wsdlperation> <wsdlperation name="GetISD"> <wsdl:documentation>Get International Dialing Code </wsdl:documentation> <wsdl:input message="tns:GetISDSoapIn" /> <wsdlutput message="tns:GetISDSoapOut" /> </wsdlperation> ... </wsdlortType>\[/code\]....Now I want to restrict access to this part of my WSDL :\[code\]<wsdlperation name="GetISD"> <wsdl:documentation>Get International Dialing Code </wsdl:documentation> <wsdl:input message="tns:GetISDSoapIn" /> <wsdlutput message="tns:GetISDSoapOut" /></wsdlperation>\[/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?