문제

We have an application we are moving off of Glassfish 3 to Wildfly 8.

When we login to the application, we make a REST request to authenticate the login, which assigned a serialized object in the cookies. The Then we take the cookies and make another REST request to authorize the user.

This works fine in Glassfish. In Wildfly, it cuts off the serialized object -- only about 20 of the 100+ characters are passed to the second service. We didn't change any code when we moved over.

Anyone know what is causing this?

도움이 되었습니까?

해결책

The answer it -- upgrade to 8.0.1 (which is nightly now) and allow-equals-in-cookie-value="true" in the default http listener tag.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top