[
https://issues.jboss.org/browse/WFLY-4777?page=com.atlassian.jira.plugin....
]
Alessio Soldano commented on WFLY-4777:
---------------------------------------
AFAICS, the only actual issue here is that we're not supporting expressions for the
wsdl-uri-scheme attribute, while we should. So I've provided PRs for fixing that on
both 9.x and master branches.
Besides that, there's no real problem: the wsdl-port attribute is not used if you
force https uri scheme; instead, the wsdl-secure-port is read in that case. You can
specify both wsdl-port and wsdl-secure-port attributes if you want.
Multiple params not working properly in webservices tag
-------------------------------------------------------
Key: WFLY-4777
URL:
https://issues.jboss.org/browse/WFLY-4777
Project: WildFly
Issue Type: Bug
Components: Web Services
Affects Versions: 9.0.0.CR2
Reporter: John Ament
Assignee: Alessio Soldano
I configured webservices to use a rewrite of the soap endpoint. The following attributes
don't seem to work correctly
1. Adding this entry does not work. I need the value for protocol to be configurable
{code:xml}
<wsdl-uri-scheme>${wsdl.protocol:http}</wsdl-uri-scheme>
{code}
With error
{quote}
Message: "WFLYCTL0248: Invalid value $\{wsdl.protocol:http} for wsdl-uri-scheme;
legal values are [http, https]"
{quote}
2. wsdl-port is not leveraged properly. I manually changed to https, based on the above
limitation. I set this:
{code:xml}
<wsdl-uri-scheme>https</wsdl-uri-scheme>
<wsdl-port>${wsdl.port:443}</wsdl-port>
{code}
However, the reported URL includes {{8443}} not my configured {{443}} value.
In addition, if I manually set the values
{code:xml}
<wsdl-uri-scheme>https</wsdl-uri-scheme>
<wsdl-port>443</wsdl-port>
{code}
I still get 8443.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)