0

I need to create something like the BasicAuthHandler proposed on the WSO2 ESB documentation but using the WSO2 Developer Studio. On the WSO2 ESB documentation they suggest downloading one existing example but don't gives any clue about howto make it using WSO2 Developer Studio. Is not the WSO2 Developer Studio the right way of developing custom code for the WSO2 Carbon platform?

Community
  • 1
  • 1
yeiniel
  • 2,416
  • 15
  • 31
  • I download all the source code and try to import it into WSO2 Developer Studio as a maven project and it shows me the error: "Missing artifact org.apache.synapse:synapse-core:jar:2.1.1-wso2v2" – yeiniel Feb 24 '16 at 16:47

1 Answers1

1

Steps:

  1. Download the code
  2. Run mvn clean install -e
  3. Import the code as a maven project using the WSO2 Developer Studio 3.8.0

It work fine for me.

Please check that you have org.apache.synapse:synapse-core:jar:2.1.1-wso2v2 in your maven repo. you can add a wso2 maven repo to your pom.xml file:

<repositories>
    <repository>
        <id>wso2-maven2-repository</id>
        <url>http://dist.wso2.org/maven2</url>
    </repository>
</repositories>
Jorge Infante Osorio
  • 2,143
  • 15
  • 26