Improve User Guide
------------------

                 Key: WODEN-228
                 URL: https://issues.apache.org/jira/browse/WODEN-228
             Project: Woden
          Issue Type: Improvement
          Components: Website
            Reporter: Ping Liu
            Priority: Minor


Found two typos in User Guide:

  1. In Getting Started Section (Woden => User Guide => Getting Started)

       original content:

       WSDLFactory factory = WSDLFactory.newInstance();
       WSDLReader reader = factory.newWSDLReader();
       reader.setFeature(WSDLReader.FEATURE_VALIDATION, true);
       Description descComp = reader.readWSDL(wsdlurl);        <-- the 
Description component
       DescriptionElement descElem = descElem.toComponent();   <-- the 
<description> element

       recommended change:

       WSDLFactory factory = WSDLFactory.newInstance();
       WSDLReader reader = factory.newWSDLReader();
       reader.setFeature(WSDLReader.FEATURE_VALIDATION, true);
       Description descComp = reader.readWSDL(wsdlurl);        <-- the 
Description component
       DescriptionElement descElem = descComp.toElement();   <-- the 
<description> element

  2. In Woden URI Resolver Section (Woden => User Guide => Woden URI Resolver 
=> Absolute URIs)

       original content:

       Similarly on a Un*x-based file system:
       http\://test.com/interface.wsdl=file:///resources/interface.wsdl

       recommended content:

       Similarly on a Unix-based file system:
       http\://test.com/interface.wsdl=file:///resources/interface.wsdl
              



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to