Exception class generated from wsdl2java (Axis2) extending custom exception

2008-09-06 Thread coolers16

If we have a  element declared in the wsdl for an operation, the
wsdl2java (from Axis2) would create a java artifact for the fault message
that extends the java.lang.Exception. Is it possible that the the fault
exception extends a business exception instead of java.lang.Exception? 

For example, the following fault message in a wsdl: 

 

 

 

upon running the wsdl2java utility will create the java file
(SampleFaultMessage.java) as shown below. 


public class SampleFaultMessage extends java.lang.Exception{ 

} 


Let's say I have a bussiness exception called MyException.java. 

public class MyException extends java.lang.Exception{ 

} 



Is it possible through wsdl2java such that the SampleFaultMessage extends
MyException as shown below. 


public class SampleFaultMessage extends MyException{ 

} 


Can the following above be possible by wsdl2java? In case this is not
possible, could you please suggest us some workarounds or possible solution
that we can accomplish this? 

Thanks in advance and really appreciate your help.
-- 
View this message in context: 
http://www.nabble.com/Exception-class-generated-from-wsdl2java-%28Axis2%29-extending-custom-exception-tp19354457p19354457.html
Sent from the Axis - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: wsdl2java bug?

2008-09-06 Thread Martin Gainty

Andrea

if you could display your full wsdl we could see what your xsd maps to..

Molte Grazie
Martin
__ 
Disclaimer and confidentiality note 
Everything in this e-mail and any attachments relates to the official business 
of Sender. This transmission is of a confidential nature and Sender does not 
endorse distribution to any party other than intended recipient. Sender does 
not necessarily endorse content contained within this transmission. 


> Date: Sat, 6 Sep 2008 17:20:54 +0200
> From: [EMAIL PROTECTED]
> To: axis-user@ws.apache.org
> Subject: wsdl2java bug?
> 
> I'm trying to generate the Java code from a document-literal WSDL.
> Initailly I was able to write a fulli WS-I compiant WSDL and generate
> the code with wsdl2java without any problem.
> 
> I then modified a portion of the wsdl from:
> 
> 
>   
> 
> 
> to:
> 
> 
>   
> 
> 
> Now if I try to run wsdl2java it fail with an NullPointerException as
> you cas see here:
> 
> [axis-wsdl2java] 6-set-2008 16.43.47 org.apache.axis.utils.JavaUtils
> isAttachmentSupported
> [axis-wsdl2java] AVVERTENZA: Unable to find required classes
> (javax.activation.DataHandler and javax.mail.internet.MimeMultipart).
> Attachment support is disabled.
> [axis-wsdl2java] WSDL2Java
> /home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
> [axis-wsdl2java] Parsing XML file:
> /home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
> [axis-wsdl2java] Retrieving document at 'SearchService.wsdl', relative
> to
> 'file:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl'.
> [axis-wsdl2java] Retrieving schema at 'SearchService.xsd', relative to
> 'file:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SearchService.wsdl'.
> [axis-wsdl2java] Retrieving schema at 'SearchService.xsd', relative to
> 'file:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl'.
> [axis-wsdl2java] {http://www.w3.org/2001/XMLSchema}boolean already exists
> [axis-wsdl2java] {http://liquidpublication.it/SearchService}ID already
> exists
> [axis-wsdl2java] {http://liquidpublication.it/SearchService}DateRange
> already exists
> [axis-wsdl2java]
> {http://liquidpublication.it/SearchService}SearchCriteria already exists
> [axis-wsdl2java] Running Wsdl2javaAntTask with parameters:
> [axis-wsdl2java]  verbose:true
> [axis-wsdl2java]  debug:true
> [axis-wsdl2java]  quiet:false
> [axis-wsdl2java]  server-side:true
> [axis-wsdl2java]  skeletonDeploy:true
> [axis-wsdl2java]  helperGen:false
> [axis-wsdl2java]  factory:null
> [axis-wsdl2java]  nsIncludes:[]
> [axis-wsdl2java]  nsExcludes:[]
> [axis-wsdl2java]  factoryProps:[]
> [axis-wsdl2java]  testCase:false
> [axis-wsdl2java]  noImports:false
> [axis-wsdl2java]  NStoPkg:{}
> [axis-wsdl2java]
> output:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/srcSkel
> [axis-wsdl2java]  protocolHandlerPkgs:
> [axis-wsdl2java]  deployScope:
> [axis-wsdl2java]
> URL:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
> [axis-wsdl2java]  all:false
> [axis-wsdl2java]  typeMappingVersion:1.2
> [axis-wsdl2java]  timeout:45000
> [axis-wsdl2java]  failOnNetworkErrors:false
> [axis-wsdl2java]  printStackTraceOnFailure:true
> [axis-wsdl2java]  namespaceMappingFile:null
> [axis-wsdl2java]  username:null
> [axis-wsdl2java]  :passwordnull
> [axis-wsdl2java]  :noWrappedfalse
> [axis-wsdl2java]  :allowInvalidURLfalse
> [axis-wsdl2java]  :implementationClassNamenull
> [axis-wsdl2java]  :classpathnull
> [axis-wsdl2java]  http.proxyHost=null
> [axis-wsdl2java]  http.proxyPort=null
> [axis-wsdl2java]  http.proxyUser=null
> [axis-wsdl2java]  http.proxyPassword=null
> [axis-wsdl2java]  socks.proxyHost=null
> [axis-wsdl2java]  socks.proxyPort=null
> [axis-wsdl2java] java.lang.NullPointerException
> [axis-wsdl2java]  at
> org.apache.axis.wsdl.toJava.Utils.getParameterTypeName(Utils.java:994)
> [axis-wsdl2java]  at
> org.apache.axis.wsdl.toJava.JavaGeneratorFactory.constructSignature(JavaGeneratorFactory.java:1455)
> [axis-wsdl2java]  at
> org.apache.axis.wsdl.toJava.JavaGeneratorFactory.constructSignatures(JavaGeneratorFactory.java:1420)
> [axis-wsdl2java]  at
> org.apache.axis.wsdl.toJava.JavaGeneratorFactory.generatorPass(JavaGeneratorFactory.java:213)
> [axis-wsdl2java]  at
> org.apache.axis.wsdl.gen.Parser.generate(Parser.java:425)
> [axis-wsdl2java]  at
> org.apache.axis.wsdl.gen.Parser.access$000(Parser.java:45)
> [axis-wsdl2java]  at
> org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:362)
> [axis-wsdl2java]  at java.lang.Thread.run(Thread.java:619)
> 
> BUILD FAILED
> /home/nivox/Dati/Programmin

Re: Option to Remove Strict Schema Validation

2008-09-06 Thread Anne Thomas Manes
The latest version of ADB no longer imposes the limitations described
in the documentation. It offers pretty comprehensive support for XML
Schema now.

Anne

On Tue, Sep 2, 2008 at 2:53 PM, Peter Conrey <[EMAIL PROTECTED]> wrote:
> I have been developing web services and web service clients in a large
> corporate environment for several years now.  We employed several Perl web
> services (using SOAP::Lite) to feed both Java-based web clients (using Axis
> 1) and .NET clients in other departments.  While the architecture works very
> well, we've run into a very frustrating scenario that limits our ability to
> respond quickly to change requests.  Whenever we need to add data to a web
> service (say, a new field to a customer profile object), we have to
> completely re-deploy any Java application that uses that service/object,
> even if that new field is not relevant to the application.
>
> When we discovered that Axis 2 provided a means of turning off strict schema
> validation, we were excited to covert our code.  However, according to the
> Axis documentation, the only client format that supports the "-Eosv" option
> is ADB, which also carries the following limitation:
>
> "It is not meant to be a full schema binding application, and has
> difficulty with structures such as XML Schema element extensions and
> restrictions."
> 
> --http://ws.apache.org/axis2/1_4/userguide-creatingclients.html#createclients
>
> Unfortunately, we use both extensions and restrictions in our schema, as
> they best define our data structure.  How difficult would it be to add the
> "Eosv" option (or equivalent) to all data binding formats?  As much as I
> hate to tout Microsoft, .NET has no such limitation, so adding information
> to serialized objects has no effect on .NET clients.  While this may not be
> the "correct" behavior from a strict standards-based perspective, from a
>  practical, enterprise perspective, it is unacceptable to have to rebuild
> 8-10 client applications just to support a change required only by one or
> two, especially when one of the unaffected applications is beyond the
> service developer's control.
>
> Has anyone else discovered a solution to this issue, or found a way around
> it?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Possible issue with Apache WSDL2JAVA 1.3

2008-09-06 Thread Anne Thomas Manes
Axis 1.3 has known problems with arrays.
I suggest you upgrade to Axis 1.4, although it has other issues with arrays.

Anne

On Thu, Sep 4, 2008 at 10:31 AM, Roy Barman, Shashwata
<[EMAIL PROTECTED]> wrote:
> Problem Summary-
>
>
>
> There is a WS-I compliant valid WSDL ( attached). When consumed via testing
> tools like XMLSPY or SOAP UI the soap message is appropriately generared and
> the values are filled in and it works . The goodsoap message is attached.
>
>
>
> Now using WSDL2JAVA from Apache Axis 1.3  the soap message is not getting
> properly generated.
>
> If you look at the bad soap message  the repeating sale element under quotes
> is missing.
>
>
>
> I have attached the java main class used for testing .
>
>
>
> The workaround found was to modify the WSDL to add the xsd:any element below
> the repeating sale element.
>
> xsd:element name="Quotes">
>
> 
>
>   
>
>  maxOccurs="unbounded"/>
>
> minOccurs="0">
>
>   
>
> 
>
>   
>
>
>
>
>
> Shashwata Roy Barman
>
> Senior System Engineer
>
> Wyndham Vacation OwnerShip
>
> 407 2484237
>
>
>
> "The information in this electronic mail ("e-mail") message may contain
> information that is confidential and/or privileged, or may otherwise be
> protected by work product or other legal rules. It is solely for the use of
> the individual(s) or the entity(ies) originally intended. Access to this
> electronic mail message by anyone else is unauthorized. If you are not the
> intended recipient, be advised that any unauthorized review, disclosure,
> copying, distribution or use of this information, or any action taken or
> omitted to be taken in reliance on it, is prohibited and may be unlawful.
> Please notify the sender immediately if you have received this electronic
> message by mistake, and destroy all copies of the original message."
>
> "The sender believes that this e-mail and any attachments were free of any
> virus, worm, Trojan horse, malicious code and/or other contaminants when
> sent. E-mail transmissions cannot be guaranteed to be secure or error-free,
> so this message and its attachments could have been infected, corrupted or
> made incomplete during transmission. By reading the message and opening any
> attachments, the recipient accepts full responsibility for any viruses or
> other defects that may arise, and for taking remedial action relating to
> such
> viruses and other defects. Neither Wyndham Worldwide Corporation nor any of
> its affiliated entities is liable for any loss or damage arising in any way
> from, or for errors or omissions in the contents of, this message or its
> attachments."
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wsdl2java bug?

2008-09-06 Thread Jeff Greif
There is no element named "boolean" in the XML Schema namespace, only
a type named boolean.  You have to provide an element QName for the
message part in a doc/lit web service, so you must define an element
that is of type boolean if that's the type you want.  It must be in
some namespace you control.  There is no way to modify the XML Schema
namespace even if it were legal to do so, which it isn't.

Jeff

On Sat, Sep 6, 2008 at 8:20 AM, nivox <[EMAIL PROTECTED]> wrote:
> I'm trying to generate the Java code from a document-literal WSDL.
> Initailly I was able to write a fulli WS-I compiant WSDL and generate
> the code with wsdl2java without any problem.
>
> I then modified a portion of the wsdl from:
>
> 
>  
> 
>
> to:
>
> 
>  
> 
>
> Now if I try to run wsdl2java it fail with an NullPointerException as
> you cas see here:
> 
> [axis-wsdl2java] 6-set-2008 16.43.47 org.apache.axis.utils.JavaUtils
> isAttachmentSupported
> [axis-wsdl2java] AVVERTENZA: Unable to find required classes
> (javax.activation.DataHandler and javax.mail.internet.MimeMultipart).
> Attachment support is disabled.
> [axis-wsdl2java] WSDL2Java
> /home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
> [axis-wsdl2java] Parsing XML file:
> /home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
> [axis-wsdl2java] Retrieving document at 'SearchService.wsdl', relative
> to
> 'file:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl'.
> [axis-wsdl2java] Retrieving schema at 'SearchService.xsd', relative to
> 'file:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SearchService.wsdl'.
> [axis-wsdl2java] Retrieving schema at 'SearchService.xsd', relative to
> 'file:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl'.
> [axis-wsdl2java] {http://www.w3.org/2001/XMLSchema}boolean already exists
> [axis-wsdl2java] {http://liquidpublication.it/SearchService}ID already
> exists
> [axis-wsdl2java] {http://liquidpublication.it/SearchService}DateRange
> already exists
> [axis-wsdl2java]
> {http://liquidpublication.it/SearchService}SearchCriteria already exists
> [axis-wsdl2java] Running Wsdl2javaAntTask with parameters:
> [axis-wsdl2java]verbose:true
> [axis-wsdl2java]debug:true
> [axis-wsdl2java]quiet:false
> [axis-wsdl2java]server-side:true
> [axis-wsdl2java]skeletonDeploy:true
> [axis-wsdl2java]helperGen:false
> [axis-wsdl2java]factory:null
> [axis-wsdl2java]nsIncludes:[]
> [axis-wsdl2java]nsExcludes:[]
> [axis-wsdl2java]factoryProps:[]
> [axis-wsdl2java]testCase:false
> [axis-wsdl2java]noImports:false
> [axis-wsdl2java]NStoPkg:{}
> [axis-wsdl2java]
> output:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/srcSkel
> [axis-wsdl2java]protocolHandlerPkgs:
> [axis-wsdl2java]deployScope:
> [axis-wsdl2java]
> URL:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
> [axis-wsdl2java]all:false
> [axis-wsdl2java]typeMappingVersion:1.2
> [axis-wsdl2java]timeout:45000
> [axis-wsdl2java]failOnNetworkErrors:false
> [axis-wsdl2java]printStackTraceOnFailure:true
> [axis-wsdl2java]namespaceMappingFile:null
> [axis-wsdl2java]username:null
> [axis-wsdl2java]:passwordnull
> [axis-wsdl2java]:noWrappedfalse
> [axis-wsdl2java]:allowInvalidURLfalse
> [axis-wsdl2java]:implementationClassNamenull
> [axis-wsdl2java]:classpathnull
> [axis-wsdl2java]http.proxyHost=null
> [axis-wsdl2java]http.proxyPort=null
> [axis-wsdl2java]http.proxyUser=null
> [axis-wsdl2java]http.proxyPassword=null
> [axis-wsdl2java]socks.proxyHost=null
> [axis-wsdl2java]socks.proxyPort=null
> [axis-wsdl2java] java.lang.NullPointerException
> [axis-wsdl2java]at
> org.apache.axis.wsdl.toJava.Utils.getParameterTypeName(Utils.java:994)
> [axis-wsdl2java]at
> org.apache.axis.wsdl.toJava.JavaGeneratorFactory.constructSignature(JavaGeneratorFactory.java:1455)
> [axis-wsdl2java]at
> org.apache.axis.wsdl.toJava.JavaGeneratorFactory.constructSignatures(JavaGeneratorFactory.java:1420)
> [axis-wsdl2java]at
> org.apache.axis.wsdl.toJava.JavaGeneratorFactory.generatorPass(JavaGeneratorFactory.java:213)
> [axis-wsdl2java]at
> org.apache.axis.wsdl.gen.Parser.generate(Parser.java:425)
> [axis-wsdl2java]at
> org.apache.axis.wsdl.gen.Parser.access$000(Parser.java:45)
> [axis-wsdl2java]at
> org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:362)
> [axis-wsdl2java]at java.lang.Thread.run(Thread.java:619)
>
> BUILD FAILED
> /home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/build.xml:74:
> WSDL processing e

wsdl2java bug?

2008-09-06 Thread nivox
I'm trying to generate the Java code from a document-literal WSDL.
Initailly I was able to write a fulli WS-I compiant WSDL and generate
the code with wsdl2java without any problem.

I then modified a portion of the wsdl from:


  


to:


  


Now if I try to run wsdl2java it fail with an NullPointerException as
you cas see here:

[axis-wsdl2java] 6-set-2008 16.43.47 org.apache.axis.utils.JavaUtils
isAttachmentSupported
[axis-wsdl2java] AVVERTENZA: Unable to find required classes
(javax.activation.DataHandler and javax.mail.internet.MimeMultipart).
Attachment support is disabled.
[axis-wsdl2java] WSDL2Java
/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
[axis-wsdl2java] Parsing XML file:
/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
[axis-wsdl2java] Retrieving document at 'SearchService.wsdl', relative
to
'file:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl'.
[axis-wsdl2java] Retrieving schema at 'SearchService.xsd', relative to
'file:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SearchService.wsdl'.
[axis-wsdl2java] Retrieving schema at 'SearchService.xsd', relative to
'file:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl'.
[axis-wsdl2java] {http://www.w3.org/2001/XMLSchema}boolean already exists
[axis-wsdl2java] {http://liquidpublication.it/SearchService}ID already
exists
[axis-wsdl2java] {http://liquidpublication.it/SearchService}DateRange
already exists
[axis-wsdl2java]
{http://liquidpublication.it/SearchService}SearchCriteria already exists
[axis-wsdl2java] Running Wsdl2javaAntTask with parameters:
[axis-wsdl2java]verbose:true
[axis-wsdl2java]debug:true
[axis-wsdl2java]quiet:false
[axis-wsdl2java]server-side:true
[axis-wsdl2java]skeletonDeploy:true
[axis-wsdl2java]helperGen:false
[axis-wsdl2java]factory:null
[axis-wsdl2java]nsIncludes:[]
[axis-wsdl2java]nsExcludes:[]
[axis-wsdl2java]factoryProps:[]
[axis-wsdl2java]testCase:false
[axis-wsdl2java]noImports:false
[axis-wsdl2java]NStoPkg:{}
[axis-wsdl2java]
output:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/srcSkel
[axis-wsdl2java]protocolHandlerPkgs:
[axis-wsdl2java]deployScope:
[axis-wsdl2java]
URL:/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
[axis-wsdl2java]all:false
[axis-wsdl2java]typeMappingVersion:1.2
[axis-wsdl2java]timeout:45000
[axis-wsdl2java]failOnNetworkErrors:false
[axis-wsdl2java]printStackTraceOnFailure:true
[axis-wsdl2java]namespaceMappingFile:null
[axis-wsdl2java]username:null
[axis-wsdl2java]:passwordnull
[axis-wsdl2java]:noWrappedfalse
[axis-wsdl2java]:allowInvalidURLfalse
[axis-wsdl2java]:implementationClassNamenull
[axis-wsdl2java]:classpathnull
[axis-wsdl2java]http.proxyHost=null
[axis-wsdl2java]http.proxyPort=null
[axis-wsdl2java]http.proxyUser=null
[axis-wsdl2java]http.proxyPassword=null
[axis-wsdl2java]socks.proxyHost=null
[axis-wsdl2java]socks.proxyPort=null
[axis-wsdl2java] java.lang.NullPointerException
[axis-wsdl2java]at
org.apache.axis.wsdl.toJava.Utils.getParameterTypeName(Utils.java:994)
[axis-wsdl2java]at
org.apache.axis.wsdl.toJava.JavaGeneratorFactory.constructSignature(JavaGeneratorFactory.java:1455)
[axis-wsdl2java]at
org.apache.axis.wsdl.toJava.JavaGeneratorFactory.constructSignatures(JavaGeneratorFactory.java:1420)
[axis-wsdl2java]at
org.apache.axis.wsdl.toJava.JavaGeneratorFactory.generatorPass(JavaGeneratorFactory.java:213)
[axis-wsdl2java]at
org.apache.axis.wsdl.gen.Parser.generate(Parser.java:425)
[axis-wsdl2java]at
org.apache.axis.wsdl.gen.Parser.access$000(Parser.java:45)
[axis-wsdl2java]at
org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:362)
[axis-wsdl2java]at java.lang.Thread.run(Thread.java:619)

BUILD FAILED
/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/build.xml:74:
WSDL processing error for
/home/nivox/Dati/Programming/Workspace/LiquidPublicationNG/wsdl/SubscriptionService.wsdl
:
 null


It's this my fault or it this an wsdl2java bug?

Assuming the problem is caused by me, how can I get a service
operation that returns a simple type (like java.lang.boolean) instead
having to return a wrapper type that contains only a boolean value?

Thanks,
Andrea Zito
-- 
nivox

Linux Registered User #290686
Powered by: Debian Testing/Unstable
JABBER: [EMAIL PROTECTED]
GPG Key ID: 0xC6A50D8D (info: www.gnupg.org)
GPG Keyserver: http://keyserver.linux.it



signature.asc
Description

Re: Java Web Start and packaging of Axis2-libs

2008-09-06 Thread Andreas Veithen

Michael,

If you use Maven to build your application, you can use the maven- 
assembly-plugin with the built-in jar-with-dependencies descriptor to  
achieve this:



  maven-assembly-plugin
  

  jar-with-dependencies

  
  

  make-assembly
  package
  
attached
  

  


Regards,

Andreas

On 4 sept. 08, at 11:14, Michael Sonntag wrote:


Hello everyone!

I'm developing an Axis2/Java client that should be deployed via Java
Web Start. As Axis has got a lot of dependencies to third party libs,
I'd like to put all of the required jars into a single file, so that
the client just needs to download that "axis2-client-libs.jar" instead
of all the 10-15 packages.

I tried the naive way and put all of them into a new jar (via ant's
jar-task), but it seems that those jars inside the wrapping jar cannot
be found by the client. Is there any other solution to this? Maybe one
could repack all of the classes from the different jars to a new jar?
Would that be allowed if all of the license file would also be
included in the newly created jar?

Thanks for any hints!

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Webservice method returns object itself

2008-09-06 Thread SanjeevGour

Thanks for your reply.

I am using Axis 2 only.

Regards-
Sanjeev.


Deepal Jayasinghe wrote:
> 
> 
>> Hello Experts,
>> I have a webservice implemented in Java and Axis. This webservice works
>> just
>> fine. Now I have added another method as a part of this webservice. Made
>> an
>> entry for this method in the WSDD. This method returns an object
>> containing
>> for String arrays. This method runs correctly but returns the Object's
>> hashcode instead of the values of the four String arrays. As I am new to
>> the
>> webservices, I don't really have any idea what to do in order to get the
>> right data as the response.
>>   
> Is this about Axis1 or Axis2 ?
> if it is not Axis2 and if you are new to Web services I recommend you to
> switch to Axis2.
> 
> Thank you!
> Deepal
>> Any ideas???
>> Sanjeev.
>>   
> 
> -- 
> Thanks,
> Deepal
> 
> http://blogs.deepal.org/
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Webservice-method-returns-object-itself-tp19327718p19344377.html
Sent from the Axis - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]