使用安全性UserNameToken的webservice

时间:2009-01-20 15:28:29

标签: web-services glassfish ws-security usernametoken

我正在尝试解决我们使用glassfish V2出于安全原因使用普通UserNameToken发布简单Web服务的问题。由于我们使用Netbeans 6.5存档,我们正在研究this tutorial

因此,完成了以下步骤: 在我们的开发环境中,我们安装了Sun Java(TM)System Access Manager,可以通过管理控制台以及Netbeans IDE进行管理。都好。本教程中的示例非常完美,因此我们认为我们处于有利位置。

在更改我们的Web服务的安全选项后,我们在没有安装任何Netbeans的测试环境中发布了此选项。

之后,完成了以下步骤:

  1. 部署服务
  2. 在Access Manager中为IP地址配置域
  3. 设置预期用户以访问Web服务。
  4. 当我们的合作伙伴现在正在访问Web服务时,不会访问实际的Web服务代码,并且我们总是在服务器日志记录中发现安全标头未被理解。

    这是我们在服务器上收到的消息:

    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Header>
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" soapenv:mustUnderstand="1">
    <wsu:Timestamp xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="Timestamp-10034404">
    <wsu:Created>2009-01-19T16:33:38.537Z</wsu:Created>
    <wsu:Expires>2009-01-19T16:34:08.537Z</wsu:Expires></wsu:Timestamp><wsse:UsernameToken xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="UsernameToken-10034094">
    <wsse:Username>myUser</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">myPasswd</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    <wsa:MessageID soapenv:mustUnderstand="0">uuid:ecc3b150-e646-11dd-96e5-9f80a576275b</wsa:MessageID>
    <wsa:To soapenv:mustUnderstand="0">http://62.154.241.166:8080/HTNGService/WebServiceForTrustService</wsa:To>
    <wsa:Action soapenv:mustUnderstand="0">http://webservice.trustinternational.com/ws/services/Htng2ReservationService</wsa:Action>
    <wsa:From xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing" soapenv:mustUnderstand="0">
    <wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address></wsa:From>
    </soapenv:Header>
    <soapenv:Body>
    ...
    </soapenv:Body></soapenv:Envelope>
    

    我们的wsit.xml如下所示:

    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="WebServiceForTrustService" targetNamespace="http://wstrust/" xmlns:tns="http://wstrust/" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp1="http://www.w3.org/ns/ws-policy" xmlns:fi="http://java.sun.com/xml/ns/wsit/2006/09/policy/fastinfoset/service" xmlns:tcp="http://java.sun.com/xml/ns/wsit/2006/09/policy/soaptcp/service"
    >
    
    <message name="otaHotelResNotif"/>
    <message name="otaHotelResNotifResponse"/>
    <portType name="WebServiceForTrust">
    <operation name="otaHotelResNotif">
    <input message="tns:otaHotelResNotif"/>
    <output message="tns:otaHotelResNotifResponse"/>
    </operation>
    </portType>
    <binding name="WebServiceForTrustPortBinding" type="tns:WebServiceForTrust">
    <wsp:PolicyReference URI="#WebServiceForTrustPortBindingPolicy"/>
    <operation name="otaHotelResNotif">
    <input/>
    <output/>
    </operation>
    </binding>
    <service name="WebServiceForTrustService">
    <port name="WebServiceForTrustPort" binding="tns:WebServiceForTrustPortBinding"/>
    </service>
    <wsp:Policy wsu:Id="WebServiceForTrustPortBindingPolicy">
    <wsp:ExactlyOne>
    <wsp:All/>
    </wsp:ExactlyOne>
    </wsp:Policy>
    </definitions>
    

    有谁知道这里可能缺少哪些配置?

    我们还意识到,在转换安全性(AM安全性)之后的IDE中,在配置文件/ amserver下创建了一个名为amconfig.xml的文件。

    我们在部署服务后也无法在网络服务器上找到此文件,也不在* .war或addons / amserver左右。

    该文件内部如下:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <ns2:AMConfig xmlns:ns2="http://identity.netbeans.org/access_manager_config_1_0">
    <ProviderConfig type="WSP" name="WebServiceForTrustService">
    <SecurityMechanism uri="urn:sun:wss:security:null:UserNameToken-Plain"/>
    </ProviderConfig>
    </ns2:AMConfig>
    

    由于信息已经在服务器上发布的sun-web.xml中,我认为这不应该是问题,但可能对您有所帮助。

1 个答案:

答案 0 :(得分:0)

因为我们在上面进一步研究了一些新的东西,即使它没有解决。

示例教程是重建并部署在测试服务器上。客户端和服务器测试应用。在测试服务器上本地启动时,两者都正常工作。

如果我们配置远程客户端如何使用具有相同安全信息的相同Web服务,我们会发现与我们的其他应用程序相同的错误。

因此我认为它与Access Manager的配置有关,但不知道哪一个。

我希望能帮助任何人帮助我。 谢谢!