[jira] [Commented] (AXIS2-5809) Axis2 does not properly return http connection to connection pool when using http client 4

2016-10-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5809?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15580777#comment-15580777
 ] 

Hudson commented on AXIS2-5809:
---

SUCCESS: Integrated in Jenkins build axis2-1.7 #90 (See 
[https://builds.apache.org/job/axis2-1.7/90/])
AXIS2-5809: Merge r1765193 to the 1.7 branch. (veithen: rev 1765194)
* (edit) axis2
* (edit) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/EchoServiceImpl.java
* (edit) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/ServiceTest.java
* (edit) 
axis2/modules/transport/http/src/org/apache/axis2/transport/http/impl/httpclient4
* (edit) 
axis2/modules/transport/http/src/org/apache/axis2/transport/http/impl/httpclient4/HTTPClient4TransportSender.java


> Axis2 does not properly return http connection to connection pool when using 
> http client 4
> --
>
> Key: AXIS2-5809
> URL: https://issues.apache.org/jira/browse/AXIS2-5809
> Project: Axis2
>  Issue Type: Bug
>  Components: transports
>Affects Versions: 1.7.3
> Environment: Ubuntu 16.04, OpenJDK 7
>Reporter: Christian H.
>Priority: Critical
> Fix For: 1.7.4
>
>
> When using HTTP Client 4 with a generated WSDL-Client the HTTP connections 
> are not returned properly to underlying connection pool. The HTTP connections 
> are still allocated, when new requests are made. This ends up in waiting for 
> HTTP connections from pool, but no connections are available anymore.
> The connections should be returned to pool as stated in the Apache HTTP 
> Client 4 documentation (2.3.1):
> https://hc.apache.org/httpcomponents-client-ga/tutorial/html/connmgmt.html
> Here is some example code to reproduce the problem. The BLZServiceStub is a 
> generated WSDL client (wsdl2java) of the following service: 
> http://www.thomas-bayer.com/axis2/services/BLZService?wsdl . But the problem 
> is independent of the used service.
> {code:title=TestRunner.java}
> package com.thomas_bayer.blz;
> import java.rmi.RemoteException;
> import org.apache.axis2.transport.http.HTTPConstants;
> import org.apache.http.client.HttpClient;
> import org.apache.http.impl.client.DefaultHttpClient;
> import org.apache.http.impl.conn.PoolingClientConnectionManager;
> import org.apache.http.params.BasicHttpParams;
> import org.apache.http.params.CoreConnectionPNames;
> import org.apache.http.params.HttpParams;
> public class TestRunner {
>   private static final int timeoutMillis = 5000;
>   private static final int maxConnections = 2;
>   
>   private static final String[] BLZs = new String[] {
>   "1203", "1207"
>   };
>   
>   public static void main(String[] args) throws RemoteException {
> BLZServiceStub blzService = new BLZServiceStub();
> 
> blzService._getServiceClient().getServiceContext().getConfigurationContext().setProperty(HTTPConstants.CACHED_HTTP_CLIENT,
>  buildHttpClient());
> for(int i = 0; i <= maxConnections; i++) {
>   BLZServiceStub.GetBankType getBankType = new 
> BLZServiceStub.GetBankType();
>   getBankType.setBlz(BLZs[i % BLZs.length]);
>   BLZServiceStub.GetBank getBank = new BLZServiceStub.GetBank();
>   getBank.setGetBank(getBankType);
>   
>   System.out.println("Querying for bank (iteration: " + i + ")");
>   BLZServiceStub.GetBankResponse response = blzService.getBank(getBank);
>   System.out.println("Bank queried");
>   
>   System.out.println("Result: " + 
> response.getGetBankResponse().getDetails().getBezeichnung());
> }
>   }
>   protected static HttpClient buildHttpClient() {
> final PoolingClientConnectionManager conmgr = new 
> PoolingClientConnectionManager();
> conmgr.setDefaultMaxPerRoute(maxConnections);
> conmgr.setMaxTotal(maxConnections);
> 
> final HttpParams params = new BasicHttpParams();
> params.setLongParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, 
> timeoutMillis);
> params.setLongParameter(CoreConnectionPNames.SO_TIMEOUT, timeoutMillis);
> 
> return new DefaultHttpClient(conmgr, params);
>   }
> }
> {code}
> Running this code will produce the following output:
> {noformat}
> Querying for bank (iteration: 0)
> Bank queried
> Result: Deutsche Kreditbank Berlin
> Querying for bank (iteration: 1)
> Bank queried
> Result: Deutsche Bank Ld Brandenburg
> Querying for bank (iteration: 2)
> Sep 27, 2016 8:32:43 AM 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl sendViaPost
> INFORMATION: Unable to sendViaPost to 
> url[http://www.thomas-bayer.com/axis2/services/BLZService]
> org.apache.http.conn.ConnectionPoolTimeoutException: Timeout waiting for 
> connection from pool
>   at 
> 

Jenkins build is back to normal : axis2-1.7 » webapp-tests #90

2016-10-16 Thread Apache Jenkins Server
See 


-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



Jenkins build is back to normal : axis2-1.7 #90

2016-10-16 Thread Apache Jenkins Server
See 


-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5809) Axis2 does not properly return http connection to connection pool when using http client 4

2016-10-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5809?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15580712#comment-15580712
 ] 

Hudson commented on AXIS2-5809:
---

SUCCESS: Integrated in Jenkins build Axis2 #3601 (See 
[https://builds.apache.org/job/Axis2/3601/])
AXIS2-5809: Ensure that connections are properly released. (veithen: rev 
1765193)
* (edit) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/EchoServiceImpl.java
* (edit) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/ServiceTest.java
* (edit) 
axis2/modules/transport/http/src/org/apache/axis2/transport/http/impl/httpclient4/HTTPClient4TransportSender.java


> Axis2 does not properly return http connection to connection pool when using 
> http client 4
> --
>
> Key: AXIS2-5809
> URL: https://issues.apache.org/jira/browse/AXIS2-5809
> Project: Axis2
>  Issue Type: Bug
>  Components: transports
>Affects Versions: 1.7.3
> Environment: Ubuntu 16.04, OpenJDK 7
>Reporter: Christian H.
>Priority: Critical
>
> When using HTTP Client 4 with a generated WSDL-Client the HTTP connections 
> are not returned properly to underlying connection pool. The HTTP connections 
> are still allocated, when new requests are made. This ends up in waiting for 
> HTTP connections from pool, but no connections are available anymore.
> The connections should be returned to pool as stated in the Apache HTTP 
> Client 4 documentation (2.3.1):
> https://hc.apache.org/httpcomponents-client-ga/tutorial/html/connmgmt.html
> Here is some example code to reproduce the problem. The BLZServiceStub is a 
> generated WSDL client (wsdl2java) of the following service: 
> http://www.thomas-bayer.com/axis2/services/BLZService?wsdl . But the problem 
> is independent of the used service.
> {code:title=TestRunner.java}
> package com.thomas_bayer.blz;
> import java.rmi.RemoteException;
> import org.apache.axis2.transport.http.HTTPConstants;
> import org.apache.http.client.HttpClient;
> import org.apache.http.impl.client.DefaultHttpClient;
> import org.apache.http.impl.conn.PoolingClientConnectionManager;
> import org.apache.http.params.BasicHttpParams;
> import org.apache.http.params.CoreConnectionPNames;
> import org.apache.http.params.HttpParams;
> public class TestRunner {
>   private static final int timeoutMillis = 5000;
>   private static final int maxConnections = 2;
>   
>   private static final String[] BLZs = new String[] {
>   "1203", "1207"
>   };
>   
>   public static void main(String[] args) throws RemoteException {
> BLZServiceStub blzService = new BLZServiceStub();
> 
> blzService._getServiceClient().getServiceContext().getConfigurationContext().setProperty(HTTPConstants.CACHED_HTTP_CLIENT,
>  buildHttpClient());
> for(int i = 0; i <= maxConnections; i++) {
>   BLZServiceStub.GetBankType getBankType = new 
> BLZServiceStub.GetBankType();
>   getBankType.setBlz(BLZs[i % BLZs.length]);
>   BLZServiceStub.GetBank getBank = new BLZServiceStub.GetBank();
>   getBank.setGetBank(getBankType);
>   
>   System.out.println("Querying for bank (iteration: " + i + ")");
>   BLZServiceStub.GetBankResponse response = blzService.getBank(getBank);
>   System.out.println("Bank queried");
>   
>   System.out.println("Result: " + 
> response.getGetBankResponse().getDetails().getBezeichnung());
> }
>   }
>   protected static HttpClient buildHttpClient() {
> final PoolingClientConnectionManager conmgr = new 
> PoolingClientConnectionManager();
> conmgr.setDefaultMaxPerRoute(maxConnections);
> conmgr.setMaxTotal(maxConnections);
> 
> final HttpParams params = new BasicHttpParams();
> params.setLongParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, 
> timeoutMillis);
> params.setLongParameter(CoreConnectionPNames.SO_TIMEOUT, timeoutMillis);
> 
> return new DefaultHttpClient(conmgr, params);
>   }
> }
> {code}
> Running this code will produce the following output:
> {noformat}
> Querying for bank (iteration: 0)
> Bank queried
> Result: Deutsche Kreditbank Berlin
> Querying for bank (iteration: 1)
> Bank queried
> Result: Deutsche Bank Ld Brandenburg
> Querying for bank (iteration: 2)
> Sep 27, 2016 8:32:43 AM 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl sendViaPost
> INFORMATION: Unable to sendViaPost to 
> url[http://www.thomas-bayer.com/axis2/services/BLZService]
> org.apache.http.conn.ConnectionPoolTimeoutException: Timeout waiting for 
> connection from pool
>   at 
> org.apache.http.impl.conn.PoolingClientConnectionManager.leaseConnection(PoolingClientConnectionManager.java:232)
>   at 
> 

Jenkins build is back to normal : Axis2 #3601

2016-10-16 Thread Apache Jenkins Server
See 


-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



Jenkins build is back to normal : Axis2 » Apache Axis2 - Test Utilities #3601

2016-10-16 Thread Apache Jenkins Server
See 



-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Resolved] (AXIS2-5812) call to configurationcontextfromfilesystem is very slow

2016-10-16 Thread Andreas Veithen (JIRA)

 [ 
https://issues.apache.org/jira/browse/AXIS2-5812?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Veithen resolved AXIS2-5812.

Resolution: Incomplete

> call to configurationcontextfromfilesystem is very slow
> ---
>
> Key: AXIS2-5812
> URL: https://issues.apache.org/jira/browse/AXIS2-5812
> Project: Axis2
>  Issue Type: Bug
>  Components: kernel
>Affects Versions: 1.6.4
> Environment: Java Version 1.8
>Reporter: Vincent Dave Canas
>
> We are encountering some lag in the client webservice app during the call to 
> "ConfigurationContextFactory.createConfigurationContextFromFileSystem". We 
> have added logging for the axis2 libraries and the slowness was found after 
> the library has logged "Creating class loader with the following libraries 
> [file:/modules]". The next log "populateModule: Building module 
> description for: addressing" is logged after 5-10 minutes. Varies on each 
> run. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



Build failed in Jenkins: axis2-1.7 » webapp-tests #89

2016-10-16 Thread Apache Jenkins Server
See 

--
[INFO] 
[INFO] 
[INFO] Building webapp-tests 1.7.4-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.2:clean (default-clean) @ webapp-tests ---
[INFO] Deleting directory 

[INFO] 
[INFO] --- maven-enforcer-plugin:1.1:enforce (default) @ webapp-tests ---
[INFO] 
[INFO] --- gmavenplus-plugin:1.5:execute (create-tmp-directory) @ webapp-tests 
---
[INFO] Using Groovy 2.4.4 to perform execute.
[INFO] 
[INFO] --- alta-maven-plugin:0.4:generate-properties (default) @ webapp-tests 
---
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ webapp-tests 
---
[INFO] 
[INFO] --- maven-resources-plugin:2.4.2:resources (default-resources) @ 
webapp-tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 

[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ webapp-tests 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.4.2:testResources (default-testResources) @ 
webapp-tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 

[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.5.1:testCompile (default-testCompile) @ 
webapp-tests ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 4 source files to 

[INFO] 
[INFO] --- maven-surefire-plugin:2.13:test (default-test) @ webapp-tests ---
[JENKINS] Recording test results
[INFO] 
[INFO] --- maven-jar-plugin:2.2:jar (default-jar) @ webapp-tests ---
[INFO] Building jar: 

[INFO] 
[INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ 
webapp-tests ---
[INFO] 
[INFO] --- maven-assembly-plugin:2.6:single (source-release-assembly) @ 
webapp-tests ---
[INFO] Assemblies have been skipped per configuration of the skipAssembly 
parameter.
[INFO] 
[INFO] --- maven-source-plugin:2.4:jar-no-fork (source-jars) @ webapp-tests ---
[INFO] Building jar: 

[INFO] 
[INFO] --- maven-javadoc-plugin:2.10.3:jar (attach-javadocs) @ webapp-tests ---
[INFO] 
[INFO] --- build-helper-maven-plugin:1.4:reserve-network-port 
(reserve-network-port) @ webapp-tests ---
[INFO] Reserved port 43759 for jetty.stopPort
[INFO] Reserved port 46910 for jetty.httpPort
[INFO] 
[INFO] --- maven-enforcer-plugin:1.1:enforce (default) @ webapp-tests ---
[WARNING] Failed to getClass for org.mortbay.jetty.plugin.JettyDeployWar
[INFO] 
[INFO] --- jetty-maven-plugin:8.1.16.v20140903:deploy-war (start-jetty) @ 
webapp-tests ---
[INFO] Configuring Jetty for project: webapp-tests
[INFO] Context path = /axis2
[INFO] Tmp directory = 

[INFO] Web defaults = org/eclipse/jetty/webapp/webdefault.xml
[INFO] Web overrides =  none
2016-10-16 22:18:17.821:INFO:oejs.Server:jetty-8.1.16.v20140903
2016-10-16 22:18:17.842:INFO:oejw.WebInfConfiguration:Extract 
jar:file:/home/jenkins/jenkins-slave/workspace/axis2-1.7/axis2/modules/webapp/target/axis2.war!/
 to 

2016-10-16 22:18:20.548:INFO:oejpw.PlusConfiguration:No Transaction manager 
found - if your webapp requires one, please configure one.
[INFO] Clustering has been disabled
[INFO] Deploying module: jaxws-1.7.4-SNAPSHOT - 

[INFO] Deploying module: soapmonitor-1.7.4-SNAPSHOT - 

[INFO] Deploying module: ping-1.7.4-SNAPSHOT - 

[INFO] Deploying module: metadataExchange-1.7.4-SNAPSHOT - 

[INFO] 

Build failed in Jenkins: axis2-1.7 #89

2016-10-16 Thread Apache Jenkins Server
See 

Changes:

[veithen] AXIS2-5809: Merge r1765188 (with changes) to the 1.7 so that we can 
reproduce the problem.

--
[...truncated 17586 lines...]
[JENKINS] Archiving 

 to 
org.apache.axis2/axis2-corba/1.7.4-20161016.213337-23/axis2-corba-1.7.4-20161016.213337-23-javadoc.jar
Compressed 638.10 KB of artifacts by 10.0% relative to #88
[JENKINS] Archiving 
 to 
org.apache.axis2/org.apache.axis2.osgi/1.7.4-SNAPSHOT/org.apache.axis2.osgi-1.7.4-SNAPSHOT.pom
[JENKINS] Archiving 

 to 
org.apache.axis2/org.apache.axis2.osgi/1.7.4-20161016.213935-23/org.apache.axis2.osgi-1.7.4-20161016.213935-23.jar
[JENKINS] Archiving 

 to 
org.apache.axis2/org.apache.axis2.osgi/1.7.4-20161016.213935-23/org.apache.axis2.osgi-1.7.4-20161016.213935-23-sources.jar
[JENKINS] Archiving 

 to 
org.apache.axis2/org.apache.axis2.osgi/1.7.4-20161016.213935-23/org.apache.axis2.osgi-1.7.4-20161016.213935-23-javadoc.jar
[JENKINS] Archiving 

 to 
org.apache.axis2.examples/jaxws-addressbook/1.7.4-SNAPSHOT/jaxws-addressbook-1.7.4-SNAPSHOT.pom
[JENKINS] Archiving 

 to 
org.apache.axis2.examples/jaxws-addressbook/1.7.4-SNAPSHOT/jaxws-addressbook-1.7.4-SNAPSHOT.jar
[JENKINS] Archiving 

 to 
org.apache.axis2.examples/jaxws-addressbook/1.7.4-SNAPSHOT/jaxws-addressbook-1.7.4-SNAPSHOT-sources.jar
[JENKINS] Archiving 

 to 
org.apache.axis2.examples/jaxws-addressbook/1.7.4-SNAPSHOT/jaxws-addressbook-1.7.4-SNAPSHOT-javadoc.jar
[JENKINS] Archiving 

 to 
org.apache.axis2.examples/jaxws-addressbook/1.7.4-SNAPSHOT/jaxws-addressbook-1.7.4-SNAPSHOT-client.jar
[JENKINS] Archiving 
 
to org.apache.axis2/addressing/1.7.4-SNAPSHOT/addressing-1.7.4-SNAPSHOT.pom
[JENKINS] Archiving 

 to 
org.apache.axis2/addressing/1.7.4-20161016.212523-23/addressing-1.7.4-20161016.212523-23.mar
[JENKINS] Archiving 

 to 
org.apache.axis2/addressing/1.7.4-20161016.212523-23/addressing-1.7.4-20161016.212523-23-sources.jar
[JENKINS] Archiving 

 to 
org.apache.axis2/addressing/1.7.4-20161016.212523-23/addressing-1.7.4-20161016.212523-23-javadoc.jar
[JENKINS] Archiving 

 to 
org.apache.axis2/addressing/1.7.4-20161016.212523-23/addressing-1.7.4-20161016.212523-23-classpath-module.jar
[JENKINS] Archiving 

 to 
org.apache.axis2/axis2-ant-plugin/1.7.4-SNAPSHOT/axis2-ant-plugin-1.7.4-SNAPSHOT.pom
[JENKINS] Archiving 

 to 
org.apache.axis2/axis2-ant-plugin/1.7.4-20161016.214458-23/axis2-ant-plugin-1.7.4-20161016.214458-23.jar
[JENKINS] Archiving 

 to 
org.apache.axis2/axis2-ant-plugin/1.7.4-20161016.214458-23/axis2-ant-plugin-1.7.4-20161016.214458-23-sources.jar
[JENKINS] Archiving 

 to 
org.apache.axis2/axis2-ant-plugin/1.7.4-20161016.214458-23/axis2-ant-plugin-1.7.4-20161016.214458-23-javadoc.jar
[JENKINS] Archiving 

[jira] [Commented] (AXIS2-5809) Axis2 does not properly return http connection to connection pool when using http client 4

2016-10-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5809?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15580640#comment-15580640
 ] 

Hudson commented on AXIS2-5809:
---

FAILURE: Integrated in Jenkins build axis2-1.7 #89 (See 
[https://builds.apache.org/job/axis2-1.7/89/])
AXIS2-5809: Merge r1765188 (with changes) to the 1.7 so that we can reproduce 
the problem. (veithen: rev 1765189)
* (edit) axis2
* (edit) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/ServiceTest.java
* (edit) 
axis2/modules/testutils/src/main/java/org/apache/axis2/testutils/Axis2Server.java


> Axis2 does not properly return http connection to connection pool when using 
> http client 4
> --
>
> Key: AXIS2-5809
> URL: https://issues.apache.org/jira/browse/AXIS2-5809
> Project: Axis2
>  Issue Type: Bug
>  Components: transports
>Affects Versions: 1.7.3
> Environment: Ubuntu 16.04, OpenJDK 7
>Reporter: Christian H.
>Priority: Critical
>
> When using HTTP Client 4 with a generated WSDL-Client the HTTP connections 
> are not returned properly to underlying connection pool. The HTTP connections 
> are still allocated, when new requests are made. This ends up in waiting for 
> HTTP connections from pool, but no connections are available anymore.
> The connections should be returned to pool as stated in the Apache HTTP 
> Client 4 documentation (2.3.1):
> https://hc.apache.org/httpcomponents-client-ga/tutorial/html/connmgmt.html
> Here is some example code to reproduce the problem. The BLZServiceStub is a 
> generated WSDL client (wsdl2java) of the following service: 
> http://www.thomas-bayer.com/axis2/services/BLZService?wsdl . But the problem 
> is independent of the used service.
> {code:title=TestRunner.java}
> package com.thomas_bayer.blz;
> import java.rmi.RemoteException;
> import org.apache.axis2.transport.http.HTTPConstants;
> import org.apache.http.client.HttpClient;
> import org.apache.http.impl.client.DefaultHttpClient;
> import org.apache.http.impl.conn.PoolingClientConnectionManager;
> import org.apache.http.params.BasicHttpParams;
> import org.apache.http.params.CoreConnectionPNames;
> import org.apache.http.params.HttpParams;
> public class TestRunner {
>   private static final int timeoutMillis = 5000;
>   private static final int maxConnections = 2;
>   
>   private static final String[] BLZs = new String[] {
>   "1203", "1207"
>   };
>   
>   public static void main(String[] args) throws RemoteException {
> BLZServiceStub blzService = new BLZServiceStub();
> 
> blzService._getServiceClient().getServiceContext().getConfigurationContext().setProperty(HTTPConstants.CACHED_HTTP_CLIENT,
>  buildHttpClient());
> for(int i = 0; i <= maxConnections; i++) {
>   BLZServiceStub.GetBankType getBankType = new 
> BLZServiceStub.GetBankType();
>   getBankType.setBlz(BLZs[i % BLZs.length]);
>   BLZServiceStub.GetBank getBank = new BLZServiceStub.GetBank();
>   getBank.setGetBank(getBankType);
>   
>   System.out.println("Querying for bank (iteration: " + i + ")");
>   BLZServiceStub.GetBankResponse response = blzService.getBank(getBank);
>   System.out.println("Bank queried");
>   
>   System.out.println("Result: " + 
> response.getGetBankResponse().getDetails().getBezeichnung());
> }
>   }
>   protected static HttpClient buildHttpClient() {
> final PoolingClientConnectionManager conmgr = new 
> PoolingClientConnectionManager();
> conmgr.setDefaultMaxPerRoute(maxConnections);
> conmgr.setMaxTotal(maxConnections);
> 
> final HttpParams params = new BasicHttpParams();
> params.setLongParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, 
> timeoutMillis);
> params.setLongParameter(CoreConnectionPNames.SO_TIMEOUT, timeoutMillis);
> 
> return new DefaultHttpClient(conmgr, params);
>   }
> }
> {code}
> Running this code will produce the following output:
> {noformat}
> Querying for bank (iteration: 0)
> Bank queried
> Result: Deutsche Kreditbank Berlin
> Querying for bank (iteration: 1)
> Bank queried
> Result: Deutsche Bank Ld Brandenburg
> Querying for bank (iteration: 2)
> Sep 27, 2016 8:32:43 AM 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl sendViaPost
> INFORMATION: Unable to sendViaPost to 
> url[http://www.thomas-bayer.com/axis2/services/BLZService]
> org.apache.http.conn.ConnectionPoolTimeoutException: Timeout waiting for 
> connection from pool
>   at 
> org.apache.http.impl.conn.PoolingClientConnectionManager.leaseConnection(PoolingClientConnectionManager.java:232)
>   at 
> org.apache.http.impl.conn.PoolingClientConnectionManager$1.getConnection(PoolingClientConnectionManager.java:199)
>   at 
> 

[jira] [Commented] (AXIS2-5809) Axis2 does not properly return http connection to connection pool when using http client 4

2016-10-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5809?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15580562#comment-15580562
 ] 

Hudson commented on AXIS2-5809:
---

FAILURE: Integrated in Jenkins build Axis2 #3600 (See 
[https://builds.apache.org/job/Axis2/3600/])
AXIS2-5809: Use the custom axis2.xml config on the client as well. (veithen: 
rev 1765188)
* (edit) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/ServiceTest.java
* (edit) 
axis2/modules/testutils/src/main/java/org/apache/axis2/testutils/Axis2Server.java
Add test case for the scenario described in AXIS2-5809 and AXIS2-5811. 
(veithen: rev 1765183)
* (edit) axis2/modules/adb-tests/pom.xml
* (add) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809
* (add) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/EchoServiceImpl.java
* (add) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/ServiceTest.java
* (add) axis2/modules/adb-tests/src/test/repo
* (add) axis2/modules/adb-tests/src/test/repo/AXIS2-5809
* (add) axis2/modules/adb-tests/src/test/repo/AXIS2-5809/axis2.xml
* (add) axis2/modules/adb-tests/src/test/wsdl/AXIS2-5809.wsdl
* (add) axis2/modules/adb-tests/src/test/xslt/AXIS2-5809.xsl


> Axis2 does not properly return http connection to connection pool when using 
> http client 4
> --
>
> Key: AXIS2-5809
> URL: https://issues.apache.org/jira/browse/AXIS2-5809
> Project: Axis2
>  Issue Type: Bug
>  Components: transports
>Affects Versions: 1.7.3
> Environment: Ubuntu 16.04, OpenJDK 7
>Reporter: Christian H.
>Priority: Critical
>
> When using HTTP Client 4 with a generated WSDL-Client the HTTP connections 
> are not returned properly to underlying connection pool. The HTTP connections 
> are still allocated, when new requests are made. This ends up in waiting for 
> HTTP connections from pool, but no connections are available anymore.
> The connections should be returned to pool as stated in the Apache HTTP 
> Client 4 documentation (2.3.1):
> https://hc.apache.org/httpcomponents-client-ga/tutorial/html/connmgmt.html
> Here is some example code to reproduce the problem. The BLZServiceStub is a 
> generated WSDL client (wsdl2java) of the following service: 
> http://www.thomas-bayer.com/axis2/services/BLZService?wsdl . But the problem 
> is independent of the used service.
> {code:title=TestRunner.java}
> package com.thomas_bayer.blz;
> import java.rmi.RemoteException;
> import org.apache.axis2.transport.http.HTTPConstants;
> import org.apache.http.client.HttpClient;
> import org.apache.http.impl.client.DefaultHttpClient;
> import org.apache.http.impl.conn.PoolingClientConnectionManager;
> import org.apache.http.params.BasicHttpParams;
> import org.apache.http.params.CoreConnectionPNames;
> import org.apache.http.params.HttpParams;
> public class TestRunner {
>   private static final int timeoutMillis = 5000;
>   private static final int maxConnections = 2;
>   
>   private static final String[] BLZs = new String[] {
>   "1203", "1207"
>   };
>   
>   public static void main(String[] args) throws RemoteException {
> BLZServiceStub blzService = new BLZServiceStub();
> 
> blzService._getServiceClient().getServiceContext().getConfigurationContext().setProperty(HTTPConstants.CACHED_HTTP_CLIENT,
>  buildHttpClient());
> for(int i = 0; i <= maxConnections; i++) {
>   BLZServiceStub.GetBankType getBankType = new 
> BLZServiceStub.GetBankType();
>   getBankType.setBlz(BLZs[i % BLZs.length]);
>   BLZServiceStub.GetBank getBank = new BLZServiceStub.GetBank();
>   getBank.setGetBank(getBankType);
>   
>   System.out.println("Querying for bank (iteration: " + i + ")");
>   BLZServiceStub.GetBankResponse response = blzService.getBank(getBank);
>   System.out.println("Bank queried");
>   
>   System.out.println("Result: " + 
> response.getGetBankResponse().getDetails().getBezeichnung());
> }
>   }
>   protected static HttpClient buildHttpClient() {
> final PoolingClientConnectionManager conmgr = new 
> PoolingClientConnectionManager();
> conmgr.setDefaultMaxPerRoute(maxConnections);
> conmgr.setMaxTotal(maxConnections);
> 
> final HttpParams params = new BasicHttpParams();
> params.setLongParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, 
> timeoutMillis);
> params.setLongParameter(CoreConnectionPNames.SO_TIMEOUT, timeoutMillis);
> 
> return new DefaultHttpClient(conmgr, params);
>   }
> }
> {code}
> Running this code will produce the following output:
> {noformat}
> Querying for bank (iteration: 0)
> Bank queried
> Result: Deutsche Kreditbank Berlin
> Querying for bank (iteration: 1)
> Bank queried
> 

[jira] [Commented] (AXIS2-5811) org.apache.axis2.AxisFault: Timeout waiting for connection from pool

2016-10-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5811?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15580561#comment-15580561
 ] 

Hudson commented on AXIS2-5811:
---

FAILURE: Integrated in Jenkins build Axis2 #3600 (See 
[https://builds.apache.org/job/Axis2/3600/])
Add test case for the scenario described in AXIS2-5809 and AXIS2-5811. 
(veithen: rev 1765183)
* (edit) axis2/modules/adb-tests/pom.xml
* (add) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809
* (add) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/EchoServiceImpl.java
* (add) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809/ServiceTest.java
* (add) axis2/modules/adb-tests/src/test/repo
* (add) axis2/modules/adb-tests/src/test/repo/AXIS2-5809
* (add) axis2/modules/adb-tests/src/test/repo/AXIS2-5809/axis2.xml
* (add) axis2/modules/adb-tests/src/test/wsdl/AXIS2-5809.wsdl
* (add) axis2/modules/adb-tests/src/test/xslt/AXIS2-5809.xsl


> org.apache.axis2.AxisFault: Timeout waiting for connection from pool
> 
>
> Key: AXIS2-5811
> URL: https://issues.apache.org/jira/browse/AXIS2-5811
> Project: Axis2
>  Issue Type: Bug
>  Components: TCP transport
>Affects Versions: 1.7.3
>Reporter: Claudio Degioanni
>Priority: Critical
> Attachments: axis2_HttpClient4.xml, clean_log.log
>
>
> Using Axis library 1.7.3 with HttpClient 4.4.1, after 200 request the library 
> throw a TimeoutException from connection pool:
> Caused by: org.apache.axis2.AxisFault: Timeout waiting for connection from 
> pool
>   at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430) 
> ~[axis2-kernel-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl.sendViaPost(HTTPSenderImpl.java:242)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:121) 
> ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:403)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:234)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:431) 
> ~[axis2-kernel-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:399)
>  ~[axis2-kernel-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:225)
>  ~[axis2-kernel-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.client.OperationClient.execute(OperationClient.java:150) 
> ~[axis2-kernel-1.7.3.jar:1.7.3]
>   
> Caused by: org.apache.http.conn.ConnectionPoolTimeoutException: Timeout 
> waiting for connection from pool
>   at 
> org.apache.http.impl.conn.PoolingClientConnectionManager.leaseConnection(PoolingClientConnectionManager.java:226)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.conn.PoolingClientConnectionManager$1.getConnection(PoolingClientConnectionManager.java:195)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:423)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:882)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:71)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:55)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl.executeMethod(HTTPSenderImpl.java:873)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl.sendViaPost(HTTPSenderImpl.java:238)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   ... 15 common frames omitted
> I think che connection pool used by library don't work correctly, stuck the 
> connections to 200 ??? 
> Steps To reproduce:
> 1 Generate client for windows web service like 
> (http://www.webservicex.com/globalweather.asmx)
> 2 Configure axis2 to use HTTPClient4TransportSender
> 3 Make 200 web service request



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



Build failed in Jenkins: Axis2 #3600

2016-10-16 Thread Apache Jenkins Server
See 

Changes:

[veithen] AXIS2-5809: Use the custom axis2.xml config on the client as well.

[veithen] Add test case for the scenario described in AXIS2-5809 and AXIS2-5811.

--
[...truncated 8215 lines...]
[INFO] 
[INFO] Apache Axis2 - Root  SUCCESS [ 13.408 s]
[INFO] Apache Axis2 - Resource bundle . SUCCESS [  8.937 s]
[INFO] Apache Axis2 - Kernel .. SUCCESS [ 59.351 s]
[INFO] Apache Axis2 - Data Binding  SUCCESS [ 21.928 s]
[INFO] Apache Axis2 - Transport - Local ... SUCCESS [ 15.833 s]
[INFO] Apache Axis2 - Addressing .. SUCCESS [ 19.410 s]
[INFO] Apache Axis2 - Transport - Base  SUCCESS [ 24.922 s]
[INFO] Apache Axis2 - Transport - testkit . SUCCESS [ 23.469 s]
[INFO] Apache Axis2 - Transport - HTTP  SUCCESS [ 41.154 s]
[INFO] Apache Axis2 - Code Generation . SUCCESS [ 22.915 s]
[INFO] Apache Axis2 - ADB Codegen . SUCCESS [ 46.538 s]
[INFO] Apache Axis2 - Clustering .. SUCCESS [01:21 min]
[INFO] Apache Axis2 - SAAJ  SUCCESS [ 52.830 s]
[INFO] Apache Axis2 - Ping  SUCCESS [ 11.180 s]
[INFO] Apache Axis2 - MEX . SUCCESS [ 16.418 s]
[INFO] axis2-repo-maven-plugin  SUCCESS [ 23.815 s]
[INFO] Apache Axis2 - Metadata  SUCCESS [ 31.280 s]
[INFO] Apache Axis2 - CORBA ... SUCCESS [ 21.186 s]
[INFO] Apache Axis2 - Java2WSDL ... SUCCESS [ 20.844 s]
[INFO] Apache Axis2 - Fast Infoset  SUCCESS [ 23.388 s]
[INFO] Apache Axis2 - JAXB-RI Data Binding  SUCCESS [ 20.920 s]
[INFO] Apache Axis2 - JAXWS ... SUCCESS [ 48.828 s]
[INFO] Apache Axis2 - JAXWS (mar) . SUCCESS [ 12.127 s]
[INFO] Apache Axis2 - Test Utilities .. FAILURE [  2.398 s]
[INFO] Apache Axis2 - JiBX Data Binding ... SKIPPED
[INFO] Apache Axis2 - JSON  SKIPPED
[INFO] Apache Axis2 - MTOM Policy . SKIPPED
[INFO] Apache Axis2 - MTOM Policy module .. SKIPPED
[INFO] Apache Axis2 - OSGi Integration  SKIPPED
[INFO] Apache Axis2 - Scripting ... SKIPPED
[INFO] Apache Axis2 - SOAP Monitor Servlet  SKIPPED
[INFO] Apache Axis2 - SOAP Monitor Module . SKIPPED
[INFO] Apache Axis2 - spring .. SKIPPED
[INFO] Apache Axis2 - XMLBeans Data Binding ... SKIPPED
[INFO] Apache Axis2 - Version Service . SKIPPED
[INFO] Apache Axis2 - Web Application module .. SKIPPED
[INFO] Apache Axis2 - tool - AAR Maven Plugin . SKIPPED
[INFO] Apache Axis2 - tool - Ant Plugin ... SKIPPED
[INFO] Apache Axis2 - tool - Eclipse Codegen Plugin ... SKIPPED
[INFO] Apache Axis2 - tool - Eclipse service Plugin ... SKIPPED
[INFO] Apache Axis2 - tool - Intellij IDEA Plugin . SKIPPED
[INFO] Apache Axis2 - tool - Java2WSDL Maven Plugin ... SKIPPED
[INFO] Apache Axis2 - tool - MAR Maven Plugin . SKIPPED
[INFO] Apache Axis2 - tool - WSDL2Code Maven Plugin ... SKIPPED
[INFO] Apache Axis2 Simple HTTP server Maven Plugin ... SKIPPED
[INFO] Apache Axis2 - Transport - JMS . SKIPPED
[INFO] Apache Axis2 - Transport - Mail  SKIPPED
[INFO] Apache Axis2 - Transport - TCP . SKIPPED
[INFO] Apache Axis2 - Transport - UDP . SKIPPED
[INFO] Apache Axis2 - Transport - XMPP  SKIPPED
[INFO] Javadoc  SKIPPED
[INFO] Apache Axis2 - ADB Tests ... SKIPPED
[INFO] Apache Axis2 - Integration . SKIPPED
[INFO] Axis2 quickstart archetype . SKIPPED
[INFO] Axis2 quickstart-web archetype . SKIPPED
[INFO] Apache Axis2 - JAXWS Integration Tests . SKIPPED
[INFO] Apache Axis2 - OSGi Tests .. SKIPPED
[INFO] Apache Axis2 - Transport - HTTP - Commons HttpClient 3.x SKIPPED
[INFO] Apache Axis2 - Distribution  SKIPPED
[INFO] Samples parent POM . SKIPPED
[INFO] JAXWS - Starting from Java Example . SKIPPED
[INFO] JAXWS Addressbook Service .. SKIPPED
[INFO] JAXWS Calculator Service ... SKIPPED
[INFO] JAXWS Interop Sample ... SKIPPED
[INFO] JAXWS Samples - Echo, Ping, MTOM 

Build failed in Jenkins: Axis2 » Apache Axis2 - Test Utilities #3600

2016-10-16 Thread Apache Jenkins Server
See 


Changes:

[veithen] AXIS2-5809: Use the custom axis2.xml config on the client as well.

--
[INFO] 
[INFO] 
[INFO] Building Apache Axis2 - Test Utilities 1.8.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.2:clean (default-clean) @ axis2-testutils ---
[INFO] Deleting directory 

[INFO] 
[INFO] --- maven-enforcer-plugin:1.1:enforce (default) @ axis2-testutils ---
[INFO] 
[INFO] --- gmavenplus-plugin:1.5:execute (create-tmp-directory) @ 
axis2-testutils ---
[INFO] Using Groovy 2.4.4 to perform execute.
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ 
axis2-testutils ---
[INFO] 
[INFO] --- maven-resources-plugin:2.4.2:resources (default-resources) @ 
axis2-testutils ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 

[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ 
axis2-testutils ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 8 source files to 

[INFO] -
[ERROR] COMPILATION ERROR : 
[INFO] -
[ERROR] 
:[60,33]
 method getConfigurationContext() is already defined in class 
org.apache.axis2.testutils.Axis2Server
[INFO] 1 error
[INFO] -

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5809) Axis2 does not properly return http connection to connection pool when using http client 4

2016-10-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5809?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15580541#comment-15580541
 ] 

Hudson commented on AXIS2-5809:
---

SUCCESS: Integrated in Jenkins build axis2-1.7 #88 (See 
[https://builds.apache.org/job/axis2-1.7/88/])
AXIS2-5809: Merge r1765183 to the 1.7 branch. (veithen: rev 1765187)
* (edit) axis2
* (edit) axis2/modules/adb-tests/pom.xml
* (add) 
axis2/modules/adb-tests/src/test/java/org/apache/axis2/databinding/axis2_5809
* (add) axis2/modules/adb-tests/src/test/repo
* (add) axis2/modules/adb-tests/src/test/wsdl/AXIS2-5809.wsdl
* (add) axis2/modules/adb-tests/src/test/xslt/AXIS2-5809.xsl


> Axis2 does not properly return http connection to connection pool when using 
> http client 4
> --
>
> Key: AXIS2-5809
> URL: https://issues.apache.org/jira/browse/AXIS2-5809
> Project: Axis2
>  Issue Type: Bug
>  Components: transports
>Affects Versions: 1.7.3
> Environment: Ubuntu 16.04, OpenJDK 7
>Reporter: Christian H.
>Priority: Critical
>
> When using HTTP Client 4 with a generated WSDL-Client the HTTP connections 
> are not returned properly to underlying connection pool. The HTTP connections 
> are still allocated, when new requests are made. This ends up in waiting for 
> HTTP connections from pool, but no connections are available anymore.
> The connections should be returned to pool as stated in the Apache HTTP 
> Client 4 documentation (2.3.1):
> https://hc.apache.org/httpcomponents-client-ga/tutorial/html/connmgmt.html
> Here is some example code to reproduce the problem. The BLZServiceStub is a 
> generated WSDL client (wsdl2java) of the following service: 
> http://www.thomas-bayer.com/axis2/services/BLZService?wsdl . But the problem 
> is independent of the used service.
> {code:title=TestRunner.java}
> package com.thomas_bayer.blz;
> import java.rmi.RemoteException;
> import org.apache.axis2.transport.http.HTTPConstants;
> import org.apache.http.client.HttpClient;
> import org.apache.http.impl.client.DefaultHttpClient;
> import org.apache.http.impl.conn.PoolingClientConnectionManager;
> import org.apache.http.params.BasicHttpParams;
> import org.apache.http.params.CoreConnectionPNames;
> import org.apache.http.params.HttpParams;
> public class TestRunner {
>   private static final int timeoutMillis = 5000;
>   private static final int maxConnections = 2;
>   
>   private static final String[] BLZs = new String[] {
>   "1203", "1207"
>   };
>   
>   public static void main(String[] args) throws RemoteException {
> BLZServiceStub blzService = new BLZServiceStub();
> 
> blzService._getServiceClient().getServiceContext().getConfigurationContext().setProperty(HTTPConstants.CACHED_HTTP_CLIENT,
>  buildHttpClient());
> for(int i = 0; i <= maxConnections; i++) {
>   BLZServiceStub.GetBankType getBankType = new 
> BLZServiceStub.GetBankType();
>   getBankType.setBlz(BLZs[i % BLZs.length]);
>   BLZServiceStub.GetBank getBank = new BLZServiceStub.GetBank();
>   getBank.setGetBank(getBankType);
>   
>   System.out.println("Querying for bank (iteration: " + i + ")");
>   BLZServiceStub.GetBankResponse response = blzService.getBank(getBank);
>   System.out.println("Bank queried");
>   
>   System.out.println("Result: " + 
> response.getGetBankResponse().getDetails().getBezeichnung());
> }
>   }
>   protected static HttpClient buildHttpClient() {
> final PoolingClientConnectionManager conmgr = new 
> PoolingClientConnectionManager();
> conmgr.setDefaultMaxPerRoute(maxConnections);
> conmgr.setMaxTotal(maxConnections);
> 
> final HttpParams params = new BasicHttpParams();
> params.setLongParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, 
> timeoutMillis);
> params.setLongParameter(CoreConnectionPNames.SO_TIMEOUT, timeoutMillis);
> 
> return new DefaultHttpClient(conmgr, params);
>   }
> }
> {code}
> Running this code will produce the following output:
> {noformat}
> Querying for bank (iteration: 0)
> Bank queried
> Result: Deutsche Kreditbank Berlin
> Querying for bank (iteration: 1)
> Bank queried
> Result: Deutsche Bank Ld Brandenburg
> Querying for bank (iteration: 2)
> Sep 27, 2016 8:32:43 AM 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl sendViaPost
> INFORMATION: Unable to sendViaPost to 
> url[http://www.thomas-bayer.com/axis2/services/BLZService]
> org.apache.http.conn.ConnectionPoolTimeoutException: Timeout waiting for 
> connection from pool
>   at 
> org.apache.http.impl.conn.PoolingClientConnectionManager.leaseConnection(PoolingClientConnectionManager.java:232)
>   at 
> org.apache.http.impl.conn.PoolingClientConnectionManager$1.getConnection(PoolingClientConnectionManager.java:199)

[jira] [Resolved] (AXIS2-5803) Axis--client

2016-10-16 Thread Andreas Veithen (JIRA)

 [ 
https://issues.apache.org/jira/browse/AXIS2-5803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Veithen resolved AXIS2-5803.

Resolution: Incomplete

> Axis--client
> 
>
> Key: AXIS2-5803
> URL: https://issues.apache.org/jira/browse/AXIS2-5803
> Project: Axis2
>  Issue Type: Bug
>  Components: adb, client-api, databinding
>Affects Versions: 1.4.1
> Environment: Tomcat
>Reporter: Ihony
>  Labels: newbie
> Fix For: 1.4.1
>
>   Original Estimate: 96h
>  Remaining Estimate: 96h
>
> returnType is array
> java.lang.NullPointerException
>   at 
> org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:381)
>   at 
> org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:722)
>   at 
> org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:641)
>   at 
> org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:602)
>   at 
> org.apache.axis2.rpc.client.RPCServiceClient.invokeBlocking(RPCServiceClient.java:104)
>   at com.CallWebService.CallWebservice.callbd(CallWebservice.java:132)
>   at client.LoginAction.doPost(LoginAction.java:32)
>   at client.LoginAction.doGet(LoginAction.java:20)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>   at 
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
>   at 
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
>   at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
>   at 
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
>   at 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
>   at 
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
>   at 
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
>   at 
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
>   at java.lang.Thread.run(Thread.java:745)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Resolved] (AXIS2-5808) org.apache.axis2.AxisFault:

2016-10-16 Thread Andreas Veithen (JIRA)

 [ 
https://issues.apache.org/jira/browse/AXIS2-5808?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Veithen resolved AXIS2-5808.

Resolution: Incomplete

> org.apache.axis2.AxisFault:
> ---
>
> Key: AXIS2-5808
> URL: https://issues.apache.org/jira/browse/AXIS2-5808
> Project: Axis2
>  Issue Type: Bug
>  Components: client-api
>Reporter: Hari
>Priority: Critical
>
>  ERROR [AxisEngine] The service cannot be found for the endpoint reference 
> (EPR) /OneFlexiAxisService/services/OneFlexiWebService
> org.apache.axis2.AxisFault: The service cannot be found for the endpoint 
> reference (EPR) /OneFlexiAxisService/services/OneFlexiWebService
>   at 
> org.apache.axis2.engine.DispatchPhase.checkPostConditions(DispatchPhase.java:65)
>   at org.apache.axis2.engine.Phase.invoke(Phase.java:334)
>   at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:251)
>   at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:160)
>   at 
> org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngine(RESTUtil.java:135)
>   at 
> org.apache.axis2.transport.http.util.RESTUtil.processURLRequest(RESTUtil.java:130)
>   at 
> org.apache.axis2.transport.http.AxisServlet$RestRequestProcessor.processURLRequest(AxisServlet.java:838)
>   at 
> org.apache.axis2.transport.http.AxisServlet.doGet(AxisServlet.java:262)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
>   at 
> org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
>   at 
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
>   at 
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
>   at 
> org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
>   at 
> org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
>   at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
>   at 
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
>   at 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
>   at 
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
>   at 
> org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
>   at 
> org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
>   at 
> org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
>   at java.lang.Thread.run(Thread.java:662)
> 
> >>How to resolve it



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Resolved] (AXIS2-5811) org.apache.axis2.AxisFault: Timeout waiting for connection from pool

2016-10-16 Thread Andreas Veithen (JIRA)

 [ 
https://issues.apache.org/jira/browse/AXIS2-5811?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Veithen resolved AXIS2-5811.

Resolution: Duplicate

> org.apache.axis2.AxisFault: Timeout waiting for connection from pool
> 
>
> Key: AXIS2-5811
> URL: https://issues.apache.org/jira/browse/AXIS2-5811
> Project: Axis2
>  Issue Type: Bug
>  Components: TCP transport
>Affects Versions: 1.7.3
>Reporter: Claudio Degioanni
>Priority: Critical
> Attachments: axis2_HttpClient4.xml, clean_log.log
>
>
> Using Axis library 1.7.3 with HttpClient 4.4.1, after 200 request the library 
> throw a TimeoutException from connection pool:
> Caused by: org.apache.axis2.AxisFault: Timeout waiting for connection from 
> pool
>   at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430) 
> ~[axis2-kernel-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl.sendViaPost(HTTPSenderImpl.java:242)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:121) 
> ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:403)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:234)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:431) 
> ~[axis2-kernel-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:399)
>  ~[axis2-kernel-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:225)
>  ~[axis2-kernel-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.client.OperationClient.execute(OperationClient.java:150) 
> ~[axis2-kernel-1.7.3.jar:1.7.3]
>   
> Caused by: org.apache.http.conn.ConnectionPoolTimeoutException: Timeout 
> waiting for connection from pool
>   at 
> org.apache.http.impl.conn.PoolingClientConnectionManager.leaseConnection(PoolingClientConnectionManager.java:226)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.conn.PoolingClientConnectionManager$1.getConnection(PoolingClientConnectionManager.java:195)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:423)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:882)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:71)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:55)
>  ~[httpclient-4.4.1.jar:4.4.1]
>   at 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl.executeMethod(HTTPSenderImpl.java:873)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   at 
> org.apache.axis2.transport.http.impl.httpclient4.HTTPSenderImpl.sendViaPost(HTTPSenderImpl.java:238)
>  ~[axis2-transport-http-1.7.3.jar:1.7.3]
>   ... 15 common frames omitted
> I think che connection pool used by library don't work correctly, stuck the 
> connections to 200 ??? 
> Steps To reproduce:
> 1 Generate client for windows web service like 
> (http://www.webservicex.com/globalweather.asmx)
> 2 Configure axis2 to use HTTPClient4TransportSender
> 3 Make 200 web service request



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5816) Missing files on axis2-1.7.3-bin.zip

2016-10-16 Thread Danilo G. Baio (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15580111#comment-15580111
 ] 

Danilo G. Baio commented on AXIS2-5816:
---

Thanks [~veithen] :D

> Missing files on axis2-1.7.3-bin.zip
> 
>
> Key: AXIS2-5816
> URL: https://issues.apache.org/jira/browse/AXIS2-5816
> Project: Axis2
>  Issue Type: Bug
>  Components: samples, build,site
>Affects Versions: 1.7.3
>Reporter: Danilo G. Baio
>Assignee: Andreas Veithen
>Priority: Minor
> Fix For: 1.7.4
>
>
> Hi.
> Just for reporting.
> # axis2-1.7.2-bin.zip
> $ find axis2-1.7.2/webapp/axis2-web
> axis2-1.7.2/webapp/axis2-web
> axis2-1.7.2/webapp/axis2-web/ActivateService.jsp
> axis2-1.7.2/webapp/axis2-web/admin.jsp
> axis2-1.7.2/webapp/axis2-web/css
> axis2-1.7.2/webapp/axis2-web/css/axis-style.css
> axis2-1.7.2/webapp/axis2-web/deleteService.jsp
> axis2-1.7.2/webapp/axis2-web/disengage.jsp
> axis2-1.7.2/webapp/axis2-web/EngageToServiceGroup.jsp
> axis2-1.7.2/webapp/axis2-web/engagingglobally.jsp
> axis2-1.7.2/webapp/axis2-web/engagingtoanoperation.jsp
> axis2-1.7.2/webapp/axis2-web/engagingtoaservice.jsp
> axis2-1.7.2/webapp/axis2-web/Error
> axis2-1.7.2/webapp/axis2-web/Error/AuthError.html
> axis2-1.7.2/webapp/axis2-web/Error/error404.jsp
> axis2-1.7.2/webapp/axis2-web/Error/error500.jsp
> axis2-1.7.2/webapp/axis2-web/Error/GenError.html
> axis2-1.7.2/webapp/axis2-web/error.jsp
> axis2-1.7.2/webapp/axis2-web/errorModule.jsp
> axis2-1.7.2/webapp/axis2-web/globalModules.jsp
> axis2-1.7.2/webapp/axis2-web/HappyAxis.jsp
> axis2-1.7.2/webapp/axis2-web/images
> axis2-1.7.2/webapp/axis2-web/images/asf-logo.gif
> axis2-1.7.2/webapp/axis2-web/images/axis.gif
> axis2-1.7.2/webapp/axis2-web/images/axis.jpg
> axis2-1.7.2/webapp/axis2-web/images/axis_l.jpg
> axis2-1.7.2/webapp/axis2-web/InActivateService.jsp
> axis2-1.7.2/webapp/axis2-web/include
> axis2-1.7.2/webapp/axis2-web/include/adminfooter.inc
> axis2-1.7.2/webapp/axis2-web/include/adminfooter.jsp
> axis2-1.7.2/webapp/axis2-web/include/adminheader.inc
> axis2-1.7.2/webapp/axis2-web/include/adminheader.jsp
> axis2-1.7.2/webapp/axis2-web/include/footer.inc
> axis2-1.7.2/webapp/axis2-web/include/header.inc
> axis2-1.7.2/webapp/axis2-web/include/httpbase.jsp
> axis2-1.7.2/webapp/axis2-web/include/link-footer.inc
> axis2-1.7.2/webapp/axis2-web/include/link-footer.jsp
> axis2-1.7.2/webapp/axis2-web/index.jsp
> axis2-1.7.2/webapp/axis2-web/LeftFrame.jsp
> axis2-1.7.2/webapp/axis2-web/listFaultyService.jsp
> axis2-1.7.2/webapp/axis2-web/listGroupService.jsp
> axis2-1.7.2/webapp/axis2-web/listModules.jsp
> axis2-1.7.2/webapp/axis2-web/listService.jsp
> axis2-1.7.2/webapp/axis2-web/ListServiceGroup.jsp
> axis2-1.7.2/webapp/axis2-web/listServices.jsp
> axis2-1.7.2/webapp/axis2-web/listSingleService.jsp
> axis2-1.7.2/webapp/axis2-web/Login.jsp
> axis2-1.7.2/webapp/axis2-web/MainFrame.jsp
> axis2-1.7.2/webapp/axis2-web/SelectService.jsp
> axis2-1.7.2/webapp/axis2-web/ServiceParaEdit.jsp
> axis2-1.7.2/webapp/axis2-web/TopFrame.jsp
> axis2-1.7.2/webapp/axis2-web/upload.jsp
> axis2-1.7.2/webapp/axis2-web/ViewContexts.jsp
> axis2-1.7.2/webapp/axis2-web/ViewGlobalHandlers.jsp
> axis2-1.7.2/webapp/axis2-web/viewphases.jsp
> axis2-1.7.2/webapp/axis2-web/viewServiceContext.jsp
> axis2-1.7.2/webapp/axis2-web/viewServiceGroupContext.jsp
> axis2-1.7.2/webapp/axis2-web/ViewServiceHandlers.jsp
> # axis2-1.7.3-bin.zip
> $ find axis2-1.7.3/webapp/axis2-web
> axis2-1.7.3/webapp/axis2-web
> axis2-1.7.3/webapp/axis2-web/css
> axis2-1.7.3/webapp/axis2-web/css/axis-style.css
> axis2-1.7.3/webapp/axis2-web/Error
> axis2-1.7.3/webapp/axis2-web/Error/AuthError.html
> axis2-1.7.3/webapp/axis2-web/Error/error404.jsp
> axis2-1.7.3/webapp/axis2-web/Error/error500.jsp
> axis2-1.7.3/webapp/axis2-web/Error/GenError.html
> axis2-1.7.3/webapp/axis2-web/error.jsp
> axis2-1.7.3/webapp/axis2-web/HappyAxis.jsp
> axis2-1.7.3/webapp/axis2-web/images
> axis2-1.7.3/webapp/axis2-web/images/asf-logo.gif
> axis2-1.7.3/webapp/axis2-web/images/axis.gif
> axis2-1.7.3/webapp/axis2-web/images/axis.jpg
> axis2-1.7.3/webapp/axis2-web/images/axis_l.jpg
> axis2-1.7.3/webapp/axis2-web/index.jsp
> axis2-1.7.3/webapp/axis2-web/listFaultyService.jsp
> axis2-1.7.3/webapp/axis2-web/listGroupService.jsp
> axis2-1.7.3/webapp/axis2-web/listServices.jsp
> axis2-1.7.3/webapp/axis2-web/MainFrame.jsp
> # axis2-1.7.3-war.zip
> On  the .war file, the directory "webapp/axis2-web/include" is present under 
> "WEB-INF/include" with other new stuff.
> $ find axis2-1.7.3_war/WEB-INF -type d
> axis2-1.7.3_war/WEB-INF
> axis2-1.7.3_war/WEB-INF/classes
> axis2-1.7.3_war/WEB-INF/classes/META-INF
> axis2-1.7.3_war/WEB-INF/classes/org
> axis2-1.7.3_war/WEB-INF/classes/org/apache
> axis2-1.7.3_war/WEB-INF/classes/org/apache/axis2
> 

[jira] [Resolved] (AXIS2-5816) Missing files on axis2-1.7.3-bin.zip

2016-10-16 Thread Andreas Veithen (JIRA)

 [ 
https://issues.apache.org/jira/browse/AXIS2-5816?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Veithen resolved AXIS2-5816.

   Resolution: Fixed
 Assignee: Andreas Veithen
Fix Version/s: 1.7.4

> Missing files on axis2-1.7.3-bin.zip
> 
>
> Key: AXIS2-5816
> URL: https://issues.apache.org/jira/browse/AXIS2-5816
> Project: Axis2
>  Issue Type: Bug
>  Components: samples, build,site
>Affects Versions: 1.7.3
>Reporter: Danilo G. Baio
>Assignee: Andreas Veithen
>Priority: Minor
> Fix For: 1.7.4
>
>
> Hi.
> Just for reporting.
> # axis2-1.7.2-bin.zip
> $ find axis2-1.7.2/webapp/axis2-web
> axis2-1.7.2/webapp/axis2-web
> axis2-1.7.2/webapp/axis2-web/ActivateService.jsp
> axis2-1.7.2/webapp/axis2-web/admin.jsp
> axis2-1.7.2/webapp/axis2-web/css
> axis2-1.7.2/webapp/axis2-web/css/axis-style.css
> axis2-1.7.2/webapp/axis2-web/deleteService.jsp
> axis2-1.7.2/webapp/axis2-web/disengage.jsp
> axis2-1.7.2/webapp/axis2-web/EngageToServiceGroup.jsp
> axis2-1.7.2/webapp/axis2-web/engagingglobally.jsp
> axis2-1.7.2/webapp/axis2-web/engagingtoanoperation.jsp
> axis2-1.7.2/webapp/axis2-web/engagingtoaservice.jsp
> axis2-1.7.2/webapp/axis2-web/Error
> axis2-1.7.2/webapp/axis2-web/Error/AuthError.html
> axis2-1.7.2/webapp/axis2-web/Error/error404.jsp
> axis2-1.7.2/webapp/axis2-web/Error/error500.jsp
> axis2-1.7.2/webapp/axis2-web/Error/GenError.html
> axis2-1.7.2/webapp/axis2-web/error.jsp
> axis2-1.7.2/webapp/axis2-web/errorModule.jsp
> axis2-1.7.2/webapp/axis2-web/globalModules.jsp
> axis2-1.7.2/webapp/axis2-web/HappyAxis.jsp
> axis2-1.7.2/webapp/axis2-web/images
> axis2-1.7.2/webapp/axis2-web/images/asf-logo.gif
> axis2-1.7.2/webapp/axis2-web/images/axis.gif
> axis2-1.7.2/webapp/axis2-web/images/axis.jpg
> axis2-1.7.2/webapp/axis2-web/images/axis_l.jpg
> axis2-1.7.2/webapp/axis2-web/InActivateService.jsp
> axis2-1.7.2/webapp/axis2-web/include
> axis2-1.7.2/webapp/axis2-web/include/adminfooter.inc
> axis2-1.7.2/webapp/axis2-web/include/adminfooter.jsp
> axis2-1.7.2/webapp/axis2-web/include/adminheader.inc
> axis2-1.7.2/webapp/axis2-web/include/adminheader.jsp
> axis2-1.7.2/webapp/axis2-web/include/footer.inc
> axis2-1.7.2/webapp/axis2-web/include/header.inc
> axis2-1.7.2/webapp/axis2-web/include/httpbase.jsp
> axis2-1.7.2/webapp/axis2-web/include/link-footer.inc
> axis2-1.7.2/webapp/axis2-web/include/link-footer.jsp
> axis2-1.7.2/webapp/axis2-web/index.jsp
> axis2-1.7.2/webapp/axis2-web/LeftFrame.jsp
> axis2-1.7.2/webapp/axis2-web/listFaultyService.jsp
> axis2-1.7.2/webapp/axis2-web/listGroupService.jsp
> axis2-1.7.2/webapp/axis2-web/listModules.jsp
> axis2-1.7.2/webapp/axis2-web/listService.jsp
> axis2-1.7.2/webapp/axis2-web/ListServiceGroup.jsp
> axis2-1.7.2/webapp/axis2-web/listServices.jsp
> axis2-1.7.2/webapp/axis2-web/listSingleService.jsp
> axis2-1.7.2/webapp/axis2-web/Login.jsp
> axis2-1.7.2/webapp/axis2-web/MainFrame.jsp
> axis2-1.7.2/webapp/axis2-web/SelectService.jsp
> axis2-1.7.2/webapp/axis2-web/ServiceParaEdit.jsp
> axis2-1.7.2/webapp/axis2-web/TopFrame.jsp
> axis2-1.7.2/webapp/axis2-web/upload.jsp
> axis2-1.7.2/webapp/axis2-web/ViewContexts.jsp
> axis2-1.7.2/webapp/axis2-web/ViewGlobalHandlers.jsp
> axis2-1.7.2/webapp/axis2-web/viewphases.jsp
> axis2-1.7.2/webapp/axis2-web/viewServiceContext.jsp
> axis2-1.7.2/webapp/axis2-web/viewServiceGroupContext.jsp
> axis2-1.7.2/webapp/axis2-web/ViewServiceHandlers.jsp
> # axis2-1.7.3-bin.zip
> $ find axis2-1.7.3/webapp/axis2-web
> axis2-1.7.3/webapp/axis2-web
> axis2-1.7.3/webapp/axis2-web/css
> axis2-1.7.3/webapp/axis2-web/css/axis-style.css
> axis2-1.7.3/webapp/axis2-web/Error
> axis2-1.7.3/webapp/axis2-web/Error/AuthError.html
> axis2-1.7.3/webapp/axis2-web/Error/error404.jsp
> axis2-1.7.3/webapp/axis2-web/Error/error500.jsp
> axis2-1.7.3/webapp/axis2-web/Error/GenError.html
> axis2-1.7.3/webapp/axis2-web/error.jsp
> axis2-1.7.3/webapp/axis2-web/HappyAxis.jsp
> axis2-1.7.3/webapp/axis2-web/images
> axis2-1.7.3/webapp/axis2-web/images/asf-logo.gif
> axis2-1.7.3/webapp/axis2-web/images/axis.gif
> axis2-1.7.3/webapp/axis2-web/images/axis.jpg
> axis2-1.7.3/webapp/axis2-web/images/axis_l.jpg
> axis2-1.7.3/webapp/axis2-web/index.jsp
> axis2-1.7.3/webapp/axis2-web/listFaultyService.jsp
> axis2-1.7.3/webapp/axis2-web/listGroupService.jsp
> axis2-1.7.3/webapp/axis2-web/listServices.jsp
> axis2-1.7.3/webapp/axis2-web/MainFrame.jsp
> # axis2-1.7.3-war.zip
> On  the .war file, the directory "webapp/axis2-web/include" is present under 
> "WEB-INF/include" with other new stuff.
> $ find axis2-1.7.3_war/WEB-INF -type d
> axis2-1.7.3_war/WEB-INF
> axis2-1.7.3_war/WEB-INF/classes
> axis2-1.7.3_war/WEB-INF/classes/META-INF
> axis2-1.7.3_war/WEB-INF/classes/org
> axis2-1.7.3_war/WEB-INF/classes/org/apache
> 

[jira] [Commented] (AXIS2-5816) Missing files on axis2-1.7.3-bin.zip

2016-10-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15580047#comment-15580047
 ] 

Hudson commented on AXIS2-5816:
---

SUCCESS: Integrated in Jenkins build axis2-1.7 #87 (See 
[https://builds.apache.org/job/axis2-1.7/87/])
AXIS2-5816: Merge r1765132 to the 1.7 branch. (veithen: rev 1765150)
* (edit) axis2
* (edit) axis2/modules/distribution/src/main/assembly/bin-assembly.xml


> Missing files on axis2-1.7.3-bin.zip
> 
>
> Key: AXIS2-5816
> URL: https://issues.apache.org/jira/browse/AXIS2-5816
> Project: Axis2
>  Issue Type: Bug
>  Components: samples, build,site
>Affects Versions: 1.7.3
>Reporter: Danilo G. Baio
>Priority: Minor
>
> Hi.
> Just for reporting.
> # axis2-1.7.2-bin.zip
> $ find axis2-1.7.2/webapp/axis2-web
> axis2-1.7.2/webapp/axis2-web
> axis2-1.7.2/webapp/axis2-web/ActivateService.jsp
> axis2-1.7.2/webapp/axis2-web/admin.jsp
> axis2-1.7.2/webapp/axis2-web/css
> axis2-1.7.2/webapp/axis2-web/css/axis-style.css
> axis2-1.7.2/webapp/axis2-web/deleteService.jsp
> axis2-1.7.2/webapp/axis2-web/disengage.jsp
> axis2-1.7.2/webapp/axis2-web/EngageToServiceGroup.jsp
> axis2-1.7.2/webapp/axis2-web/engagingglobally.jsp
> axis2-1.7.2/webapp/axis2-web/engagingtoanoperation.jsp
> axis2-1.7.2/webapp/axis2-web/engagingtoaservice.jsp
> axis2-1.7.2/webapp/axis2-web/Error
> axis2-1.7.2/webapp/axis2-web/Error/AuthError.html
> axis2-1.7.2/webapp/axis2-web/Error/error404.jsp
> axis2-1.7.2/webapp/axis2-web/Error/error500.jsp
> axis2-1.7.2/webapp/axis2-web/Error/GenError.html
> axis2-1.7.2/webapp/axis2-web/error.jsp
> axis2-1.7.2/webapp/axis2-web/errorModule.jsp
> axis2-1.7.2/webapp/axis2-web/globalModules.jsp
> axis2-1.7.2/webapp/axis2-web/HappyAxis.jsp
> axis2-1.7.2/webapp/axis2-web/images
> axis2-1.7.2/webapp/axis2-web/images/asf-logo.gif
> axis2-1.7.2/webapp/axis2-web/images/axis.gif
> axis2-1.7.2/webapp/axis2-web/images/axis.jpg
> axis2-1.7.2/webapp/axis2-web/images/axis_l.jpg
> axis2-1.7.2/webapp/axis2-web/InActivateService.jsp
> axis2-1.7.2/webapp/axis2-web/include
> axis2-1.7.2/webapp/axis2-web/include/adminfooter.inc
> axis2-1.7.2/webapp/axis2-web/include/adminfooter.jsp
> axis2-1.7.2/webapp/axis2-web/include/adminheader.inc
> axis2-1.7.2/webapp/axis2-web/include/adminheader.jsp
> axis2-1.7.2/webapp/axis2-web/include/footer.inc
> axis2-1.7.2/webapp/axis2-web/include/header.inc
> axis2-1.7.2/webapp/axis2-web/include/httpbase.jsp
> axis2-1.7.2/webapp/axis2-web/include/link-footer.inc
> axis2-1.7.2/webapp/axis2-web/include/link-footer.jsp
> axis2-1.7.2/webapp/axis2-web/index.jsp
> axis2-1.7.2/webapp/axis2-web/LeftFrame.jsp
> axis2-1.7.2/webapp/axis2-web/listFaultyService.jsp
> axis2-1.7.2/webapp/axis2-web/listGroupService.jsp
> axis2-1.7.2/webapp/axis2-web/listModules.jsp
> axis2-1.7.2/webapp/axis2-web/listService.jsp
> axis2-1.7.2/webapp/axis2-web/ListServiceGroup.jsp
> axis2-1.7.2/webapp/axis2-web/listServices.jsp
> axis2-1.7.2/webapp/axis2-web/listSingleService.jsp
> axis2-1.7.2/webapp/axis2-web/Login.jsp
> axis2-1.7.2/webapp/axis2-web/MainFrame.jsp
> axis2-1.7.2/webapp/axis2-web/SelectService.jsp
> axis2-1.7.2/webapp/axis2-web/ServiceParaEdit.jsp
> axis2-1.7.2/webapp/axis2-web/TopFrame.jsp
> axis2-1.7.2/webapp/axis2-web/upload.jsp
> axis2-1.7.2/webapp/axis2-web/ViewContexts.jsp
> axis2-1.7.2/webapp/axis2-web/ViewGlobalHandlers.jsp
> axis2-1.7.2/webapp/axis2-web/viewphases.jsp
> axis2-1.7.2/webapp/axis2-web/viewServiceContext.jsp
> axis2-1.7.2/webapp/axis2-web/viewServiceGroupContext.jsp
> axis2-1.7.2/webapp/axis2-web/ViewServiceHandlers.jsp
> # axis2-1.7.3-bin.zip
> $ find axis2-1.7.3/webapp/axis2-web
> axis2-1.7.3/webapp/axis2-web
> axis2-1.7.3/webapp/axis2-web/css
> axis2-1.7.3/webapp/axis2-web/css/axis-style.css
> axis2-1.7.3/webapp/axis2-web/Error
> axis2-1.7.3/webapp/axis2-web/Error/AuthError.html
> axis2-1.7.3/webapp/axis2-web/Error/error404.jsp
> axis2-1.7.3/webapp/axis2-web/Error/error500.jsp
> axis2-1.7.3/webapp/axis2-web/Error/GenError.html
> axis2-1.7.3/webapp/axis2-web/error.jsp
> axis2-1.7.3/webapp/axis2-web/HappyAxis.jsp
> axis2-1.7.3/webapp/axis2-web/images
> axis2-1.7.3/webapp/axis2-web/images/asf-logo.gif
> axis2-1.7.3/webapp/axis2-web/images/axis.gif
> axis2-1.7.3/webapp/axis2-web/images/axis.jpg
> axis2-1.7.3/webapp/axis2-web/images/axis_l.jpg
> axis2-1.7.3/webapp/axis2-web/index.jsp
> axis2-1.7.3/webapp/axis2-web/listFaultyService.jsp
> axis2-1.7.3/webapp/axis2-web/listGroupService.jsp
> axis2-1.7.3/webapp/axis2-web/listServices.jsp
> axis2-1.7.3/webapp/axis2-web/MainFrame.jsp
> # axis2-1.7.3-war.zip
> On  the .war file, the directory "webapp/axis2-web/include" is present under 
> "WEB-INF/include" with other new stuff.
> $ find axis2-1.7.3_war/WEB-INF -type d
> axis2-1.7.3_war/WEB-INF
> axis2-1.7.3_war/WEB-INF/classes
> axis2-1.7.3_war/WEB-INF/classes/META-INF
> 

[jira] [Commented] (AXIS2-5816) Missing files on axis2-1.7.3-bin.zip

2016-10-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15579782#comment-15579782
 ] 

Hudson commented on AXIS2-5816:
---

SUCCESS: Integrated in Jenkins build Axis2 #3598 (See 
[https://builds.apache.org/job/Axis2/3598/])
AXIS2-5816: Make sure that the webapp in the binary distribution contains all 
necessary files. (veithen: rev 1765132)
* (edit) axis2/modules/distribution/src/main/assembly/bin-assembly.xml


> Missing files on axis2-1.7.3-bin.zip
> 
>
> Key: AXIS2-5816
> URL: https://issues.apache.org/jira/browse/AXIS2-5816
> Project: Axis2
>  Issue Type: Bug
>  Components: samples, build,site
>Affects Versions: 1.7.3
>Reporter: Danilo G. Baio
>Priority: Minor
>
> Hi.
> Just for reporting.
> # axis2-1.7.2-bin.zip
> $ find axis2-1.7.2/webapp/axis2-web
> axis2-1.7.2/webapp/axis2-web
> axis2-1.7.2/webapp/axis2-web/ActivateService.jsp
> axis2-1.7.2/webapp/axis2-web/admin.jsp
> axis2-1.7.2/webapp/axis2-web/css
> axis2-1.7.2/webapp/axis2-web/css/axis-style.css
> axis2-1.7.2/webapp/axis2-web/deleteService.jsp
> axis2-1.7.2/webapp/axis2-web/disengage.jsp
> axis2-1.7.2/webapp/axis2-web/EngageToServiceGroup.jsp
> axis2-1.7.2/webapp/axis2-web/engagingglobally.jsp
> axis2-1.7.2/webapp/axis2-web/engagingtoanoperation.jsp
> axis2-1.7.2/webapp/axis2-web/engagingtoaservice.jsp
> axis2-1.7.2/webapp/axis2-web/Error
> axis2-1.7.2/webapp/axis2-web/Error/AuthError.html
> axis2-1.7.2/webapp/axis2-web/Error/error404.jsp
> axis2-1.7.2/webapp/axis2-web/Error/error500.jsp
> axis2-1.7.2/webapp/axis2-web/Error/GenError.html
> axis2-1.7.2/webapp/axis2-web/error.jsp
> axis2-1.7.2/webapp/axis2-web/errorModule.jsp
> axis2-1.7.2/webapp/axis2-web/globalModules.jsp
> axis2-1.7.2/webapp/axis2-web/HappyAxis.jsp
> axis2-1.7.2/webapp/axis2-web/images
> axis2-1.7.2/webapp/axis2-web/images/asf-logo.gif
> axis2-1.7.2/webapp/axis2-web/images/axis.gif
> axis2-1.7.2/webapp/axis2-web/images/axis.jpg
> axis2-1.7.2/webapp/axis2-web/images/axis_l.jpg
> axis2-1.7.2/webapp/axis2-web/InActivateService.jsp
> axis2-1.7.2/webapp/axis2-web/include
> axis2-1.7.2/webapp/axis2-web/include/adminfooter.inc
> axis2-1.7.2/webapp/axis2-web/include/adminfooter.jsp
> axis2-1.7.2/webapp/axis2-web/include/adminheader.inc
> axis2-1.7.2/webapp/axis2-web/include/adminheader.jsp
> axis2-1.7.2/webapp/axis2-web/include/footer.inc
> axis2-1.7.2/webapp/axis2-web/include/header.inc
> axis2-1.7.2/webapp/axis2-web/include/httpbase.jsp
> axis2-1.7.2/webapp/axis2-web/include/link-footer.inc
> axis2-1.7.2/webapp/axis2-web/include/link-footer.jsp
> axis2-1.7.2/webapp/axis2-web/index.jsp
> axis2-1.7.2/webapp/axis2-web/LeftFrame.jsp
> axis2-1.7.2/webapp/axis2-web/listFaultyService.jsp
> axis2-1.7.2/webapp/axis2-web/listGroupService.jsp
> axis2-1.7.2/webapp/axis2-web/listModules.jsp
> axis2-1.7.2/webapp/axis2-web/listService.jsp
> axis2-1.7.2/webapp/axis2-web/ListServiceGroup.jsp
> axis2-1.7.2/webapp/axis2-web/listServices.jsp
> axis2-1.7.2/webapp/axis2-web/listSingleService.jsp
> axis2-1.7.2/webapp/axis2-web/Login.jsp
> axis2-1.7.2/webapp/axis2-web/MainFrame.jsp
> axis2-1.7.2/webapp/axis2-web/SelectService.jsp
> axis2-1.7.2/webapp/axis2-web/ServiceParaEdit.jsp
> axis2-1.7.2/webapp/axis2-web/TopFrame.jsp
> axis2-1.7.2/webapp/axis2-web/upload.jsp
> axis2-1.7.2/webapp/axis2-web/ViewContexts.jsp
> axis2-1.7.2/webapp/axis2-web/ViewGlobalHandlers.jsp
> axis2-1.7.2/webapp/axis2-web/viewphases.jsp
> axis2-1.7.2/webapp/axis2-web/viewServiceContext.jsp
> axis2-1.7.2/webapp/axis2-web/viewServiceGroupContext.jsp
> axis2-1.7.2/webapp/axis2-web/ViewServiceHandlers.jsp
> # axis2-1.7.3-bin.zip
> $ find axis2-1.7.3/webapp/axis2-web
> axis2-1.7.3/webapp/axis2-web
> axis2-1.7.3/webapp/axis2-web/css
> axis2-1.7.3/webapp/axis2-web/css/axis-style.css
> axis2-1.7.3/webapp/axis2-web/Error
> axis2-1.7.3/webapp/axis2-web/Error/AuthError.html
> axis2-1.7.3/webapp/axis2-web/Error/error404.jsp
> axis2-1.7.3/webapp/axis2-web/Error/error500.jsp
> axis2-1.7.3/webapp/axis2-web/Error/GenError.html
> axis2-1.7.3/webapp/axis2-web/error.jsp
> axis2-1.7.3/webapp/axis2-web/HappyAxis.jsp
> axis2-1.7.3/webapp/axis2-web/images
> axis2-1.7.3/webapp/axis2-web/images/asf-logo.gif
> axis2-1.7.3/webapp/axis2-web/images/axis.gif
> axis2-1.7.3/webapp/axis2-web/images/axis.jpg
> axis2-1.7.3/webapp/axis2-web/images/axis_l.jpg
> axis2-1.7.3/webapp/axis2-web/index.jsp
> axis2-1.7.3/webapp/axis2-web/listFaultyService.jsp
> axis2-1.7.3/webapp/axis2-web/listGroupService.jsp
> axis2-1.7.3/webapp/axis2-web/listServices.jsp
> axis2-1.7.3/webapp/axis2-web/MainFrame.jsp
> # axis2-1.7.3-war.zip
> On  the .war file, the directory "webapp/axis2-web/include" is present under 
> "WEB-INF/include" with other new stuff.
> $ find axis2-1.7.3_war/WEB-INF -type d
> axis2-1.7.3_war/WEB-INF
> axis2-1.7.3_war/WEB-INF/classes
>