gpt4 book ai didi

web-services - 如何向 grails cxf Web 服务添加安全性(用户名、密码)

转载 作者:行者123 更新时间:2023-12-02 16:04:46 25 4
gpt4 key购买 nike

我创建了两个 grails 项目,一个用于服务器端 cxf Web 服务,另一个用于 cxf 客户端用于调用 Web 服务。

一切正常。

我可以从客户端代码调用 Web 服务并获得结果。

现在我想添加安全性,那么服务器和客户端 grails 代码会有什么变化?

我尝试按照 Christian Oestreich 在他的帖子中所说的应用安全性。

http://www.christianoestreich.com/2012/04/grails-cxf-interceptor-injection/
(Grails Cxf 拦截器注入(inject) 2.4.x-2.5.x)

应用安全的客户端代码如下

    ExampleService exampleService = new ExampleService()
def port = exampleService.exampleServicePort
Map ctx = ((BindingProvider)port).getRequestContext();
ctx.put("ws-security.username", "pankaj");
ctx.put("ws-security.password", "pankaj");
println ".......... " + port.sayHello("pankaj")

但我收到如下错误
Error |
2014-11-06 18:33:15,411 [http-bio-8088-exec-4] ERROR errors.GrailsExceptionResolver - SoapFault occurred when processing request: [GET] /WSDLDemoClient/wsdldemo/index
An error was discovered processing the <wsse:Security> header.. Stacktrace follows:
Message: An error was discovered processing the <wsse:Security> header.
Line | Method
->> 75 | unmarshalFault in org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor

最佳答案

而不是上面提到的客户端代码,使用下面的代码让它工作。

    Map<String, Object> req_ctx = ((BindingProvider)hello).getRequestContext();
req_ctx.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, WS_URL);

Map<String, List<String>> headers = new HashMap<String, List<String>>();
headers.put("Username", Collections.singletonList("pankaj"));
headers.put("Password", Collections.singletonList("pankaj"));
req_ctx.put(MessageContext.HTTP_REQUEST_HEADERS, headers);

关于web-services - 如何向 grails cxf Web 服务添加安全性(用户名、密码),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26780611/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com