]
Brian Stansberry commented on AS7-5871:
---------------------------------------
Thanks for the info.
Transforming to send 8433 to the old version slave sounds wrong, since the net result will
be the same as sending undefined. Sending 8443 is wrong as well since may break a working
host that is relying on the old 8433. The transformer should probably just log a WARN.
How to fix the test case, I don't know at the moment; I'll have to see exactly
what fails.
The default redirect port for the 8080 connector is current 8433.
Should be 8443 instead.
------------------------------------------------------------------------------------------
Key: AS7-5871
URL:
https://issues.jboss.org/browse/AS7-5871
Project: Application Server 7
Issue Type: Bug
Components: Web
Affects Versions: 7.1.3.Final (EAP)
Reporter: Wolf-Dieter Fink
Assignee: Brian Stansberry
Fix For: 7.2.0.Alpha1
The default redirect port for the 8080 connector is 8433. Seems that this is wrong as
socket-bindings use 8443 (and former releases also)
[standalone@localhost:9999 /] /subsystem=web/connector=http:read-resource
{
"outcome" => "success",
"result" => {
...,
"name" => "http",
"protocol" => "HTTP/1.1",
"redirect-port" => 8433,
"scheme" => "http",
"secure" => false,
"socket-binding" => "http",
"ssl" => undefined,
"virtual-server" => undefined
}
}
The pre-configured "https" socket binding conversely is 8443:
[standalone@localhost:9999 socket-binding=https]
/socket-binding-group=standard-sockets/socket-binding=https:read-resource
{
"outcome" => "success",
"result" => {
"client-mappings" => undefined,
"fixed-port" => false,
"interface" => undefined,
"multicast-address" => undefined,
"multicast-port" => undefined,
"name" => "https",
"port" => 8443
}
}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: