0
votes
1answer
1k views

getting error Could not load JDBC driver class [oracle.jdbc.OracleDriver] in Mule Studio

I am trying to figure out this error Could not load JDBC driver class [oracle.jdbc.OracleDriver] for long time. I know I am missing ojdbc14.jar file in class path.I am new to mule studio and trying to ...
0
votes
1answer
326 views

deploying and running embedded mule in webapp (Mule twitter integration)

Hi I am newbaby to Mule!! I want to run this simple app (receives input from url and post to my twitter account using twitter connector). I try first deploying it on CloudHub and it works ...
1
vote
1answer
206 views

How to deploy MuleApp in Tomcat server?

Hi can someone answer me how to deploy muleapp in tomcat? I have packaged muleapp using Maven -mvn package war:war but before building and packaging it with Maven I had to manually add WEB-INF ...
1
vote
3answers
223 views

m2eclipse (in Mule Studio 1.3.0) is not creating a source folder for my additional resources directory

I have added the following to my project's pom.xml: <resources> <resource> <directory>src/main/app</directory> </resource> <resource> ...
0
votes
1answer
477 views

Plugin execution not covered by lifecycle configuration: org.mule.tools:maven-mule-plugin:1.5:attach-test-resources

I'm getting this error: "Plugin execution not covered by lifecycle configuration: org.mule.tools:maven-mule-plugin:1.5:attach-test-resources (execution: default-attach-test-resources, phase: ...
0
votes
1answer
167 views

Mule cargo plugin cannot fing dependencies with version attached with -osgi

I am currently trying to deploy my mule application in an embedded MuleServer running in the cargo container. I am using the following Pom configuration: <plugin> ...
0
votes
1answer
190 views

Getting errors while trying to build a skeleton Mule Cloud Connector..

So I'm following the tutorials online to build a cloud connector but I can't even get the skeleton to be generated! tutorial 1 tutorial 2 I get the following error, using the ...
1
vote
1answer
225 views

Mule 3 and Maven: “filterAppDirectory” config param not working

I have a Mule 3.3 project that uses Maven. I want the Mule Maven plugin to apply filtering to my Mule config file (located at: "src/main/app/mule-config.xml") I set the "filterAppDirectory" config ...
0
votes
1answer
1k views

Maven support in Mule Studio

Mule Studio is afaik supposed to replace Mule IDE as the development tool for Mule ESB. I am trying to understand how I am supposed to get full Maven integration in Mule Studio. All tutorials I find ...
1
vote
3answers
949 views

“exec-maven-plugin” does not execute

I have the following profile which I am executing successfully ("mvn exec:exec -DrunMule"): <profile> <id>runMule</id> <activation> ...
1
vote
2answers
439 views

Running org.mule.MuleServer in Maven causing a SecurityException

I have the following maven build profile: <profile> <id>runMule</id> <activation> <property> ...
0
votes
1answer
263 views

Missing WSDL error.. Trying to add functionality to an existing WSDL

I'm currently trying to add functionality to a WSDL.. I think I did all the changes necessary but after a Soap request I get an error. Out of curiosity I tried to test the original WSDL and it ...
2
votes
2answers
1k views

Checking an environment variable using the Maven AntRun plugin

I'm trying to check and see if the MULE_HOME environment variable is set within the maven-antrun-plugin without success. Here's what I have so far: <plugin> ...
2
votes
2answers
580 views

How to start and stop mule in maven

I need to start Mule before I run my tests, and stop it when the tests are finished. It is unclear to me how to alter my Maven pom to accomplish this. So far I have the following in my pom: ...