Re: [Dev] Error - Running Integration test for connector with ESB-4.9.0.ALPHA

2015-06-08 Thread Elilmatha Sivanesan
Hi Malaka ,

The Integration tests are working fine now.

Thanks a lot.

On Mon, Jun 8, 2015 at 1:50 PM, Malaka Silva  wrote:

> Hi Ellimatha,
>
> I guess you are using java 7?
>
> Try the following. add the following [1] to the JAVACMD section in
> wso2server.sh found in /bin folder.
>
> [1] -XX:-UseSplitVerifier \
>
> eg:-
> while [ "$status" = "$START_EXIT_STATUS" ]
> do
> $JAVACMD \
> -Xbootclasspath/a:"$CARBON_XBOOTCLASSPATH" \
> -Xms256m -Xmx1024m -XX:MaxPermSize=256m \
> -XX:+HeapDumpOnOutOfMemoryError \
> -XX:HeapDumpPath="$CARBON_HOME/repository/logs/heap-dump.hprof" \
> *-XX:-UseSplitVerifier \*
> ...
>
> On Thu, Jun 4, 2015 at 2:29 PM, Krishantha Samaraweera <
> krishan...@wso2.com> wrote:
>
>> Hi Ellimatha,
>>
>> AFAIK, ESB team has developed connector test framework using our test
>> framework. I don't know much about the new connector test framework. May be
>> you can get help from ESB team on updating dependencies.
>>
>> Thanks,
>> Krishantha.
>>
>> On Thu, Jun 4, 2015 at 2:10 PM, Elilmatha Sivanesan 
>> wrote:
>>
>>> Hi all,
>>>
>>> Still this error is there for getting the  dependencies.
>>>
>>> Thank you.
>>>
>>> On Wed, Jun 3, 2015 at 5:27 PM, Saneth Dharmakeerthi 
>>> wrote:
>>>
 Hi Elilmatha,

 There is no 4.4.1 version for org.wso2.carbon.automation.
 Please update the test integration dependencies as bellow.

 4.3.1
 4.3.0



 Thanks and Best Regards,

 Saneth Dharmakeerthi
 Senior Software Engineer
 WSO2, Inc.
 Mobile: +94772325511

 On Wed, Jun 3, 2015 at 3:43 PM, Elilmatha Sivanesan >>> > wrote:

> adding integration team.
>
> On Wed, Jun 3, 2015 at 12:49 PM, Elilmatha Sivanesan <
> elilma...@wso2.com> wrote:
>
>>
>> I need to run the integration test for the connector , the same
>> integration test works fine with esb-4.8.1 But not with $subject. I got 
>> the
>> following error
>>
>>  [2015-06-03 11:18:36,867] FATAL - CarbonServerManager WSO2 Carbon
>> initialization Failed
>>
>> [2015-06-03 11:18:36,869]  INFO
>> {org.wso2.carbon.automation.core.utils.coreutils.InputStreamHandler} -
>> java.lang.ClassFormatError: Illegal local variable table start_pc 48 in
>> method
>> org.apache.synapse.transport.passthru.PassThroughHttpSender.invoke(Lorg/apache/axis2/context/MessageContext;)Lorg/apache/axis2/engine/Handler$InvocationResponse;
>>
>> So i changed the the carbon platform version to 4.4.1. But now also I
>> get the following error
>>
>> esb:org.wso2.carbon.connector elilmatha$ mvn clean install
>>
>> [INFO] Scanning for projects...
>>
>> [WARNING]
>>
>> [WARNING] Some problems were encountered while building the effective
>> model for
>> org.wso2.carbon.connector:org.wso2.carbon.connector.proworkflow:jar:1.0.0
>>
>> [WARNING] 'artifactId' contains an expression but should be a
>> constant. @ org.wso2.carbon.connector:org.wso2.carbon.connector.${
>> connector.name}:${connector.version},
>> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
>> line 29, column 16
>>
>> [WARNING] 'version' contains an expression but should be a constant.
>> @ org.wso2.carbon.connector:org.wso2.carbon.connector.${
>> connector.name}:${connector.version},
>> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
>> line 30, column 13
>>
>> [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique
>> but found duplicate declaration of plugin
>> org.apache.maven.plugins:maven-dependency-plugin @
>> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
>> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
>> line 162, column 18
>>
>> [WARNING]
>>
>> [WARNING] It is highly recommended to fix these problems because they
>> threaten the stability of your build.
>>
>> [WARNING]
>>
>> [WARNING] For this reason, future Maven versions might no longer
>> support building such malformed projects.
>>
>> [WARNING]
>>
>> [INFO]
>>
>>
>> [INFO]
>> 
>>
>> [INFO] Building WSO2 Carbon - Mediation Library Connector For
>> proworkflow 1.0.0
>>
>> [INFO]
>> 
>>
>> [WARNING] The POM for org.apache.bsf:bsf-all:jar:3.0 is invalid,
>> transitive dependencies (if any) will not be available, enable debug
>> logging for more details
>>
>> [WARN

Re: [Dev] Error - Running Integration test for connector with ESB-4.9.0.ALPHA

2015-06-08 Thread Malaka Silva
Hi Ellimatha,

I guess you are using java 7?

Try the following. add the following [1] to the JAVACMD section in
wso2server.sh found in /bin folder.

[1] -XX:-UseSplitVerifier \

eg:-
while [ "$status" = "$START_EXIT_STATUS" ]
do
$JAVACMD \
-Xbootclasspath/a:"$CARBON_XBOOTCLASSPATH" \
-Xms256m -Xmx1024m -XX:MaxPermSize=256m \
-XX:+HeapDumpOnOutOfMemoryError \
-XX:HeapDumpPath="$CARBON_HOME/repository/logs/heap-dump.hprof" \
*-XX:-UseSplitVerifier \*
...

On Thu, Jun 4, 2015 at 2:29 PM, Krishantha Samaraweera 
wrote:

> Hi Ellimatha,
>
> AFAIK, ESB team has developed connector test framework using our test
> framework. I don't know much about the new connector test framework. May be
> you can get help from ESB team on updating dependencies.
>
> Thanks,
> Krishantha.
>
> On Thu, Jun 4, 2015 at 2:10 PM, Elilmatha Sivanesan 
> wrote:
>
>> Hi all,
>>
>> Still this error is there for getting the  dependencies.
>>
>> Thank you.
>>
>> On Wed, Jun 3, 2015 at 5:27 PM, Saneth Dharmakeerthi 
>> wrote:
>>
>>> Hi Elilmatha,
>>>
>>> There is no 4.4.1 version for org.wso2.carbon.automation.
>>> Please update the test integration dependencies as bellow.
>>>
>>> 4.3.1
>>> 4.3.0
>>>
>>>
>>>
>>> Thanks and Best Regards,
>>>
>>> Saneth Dharmakeerthi
>>> Senior Software Engineer
>>> WSO2, Inc.
>>> Mobile: +94772325511
>>>
>>> On Wed, Jun 3, 2015 at 3:43 PM, Elilmatha Sivanesan 
>>> wrote:
>>>
 adding integration team.

 On Wed, Jun 3, 2015 at 12:49 PM, Elilmatha Sivanesan <
 elilma...@wso2.com> wrote:

>
> I need to run the integration test for the connector , the same
> integration test works fine with esb-4.8.1 But not with $subject. I got 
> the
> following error
>
>  [2015-06-03 11:18:36,867] FATAL - CarbonServerManager WSO2 Carbon
> initialization Failed
>
> [2015-06-03 11:18:36,869]  INFO
> {org.wso2.carbon.automation.core.utils.coreutils.InputStreamHandler} -
> java.lang.ClassFormatError: Illegal local variable table start_pc 48 in
> method
> org.apache.synapse.transport.passthru.PassThroughHttpSender.invoke(Lorg/apache/axis2/context/MessageContext;)Lorg/apache/axis2/engine/Handler$InvocationResponse;
>
> So i changed the the carbon platform version to 4.4.1. But now also I
> get the following error
>
> esb:org.wso2.carbon.connector elilmatha$ mvn clean install
>
> [INFO] Scanning for projects...
>
> [WARNING]
>
> [WARNING] Some problems were encountered while building the effective
> model for
> org.wso2.carbon.connector:org.wso2.carbon.connector.proworkflow:jar:1.0.0
>
> [WARNING] 'artifactId' contains an expression but should be a
> constant. @ org.wso2.carbon.connector:org.wso2.carbon.connector.${
> connector.name}:${connector.version},
> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
> line 29, column 16
>
> [WARNING] 'version' contains an expression but should be a constant. @
> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
> line 30, column 13
>
> [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique
> but found duplicate declaration of plugin
> org.apache.maven.plugins:maven-dependency-plugin @
> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
> line 162, column 18
>
> [WARNING]
>
> [WARNING] It is highly recommended to fix these problems because they
> threaten the stability of your build.
>
> [WARNING]
>
> [WARNING] For this reason, future Maven versions might no longer
> support building such malformed projects.
>
> [WARNING]
>
> [INFO]
>
>
> [INFO]
> 
>
> [INFO] Building WSO2 Carbon - Mediation Library Connector For
> proworkflow 1.0.0
>
> [INFO]
> 
>
> [WARNING] The POM for org.apache.bsf:bsf-all:jar:3.0 is invalid,
> transitive dependencies (if any) will not be available, enable debug
> logging for more details
>
> [WARNING] The POM for
> org.wso2.carbon:org.wso2.carbon.mediation.library.stub:jar:4.4.1 is
> missing, no dependency information available
>
> [WARNING] The POM for
> org.eclipse.equinox:org.eclipse.equinox.http.servlet:jar:1.0.200.v20090520-1800
> is invalid, transitive dependencies (if any) will 

Re: [Dev] Error - Running Integration test for connector with ESB-4.9.0.ALPHA

2015-06-04 Thread Krishantha Samaraweera
Hi Ellimatha,

AFAIK, ESB team has developed connector test framework using our test
framework. I don't know much about the new connector test framework. May be
you can get help from ESB team on updating dependencies.

Thanks,
Krishantha.

On Thu, Jun 4, 2015 at 2:10 PM, Elilmatha Sivanesan 
wrote:

> Hi all,
>
> Still this error is there for getting the  dependencies.
>
> Thank you.
>
> On Wed, Jun 3, 2015 at 5:27 PM, Saneth Dharmakeerthi 
> wrote:
>
>> Hi Elilmatha,
>>
>> There is no 4.4.1 version for org.wso2.carbon.automation.
>> Please update the test integration dependencies as bellow.
>>
>> 4.3.1
>> 4.3.0
>>
>>
>>
>> Thanks and Best Regards,
>>
>> Saneth Dharmakeerthi
>> Senior Software Engineer
>> WSO2, Inc.
>> Mobile: +94772325511
>>
>> On Wed, Jun 3, 2015 at 3:43 PM, Elilmatha Sivanesan 
>> wrote:
>>
>>> adding integration team.
>>>
>>> On Wed, Jun 3, 2015 at 12:49 PM, Elilmatha Sivanesan >> > wrote:
>>>

 I need to run the integration test for the connector , the same
 integration test works fine with esb-4.8.1 But not with $subject. I got the
 following error

  [2015-06-03 11:18:36,867] FATAL - CarbonServerManager WSO2 Carbon
 initialization Failed

 [2015-06-03 11:18:36,869]  INFO
 {org.wso2.carbon.automation.core.utils.coreutils.InputStreamHandler} -
 java.lang.ClassFormatError: Illegal local variable table start_pc 48 in
 method
 org.apache.synapse.transport.passthru.PassThroughHttpSender.invoke(Lorg/apache/axis2/context/MessageContext;)Lorg/apache/axis2/engine/Handler$InvocationResponse;

 So i changed the the carbon platform version to 4.4.1. But now also I
 get the following error

 esb:org.wso2.carbon.connector elilmatha$ mvn clean install

 [INFO] Scanning for projects...

 [WARNING]

 [WARNING] Some problems were encountered while building the effective
 model for
 org.wso2.carbon.connector:org.wso2.carbon.connector.proworkflow:jar:1.0.0

 [WARNING] 'artifactId' contains an expression but should be a constant.
 @ 
 org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
 /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
 line 29, column 16

 [WARNING] 'version' contains an expression but should be a constant. @
 org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
 /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
 line 30, column 13

 [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique
 but found duplicate declaration of plugin
 org.apache.maven.plugins:maven-dependency-plugin @
 org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
 /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
 line 162, column 18

 [WARNING]

 [WARNING] It is highly recommended to fix these problems because they
 threaten the stability of your build.

 [WARNING]

 [WARNING] For this reason, future Maven versions might no longer
 support building such malformed projects.

 [WARNING]

 [INFO]


 [INFO]
 

 [INFO] Building WSO2 Carbon - Mediation Library Connector For
 proworkflow 1.0.0

 [INFO]
 

 [WARNING] The POM for org.apache.bsf:bsf-all:jar:3.0 is invalid,
 transitive dependencies (if any) will not be available, enable debug
 logging for more details

 [WARNING] The POM for
 org.wso2.carbon:org.wso2.carbon.mediation.library.stub:jar:4.4.1 is
 missing, no dependency information available

 [WARNING] The POM for
 org.eclipse.equinox:org.eclipse.equinox.http.servlet:jar:1.0.200.v20090520-1800
 is invalid, transitive dependencies (if any) will not be available, enable
 debug logging for more details

 [WARNING] The POM for
 org.eclipse.osgi:org.eclipse.osgi.services:jar:3.2.0.v20090520-1800 is
 invalid, transitive dependencies (if any) will not be available, enable
 debug logging for more details

 [WARNING] The POM for
 org.eclipse.equinox:org.eclipse.equinox.simpleconfigurator:jar:1.0.100.v20090520-1905
 is invalid, transitive dependencies (if any) will not be available, enable
 debug logging for more details

 [WARNING] The POM for
 org.eclipse.equinox:org.eclipse.equinox.util:jar:1.0.100.v20090520-1800 is
 invalid, transitive dependencies (if any) will not be available, enable
 debug 

Re: [Dev] Error - Running Integration test for connector with ESB-4.9.0.ALPHA

2015-06-04 Thread Nuwan Wimalasekara
Hi Elilmatha,

Can you please refer the pom[1] for dependency information and update the
test framework dependency accordingly.

[1] https://github.com/wso2/product-esb/blob/master/pom.xml

Thanks,
Nuwanw

On Thu, Jun 4, 2015 at 2:10 PM, Elilmatha Sivanesan 
wrote:

> Hi all,
>
> Still this error is there for getting the  dependencies.
>
> Thank you.
>
> On Wed, Jun 3, 2015 at 5:27 PM, Saneth Dharmakeerthi 
> wrote:
>
>> Hi Elilmatha,
>>
>> There is no 4.4.1 version for org.wso2.carbon.automation.
>> Please update the test integration dependencies as bellow.
>>
>> 4.3.1
>> 4.3.0
>>
>>
>>
>> Thanks and Best Regards,
>>
>> Saneth Dharmakeerthi
>> Senior Software Engineer
>> WSO2, Inc.
>> Mobile: +94772325511
>>
>> On Wed, Jun 3, 2015 at 3:43 PM, Elilmatha Sivanesan 
>> wrote:
>>
>>> adding integration team.
>>>
>>> On Wed, Jun 3, 2015 at 12:49 PM, Elilmatha Sivanesan >> > wrote:
>>>

 I need to run the integration test for the connector , the same
 integration test works fine with esb-4.8.1 But not with $subject. I got the
 following error

  [2015-06-03 11:18:36,867] FATAL - CarbonServerManager WSO2 Carbon
 initialization Failed

 [2015-06-03 11:18:36,869]  INFO
 {org.wso2.carbon.automation.core.utils.coreutils.InputStreamHandler} -
 java.lang.ClassFormatError: Illegal local variable table start_pc 48 in
 method
 org.apache.synapse.transport.passthru.PassThroughHttpSender.invoke(Lorg/apache/axis2/context/MessageContext;)Lorg/apache/axis2/engine/Handler$InvocationResponse;

 So i changed the the carbon platform version to 4.4.1. But now also I
 get the following error

 esb:org.wso2.carbon.connector elilmatha$ mvn clean install

 [INFO] Scanning for projects...

 [WARNING]

 [WARNING] Some problems were encountered while building the effective
 model for
 org.wso2.carbon.connector:org.wso2.carbon.connector.proworkflow:jar:1.0.0

 [WARNING] 'artifactId' contains an expression but should be a constant.
 @ 
 org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
 /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
 line 29, column 16

 [WARNING] 'version' contains an expression but should be a constant. @
 org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
 /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
 line 30, column 13

 [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique
 but found duplicate declaration of plugin
 org.apache.maven.plugins:maven-dependency-plugin @
 org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
 /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
 line 162, column 18

 [WARNING]

 [WARNING] It is highly recommended to fix these problems because they
 threaten the stability of your build.

 [WARNING]

 [WARNING] For this reason, future Maven versions might no longer
 support building such malformed projects.

 [WARNING]

 [INFO]


 [INFO]
 

 [INFO] Building WSO2 Carbon - Mediation Library Connector For
 proworkflow 1.0.0

 [INFO]
 

 [WARNING] The POM for org.apache.bsf:bsf-all:jar:3.0 is invalid,
 transitive dependencies (if any) will not be available, enable debug
 logging for more details

 [WARNING] The POM for
 org.wso2.carbon:org.wso2.carbon.mediation.library.stub:jar:4.4.1 is
 missing, no dependency information available

 [WARNING] The POM for
 org.eclipse.equinox:org.eclipse.equinox.http.servlet:jar:1.0.200.v20090520-1800
 is invalid, transitive dependencies (if any) will not be available, enable
 debug logging for more details

 [WARNING] The POM for
 org.eclipse.osgi:org.eclipse.osgi.services:jar:3.2.0.v20090520-1800 is
 invalid, transitive dependencies (if any) will not be available, enable
 debug logging for more details

 [WARNING] The POM for
 org.eclipse.equinox:org.eclipse.equinox.simpleconfigurator:jar:1.0.100.v20090520-1905
 is invalid, transitive dependencies (if any) will not be available, enable
 debug logging for more details

 [WARNING] The POM for
 org.eclipse.equinox:org.eclipse.equinox.util:jar:1.0.100.v20090520-1800 is
 invalid, transitive dependencies (if any) will not be available, enable
 debug logging for more details


Re: [Dev] Error - Running Integration test for connector with ESB-4.9.0.ALPHA

2015-06-04 Thread Elilmatha Sivanesan
Hi all,

Still this error is there for getting the  dependencies.

Thank you.

On Wed, Jun 3, 2015 at 5:27 PM, Saneth Dharmakeerthi 
wrote:

> Hi Elilmatha,
>
> There is no 4.4.1 version for org.wso2.carbon.automation.
> Please update the test integration dependencies as bellow.
>
> 4.3.1
> 4.3.0
>
>
>
> Thanks and Best Regards,
>
> Saneth Dharmakeerthi
> Senior Software Engineer
> WSO2, Inc.
> Mobile: +94772325511
>
> On Wed, Jun 3, 2015 at 3:43 PM, Elilmatha Sivanesan 
> wrote:
>
>> adding integration team.
>>
>> On Wed, Jun 3, 2015 at 12:49 PM, Elilmatha Sivanesan 
>> wrote:
>>
>>>
>>> I need to run the integration test for the connector , the same
>>> integration test works fine with esb-4.8.1 But not with $subject. I got the
>>> following error
>>>
>>>  [2015-06-03 11:18:36,867] FATAL - CarbonServerManager WSO2 Carbon
>>> initialization Failed
>>>
>>> [2015-06-03 11:18:36,869]  INFO
>>> {org.wso2.carbon.automation.core.utils.coreutils.InputStreamHandler} -
>>> java.lang.ClassFormatError: Illegal local variable table start_pc 48 in
>>> method
>>> org.apache.synapse.transport.passthru.PassThroughHttpSender.invoke(Lorg/apache/axis2/context/MessageContext;)Lorg/apache/axis2/engine/Handler$InvocationResponse;
>>>
>>> So i changed the the carbon platform version to 4.4.1. But now also I
>>> get the following error
>>>
>>> esb:org.wso2.carbon.connector elilmatha$ mvn clean install
>>>
>>> [INFO] Scanning for projects...
>>>
>>> [WARNING]
>>>
>>> [WARNING] Some problems were encountered while building the effective
>>> model for
>>> org.wso2.carbon.connector:org.wso2.carbon.connector.proworkflow:jar:1.0.0
>>>
>>> [WARNING] 'artifactId' contains an expression but should be a constant.
>>> @ 
>>> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
>>> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
>>> line 29, column 16
>>>
>>> [WARNING] 'version' contains an expression but should be a constant. @
>>> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
>>> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
>>> line 30, column 13
>>>
>>> [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but
>>> found duplicate declaration of plugin
>>> org.apache.maven.plugins:maven-dependency-plugin @
>>> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
>>> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
>>> line 162, column 18
>>>
>>> [WARNING]
>>>
>>> [WARNING] It is highly recommended to fix these problems because they
>>> threaten the stability of your build.
>>>
>>> [WARNING]
>>>
>>> [WARNING] For this reason, future Maven versions might no longer support
>>> building such malformed projects.
>>>
>>> [WARNING]
>>>
>>> [INFO]
>>>
>>>
>>> [INFO]
>>> 
>>>
>>> [INFO] Building WSO2 Carbon - Mediation Library Connector For
>>> proworkflow 1.0.0
>>>
>>> [INFO]
>>> 
>>>
>>> [WARNING] The POM for org.apache.bsf:bsf-all:jar:3.0 is invalid,
>>> transitive dependencies (if any) will not be available, enable debug
>>> logging for more details
>>>
>>> [WARNING] The POM for
>>> org.wso2.carbon:org.wso2.carbon.mediation.library.stub:jar:4.4.1 is
>>> missing, no dependency information available
>>>
>>> [WARNING] The POM for
>>> org.eclipse.equinox:org.eclipse.equinox.http.servlet:jar:1.0.200.v20090520-1800
>>> is invalid, transitive dependencies (if any) will not be available, enable
>>> debug logging for more details
>>>
>>> [WARNING] The POM for
>>> org.eclipse.osgi:org.eclipse.osgi.services:jar:3.2.0.v20090520-1800 is
>>> invalid, transitive dependencies (if any) will not be available, enable
>>> debug logging for more details
>>>
>>> [WARNING] The POM for
>>> org.eclipse.equinox:org.eclipse.equinox.simpleconfigurator:jar:1.0.100.v20090520-1905
>>> is invalid, transitive dependencies (if any) will not be available, enable
>>> debug logging for more details
>>>
>>> [WARNING] The POM for
>>> org.eclipse.equinox:org.eclipse.equinox.util:jar:1.0.100.v20090520-1800 is
>>> invalid, transitive dependencies (if any) will not be available, enable
>>> debug logging for more details
>>>
>>> [WARNING] The POM for
>>> org.eclipse.equinox:org.eclipse.equinox.ds:jar:1.1.0.v20090520-1800 is
>>> invalid, transitive dependencies (if any) will not be available, enable
>>> debug logging for more details
>>>
>>> [WARNING] The POM for
>>> org.eclipse.equinox:org.eclipse.equinox.jsp.jasper:jar:1.0.200.v20090520-1800
>>> is invalid, transitive dependencies (if any) will not be available, enable
>>> 

Re: [Dev] Error - Running Integration test for connector with ESB-4.9.0.ALPHA

2015-06-03 Thread Saneth Dharmakeerthi
Hi Elilmatha,

There is no 4.4.1 version for org.wso2.carbon.automation.
Please update the test integration dependencies as bellow.

4.3.1
4.3.0



Thanks and Best Regards,

Saneth Dharmakeerthi
Senior Software Engineer
WSO2, Inc.
Mobile: +94772325511

On Wed, Jun 3, 2015 at 3:43 PM, Elilmatha Sivanesan 
wrote:

> adding integration team.
>
> On Wed, Jun 3, 2015 at 12:49 PM, Elilmatha Sivanesan 
> wrote:
>
>>
>> I need to run the integration test for the connector , the same
>> integration test works fine with esb-4.8.1 But not with $subject. I got the
>> following error
>>
>>  [2015-06-03 11:18:36,867] FATAL - CarbonServerManager WSO2 Carbon
>> initialization Failed
>>
>> [2015-06-03 11:18:36,869]  INFO
>> {org.wso2.carbon.automation.core.utils.coreutils.InputStreamHandler} -
>> java.lang.ClassFormatError: Illegal local variable table start_pc 48 in
>> method
>> org.apache.synapse.transport.passthru.PassThroughHttpSender.invoke(Lorg/apache/axis2/context/MessageContext;)Lorg/apache/axis2/engine/Handler$InvocationResponse;
>>
>> So i changed the the carbon platform version to 4.4.1. But now also I get
>> the following error
>>
>> esb:org.wso2.carbon.connector elilmatha$ mvn clean install
>>
>> [INFO] Scanning for projects...
>>
>> [WARNING]
>>
>> [WARNING] Some problems were encountered while building the effective
>> model for
>> org.wso2.carbon.connector:org.wso2.carbon.connector.proworkflow:jar:1.0.0
>>
>> [WARNING] 'artifactId' contains an expression but should be a constant. @
>> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
>> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
>> line 29, column 16
>>
>> [WARNING] 'version' contains an expression but should be a constant. @
>> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
>> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
>> line 30, column 13
>>
>> [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but
>> found duplicate declaration of plugin
>> org.apache.maven.plugins:maven-dependency-plugin @
>> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
>> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
>> line 162, column 18
>>
>> [WARNING]
>>
>> [WARNING] It is highly recommended to fix these problems because they
>> threaten the stability of your build.
>>
>> [WARNING]
>>
>> [WARNING] For this reason, future Maven versions might no longer support
>> building such malformed projects.
>>
>> [WARNING]
>>
>> [INFO]
>>
>>
>> [INFO]
>> 
>>
>> [INFO] Building WSO2 Carbon - Mediation Library Connector For proworkflow
>> 1.0.0
>>
>> [INFO]
>> 
>>
>> [WARNING] The POM for org.apache.bsf:bsf-all:jar:3.0 is invalid,
>> transitive dependencies (if any) will not be available, enable debug
>> logging for more details
>>
>> [WARNING] The POM for
>> org.wso2.carbon:org.wso2.carbon.mediation.library.stub:jar:4.4.1 is
>> missing, no dependency information available
>>
>> [WARNING] The POM for
>> org.eclipse.equinox:org.eclipse.equinox.http.servlet:jar:1.0.200.v20090520-1800
>> is invalid, transitive dependencies (if any) will not be available, enable
>> debug logging for more details
>>
>> [WARNING] The POM for
>> org.eclipse.osgi:org.eclipse.osgi.services:jar:3.2.0.v20090520-1800 is
>> invalid, transitive dependencies (if any) will not be available, enable
>> debug logging for more details
>>
>> [WARNING] The POM for
>> org.eclipse.equinox:org.eclipse.equinox.simpleconfigurator:jar:1.0.100.v20090520-1905
>> is invalid, transitive dependencies (if any) will not be available, enable
>> debug logging for more details
>>
>> [WARNING] The POM for
>> org.eclipse.equinox:org.eclipse.equinox.util:jar:1.0.100.v20090520-1800 is
>> invalid, transitive dependencies (if any) will not be available, enable
>> debug logging for more details
>>
>> [WARNING] The POM for
>> org.eclipse.equinox:org.eclipse.equinox.ds:jar:1.1.0.v20090520-1800 is
>> invalid, transitive dependencies (if any) will not be available, enable
>> debug logging for more details
>>
>> [WARNING] The POM for
>> org.eclipse.equinox:org.eclipse.equinox.jsp.jasper:jar:1.0.200.v20090520-1800
>> is invalid, transitive dependencies (if any) will not be available, enable
>> debug logging for more details
>>
>> [WARNING] The POM for
>> org.eclipse.equinox:javax.servlet.jsp:jar:2.0.0.v200806031607 is invalid,
>> transitive dependencies (if any) will not be available, enable debug
>> logging for more details
>>
>> [WARNING] The POM for
>> org.eclipse.equinox:o

Re: [Dev] Error - Running Integration test for connector with ESB-4.9.0.ALPHA

2015-06-03 Thread Elilmatha Sivanesan
adding integration team.

On Wed, Jun 3, 2015 at 12:49 PM, Elilmatha Sivanesan 
wrote:

>
> I need to run the integration test for the connector , the same
> integration test works fine with esb-4.8.1 But not with $subject. I got the
> following error
>
>  [2015-06-03 11:18:36,867] FATAL - CarbonServerManager WSO2 Carbon
> initialization Failed
>
> [2015-06-03 11:18:36,869]  INFO
> {org.wso2.carbon.automation.core.utils.coreutils.InputStreamHandler} -
> java.lang.ClassFormatError: Illegal local variable table start_pc 48 in
> method
> org.apache.synapse.transport.passthru.PassThroughHttpSender.invoke(Lorg/apache/axis2/context/MessageContext;)Lorg/apache/axis2/engine/Handler$InvocationResponse;
>
> So i changed the the carbon platform version to 4.4.1. But now also I get
> the following error
>
> esb:org.wso2.carbon.connector elilmatha$ mvn clean install
>
> [INFO] Scanning for projects...
>
> [WARNING]
>
> [WARNING] Some problems were encountered while building the effective
> model for
> org.wso2.carbon.connector:org.wso2.carbon.connector.proworkflow:jar:1.0.0
>
> [WARNING] 'artifactId' contains an expression but should be a constant. @
> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
> line 29, column 16
>
> [WARNING] 'version' contains an expression but should be a constant. @
> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
> line 30, column 13
>
> [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but
> found duplicate declaration of plugin
> org.apache.maven.plugins:maven-dependency-plugin @
> org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
> /Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
> line 162, column 18
>
> [WARNING]
>
> [WARNING] It is highly recommended to fix these problems because they
> threaten the stability of your build.
>
> [WARNING]
>
> [WARNING] For this reason, future Maven versions might no longer support
> building such malformed projects.
>
> [WARNING]
>
> [INFO]
>
>
> [INFO]
> 
>
> [INFO] Building WSO2 Carbon - Mediation Library Connector For proworkflow
> 1.0.0
>
> [INFO]
> 
>
> [WARNING] The POM for org.apache.bsf:bsf-all:jar:3.0 is invalid,
> transitive dependencies (if any) will not be available, enable debug
> logging for more details
>
> [WARNING] The POM for
> org.wso2.carbon:org.wso2.carbon.mediation.library.stub:jar:4.4.1 is
> missing, no dependency information available
>
> [WARNING] The POM for
> org.eclipse.equinox:org.eclipse.equinox.http.servlet:jar:1.0.200.v20090520-1800
> is invalid, transitive dependencies (if any) will not be available, enable
> debug logging for more details
>
> [WARNING] The POM for
> org.eclipse.osgi:org.eclipse.osgi.services:jar:3.2.0.v20090520-1800 is
> invalid, transitive dependencies (if any) will not be available, enable
> debug logging for more details
>
> [WARNING] The POM for
> org.eclipse.equinox:org.eclipse.equinox.simpleconfigurator:jar:1.0.100.v20090520-1905
> is invalid, transitive dependencies (if any) will not be available, enable
> debug logging for more details
>
> [WARNING] The POM for
> org.eclipse.equinox:org.eclipse.equinox.util:jar:1.0.100.v20090520-1800 is
> invalid, transitive dependencies (if any) will not be available, enable
> debug logging for more details
>
> [WARNING] The POM for
> org.eclipse.equinox:org.eclipse.equinox.ds:jar:1.1.0.v20090520-1800 is
> invalid, transitive dependencies (if any) will not be available, enable
> debug logging for more details
>
> [WARNING] The POM for
> org.eclipse.equinox:org.eclipse.equinox.jsp.jasper:jar:1.0.200.v20090520-1800
> is invalid, transitive dependencies (if any) will not be available, enable
> debug logging for more details
>
> [WARNING] The POM for
> org.eclipse.equinox:javax.servlet.jsp:jar:2.0.0.v200806031607 is invalid,
> transitive dependencies (if any) will not be available, enable debug
> logging for more details
>
> [WARNING] The POM for
> org.eclipse.equinox:org.apache.jasper:jar:5.5.17.v200806031609 is invalid,
> transitive dependencies (if any) will not be available, enable debug
> logging for more details
>
> [WARNING] The POM for
> org.eclipse.equinox:org.apache.commons.el:jar:1.0.0.v200806031608 is
> invalid, transitive dependencies (if any) will not be available, enable
> debug logging for more details
>
> [WARNING] The POM for
> org.eclipse.equinox:org.eclipse.equinox.app:jar:1.2

[Dev] Error - Running Integration test for connector with ESB-4.9.0.ALPHA

2015-06-03 Thread Elilmatha Sivanesan
I need to run the integration test for the connector , the same integration
test works fine with esb-4.8.1 But not with $subject. I got the following
error

 [2015-06-03 11:18:36,867] FATAL - CarbonServerManager WSO2 Carbon
initialization Failed

[2015-06-03 11:18:36,869]  INFO
{org.wso2.carbon.automation.core.utils.coreutils.InputStreamHandler} -
java.lang.ClassFormatError: Illegal local variable table start_pc 48 in
method
org.apache.synapse.transport.passthru.PassThroughHttpSender.invoke(Lorg/apache/axis2/context/MessageContext;)Lorg/apache/axis2/engine/Handler$InvocationResponse;

So i changed the the carbon platform version to 4.4.1. But now also I get
the following error

esb:org.wso2.carbon.connector elilmatha$ mvn clean install

[INFO] Scanning for projects...

[WARNING]

[WARNING] Some problems were encountered while building the effective model
for
org.wso2.carbon.connector:org.wso2.carbon.connector.proworkflow:jar:1.0.0

[WARNING] 'artifactId' contains an expression but should be a constant. @
org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
/Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
line 29, column 16

[WARNING] 'version' contains an expression but should be a constant. @
org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
/Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
line 30, column 13

[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but
found duplicate declaration of plugin
org.apache.maven.plugins:maven-dependency-plugin @
org.wso2.carbon.connector:org.wso2.carbon.connector.${connector.name}:${connector.version},
/Users/elilmatha/Desktop/allReviewedConnectors/proworkflow/proworkflow-connector/proworkflow-connector-1.0.0/org.wso2.carbon.connector/pom.xml,
line 162, column 18

[WARNING]

[WARNING] It is highly recommended to fix these problems because they
threaten the stability of your build.

[WARNING]

[WARNING] For this reason, future Maven versions might no longer support
building such malformed projects.

[WARNING]

[INFO]


[INFO]


[INFO] Building WSO2 Carbon - Mediation Library Connector For proworkflow
1.0.0

[INFO]


[WARNING] The POM for org.apache.bsf:bsf-all:jar:3.0 is invalid, transitive
dependencies (if any) will not be available, enable debug logging for more
details

[WARNING] The POM for
org.wso2.carbon:org.wso2.carbon.mediation.library.stub:jar:4.4.1 is
missing, no dependency information available

[WARNING] The POM for
org.eclipse.equinox:org.eclipse.equinox.http.servlet:jar:1.0.200.v20090520-1800
is invalid, transitive dependencies (if any) will not be available, enable
debug logging for more details

[WARNING] The POM for
org.eclipse.osgi:org.eclipse.osgi.services:jar:3.2.0.v20090520-1800 is
invalid, transitive dependencies (if any) will not be available, enable
debug logging for more details

[WARNING] The POM for
org.eclipse.equinox:org.eclipse.equinox.simpleconfigurator:jar:1.0.100.v20090520-1905
is invalid, transitive dependencies (if any) will not be available, enable
debug logging for more details

[WARNING] The POM for
org.eclipse.equinox:org.eclipse.equinox.util:jar:1.0.100.v20090520-1800 is
invalid, transitive dependencies (if any) will not be available, enable
debug logging for more details

[WARNING] The POM for
org.eclipse.equinox:org.eclipse.equinox.ds:jar:1.1.0.v20090520-1800 is
invalid, transitive dependencies (if any) will not be available, enable
debug logging for more details

[WARNING] The POM for
org.eclipse.equinox:org.eclipse.equinox.jsp.jasper:jar:1.0.200.v20090520-1800
is invalid, transitive dependencies (if any) will not be available, enable
debug logging for more details

[WARNING] The POM for
org.eclipse.equinox:javax.servlet.jsp:jar:2.0.0.v200806031607 is invalid,
transitive dependencies (if any) will not be available, enable debug
logging for more details

[WARNING] The POM for
org.eclipse.equinox:org.apache.jasper:jar:5.5.17.v200806031609 is invalid,
transitive dependencies (if any) will not be available, enable debug
logging for more details

[WARNING] The POM for
org.eclipse.equinox:org.apache.commons.el:jar:1.0.0.v200806031608 is
invalid, transitive dependencies (if any) will not be available, enable
debug logging for more details

[WARNING] The POM for
org.eclipse.equinox:org.eclipse.equinox.app:jar:1.2.0.v20090520-1800 is
invalid, transitive dependencies (if any) will not be available, enable
debug logging for more details

[WARNING] The POM for
org.eclipse.equinox:org.eclipse.equinox.concurrent:jar:1.0.0.v20090520-1800
is invalid, transitive dependencies (if any) will not be available, enable
debu