cvs commit: xml-axis/java/test/wsdl/types DynamicProxyTestCase.java

2002-04-12 Thread butek
butek 02/04/12 15:36:53 Modified:java/src/org/apache/axis/client AxisClientProxy.java Call.java Service.java Added: java/test/wsdl/types DynamicProxyTestCase.java Log: A few more small steps to dynamic proxyhood. I've added the beginnings of a te

cvs commit: xml-axis/java/src/org/apache/axis/description ParameterDesc.java

2002-04-12 Thread scheu
scheu 02/04/12 15:24:48 Modified:java/src/org/apache/axis/deployment/wsdd WSDDOperation.java WSDDService.java java/src/org/apache/axis/description ParameterDesc.java Log: Just a few minor improvements that I found.. Revision Changes

cvs commit: xml-axis/java/src/org/apache/axis/wsdl/toJava JavaDeployWriter.java

2002-04-12 Thread scheu
scheu 02/04/12 14:25:52 Modified:java/src/org/apache/axis/wsdl/toJava JavaDeployWriter.java Log: Cleaned up the code to separate the logic and printing for typeMapping and operation. Revision ChangesPath 1.35 +108 -53 xml-axis/java/src/org/apache/axis/wsdl/toJa

Re: Array of Objects

2002-04-12 Thread R J Scheuerle Jr
The chat consensus seems to be that the format is correct. However, a code change will probably be made to conform with .NET. Rich Scheuerle XML & Web Services Development 512-838-5115  (IBM TL 678-5115)

Re: Array of Objects

2002-04-12 Thread Oliver Suciu
Same problem posted on axis-user a while ago -- my solution (workaround?) was to modify the Axis WSDL (attached). Why this WSDL works and not the one generated by java2wsdl, I leave to the experts to analyze... The bottom line of the typedef is the same (an array of anyType). It's either a bug in

Array of Objects

2002-04-12 Thread Tom Jordahl
If I have a Java class that looks like this: public class ArrayEcho { public Object[] echoArray (Object[] a) { return a; } } The WSDL we generate looks like this: http://schemas.xmlsoap.org/soap/encoding/"; xmlns="http://www.w3.org/2001/XMLSchema";>

A couple topics for Tuesday's chat

2002-04-12 Thread Russell Butek
1. When should we have the face-to-face? Some folks have said my suggested dates are good for them, but they're not good for Sam Ruby. Either the week before or the week after would work for him. (We don't have to change the date just because he can't be there, but we can discuss it.) 2. Are w

Re: Quick Build Question

2002-04-12 Thread Steve Loughran
- Original Message - From: "Harris Reynolds" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 12, 2002 8:30 AM Subject: Re: Quick Build Question > Mark/Harald > > Thank you for the help. Now ant is throwing a java.lang.VerifyError!? Have either of you experienced this at

RE: Perhaps there will be a form for invoking the service here...

2002-04-12 Thread Tom Jordahl
Title: Perhaps there will be a form for invoking the service here...   Axis does not currently have this functionality, nor does it support the HTTP POST/GET style of operations. The "Perhaps..." message is a marker for future development.   Alan Gordie is working on some improved functional

Perhaps there will be a form for invoking the service here...

2002-04-12 Thread Stefano Mainardi
Title: Perhaps there will be a form for invoking the service here... Hello everybody I'm trying to make a web service I wrote using Axis also avaiable via web browser. When I go to the web service page I get this: /axis-beta1/services/MyService Hi there, this is an AXIS service! Perhap

Re: Quick Build Question

2002-04-12 Thread Harris Reynolds
Mark/Harald Thank you for the help. Now ant is throwing a java.lang.VerifyError!? Have either of you experienced this at all? thanks, harris Copy from screen... C:\packages\xml-axis-beta1\java>ant compile Buildfile: build.xml BUILD FAILED java.lang.VerifyError: (class: org/apache/tools/a

RE: soap:header

2002-04-12 Thread St-Germain, Sylvain
Charles, I realized after the fact that there is no name attribute on the soap:header. Looks like we will have to use the combination of the soap:header message and part attributes to uniquely identify them. Sylvain. -Original Message- From: Ng, Charles [mailto:[EMAIL PROTECTED]] Se

RE: [GUMP] Build Failure - Axis

2002-04-12 Thread Tom Jordahl
From: Sam Ruby [mailto:[EMAIL PROTECTED]] > Anybody know why we rerun *ALL* of the unit tests with security turned on, > if it is available? To me this seems like gross overkill... +1. -- Tom Jordahl

RE: how to choose bean attributes to publish in WSDL

2002-04-12 Thread Benazech Cédric
I'm actually trying to do that ! ;) But that's very dificult for me : I just started to look at the Axis Source for three months and I encounter difficulties to correctly understand the architecture choices and some classes utility (ClassRep versus TypeDesc versus PropertDescriptor, for example).

RE: Unresponsiveness

2002-04-12 Thread Tom Jordahl
I would also say that some of the reasons for the lack of responsiveness is the small number of active committers Axis has seemed to be reduced to. By my count, there are 5+ people who are currently actively engaged in developing Axis. There are many more committers on 'the list', but some h

RE: how to choose bean attributes to publish in WSDL

2002-04-12 Thread Tom Jordahl
I think that enhancing Axis to use the BeanInfo class would generally be useful. Why don't you make the changes and we can see about integrating them in the source. It should be straight forward to enhance the Beasnserailzier to check for the BeanInfo class, right? Then you will have a) so

RE: soap:header

2002-04-12 Thread Ng, Charles
Hi Chris. As Sylvain has mentioned already, we're pretty much focused on the client side of things. I haven't had much time to look at the server side implementation. With that said, it does make sense to expose the ServiceContext in the Impl class. The ServiceContext object would be a stand-a

Attn Russell : Skeletons

2002-04-12 Thread Glen Daniels
Russell/all: I've got Skeletons fully working on my machine, but to make this happen I had to make a few kludgey changes which I'd like to clean up this morning. I'll check this stuff in by lunchtime here (i.e. about 4PM EST) - sorry for the delay. --Glen

RE: Nightly build: WSDL2Java gives exception

2002-04-12 Thread Tom Jordahl
Thanks Kristain, my bug. I just submitted a fix for this. -- Tom Jordahl Macromedia -Original Message- From: Kristain Rosenvold [mailto:[EMAIL PROTECTED]] Sent: Friday, April 12, 2002 1:55 AM To: [EMAIL PROTECTED] Subject: Nightly build: WSDL2Java gives exception I have tried several

cvs commit: xml-axis/java/src/org/apache/axis/wsdl WSDL2Java.java

2002-04-12 Thread tomj
tomj02/04/12 07:17:49 Modified:java/src/org/apache/axis/wsdl WSDL2Java.java Log: Ignore malformed URLs when checking for username/password in the WSDL URI. Revision ChangesPath 1.23 +8 -2 xml-axis/java/src/org/apache/axis/wsdl/WSDL2Java.java Index: W

Re: [GUMP] Build Failure - Axis

2002-04-12 Thread Glen Daniels
I'm sure you didn't catch it because you don't have security set up, as Sam noted. However, new SOAPEnvelope() throws an Exception?? This is clearly another JAXM-ism, and I for one would vote strongly in favor of hiding it for our classes. What useful Exception would this throw? --Glen -

RE: Quick Build Question

2002-04-12 Thread Volkmann, Mark
Title: RE: Quick Build Question "condition" is a built-in task that was added to Ant in version 1.4. Is it possible that you are using an earlier version of Ant? You can check it with "ant -version". > -Original Message- > From: Harris Reynolds [mailto:[EMAIL PROTECTED]] > Sent: Frid

RE: Beta2, anyone?

2002-04-12 Thread Tom Jordahl
Sounds like it might be time. +1 -- Tom Jordahl -Original Message- From: Russell Butek [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 2:55 PM To: [EMAIL PROTECTED] Subject: Beta2, anyone? What would folks think of a beta, version 2, sometime in the next couple weeks? There

schema import issue

2002-04-12 Thread Russell Butek
I've just had a bit of education about XML imports. We have a slight problem. Given the pattern: <... www="xxx:yyy" .../> we MUST have an import statement like: There is ONLY ONE exception: xsd types are considered built in. For example, the following does not need an import: http:/

cvs commit: xml-axis/java TODO.txt

2002-04-12 Thread butek
butek 02/04/12 07:04:44 Modified:java TODO.txt Log: Another work item... Revision ChangesPath 1.40 +4 -0 xml-axis/java/TODO.txt Index: TODO.txt === RCS file: /home/cvs/xml-axis/java/

Re: [GUMP] Build Failure - Axis

2002-04-12 Thread Sam Ruby
Glyn Normington wrote: > > I can't understand why this build failure crept in, but I'm sure it was due > to the changes I made yesterday. I backed out the relevant change (adding a > SOAPException to the no-args constructor of the Axis SOAPEnvelope class) > this morning UK time, but Gump appears t

Re: Unresponsiveness

2002-04-12 Thread Russell Butek
You're quite right in chastising us. We should be more responsive. I think we're all pretty busy in one way or another. For myself, handlers aren't my forte, so I was hoping someone else would respond to your notes (that's not an excuse, just a reason). The fellow that I was hoping WOULD respo

RE: soap:header

2002-04-12 Thread St-Germain, Sylvain
Chris, I understand that most of your questions are about server side stuff which unfortunately is an area I am not too familiar with yet. It seems true to me that support for sending back the header will have to be provided into the Impl class. I don't think the Impl class will ever have a

Re: AXIS face-to-face

2002-04-12 Thread Glyn Normington
The dates suit me (but I still need to obtain the funding...). Glyn Russell

AXIS face-to-face

2002-04-12 Thread Russell Butek
We'll host our face-to-face here at IBM in Austin, TX. I think two days should be sufficient. For those of you who would like to attend, please let me know if May 15/16 (Wed/Thur) will work for you. That should give everyone enough time to plan for it. Russell Butek [EMAIL PROTECTED]

Re: [GUMP] Build Failure - Axis

2002-04-12 Thread Glyn Normington
I can't understand why this build failure crept in, but I'm sure it was due to the changes I made yesterday. I backed out the relevant change (adding a SOAPException to the no-args constructor of the Axis SOAPEnvelope class) this morning UK time, but Gump appears to have run earlier than that. W

bug in JavaUtils.convert ??

2002-04-12 Thread Vikram Rayabhari
JavaUtils.convert does not work if the second argument is List.class . It does no conversion and returns the object as it is. The problem is at line 320. 315List newList = null; 316try { 317newList = (List)destClass.newInstance(); 318} catch (Ex

Re: more new classes for JAXM soap package

2002-04-12 Thread Glyn Normington
Xiaoping, Welcome back from your travels! I'd like to encourage *you* to integrate those new classes into Axis - it's really not that hard after a bit of practice. I could do it for you, but I think you'll get up to speed quicker if you do it yourself and the result will be much more worthwhile.

[GUMP] Build Failure - Axis

2002-04-12 Thread Sam Ruby
This email is autogenerated from the output from: Buildfile: build.xml setenv: [mkdir] Created dir: /home/rubys/jakarta/x

Re: Quick Build Question

2002-04-12 Thread Harald Schmitt
Harris Reynolds schrieb: > > Hello. Below I pasted my attempt to build axis on my home machine. Unfortuneately >it failed. I have all of the libraries mentioned in the Developer Guide in my >classpath. I also downloaded the optional.jar file and added it to my ANT_HOME\lib >directory. Is

RE: how to choose bean attributes to publish in WSDL

2002-04-12 Thread Benazech Cédric
Thanks a lot for all your answers. They are very helpful for me. I understand the gain to use wrapper for the beans, but for the project I'm working an, there are a lot of bean (!!) and it would be a hard work to create (and maintain) such a redundancy. To avoid that, my idea is to create a cla

Re: addHeader raising exceptions

2002-04-12 Thread Glyn Normington
Done. Glyn Glyn

cvs commit: xml-axis/java/test/outparams ServiceHandler.java

2002-04-12 Thread glyn
glyn02/04/12 02:46:36 Modified:java/samples/echo echoHeaderStringHandler.java echoHeaderStructHandler.java java/samples/encoding TestSer.java java/src/org/apache/axis SOAPPart.java java/src/org/apache/axis/client C

Unresponsiveness

2002-04-12 Thread Fernandez Martinez, Alejandro
Title: Unresponsiveness Hi folks! I have submitted a couple of questions and a couple of classes, and never heard back. Have I got something wrong? Perhaps the questions should go to the user list, perhaps the classes are not needed, perhaps you are all working afterhours to get a 1.0 rele

Quick Build Question

2002-04-12 Thread Harris Reynolds
Hello. Below I pasted my attempt to build axis on my home machine. Unfortuneately it failed. I have all of the libraries mentioned in the Developer Guide in my classpath. I also downloaded the optional.jar file and added it to my ANT_HOME\lib directory. Is there something I am missing to e