小编lea*_*ner的帖子

什么是Drools Kie?

我在KIE A​​PI中需要帮助.需要知道它是什么,是否有任何教程可以使用Drools KIE.是kro的一部分drools-6.x?如果它是drools-6.x的一部分那么使用运行JBPM5.4和guvnor 5.5的Drool-5.5会对应用程序产生什么影响呢?

问候,

扎希德艾哈迈德

java drools jbpm kie

11
推荐指数
1
解决办法
9128
查看次数

Fuse vs Switchyard

我需要知道Jboss Fuse和Switchyard之间的区别.Switchyard网站称它将取代Jboss ESB.这就带来了一个问题:FUSE和Switchyard之间有什么区别,两者都可以作为ESB使用

jboss-esb fuseesb

11
推荐指数
1
解决办法
5079
查看次数

使用 SQUID 转发代理进行客户端证书身份验证

我的网络中有 SQUID 作为 https 转发代理。我的一个应用程序从网络发送 SAOP 请求。SOAP Web 服务需要客户端证书进行身份验证。我已经为我的应用程序配置了密钥库和信任库。应用程序无需 SQUID 代理即可直接正常工作。

它也适用于 SQUID 隧道(即 ssl_bump splice )。

我们不想使用拼接。我们需要 SQUID 来解密 SSL 流量并进行身份验证并将身份验证证书(客户端证书)传递到 Web 服务服务器。对于这种情况,SQUID 可能的配置是什么?

有关信息:SQUID 代理可以在不需要客户端证书进行身份验证的 HTTP 和 HTTPS 流量中正常工作。示例“ https://www.google.com

authentication soap squid client-certificates forward

6
推荐指数
0
解决办法
2824
查看次数

NGINX-使用NGINX作为API网关的会话管理

I am new to NGINX and need some clarification. I am deploying NGINX as reverse proxy for my web application which will also work as an API gateway. This API gateway will first send all the HTTP requests to an authentication service (radius based authentication) and then will forward the authenticated requests to the upstream server. Following are my questions for such a scenario.

  1. How does the upstream server knows that the request it received is an authenticated request ? …

reverse-proxy nginx session-state

5
推荐指数
0
解决办法
2314
查看次数

Nginx 身份验证请求意外状态 404

当子请求发送到 nginx auth_request 模块时,我收到以下错误。作为参考,我开发了一个基于 Spring Security 的 Web 应用程序,其中仅包含一种 Web 方法,即通过身份验证来验证用户凭据和会话,并以 200 或 401 错误代码进行响应。

成功验证页面重定向到应显示上游应用程序主页的主页 url 后,我在 nginx 日志中收到此错误,其状态如下

错误 身份验证请求意外状态:404 发送到客户端时,客户端:127.0.0.1,服务器:,请求:“GET / HTTP/1.1”,主机:“localhost:8180”,引用者:“ https://localhost:8180/登录.html “*

此错误表明 nginx 已将完整的请求 url 传递给 auth 子请求,而不是“/authenticate”,并且 auth 服务会查找在其中找不到的资源并抛出 404 错误。

    server {
    listen    8180 ssl;
    ssl_certificate         certs/nginx.pem;
    ssl_certificate_key     certs/nginx.pem;

    location /{
        proxy_set_header xclnt "ap1";  
        auth_request /authenticate;
        proxy_pass https://adi-backend;         
    }

    location = /authenticate {
        proxy_set_header xclnt "ap1";  
        proxy_pass http://authserv;
    }

    location = /login.html {
        root   html;
    }

    location = /50x.html {
        root   html; …
Run Code Online (Sandbox Code Playgroud)

authentication runtime-error nginx http-status-code-404

4
推荐指数
1
解决办法
2万
查看次数

Spring Integration TCP.获取已连接客户端的连接ID

我在这里遇到动态TCP连接方法(Spring-IP Dynamic FTP Sample)的问题.收到消息后,我想获取收到的消息的TCP连接详细信息.通过这种方式,我可以跟踪发送该消息的发件人的应用程序.但在服务激活器中,我无法获得这个细节.

当我的TCP客户端连接到服务器时,还需要连接详细信息.这样,如果服务器想要启动通信,它将具有连接细节.

对于info我的应用程序有多个TCP客户端和服务器.

tcp spring-integration

2
推荐指数
1
解决办法
910
查看次数