This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 6787 - All: Fix use of ... as element extensibility
Summary: All: Fix use of ... as element extensibility
Status: CLOSED REMIND
Alias: None
Product: WS-Resource Access
Classification: Unclassified
Component: All (show other bugs)
Version: FPWD
Hardware: All All
: P2 normal
Target Milestone: ---
Assignee: notifications mailing list for WS Resource Access
QA Contact: notifications mailing list for WS Resource Access
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-04-07 23:15 UTC by Doug Davis
Modified: 2015-06-20 16:35 UTC (History)
0 users

See Also:


Attachments

Description Doug Davis 2009-04-07 23:15:32 UTC
Fix/change all specs so that instead of ... we use xs:any* for element
extensibility in the pseudo schemas.

For example, change:
    <wse:Subscribe ...>
      <wse:EndTo>endpoint-reference</wse:EndTo> ?
      <wse:Delivery Mode="xs:anyURI"? >xs:any</wse:Delivery>
      <wse:Expires>[xs:dateTime | xs:duration]</wse:Expires> ?
      <wse:Filter Dialect="xs:anyURI"? > xs:any </wse:Filter> ?
      ...
    </wse:Subscribe>

to
    <wse:Subscribe ...>
      <wse:EndTo>endpoint-reference</wse:EndTo> ?
      <wse:Delivery Mode="xs:anyURI"? >xs:any</wse:Delivery>
      <wse:Expires>[xs:dateTime | xs:duration]</wse:Expires> ?
      <wse:Filter Dialect="xs:anyURI"? > xs:any </wse:Filter> ?
      xs:any*
    </wse:Subscribe>

And do this for ALL pseudo schemas for ALL specs.
Comment 1 Robert Freund 2009-04-28 21:17:49 UTC
resolved as proposed
Comment 2 Jackie 2015-06-20 16:34:25 UTC
Please make my changes
Comment 3 Jackie 2015-06-20 16:35:13 UTC
Please make my changes