[jira] Commented: (AXIS2-4524) Caching BeanInfo in adb module's BeanUtil improves performance

2011-03-12 Thread Andreas Veithen (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-4524?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13006022#comment-13006022 ] Andreas Veithen commented on AXIS2-4524: A WeakHashMap won't work here. The reason

Re: svn commit: r1079695 - in /axis/axis2/java/core/trunk/modules: clustering/pom.xml clustering/src/org/apache/axis2/clustering/tribes/WkaMembershipService.java parent/pom.xml

2011-03-12 Thread Andreas Veithen
Are you aware that Tomcat 7.0 requires Java 1.6 and that this change means that Axis2 can no longer be built with Java 1.5? Andreas On Wed, Mar 9, 2011 at 09:26, wrote: > Author: azeez > Date: Wed Mar  9 08:26:31 2011 > New Revision: 1079695 > > URL: http://svn.apache.org/viewvc?rev=1079695&vie

Re: svn commit: r1079695 - in /axis/axis2/java/core/trunk/modules: clustering/pom.xml clustering/src/org/apache/axis2/clustering/tribes/WkaMembershipService.java parent/pom.xml

2011-03-12 Thread Afkham Azeez
Perhaps it is time for Axis2 to move to JDK 1.6 as well in line with other major projects? Otherwise it would not be possible to upgrade version of dependencies. On Sat, Mar 12, 2011 at 4:11 PM, Andreas Veithen wrote: > Are you aware that Tomcat 7.0 requires Java 1.6 and that this change > means

Build failed in Jenkins: Axis2 » Apache Axis2 - Clustering #674

2011-03-12 Thread Apache Hudson Server
See -- [INFO] [INFO] Building Apache Axis2 - Clustering [INFO]task-segment: [clean, deploy] [INF

Build failed in Jenkins: Axis2 #674

2011-03-12 Thread Apache Hudson Server
See -- [...truncated 3803 lines...] [INFO] Surefire report directory: -

RE: Build failed in Jenkins: Axis2 » Apache Axis2 - Clustering #674

2011-03-12 Thread Martin Gainty
class version mismatch means you have an older version of tomcat-tribes-7.0.8 in your repository rebuild org.apache.tomcat:tomcat-tribes:7.0.8 module install and deploy to /home/hudson/hudson-slave/workspace/Axis2/.repository/hth Martin- ___ Verzicht und Vertraulichkeitanmerkung

[jira] Created: (AXIS2-4977) Copying data from inputStream to OuputStream needs appropriate buffer size

2011-03-12 Thread Xiaoming Shi (JIRA)
Copying data from inputStream to OuputStream needs appropriate buffer size -- Key: AXIS2-4977 URL: https://issues.apache.org/jira/browse/AXIS2-4977 Project: Axis2 Issue

[jira] Created: (AXIS2-4978) Copying data from inputStream to OuputStream needs appropriate buffer size

2011-03-12 Thread Xiaoming Shi (JIRA)
Copying data from inputStream to OuputStream needs appropriate buffer size -- Key: AXIS2-4978 URL: https://issues.apache.org/jira/browse/AXIS2-4978 Project: Axis2 Issue

Call web services without making stub files.

2011-03-12 Thread Lasantha Bandara
Dear all; I'm using axis2 for one of my academic projects. We are making some java libraries to improve client side operation. We saw that making stubs and import them into the client side program always is somewhat tedious. So we are trying to add a feature so that web service can be invoked just

RE: [jira] Created: (AXIS2-4978) Copying data from inputStream to OuputStream needs appropriate buffer size

2011-03-12 Thread Martin Gainty
if there is no Constants.java in the plugin you can add an entry in org.apache.axis2.databinding.Constants.java //add the constant BASE_BUFFER_SIZE public static final int BASE_BUFFER_SIZE=10240; (good call btw) Martin __ Verzicht und Vertra

RE: Call web services without making stub files.

2011-03-12 Thread Martin Gainty
a REST client will invoke the client EPR directly... take a look at this example: private static String toEpr = "http://localhost:8080/axis2/services/MyService";; public static void main(String[] args) throws AxisFault { Options options = new Options(); options

Re: Call web services without making stub files.

2011-03-12 Thread Lasantha Bandara
Hi Gainty; Thank you very much for your guidance. going through that I found a code sample from here. http://axis.apache.org/axis2/java/core/docs/rest-ws.html But still I have this exception. Exception in thread "main" org.apache.axis2.AxisFault: Unable to engage module : addressing at

Re: Call web services without making stub files.

2011-03-12 Thread Deepal jayasinghe
if you are using REST, you do not need addressing module. So remove engageModule statement. Deepal > Hi Gainty; > > Thank you very much for your guidance. > > going through that I found a code sample from here. > > http://axis.apache.org/axis2/java/core/docs/rest-ws.html > > But still I have this

Re: Call web services without making stub files.

2011-03-12 Thread Lasantha Bandara
ah it's great. thank you Deepal. For the moment I can proceed with REST clients. But we are making a client side layer for axis2, so that it can invoke any sophisticated web service. In REST architecture style, all resources are accessed with a generic interface (e.g., HTTP GET, POST, PUT,