[JBoss JIRA] (WFWIP-249) sessionAffinity doesn't cause a requests from a same IP to be served by single endpoint
by Jeff Mesnil (Jira)
[ https://issues.jboss.org/browse/WFWIP-249?page=com.atlassian.jira.plugin.... ]
Jeff Mesnil updated WFWIP-249:
------------------------------
Summary: sessionAffinity doesn't cause a requests from a same IP to be served by single endpoint (was: sessionAffinity doesn't cause a requests from a same IP to be served by single endpont)
> sessionAffinity doesn't cause a requests from a same IP to be served by single endpoint
> ---------------------------------------------------------------------------------------
>
> Key: WFWIP-249
> URL: https://issues.jboss.org/browse/WFWIP-249
> Project: WildFly WIP
> Issue Type: Bug
> Components: OpenShift
> Reporter: Petr Kremensky
> Assignee: Jeff Mesnil
> Priority: Critical
> Labels: operator
>
> It is expected, that if the {{sessionAffinity=true}}, the requests from a client with a same IP should be served by the same endpoint, using the latest upstream operator with the quickstart example:
> *sessionAffinity=false*
> {noformat}
> $ oc patch wildflyserver quickstart -p '\[{"op":"replace", "path":"/spec/sessionAffinity", "value":false}\]' --type json
> $ oc describe service/quickstart-loadbalancer | grep Session
> Session Affinity: None
> $ for i in {1..4} ; do echo `curl -s quickstart-route-wildfly.apps-crc.testing` ; done
> {"ip":"10.128.0.98"}
> {"ip":"10.128.0.99"}
> {"ip":"10.128.0.98"}
> {"ip":"10.128.0.99"}
> {noformat}
> *sessionAffinity=true*
> {noformat}
> $ oc patch wildflyserver quickstart -p '[{"op":"replace", "path":"/spec/sessionAffinity", "value":true}]' --type json
> $ oc describe service/quickstart-loadbalancer | grep Session
> Session Affinity: ClientIP
> $ for i in {1..4} ; do echo `curl -s quickstart-route-wildfly.apps-crc.testing` ; done
> {"ip":"10.128.0.98"}
> {"ip":"10.128.0.99"}
> {"ip":"10.128.0.98"}
> {"ip":"10.128.0.99"}
> {noformat}
> {{sessionAffinity=true}} should make all responses to be served by the same endpoint
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 6 months
[JBoss JIRA] (WFLY-12765) Webservice deployment fails
by Jim Ma (Jira)
Jim Ma created WFLY-12765:
-----------------------------
Summary: Webservice deployment fails
Key: WFLY-12765
URL: https://issues.jboss.org/browse/WFLY-12765
Project: WildFly
Issue Type: Bug
Components: Web Services
Affects Versions: 18.0.0.Final
Reporter: Jim Ma
Assignee: Jim Ma
Fix For: 19.0.0.Beta1
Enabling elytron in undertow subsystem, EAP fails to deploy a webservice war and show the following error messages:
17:44:48,834 ERROR [org.jboss.as.controller.management-operation] (management-handler-thread - 1) WFLYCTL0013: Operation ("add") failed - address: ([("deployment" => "wsat-simple.war")]) - failure description: {
"WFLYCTL0412: Required services that are not installed:" => ["jboss.security.security-domain.other"],
"WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.ws.endpoint.\"wsat-simple.war\".\"org.jboss.as.quickstarts.wsa
t.simple.RestaurantServiceATImpl\" is missing [jboss.security.security-domain.other]"]
}
17:44:48,836 ERROR [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0021: Deploy of deployment "wsat-simple.war" was rolled back with the following failure message:
{
"WFLYCTL0412: Required services that are not installed:" => ["jboss.security.security-domain.other"],
"WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.ws.endpoint.\"wsat-simple.war\".\"org.jboss.as.quickstarts.wsat.simple.RestaurantServiceATImpl\" is missing [jboss.security.security-domain.other]"]
}
17:44:48,867 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-7) JBWS022102: Cannot stop endpoint in state UNDEFINED: jboss.ws:context=,endpoint=org.jboss.as.quickstarts.wsat.simple.RestaurantServiceATImpl
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 6 months