Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.

Bug 1080321

Summary: wsp:Optional isn't adhered to for WS-RM policy in WSDL
Product: [JBoss] JBoss Enterprise Application Platform 6 Reporter: Tadayoshi Sato <tasato>
Component: Web ServicesAssignee: Alessio Soldano <asoldano>
Status: CLOSED CURRENTRELEASE QA Contact: Rostislav Svoboda <rsvoboda>
Severity: high Docs Contact: Russell Dickenson <rdickens>
Priority: high    
Version: 6.2.0   
Target Milestone: ER10   
Target Release: EAP 6.3.0   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-08-06 14:34:42 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
Reproducer none

Description Tadayoshi Sato 2014-03-25 07:35:52 UTC
Created attachment 878321 [details]
Reproducer

Description of problem:
Platform BZ for https://issues.jboss.org/browse/JBWS-3777

The wsp:Optional attribute doesn't work for WS-RM in JBoss WS CXF. As far as the specs tell both WS-Addressing 1.0 and WS-RM 1.1 should support wsp:Optional, that is, if wsp:Optional is set to true on a WS-RM policy the WS-RM policy should become optional – the endpoint should allow both messages with and without WS-RM [1]. However, my experimentation showed that it actually doesn't.

Incidentally, I couldn't reproduce the same issue on a bare CXF runtime, so I believe this is purely a JBoss WS issue.

What I did is as follows (see the attached reproducer for details):

1. Configured in WSDL (greeting.wsdl) an endpoint as optionally WS-RM enabled like the following:

    <wsdl:binding name="GreetingServiceSoapBinding" type="tns:GreetingService">
        <wsp:Policy xmlns:wsp="http://www.w3.org/2006/07/ws-policy">
            <wsam:Addressing xmlns:wsam="http://www.w3.org/2007/02/addressing/metadata"
                wsp:Optional="true" />
            <wsrmp:RMAssertion xmlns:wsrmp="http://schemas.xmlsoap.org/ws/2005/02/rm/policy"
                wsp:Optional="true" />
        </wsp:Policy>
        ...

2. Sent a WS-RM unaware (= no SOAP header) SOAP request from the client but got the following SOAP Fault:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <soap:Fault>
      <faultcode>soap:Server</faultcode>
      <faultstring>WS-Addressing is required by this endpoint.</faultstring>
    </soap:Fault>
  </soap:Body>
</soap:Envelope>

[1] In WS-RM Policy 1.1 p.8:
/wsrmp:RMAssertion/@wsp:Optional="true"
Per WS-Policy, this is compact notation for two policy alternatives, one with and one without the assertion. The intuition is that the behavior indicated by the assertion is optional, or in this case, that WS-ReliableMessaging MAY be used.

How reproducible:
100%

Steps to Reproduce:
See README.md in the attached reproducer (ws-rm.zip).

Comment 1 JBoss JIRA Server 2014-05-28 06:04:27 UTC
Jim Ma <ema> updated the status of jira JBWS-3777 to Resolved

Comment 2 Rostislav Svoboda 2014-07-18 11:20:34 UTC
Verified on EAP 6.3.0 ER10
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:helloResponse xmlns:ns2="http://ws.samples.redhat.com/">
         <return>Hello, Rosta!</return>
      </ns2:helloResponse>
   </soap:Body>
</soap:Envelope>

EAP 6.2.0 GA
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <soap:Fault>
         <faultcode>soap:Server</faultcode>
         <faultstring>WS-Addressing is required by this endpoint.</faultstring>
      </soap:Fault>
   </soap:Body>
</soap:Envelope>

Comment 3 JBoss JIRA Server 2015-04-25 20:30:09 UTC
Alessio Soldano <asoldano> updated the status of jira JBWS-3777 to Closed