Thursday, July 29, 2010
nettcp binding in IIS7
binding information:
[protocol='https',bindingInformation='*:443:']
[protocol='net.tcp',bindingInformation='808:*']
see http://www.iis.net/ConfigReference/system.applicationHost/sites/site/bindings/binding
http://www.devx.com/codemag/Article/33655/1763/page/6
C:\>Windows\System32\inetsrv\appcmd list config -section:Sytes/
C:\>Windows\System32\inetsrv\appcmd set app "testWS/MultipleServiceWCF" /enabledProtocols:http.net.tcp
[protocol='https',bindingInformation='*:443:']
[protocol='net.tcp',bindingInformation='808:*']
see http://www.iis.net/ConfigReference/system.applicationHost/sites/site/bindings/binding
http://www.devx.com/codemag/Article/33655/1763/page/6
C:\>Windows\System32\inetsrv\appcmd list config -section:Sytes/
C:\>Windows\System32\inetsrv\appcmd set app "testWS/MultipleServiceWCF" /enabledProtocols:http.net.tcp
Monday, July 26, 2010
Creating .NET web service with Visual Studio 2010
Thursday, July 15, 2010
IT Begriffe auf Deutsch
Interface - Schnittstelle
Web Service calls - Aufruf über Webservice [Schnittstelle]
GUI - grafische Benutzeroberfläche
Web Service calls - Aufruf über Webservice [Schnittstelle]
GUI - grafische Benutzeroberfläche
Tuesday, January 5, 2010
org.apache.xml.security.c14n.InvalidCanonicalizerException
got org.apache.xml.security.c14n.InvalidCanonicalizerException
needed the following jar files in classpath
xws-security_jaxrpc.jar
xalan.jar
xercesImpl.jar
needed the following jar files in classpath
xws-security_jaxrpc.jar
xalan.jar
xercesImpl.jar
Wednesday, November 11, 2009
soap with security, Username Token
<soap:Envelope xmlns:har="http://www.yourhost.com/YourWebService" xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
<soap:Header>
<wsse:Security soap:mustUnderstand="true" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken-25814968" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsse:Username>username</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">GR1ps</wsse:Password>
<wsse:Nonce>iKhvn+MbQxD26oRg89mffA==</wsse:Nonce>
<wsu:Created>2009-11-11T11:37:40.906Z</wsu:Created>
</wsse:UsernameToken>
</wsse:Security>
</soap:Header>
<soap:Body>
<har:getDetails>
<har:requestorID>requestorID</har:requestorID>
<!--Optional:-->
<har:requestorPassword>password</har:requestorPassword>
<!--Optional:-->
<har:requestData>7042776376380606</har:requestData>
</har:getDetails>
</soap:Body>
</soap:Envelope>
see also
Java and security bits
<soap:Header>
<wsse:Security soap:mustUnderstand="true" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken-25814968" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsse:Username>username</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">GR1ps</wsse:Password>
<wsse:Nonce>iKhvn+MbQxD26oRg89mffA==</wsse:Nonce>
<wsu:Created>2009-11-11T11:37:40.906Z</wsu:Created>
</wsse:UsernameToken>
</wsse:Security>
</soap:Header>
<soap:Body>
<har:getDetails>
<har:requestorID>requestorID</har:requestorID>
<!--Optional:-->
<har:requestorPassword>password</har:requestorPassword>
<!--Optional:-->
<har:requestData>7042776376380606</har:requestData>
</har:getDetails>
</soap:Body>
</soap:Envelope>
see also
Java and security bits
Subscribe to:
Posts (Atom)
