Does Sun use AXIS?

2002-07-17 Thread Paramdeep Singh
Hi, I am not sure, if this is the right forum to ask this question. In case it is not, please point me to the right forum. I want to ask if SUN is using AXIS as its JAX RPC implementation. In case it is not can you please tell me what they are using for their JAX RPC implementation? I

URL's in generated WSDL

2002-07-17 Thread Peter Haensgen
Hi there, I have a question regarding the URL's contained in the generated WSDL document. I have a webservice that is accessed through a load balancer. The public URL to retrieve the WSDL (and to access the webservice) would look like this:

NS_URI_LITERAL_XML in AXIS

2002-07-17 Thread Boris_Paskalev
Hi I guess this is the right list to ask my question. I have a client that receives a dom.Element as a string (this did not required any serializes or tricks) using pure SOAP 2.2. But then I tried to do the same call to the service using AXIS and I was left with the problem that AXIS does not

RE: MOMs using axis

2002-07-17 Thread Cohan, Sean
I came in this morning and was going to look for an open source MOM implementation. I just need a simple P2P so the client can receive a 'message received ok' type indicator and then go on to do other processing while the server processes the message and eventually returns the results of

Re: fault message

2002-07-17 Thread scheu
See JSR 101 version 1.0 chapter 4.3.6 The mapping fo WSDL faults has changed several times during the development of the specification. If you still think that the Axis is in error, please open a bugzilla defect. Thanks, Rich 'Shirley' Scheuerle IBM WebSphere Axis Web Services Development

Bean data not serialized

2002-07-17 Thread (RV) Buchberger, Jörg
Hi all. I'm new to this. So, probably I missed out on something. After following thru the userguide examples I tried to send a Bean via Axis SOAP. No exceptions, no AxisFault. The Application runs and requests, the Service returns a BeanObject, Axis seems to serialize the Bean, soap envelope is

Re: Bean data not serialized

2002-07-17 Thread Heitzso
Please post your code for the 'SimpleItem' bean itself. I'm guessing you don't have getters/setters required by bean serializer/deserializer in your bean. == On Wed, 2002-07-17 at 10:14, (RV) Buchberger, Jörg wrote: Hi all. I'm new to this. So,

re: returning arrays of beans

2002-07-17 Thread James Black
Hello, I can't get my program to work when I try to send an array of objects, but when I turn that array into an xml file it works. It dawned on me that my problem may be that some of the attributes are null, so I am working on trying to correct that. I have an object that has an attribute

AW: Bean data not serialized

2002-07-17 Thread (RV) Buchberger, Jörg
Hi all, sorry, I introduced a typo when I simplified the method of the Service bean: Here is the snippet with correct line 5. 1public SimpleObject getIt() 2{ 3int id = this.getSomeId(); 4String name = this.getName(id); 5SimpleObject anItem = new SimpleObject(id, name); 6

How to invoke example 6?

2002-07-17 Thread Supriyo Chatterjea
Hi, I managed to carry out Steps 1 to 3 of example 6 and all the files listed in the tutorial were successfully generated. I then deployed the service using AdminClient. How do I now invoke the service? I tried the following command: java samples.userguide.example6.WidgetPrice And I did

AW: Bean data not serialized

2002-07-17 Thread (RV) Buchberger, Jörg
Please post your code for the 'SimpleItem' bean itself. I'm guessing you don't have getters/setters required by bean serializer/deserializer in your bean. == package my.packg; public class SimpleObject { public SimpleObject() { }

Writing and deploying Serializer

2002-07-17 Thread Oliver Rettig
Hello, can anybody tell me how I can write my own Serializer/Deserializer? Please don't give me the answer that I should use BeanSerializer, I want to write my own Serializer, because BeanSerializer doesn't work. And I also want to know what to write in the Deploymentdescriptor to activate the

Client param NS problem

2002-07-17 Thread Reischl, Brian
Title: Client param NS problem Hey list, I think I've found a bug in the client implementation of Axis Beta 3. (I know, I should submit this to Bugzilla, but I don't want to spend time messing with it on the company clock. Sorry) It appears that the client does not set the namespace of the

RE: fault message

2002-07-17 Thread Schie, Sjaak van
Hi Milos, I've seen that beta 2 doesn't (always) create the Holders for the complex types. It only refers to them, so the code doesn't compile. However beta 3 creates the Holders. I suggest you test it with beta 3 first. Sjaak -Original Message- From: Milos Cekovic [mailto:[EMAIL

re: returning arrays of beans

2002-07-17 Thread Heitzso
just confirming that bean with attribute of array of beans can be handled correctly by axis, though will be serialized/de. via multiref unless that is toggled false. Some attributes of my beans have been null and that's worked, but I've never had null bean array elements. On Wed, 2002-07-17

Re: returning arrays of beans

2002-07-17 Thread James Black
Heitzso wrote: just confirming that bean with attribute of array of beans can be handled correctly by axis, though will be serialized/de. via multiref unless that is toggled false. Some attributes of my beans have been null and that's worked, but I've never had null bean array elements.

ERROR : Could not convert java.util.GregorianCalendar to bean field xxx, type java.util.Date

2002-07-17 Thread pascal . recchia
I have the same problem, How to resolve it ? It works with the beta 2, not with the beta 3 ... [prev in list] [next in list] [prev in thread] [next in thread] List: axis-user Subject: RE: How to use DateSerializer? (Naresh Bhatia) From: Christian Schmitz [EMAIL PROTECTED] Date:

Re: ERROR : Could not convert java.util.GregorianCalendar to bean fieldxxx, type java.util.Date

2002-07-17 Thread butek
Could you try a recent nightly build? There have been some fixes to the Calendar (de)serializer since beta 3 that may have fixed your problem. Russell Butek [EMAIL PROTECTED] Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: ERROR : Could not convert

RE: Error loading AXIS beta 3 in WebLogic 6.1 SP2

2002-07-17 Thread Volanis, Alexander
I believe this problem is related with '-' in jar filenames and the manifest file validation. SP3 for WL 6.1 corrects this problem. -Original Message- From: Jeff Drost [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 13, 2002 8:51 PM To: [EMAIL PROTECTED] Subject: Re: Error loading AXIS

Asynchronous Messaging

2002-07-17 Thread Cohan, Sean
I'm wondering how I can have our SOAP client call our JAX-RPC web service, receive only a receipt acknowledged type message, and continue processing without waiting for the web service to finish. Then when our web service finishes, we would notify the client somehow that their either their

RE: How to invoke example 6?

2002-07-17 Thread Olejarz, Greg
Title: RE: How to invoke example 6? You need to invoke from the /home/sup/programs/xml-axis-beta2 directory due to the package that the class is in... Greg -Original Message- From: Supriyo Chatterjea [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 10:33 AM To: [EMAIL

Re: Asynchronous Messaging

2002-07-17 Thread Andrew Vardeman
I had a similar question a while back, and the answer was not in Axis version 1. If you can live without the receipt acknowledged message, you could probably write a client that behaves in an asynchronous way. For instance, if you're writing a .NET client, asynchronous method calls to

Axis Config

2002-07-17 Thread Eric Rapp
I have recently download the beta3 version of axis and walked through the (beta2) Installation documentation on axis site. I am trying to become familiar with axis, but every time I try to access my server using the examples or the validation page I get the Following error:

RE: Asynchronous Messaging

2002-07-17 Thread Cohan, Sean
I read your thread. We will be using Java clients. The intro to the example in AXIS Next Generation Java SOAP book states that JMS allows you to exchange messages asynchronously, which leads me to believe I can at least continue processing on the client instead of waiting for a reply. In the

Question on replacing SimpleAuthenticationHandler with my own

2002-07-17 Thread Kim, Yong
Hi, Can anyone help me on providing my own custom replacement for the SimpleAuthenticationHandler? I have set the the handler tag in my deploy.wedd file as below: !-- Use this file to deploy some handlers/chains and services -- !-- Two ways to do this:

Package Name in Method Parameter and Return Types

2002-07-17 Thread Cohan, Sean
I'm using Java2WSDL and WSDL2Java. WSDL2Java places the fully qualified class name in method parameters and return types. For example, if I have an Integer being passed to method myMethod which returns an Integer, WSDL2Java would gen: public java.lang.Integer myMethod(java.lang.Integer in0)

Re: Package Name in Method Parameter and Return Types

2002-07-17 Thread scheu
Using fully qualified names in generated code is because it prevents collisions. If it generated: public Integer myMethod(Integer in0) {...} there would be the possiblity that an Integer class in the same package would be used. There is no way to turn this off. Rich 'Shirley' Scheuerle

RE: Hotspot classloading prob and tt-bytecode.jar *was* AW: JBoss.net deployment stopped by java.lang.LinkageError

2002-07-17 Thread Matt Munz
CGJ, Class.forName() can deliver ugly class references that have been wrongly cached inside your VM An interesting lead... I'll have to look into this further. Could it be that even though there is only one instance of the class on the classpath, the JVM thinks there are two, and throws a

Re: Bean data not serialized

2002-07-17 Thread Martin Jericho
I assume the code snippet of the getIt method is from your source MyService class. This class only defines the interface. Axis will generate a new class called MyServiceSoapBindingImpl, which is where you have to implement the getIt method. By default, the getIt method in the generated

ByteArrayDataSource with PipedInputStream

2002-07-17 Thread Ignatia Suwarna
Hi there, I created a web service that returns DataHandler created by ByteArrayDataSource. The DataSource has PipedInputStream as its member field. I fill in the stream in a different thread. The main thread returns as soon as the new thread is created. The stream is closed after it is