RE: Process SOAP message containg XHTML

2008-01-14 Thread Bhojraj, Santosh
But this shouldn't matter if you are using Jre 1.5 or higher. The compiler automatically converts this to StringBuffer 'append' calls. Maybe even Jre 1.4 des this , not sure.. What version of JRE did you run this on ? -Original Message- From: Andreas Veithen [mailto:[EMAIL PROTECTED]

Axis2 1.2:Caching Last operation

2007-10-26 Thread Bhojraj, Santosh
Hi: I see that in the ServiceContext class, there is a method to cache the last operation executed by making a call to 'setCachingOperationContext'. This is in turn being used by OperationClient before making a call to 'setLastOperationContext'. But I don't see any reference to 'getLastOperation

RE: Problem with return HashMap.

2007-10-04 Thread Bhojraj, Santosh
i.co.nz Seattle, WA +1-425-939-0576 - Wellington, NZ +64-4-298-6117 Bhojraj, Santosh wrote: > Will it at least work if JIBX is used for data binding ? > > > -Original Message- > From: Deepal Jayasinghe [mailto:[EMAIL PROTECTED] > Sent: Friday, September 28, 2007 9:28 AM

RE: Axis2 1.2: POJO Web service: Passing array method arguments

2007-10-04 Thread Bhojraj, Santosh
() { return this.cities; } } Can anyone reveal this mystery please ?? From: Bhojraj, Santosh Sent: Thursday, October 04, 2007 12:42 PM To: 'axis-user@ws.apache.org' Subject: Axis2 1.2: POJO Web service: Passing array method arguments Hi: I am tryin

Axis2 1.2: POJO Web service: Passing array method arguments

2007-10-04 Thread Bhojraj, Santosh
Hi: I am trying out some things in Axis2 using the samples\pojoguide for starters. I added a new method with the signature below to the WeatherService: public Weather[] getWeatherForCities(String[] cities) The service has been deployed successfully on JBoss 4.0.3 SP1. Below is the client

RE: Problem with return HashMap.

2007-09-28 Thread Bhojraj, Santosh
with return HashMap. A better solution is to convert a hashmap to an array. On 9/28/07, Bhojraj, Santosh <[EMAIL PROTECTED]> wrote: > Will it at least work if JIBX is used for data binding ? > > > -Original Message- > From: Deepal Jayasinghe [mailto:[EMAIL PROTECTED] &g

RE: Problem with return HashMap.

2007-09-28 Thread Bhojraj, Santosh
Will it at least work if JIBX is used for data binding ? -Original Message- From: Deepal Jayasinghe [mailto:[EMAIL PROTECTED] Sent: Friday, September 28, 2007 9:28 AM To: axis-user@ws.apache.org Subject: Re: Problem with return HashMap. Axis2 does not support hasmap in 1.3 release. Ma

RE: axis2 1.3 - MTOM sample: OutOfMemory

2007-09-17 Thread Bhojraj, Santosh
How about running your server side JVM with increased memory options ? Using -Xms and -Xmx in the startup script . -Original Message- From: Charitha Kankanamge [mailto:[EMAIL PROTECTED] Sent: Monday, September 17, 2007 12:23 PM To: axis-user@ws.apache.org Subject: Re: axis2 1.3 - MTOM

RE: RPCServiceClient and ArrayList

2007-09-06 Thread Bhojraj, Santosh
You can. You will need to set the object type of an array. QName opFindAllEntries = new QName("http://service.addressbook.sample/xsd";, "findAllEntries"); Object[] opFindAllEntriesArgs = new Object[0] ; Class[] returnTypesList = new Class[] { Entry[].class };

Axis 2 ver 1.2: Returning Maps from Web service

2007-08-16 Thread Bhojraj, Santosh
Hi: I am working on the POJO web service in the Axis2 (version 1.2) samples and I added a method in there to return a Map of String to 'Entry' objects. The new service is below: AddressBookService.java public Map findEntriesByState() { Map stateToEntriesMap = new HashMap( entries.size()

RE: Axis2: Speciying style in services.xml

2007-08-15 Thread Bhojraj, Santosh
received this email message in error, please notify the sender immediately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: Bhojraj, Santosh <mailto:[EMAIL PROTECTED]> To: axis-user@ws.apac

Axis2: Speciying style in services.xml

2007-08-14 Thread Bhojraj, Santosh
Hi: I am trying to create web services using Axis2 and would like to specify the style as "rpc" when the <>.aar is generated. How do I do this ? The style gets set to "document" when I deploy the .aar file. I am able to do this when generating the WSDL by specifying the parameter in the ant build

RE: Overloaded methods

2007-08-10 Thread Bhojraj, Santosh
overloading. Certainly WSDL 2.0 does not support it. That may b the issue. Thanks, Keith. On 8/9/07, Bhojraj, Santosh <[EMAIL PROTECTED]> wrote: Hi: I have a java interface with several service APIs defined, some of which are overloaded. How do I use Axis 2 to generate a WSDL for

Overloaded methods

2007-08-09 Thread Bhojraj, Santosh
Hi: I have a java interface with several service APIs defined, some of which are overloaded. How do I use Axis 2 to generate a WSDL for it ? I got an error when trying to run the Ant task. Please see the attachment. Thanx!! Santosh CommonBPMRepositoryIF.java Description: CommonBPMReposito

Question about AAR

2007-08-09 Thread Bhojraj, Santosh
Hi: I am trying to create an AAR archive file for my service and I need to include some third party jars in it along with the class files and services.xml. Please tell me how. I tried adding the 'Classpath' attribute to the manifest file but it didn't work. Thanx!! Santosh