http://www.mulesoft.org/schema/mule/wss
http://www.mulesoft.org/schema/mule/wss/current/mule-wss.xsd
WSS Module XML and Maven Support
If you manually code a Mule application in XML either from the Studio XML editor or a text editor, you must perform the following actions to get access to a connector:
Add the namespace for the connector to your XML flow.
Add dependency information to your Maven pom.xml file.
In the Studio visual editor, when you drag a connector from the Mule Palette to the canvas, Studio automatically populates the XML code with the connector namespace and schema location.
Add a Namespace for the Connector
If you manually code the Mule application in the Studio XML editor or another text editor, paste the following code inside the <mule> tag in your XML configuration:
This example shows how the namespace statements are
placed in the mule XML block:
<mule
	xmlns:wss="http://www.mulesoft.org/schema/mule/wss"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.mulesoft.org/schema/mule/wss
	http://www.mulesoft.org/schema/mule/wss/current/mule-wss.xsd">
</mule>
Add a POM File Dependency
The pom.xml Apache Maven file generated by Anypoint Studio contains dependencies
for a Mule app. When you code a Mule app manually, include this XML snippet in
your POM file to enable access to this connector:
<dependency>
        <groupId>org.mule.modules</groupId>
        <artifactId>mule-wss-module</artifactId>
        <version>1.1.1</version>
        <classifier>mule-plugin</classifier>
    </dependency>
To obtain the most up-to-date pom.xml file information:
- 
Go to Anypoint Exchange.
 - 
In Exchange, click Login and supply your Anypoint Platform username and password.
 - 
In Exchange, search for
WSS Module. - 
Select the connector.
 - 
Click Dependency Snippets near the upper right of the screen.
 
Next Step
After completing your namespace and pom.xml file, you can try the Examples.



