cvs commit: xml-axis/java/lib bcel.LICENSE

2002-02-15 Thread glyn
glyn02/02/15 01:33:44 Added: java/lib bcel.LICENSE Log: Each checked-in jar needs a license. Revision ChangesPath 1.1 xml-axis/java/lib/bcel.LICENSE Index: bcel.LICENSE === /*

Re: cvs commit: xml-axis/java/src/org/apache/axis/transport/httpAdminServlet.java AxisServlet.java

2002-02-15 Thread Glyn Normington
Good improvement! Glyn

Re: Modified WSDDTargetedChain.java

2002-02-15 Thread Glyn Normington
I don't know this area of Axis well enough to be sure, but your fix looks plausible. However, comparing the code in WSDDDeployableItem.makeNewInstance, I wonder if the following line needs adding just before the new call to setOptions: pivot.setName(pivotQName.getLocalPart()); On the other hand

Re: Debug builds

2002-02-15 Thread Glyn Normington
I guess someone edited the file and comitted it by accident. (I tend to eye-ball the output of cvs diff before issuing cvs commit to avoid this kind of problem.) >I would vote to change it back to off. +1, especially given that it can be overridden with an environment variable. Glyn

RE: Modified WSDDTargetedChain.java

2002-02-15 Thread Sedukhin, Igor
Glyn, Chen, I think it's all good and we don't have to apply the change. Here is why and how to take care of the original problem correctly. You're deploying a transport like Well, you are actually getting a transport with parameters, just that the pivot is not getting them, because it is a s

[PATCH] encoding.SerializationContextImpl getSerializerForJavaType() always returned null

2002-02-15 Thread Taras Shkvarchuk
815c815 < return null; --- > return dser;

[PATCH] message.MessageElement get/setValue() and child serialization

2002-02-15 Thread Taras Shkvarchuk
org.apache.axis.message.MessageElement: added Object getValue()/setValue(Object) methods. makes it a lot easier to build nodes with registered types as values. Fixed output() method to serialize any children node may have. -Taras 61a62 > import org.apache.axis.encoding.Serializer; 80a82 > impo

[PATCH] encoding.DeserializerImpl NullPointerException in DEBUG mode

2002-02-15 Thread Taras Shkvarchuk
If node had an href attribute, but that reference was not defined yet, you would get NullPointer in log4j DEBUG mode. 316a317 > if(ref!=null){ 319a321,325 > }else{ > category.debug(JavaUtils.getMessa

[GUMP] Build Failure - Axis

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

RE: BCEL

2002-02-15 Thread Tom Jordahl
+1 -- Tom Jordahl -Original Message- From: Glen Daniels [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 14, 2002 4:34 PM To: 'Axis-Dev (E-mail)' Subject: BCEL I just revamped JavapUtils to stop using javap and start using BCEL (http://jakarta.apache.org/bcel). The main benefits

Re: BCEL

2002-02-15 Thread R J Scheuerle Jr
The JavapUtils code is ugly. (I know because I added it.) If BCEL provides a better way to get at the debug information then we should use BCEL. A big +1 from me. Glen, please make sure the code continues to work with methods that have array parameters and return values. Thanks! Rich Scheuer

Re: Experiments on type serialization. (feedback very welcome)

2002-02-15 Thread R J Scheuerle Jr
Thanks for the work. I don't have much time today to look at your changes. A couple of questions: 1) Do your changes work with multi-ref'd data (i.e. instead of a map of strings, a map of multi-ref'd structs) 2) Do you know why the functional test died? Could you temporarily comment out tha

RE: [GUMP] Build Failure - Axis

2002-02-15 Thread Glen Daniels
Anyone have a clue why this isn't working? I don't see this problem even when bcel.jar is not on my command-line classpath running ant --Glen > -Original Message- > From: Sam Ruby [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 15, 2002 8:47 AM > To: [EMAIL PROTECTED] > Subjec

RE: [GUMP] Build Failure - Axis

2002-02-15 Thread Sam Ruby
Glen Daniels wrote: > > Anyone have a clue why this isn't working? I don't see this problem even > when bcel.jar is not on my command-line classpath running ant Short answer: Gump does not use jars from cvs. I had to add one line to the project definition for axis to link to jakarta-bcel.

RE: Modified WSDDTargetedChain.java

2002-02-15 Thread CHEN,SHIH-CHANG (HP-NewJersey,ex2)
Igor, Glyn, Thanks, it does work for me. Attachment is the schema of wsdd i found. It may be old. But looks like transport is allowed to have parameters because transport extends DeployableItem. I think the wsdd shcema may need to be changed in next release. -chen > -Original Message- >

FW: Off topic .NET question

2002-02-15 Thread Adam.Leggett
Im belatedly cross posting here. See my AXIS-user thread below. I need to implement an authentication mechanism that will still allow for interop. Should I cut the chase and delve into using the SOAP Header (ive used HTTP basic auth in my handlers so far) to provide auth info? What I like about B

RE: Modified WSDDTargetedChain.java

2002-02-15 Thread Sedukhin, Igor
Chen, I'm glad we've got you going :). Transport does have the parameters you have specified. The pivot didn't get them because pivot is another handler entity. In other words if you've done config.getTransport(Qname(null,"smtp")).getOption(...) you'll see the parameters as in your original d

RE: Modified WSDDTargetedChain.java

2002-02-15 Thread Glyn Normington
Igor, Thanks for sorting out Chen's problem. I'm still a bit puzzled about the makeNewInstance methods in WSDDDeployableItem and WSDDTargetedChain. It does look as though there is some missing code in WSDDTargetedChain. Can anyone explain the difference? Glyn

RE: Modified WSDDTargetedChain.java

2002-02-15 Thread Sedukhin, Igor
Glyn, What do you think is missing? Actually I also thoought so, but then I took a closer look and figured it's all good... -- Igor Sedukhin .. ([EMAIL PROTECTED]) -- (631) 342-4325 .. 1 CA Plaza, Islandia, NY 11788 -Original Message- From: Glyn Normington [mailto:[EMAIL PROTECTED]]

cvs commit: xml-axis/java/test/wsdl/clash clash.wsdl

2002-02-15 Thread butek
butek 02/02/15 10:20:10 Modified:java/src/org/apache/axis/message RPCHandler.java java/src/org/apache/axis/providers/java RPCProvider.java java/src/org/apache/axis/utils/cache JavaClass.java JavaMethod.java java/test

RE: Experiments on type serialization. (feedback very welcome)

2002-02-15 Thread Taras Shkvarchuk
no my test was not multi-refed. I have seen it passed one multi-ref test, but died on the other, so my guess thats where the bug is. > -Original Message- > From: R J Scheuerle Jr [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 15, 2002 7:18 AM > To: [EMAIL PROTECTED] > Subject: Re: Ex

cvs commit: xml-axis/java/test/wsdl Wsdl2javaTestSuite.xml

2002-02-15 Thread scheu
scheu 02/02/15 11:41:17 Modified:java/samples/echo EchoService.java SOAPArrayStruct.java SOAPStructStruct.java TestClient.java deploy.wsdd java/src/javax/xml/rpc/namespace QName.java java/src/org/apache/axis/encoding/ser ArraySeria

cvs commit: xml-axis/java/samples/echo EchoServiceAccess.java EchoServiceAccessLocator.java EchoServiceBindingStub.java EchoServicePortType.java

2002-02-15 Thread scheu
scheu 02/02/15 11:41:57 Added: java/samples/echo EchoServiceAccess.java EchoServiceAccessLocator.java EchoServiceBindingStub.java EchoServicePortType.java Log: checked in TestClient stub stuff Revision

RE: [PATCH] message.MessageElement get/setValue() and child serializa tion

2002-02-15 Thread Taras Shkvarchuk
In the morning you always find a way to improve... :) I have noticed that last change didn't have effect on Headers, so I changed SOAPHeaders to use get/set from the MessageElement, as well as removing now unneeded outputImpl(). Changed getValue() to use defines from Constants, rather than local s

cvs commit: xml-axis/java/src/org/apache/axis/transport/http AxisServlet.java

2002-02-15 Thread gdaniels
gdaniels02/02/15 12:12:33 Modified:java/src/org/apache/axis/transport/http AxisServlet.java Log: Find the correct endpoint URL (this uses a deprecated API, but the "new" version didn't seem to work!) Revision ChangesPath 1.81 +2 -3 xml-axis/java/src/org/apac

cvs commit: xml-axis/java/test/wsdl Wsdl2javaTestSuite.xml

2002-02-15 Thread scheu
scheu 02/02/15 12:26:52 Modified:java/test/wsdl Wsdl2javaTestSuite.xml Log: Revision ChangesPath 1.71 +0 -2 xml-axis/java/test/wsdl/Wsdl2javaTestSuite.xml Index: Wsdl2javaTestSuite.xml ==

RE: [PATCH] Support for xsd:choice

2002-02-15 Thread David Altenburg
Title: RE: [PATCH] Support for xsd:choice I'm curious as to why this patch has not been commented upon.  The functionality it provides is not only useful to my organization, but it takes AXIS a step (albeit small) closer to supporting all of XML Schema.  If there is a specific reason as to why

cvs commit: xml-axis/java/test/md5attach MD5AttachTest.java

2002-02-15 Thread gdaniels
gdaniels02/02/15 13:25:27 Modified:java/test/md5attach MD5AttachTest.java Removed: java/src/org/apache/axis/client ServiceClient.java Log: Bye-bye, ServiceClient... Revision ChangesPath 1.3 +104 -105 xml-axis/java/test/md5attach/MD5AttachTest.java Index

cvs commit: xml-axis/java build.xml

2002-02-15 Thread tomj
tomj02/02/15 14:02:19 Modified:java build.xml Log: Turn debug off by default. Revision ChangesPath 1.108 +1 -1 xml-axis/java/build.xml Index: build.xml === RCS file: /home/cvs/xml-a

RE: [PATCH] Support for xsd:choice

2002-02-15 Thread R J Scheuerle Jr
I'll look at it right now and comment shortly. Thanks Rich Scheuerle XML & Web Services Development 512-838-5115 (IBM TL 678-5115) David

RE: [PATCH] Support for xsd:choice

2002-02-15 Thread R J Scheuerle Jr
So it appears that you are want to add support for having choice and group elements within the sequence. In addition it appears that the group element must be a definition of the group (rather than a ref to an existing group). In all of these cases the code is merely diving deeper to find nested e

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

2002-02-15 Thread scheu
scheu 02/02/15 15:02:19 Modified:java/src/org/apache/axis/wsdl/toJava SchemaUtils.java Log: Changes per axis-dev request from David Altenburg. The WSDL2Java emitter now parses choice and group elements underneath complexType elements. Need a testcase... Revision