Monday, April 18, 2016

In some cases if you are using gpg plugin to sign your artifacts you might get the following error and the build will fail. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-gpg-plugin:1.5:sign (sign-artifacts) on project testng-parser: Exit code: 2 If you get the above error there are few ways to skip artifact signing and carryout your build. Method 1 : Editing your POM You can disable the gbp plugin from the POM or skip the signing...

Thursday, April 7, 2016

In this post I'm going to create a proxy service using WSO2 ESB to Pull a message from ActiveMQ and to push that Message to IBM MQ (WebSphere MQ). If you need to configure IBM MQ you can follow this Post. And to configure ESB with ActiveMQ you can follow this post. After configuring ActiveMQ and IBM MQ you need to add the following transports. (If you have already added this do not add). The issue here is, for both ActiveMQ and IBMMQ you need...

Tuesday, April 5, 2016

In this post I'll explain how we can redirect all HTTP traffic to HTTPS. Here I'm using Apache2 and its rewrite module to achieve this. You can refer the following configuration from apache. RewriteEngine on RewriteCond %{HTTPS} !=on # This checks to make sure the connection is not already HTTPS RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] In the above configurations I'm rewriting all HTTP traffic to its HTTPS URL. http://yenlo.com/t...

Monday, April 4, 2016

When I was trying to call a service via HTTPS I observed the below issue. FATAL: Error verifying developer key: Failed to read server's response: handshake alert: unrecognized_name br.eti.kinoshita.testlinkjavaapi.util.TestLinkAPIException: Error verifying developer key: Failed to read server's response: handshake alert: unrecognized_name at br.eti.kinoshita.testlinkjavaapi.MiscService.checkDevKey(MiscService.java:63) at br.eti.kinoshita.testlinkjavaapi.TestLinkAPI.<init>(TestLinkAPI.java:144) ...

Sunday, April 3, 2016

In this post I will explain how to enable SSL for jenkins testlink plugin. When you try to access testlink via SSL from Jenkins you might come across the following error. Archiving /home/ubuntu/.jenkins/jobs/TestSample/workspace/pom.xml to org.wso2.carbon/testng-test/1.0.0/testng-test-1.0.0.pom channel stopped Preparing TestLink client API. Using TestLink URL: https://192.168.48.112/lib/api/xmlrpc/v1/xmlrpc.php FATAL: Error verifying developer...
Subscribe to RSS Feed Follow me on Twitter!