How to build WSO2 Carbon 4.0.0 from source
First user has to build orbit related to Carbon 4.0.0.
Take a checkout from WSO2 carbon orbit 4.0.0 tag
svn co http://svn.wso2.org/repos/wso2/carbon/orbit/tags/4.0.0/
build useing maven3
mvn clean install
Now user can build the Carbon Kernel.
Take a check out from Carbon Kernel 4.0.0 tag.
svn co http://svn.wso2.org/repos/wso2/carbon/kernel/tags/4.0.0/
Now build using maven3.
mvn clean install
How to fix Arduino porgram upload issues with Ubuntu
When you upload the program to Arduino UNO board you may get an error saying
“Serial port ‘/dev/ttyACM0′ not found. Did you select the right one from the Tools > Serial Port menu?“
This error occurs when user do not have write privileges to device /dev/ttyACM0. User can fix this issue by giving enough rights to user or simply give all writes to the device. ( chmod 777 /dev/ttyACM0 [this is a hack
])
How to setup Apache Axis2 with Websphere Application Server 7 ( WAS7 ) –Under Construction–
- Download Websphere artifact
- Install Websphere
- Create Profile
- Deploy axis2 war
- Alter the class loading in Axis2
- Alter the class loading in websphere
- access the service via web
How to run SOAPUI on Ubuntu Linux
Download SOAP UI
Change follwing JVM options ins soapui.sh to run on 64bit new Ubuntu version.
JAVA_OPTS=”$JAVA_OPTS -d64″
JAVA_OPTS=”$JAVA_OPTS -Dsoapui.jxbrowser.disable=true”


