-
Bug
-
Resolution: Done
-
Major
-
EAP_EWP 5.1.1
-
-
Release Notes
-
When requesting a WSDL or external XML schema from a JBossWS endpoint (e.g. with "?wsdl"), the XML declaration was omitted. This issue has been resolved and the declaration is now included with an encoding of "UTF-8".
-
Documented as Resolved Issue
-
NEW
The XML preamble is omitted when serving external WSDL resources. This can cause problem when specifying a non-default character set using the XML preamble.
For example, you access an external XSD:
http://localhost:8080/testService/Service?wsdl&resource=external.xsd
The file on the server starts like this:
<?xml version="1.0" encoding="UTF-8"?> <xsd:schema ...> ... </xsd:schema>
But when it's served to a client, it starts like this:
<xsd:schema ...> ... </xsd:schema>
This affects the WSDL and any resources referenced by the WSDL.
Looking at the code, this is what happens when a request for a WSDL resource is received:
- The WSDL resource is read in from the file system.
- It is then parsed into a DOM tree.
- JBossWS then replaces references to external resources with appropriate URLs that can be reached using "?wsdl" URLs.
- The DOM tree is then marshaled to XML text.
In this process, the XML preamble is lost.
- blocks
-
JBPAPP-9494 [JBossWS] Release and upgrade JBossWS Native for EAP 5.2.0
- Closed
- is cloned by
-
JBWS-3339 Preamble is omitted when supplying WSDL and external XSDs
- Closed