I have a XML(WSDL) file that I want to manage it by using .XSLT file. I want to set IP permission in my .XSLT file for seeing some part of WSDL that some restricted IPs can see some part of my WSDL.I have this WSDL :\[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\]This is my .xslt file:\[code\] <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> <xslutput method="xml" indent="yes"/> <xsl:template match="@* | node()"> <xsl:copy> <xsl:apply-templates select="@* | node()"/> </xsl:copy> </xsl:template> <xsl:template match="wsdlperation[@name = 'GetISD']" /></xsl:stylesheet>\[/code\]Now I want to set IP permission that for example : 10.10.10.1 can't see 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\]How can I do it?