I'm trying to build the source code of WSO2 ESB from the following URL https://svn.wso2.org/repos/wso2/carbon/platform/tags/4.0.7/products/esb/4.6.0/
But when I'm compiling with Maven the project it throw me the following exception:
Cannot complete the install because one or more required items could
not be found. Software being installed: WSO2 Carbon - Axis2 Transport
HTTP Pass-through Feature 1.0.2
(org.wso2.carbon.transports.passthru.feature.group 1.0.2) Missing
requirement: WSO2 Carbon - Axis2 Transport HTTP Pass-through Feature
1.0.2 (org.wso2.carbon.transports.passthru.feature.group 1.0.2) requires 'org.wso2.carbon.core.server.feature.group
[4.1.0.SNAPSHOT,4.2.0)' but it could not be found
What could be wrong? Is not the correct URL from the 4.6.0 source code?
Reason is you dont have required dependencies to build WSO2 ESB. Below steps will helps you to build esb 4.6.0
1.Do checkout form" https://svn.wso2.org/repos/wso2/carbon/orbit/tags/4.0.6/" and build it.
Get second checkout from "https://svn.wso2.org/repos/wso2/carbon/kernel/tags/4.0.6/" and build it.
Finally get the checkout from "https://svn.wso2.org/repos/wso2/carbon/platform/tags/4.0.6/" and build below modules by order,parent, dependencies,service-stubs,components,features,samples/shopping-cart,samples/shopping-cart-global/2.0.0
Then go to the products/esb/4.6.0/ directory and build it.
Related
When using SonarScanner against a local source, following the suggested manual recipe for classic .NET and MSBuild, I find the following error (look at the bottom line):
SonarScanner for MSBuild 5.5.3
Using the .NET Framework version of the Scanner for MSBuild
Pre-processing started.
Preparing working directories...
11:30:19.134 Updating build integration targets...
11:30:23.344 Failed to request and parse 'http://localhost:9000/api/server/version': An error occurred while sending the request.
What's wrong? How to resolve this?
It has worked for me: I am a beginner, so I didn't know - and the suggested manual recipe doesn't mention it - that local mode requires a running SonarQube instance, working on this particular endpoint.
So before you run SonarScanner locally, you need to have a local SonarQube server, at least with the default configuration of SonnarScanner.
How to install SonarQube locally? Here is the instruction: Install the Server | SonarQube Docs.
I am trying to deploy this application to the Mule server.
It works on Anypoint Studio without a problem.
When I go to deploy it on the standalone server, it fails and in the logs, I find this error
java.lang.IllegalStateException: Incompatible version of plugin 'APIKit' (org.mule.modules:mule-apikit-module) found. Artifact requires version '1.6.0' but context provides version '1.5.5'
What's weird is that the version of APIKit I used on the app is 1.6.0 which I upgraded from 1.5.5.
The app is using a domain, and the dependencies' versions between the domain and the app are the same.
What can be the solution to this problem?
It looks like the domain is really using the dependency for APIKit 1.5.5. Another reason could be some incompatible version of the REST Validator Extension as mentioned in the documentation. Also if the domain or the application is using a jar library to import common Mule configurations it may be referring to a different version of the APIKit module. You can take a look at the logs to see what versions are being deployed.
I built a custom mule connector using Mule SDK and tested with Anypoint Studio. When I tried to deploy the Mulesoft Exchange using mvn deploy after updating the pom.xml file with Organization details, I'm running into the following Unauthorized error. Could someone point out what's causing this issue or a way to fix this?
Here is my POM.xml file:
Here is the error when running mvn deploy:
There is something wrong in your pom. Maven is trying to deploy to one of MuleSoft repositories, not to Exchange. Note the URL in the error doesn't match the one in the distributionManagement section.
Did you set the groupId to the org id? It doesn't look like it in the error.
Be sure to follow all the steps in the instructions: https://docs.mulesoft.com/exchange/to-publish-assets-maven#publish-an-asset-to-exchange-using-maven
I'd like to integrate NeoLoad tests into TeamCity. Therefore I've installed the corresponding NeoLoad Plugin and now I need to add a "NTS Configuration" to provide the mandatory license parameters for running the tests.
The NTS Configuration has to be added at "Administration"->"Neotys Team Server".
I provide following required information: "URL", "Login User", "Login Password" and the label.
After saving it, the NTS Configuration is visible as a newly added entry BUT after switching to another page or after a refresh- the entry disappears. I've never experienced such a behaviour in TeamCity. I don't know whether it's about TeamCity or the NeoLoad Plugin.
I'm using "TeamCity Enterprise 10.0.5 build 42677" and NeoLoad 5.2.1.
Any guesses?
Thank you a lot in advance!
The issue is solved. It seems that there is no compatibility between TeamCity Version 10.0.5 and the NeoLoad Plugin 1.0.5.
For verification, I've installed the latest TeamCity version (2017.2.3) and integrated the NeoLoad Plugin (Version 1.0.5) and it works.
This question can be closed.
While deploying simple hello world application on Mule, i am getting following error. Any way to resolve the same?
Reading plugins from: D:/MULE/MuleStudio/plugins/org.mule.tooling.server.3.5.0_3.5.0.201405141856/mule/plugins
Exception in thread "main" java.lang.NullPointerException
Version: Mule Studio 3.5,
Java: JDK 1.6
Flow include a HTTP adapter|Request-Response and logger only.
I am able to resolve this issue.
Actually, I was creating project with Mule Cloud Runtime; but I need to create it with Mule Server 3.4.1 EE. After creating project correctly, i am able to deploy it successfully.