cvs commit: xml-axis/java/test/wsdl/interop3 emptysa.xml

2002-02-21 Thread gdaniels
gdaniels02/02/21 21:38:50 Added: java axis.properties java/test/wsdl/interop3 emptysa.xml Log: Add individual ant build file for the emptysa round 3 test, and a property file at the top level to hold all the common properties. This is a quick stab at a way

Re: FW: WSDD for a Stateful EJB

2002-02-21 Thread Russell Butek
SOAP 2.2 didn't support WSDL. AXIS does. How do you represent statefulness in WSDL? Russell Butek [EMAIL PROTECTED] "Ackley, Paul" <[EMAIL PROTECTED]> on 02/20/2002 12:51:22 PM Please respond to [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> cc: Subject: FW: WSDD for a S

Re: complexType extending a simpleType

2002-02-21 Thread Richard Sitze
It's generally a bad idea to "extend" for the sake of extending... >From a purist point of view, if InternationalPrice IS-A String, then OK. My vote: InternationalPrice IS-NOT-A String (or not necessarily), so don't extend. *** Richard A. Sitze

Re: complexType extending a simpleType

2002-02-21 Thread Melissa Turner
On Thursday, February 21, 2002, at 01:43 , R J Scheuerle Jr wrote: > Talked to Glen and Tom on the chat, and they think that > InternationalPrice > should extend String. > > Comments ? > String is final, as are the primitive type wrapper classes. +Melissa > Rich Scheuerle > XML & Web Service

AW: Heads-up / opinions? - BCEL -> tt-bytecode

2002-02-21 Thread Thomas Börkel
Nobody any comments on this?? -Ursprüngliche Nachricht- Von: Thomas Börkel Gesendet: Mi 20.02.2002 16:13 An: [EMAIL PROTECTED] Cc: Betreff: RE: Heads-up / opinions? - BCEL -> tt-bytecode HI!

cvs commit: xml-axis/java/src/org/apache/axis/client Call.java

2002-02-21 Thread tomj
tomj02/02/21 14:16:17 Modified:java/src/org/apache/axis/client Call.java Log: Set the RPCElement encoding style from the call encoding style. There is some question if we want to set the SOAPEnvelope encoding style also. Hopefully Glen can take a look at this and make

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

2002-02-21 Thread Taras Shkvarchuk
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. SOAPHeader has its value handled by MessageElement now. * org.apache.

Re: complexType extending a simpleType

2002-02-21 Thread Simon Fell
That'll work [not something i can do in COM though]. One thing to think about, is that it looks like you're mixing types and serialization info. This is one of my biggest gripes about ASP.NET webservices where there's a 1..1 relationship between types and their serialization representation. This a

Re: Methods Returning ArrayList converted to Object[] in WSDLToJava

2002-02-21 Thread R J Scheuerle Jr
How do you think Java2WSDL should interpret a return type of ArrayList ? ( If you could provide an alternate xml representation other than type ="SOAP-ENC:Array" I could change Java2WSDL/WSDL2Java to honor it. I don't know anything about ...maybe this is the answer ? Rich Scheuerle XML & Web S

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

2002-02-21 Thread R J Scheuerle Jr
Taras, Could you resend this patch to me. Thanks Rich Scheuerle XML & Web Services Development 512-838-5115 (IBM TL 678-5115) Taras Shkvarchuk

Re: complexType extending a simpleType

2002-02-21 Thread R J Scheuerle Jr
Talked to Glen and Tom on the chat, and they think that InternationalPrice should extend String. Example: class InternationalPrice extends String implements { String getCurrency() } That way it can be treated like a String as necessary, and also has attributes. The interfa

RE: complexType extending a simpleType

2002-02-21 Thread Glen Daniels
Tom and I discussed this yesterday, and I like this approach a little better: Have the custom type directly extend the simple type which is being extended. So in the example below, you'd have: public class InternationalPrice extends String implements TypeWithAttributes { public static Str

Methods Returning ArrayList converted to Object[] in WSDLToJava

2002-02-21 Thread David L. Cole
I am trying to use the WSDLTOJava to generate the client stubs and found that If I have a method in my class which has a return type of ArrayList (i.e public ArrayList foo() ), The generated WSDL will show the return type as: After running WSDLTOJava , the generated stub will then have a return

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

2002-02-21 Thread Taras Shkvarchuk
Ok sure. I will look into some pooling. What about the regular [PATCH] I submitted on serialization of MessageElement's children, setting/getting its type. RE: [PATCH] message.MessageElement get/setValue() and child serialization. (the reply has updated diff) [PATCH] encoding.SerializationContext

Re: complexType extending a simpleType

2002-02-21 Thread Simon Fell
FWIW, I ran into this doing the Group D doc/literal interop tests for pocketSOAP, and took exactly the same approach. Cheers Simon On Thu, 21 Feb 2002 15:12:03 -0600, in soap you wrote: >According to XML Schema Primer 0 Chapter 2.5.1, a complexType can be >derived from a simple type to add attr

complexType extending a simpleType

2002-02-21 Thread R J Scheuerle Jr
According to XML Schema Primer 0 Chapter 2.5.1, a complexType can be derived from a simple type to add attribute information. Lets say you had the following schema: The above could be sent over the wire as: Widget

RE: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser BeanSerializer.java

2002-02-21 Thread R J Scheuerle Jr
I agree that you need a separate list to pass the attribute names/types. I was simply pointing out a potential problem. Perhaps the solution is to change the getNestedTypes method to invoke both methods.. The only simpleTypes currently supported are enumeration types. Your example is a derivat

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

2002-02-21 Thread dims
dims02/02/21 12:50:27 Modified:java/src/org/apache/axis/transport/http AxisServlet.java Log: Patch from "David L. Cole" <[EMAIL PROTECTED]>" for exceptions in Weblogic. Revision ChangesPath 1.83 +3 -1 xml-axis/java/src/org/apache/axis/transport/http/AxisSe

AxisServlet flushBuffer()

2002-02-21 Thread David L. Cole
Line 588 of org.apache.axis.transport.http.AxisServlet (res.flushBuffer()) is causing an exception to be thrown for each SOAP request when using Weblogic. It would be a great help if you could change From: res.flushBuffer(); //Force it right now To: if(!res.isCommitted())

RE: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser BeanSerializer.java

2002-02-21 Thread Tom Jordahl
Rich, I think I do want to call the new attribute function, but I need to pass in a separate list of attribute names/types to the JavaWriter so I can distinguish them. Some of the symbolTable type stuff is a bit confusing, so I would welcome your help in this area. By the way, the interop test

cvs commit: xml-axis/java/src/org/apache/axis/utils resources.properties

2002-02-21 Thread tomj
tomj02/02/21 12:02:20 Modified:java/src/org/apache/axis/wsdl/toJava SymbolTable.java java/src/org/apache/axis/utils resources.properties Log: Fix problems in the WSDL2Java symbol table routine that creates a type element for the attribute. Reject non-simple typ

Re: cvs commit: xml-axis/java/src/org/apache/axis/encoding/serBeanSerializer.java

2002-02-21 Thread R J Scheuerle Jr
Tom, I would have expected that your new getComplexElementAttributes should have been called within getComplexElementTypesAndNames. The getComplexElementTypesAndNames was intended to return the names and types of all of the contained fieldsand attributes is now considered to be one of those

cvs commit: xml-axis/java/src/org/apache/axis/encoding DeserializerImpl.java SerializationContextImpl.java

2002-02-21 Thread scheu
scheu 02/02/21 11:35:37 Modified:java/src/org/apache/axis/encoding DeserializerImpl.java SerializationContextImpl.java Log: free value targets after processing them Revision ChangesPath 1.3 +3 -0 xml-axis/java/src/org/apache/axis/enco

RE: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser BeanSerializer.java

2002-02-21 Thread Glen Daniels
Thanks, Tom! :) --G > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 21, 2002 2:25 PM > To: [EMAIL PROTECTED] > Subject: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser > BeanSerializer.java > > > tomj02/02/21 11:2

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

2002-02-21 Thread R J Scheuerle Jr
Rich Scheuerle XML & Web Services Development 512-838-5115 (IBM TL 678-5115) - Forwarded by R J Scheuerle Jr/Austin/IBM on 02/21/2002 01:26 PM -

cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser BeanSerializer.java

2002-02-21 Thread tomj
tomj02/02/21 11:25:07 Modified:java/src/org/apache/axis/wsdl/toJava JavaComplexTypeWriter.java java/src/org/apache/axis/encoding/ser BeanSerializer.java Log: Change the return value of getAttributeElements() for bean types from a Vector t

CFP for Internet Computing on web services

2002-02-21 Thread Nelson Minar
Doug Lea sent this CFP to the dist-obj list, I thought maybe some of the Axis developers would want to write an article. Internet Computing is good and the editors are great. Middleware for Web Services Special Issue of Internet Computing, January 2003 Submission deadline, 1 June 2002 G

cvs commit: xml-axis/java/test/wsdl/interop3/groupE/client InteropTestListServiceTestCase.java

2002-02-21 Thread butek
butek 02/02/21 11:11:27 Modified:java/test/wsdl/interop3/groupE/client InteropTestListServiceTestCase.java Log: List is a bean. It is translated to WSDL as: Note the tag (NOT ). means there's no o

RE: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser Be anSerializer.java

2002-02-21 Thread Tom Jordahl
Nag, nag, nag :-) I'll see what I can do. -- Tom Jordahl -Original Message- From: Glen Daniels [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 2:04 PM To: '[EMAIL PROTECTED]' Subject: RE: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser Be anSerializer.java

RE: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser BeanSerializer.java

2002-02-21 Thread Glen Daniels
This is way cool! Personally, I'd prefer an array rather than a Vector, so someone writing a bean from scratch could just do: public String [] attrs = new String [] { "attribute" }; public String [] getAttributeElements() { return attrs; } Easier to write than vec.add(), vec.add(),

cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser BeanSerializer.java

2002-02-21 Thread tomj
tomj02/02/21 10:51:24 Modified:java/test/wsdl Wsdl2javaTestSuite.xml java/src/org/apache/axis/wsdl/fromJava Types.java java/src/org/apache/axis/wsdl/toJava SymbolTable.java SchemaUtils.java JavaTypeWriter.java

build failure with fresh cvs checkout...

2002-02-21 Thread Ray Santiago
E:\projects\xml-axis\xml-axis\java>build.bat '#echo' is not recognized as an internal or external command, operable program or batch file. Buildfile: build.xml setenv: [mkdir] Created dir: E:\projects\xml-axis\xml-axis\java\build\classes [mkdir] Created dir: E:\projects\xml-axis\xml-axi

RE: [AXIS - PATCH] More logging changes

2002-02-21 Thread Richard Sitze
Updated documents on the way... *** Richard A. Sitze[EMAIL PROTECTED] CORBA Interoperability & WebServices IBM WebSphere Development

RE: Dynamic Deployment of classes from a .jar

2002-02-21 Thread Sedukhin, Igor
William, You just derive your class loader from URLClassLoader and then substiture it when making calls to Axis engine and also derive your servlet do do the same for doPost/doGet relying the requests to AxisServlet. It works. It is probably not a business of Axis to provide custom classloader

Re: Request for a new Apache IDs

2002-02-21 Thread Brian Behlendorf
Accounts created, passwords sent. Brian On Thu, 21 Feb 2002, Sam Ruby wrote: > Please create the following new Apache IDs: > >id: stevenn >name: Steven Noels >send password to: [EMAIL PROTECTED] >group: apcvs, xml > >id: rsitze >name: Richard Sitze >send pas

Dynamic Deployment of classes from a .jar

2002-02-21 Thread William Lee
Dear All, I would like to know whether AXIS has any plan of providing dynamic deployment of service classes in a jar loaded from a remote URL, because at the moment all service classes need to be in the WEB-INF/classes or packaged as a jar in the WEB-INF/lib. It would be ideal if WSDD would inc

Request for a new Apache IDs

2002-02-21 Thread Sam Ruby
Please create the following new Apache IDs: id: stevenn name: Steven Noels send password to: [EMAIL PROTECTED] group: apcvs, xml id: rsitze name: Richard Sitze send password to: [EMAIL PROTECTED] group: apcvs, xml Thanks! - Sam Ruby

cvs commit: xml-axis/java/samples/echo TestClient.java

2002-02-21 Thread glyn
glyn02/02/21 06:58:41 Modified:java/samples/echo TestClient.java Log: Add missing half of map comparison logic. Revision ChangesPath 1.55 +10 -0 xml-axis/java/samples/echo/TestClient.java Index: TestClient.java

RE: [AXIS - PATCH] More logging changes

2002-02-21 Thread Tom Jordahl
+1 to adding the System.out.println test to another target. -- Tom Jordahl -Original Message- From: Russell Butek [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 8:16 AM To: [EMAIL PROTECTED] Subject: RE: [AXIS - PATCH] More logging changes This is why I said Richard ALM

cvs commit: xml-axis/java/src/org/apache/axis/deployment/wsdd WSDDTypeMapping.java

2002-02-21 Thread butek
butek 02/02/21 06:33:58 Modified:java/src/org/apache/axis/deployment/wsdd WSDDTypeMapping.java Log: Fix a bug and be consistent. Use the class loader everywhere Class.forName is used. Contributed by Greg Truty. Revision ChangesPath 1.24

Re: Problem using latest buld...

2002-02-21 Thread Glyn Normington
There's an archive at http://marc.theaimsgroup.com/?l=axis-dev&r=1&w=2. I've updated the Axis web site information about mailing lists to make it easy to search that archive. The update should appear by tomorrow. Glyn

RE: [AXIS - PATCH] More logging changes

2002-02-21 Thread Glyn Normington
I'd prefer to use logging rather than System.out as it's useful by other people, but I think we need some clear how-to information in the developer's guide on setting trace levels for individual components to avoid the problems Russell pointed out. Also, a recommendation for how to switch on debu

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

2002-02-21 Thread Glyn Normington
>Is it really faster? In the case where no contention is encountered, the simpler approach avoids an extra object construction, so the answer is "sometimes" ;-). >I didn't want to synchronize on the stub object >itself in case we decide in the future that we have to synchronize other >stub meth

Problem using latest buld...

2002-02-21 Thread Per Salmi
I have a project where I have been using Axis built on 2002-01-20 for some time now and today I tried to update the Axis build to 2002-02-20. As the Axis project has evolved during the last month major changes to the logging stuff has been made...   As I use log4j in my custom service code is

RE: [AXIS - PATCH] More logging changes

2002-02-21 Thread Russell Butek
This is why I said Richard ALMOST convinced me. Sure, log.debug is shorter to type than System.out.println. But in order to use it I have to turn debugging on, and grep for my stuff in a potentially huge pile of output. And then when I'm done I have to remember to turn debugging back off so I do

RE: +1 Make Richard Sitze A Committer

2002-02-21 Thread Davanum Srinivas
+1 -- dims --- Tom Jordahl <[EMAIL PROTECTED]> wrote: > > +1 > -- > Tom Jordahl > > > -Original Message- > From: R J Scheuerle Jr [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 20, 2002 2:52 PM > To: [EMAIL PROTECTED] > Subject: +1 Make Richard Sitze A Committer > > > +1 to

Re: +1 Make Richard Sitze A Committer

2002-02-21 Thread Russell Butek
I see he's already received 3 votes, but here's my +1 anyway. Russell Butek [EMAIL PROTECTED] R J Scheuerle Jr/Austin/IBM@IBMUS on 02/20/2002 01:51:57 PM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: +1 Make Richard Sitze A Committer +1 to making Richard Sitze a

java.security.AccessControlException/javax.xml.rpc.JAXRPCException in Applet

2002-02-21 Thread Kumar, Vinay 2
hello, how can i establish connection to the Web Service[Tomcat/Axis] from Java Applet because when i'm trying to do so, i'm getting : java.security.AccessControlException: access denied (java.util.PropertyPermission java.protocol.handler.pkgs read) i've tried to modify & apply "catalina.policy

Re: +1 Make Richard Sitze A Committer

2002-02-21 Thread Glyn Normington
+1 Glyn

Re: [AXIS - PATCH] More logging changes

2002-02-21 Thread Glyn Normington
+1 only if the following is made legible. It should at least be split across 80 character lines and should preferably be formatted so it is easier to understand, e.g. by separating the various filenames. new FileNameContentPattern(". +([/])java\\1src\\1org\\1apache\\1axis\\1 (?!A

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

2002-02-21 Thread Glyn Normington
Russell, Thanks for fixing that. But why didn't you simply declare firstCall as synchronized, thus: protected synchronized boolean firstCall() { boolean ret = firstCall; firstCall = false; return ret; } which would have the effect of serialising the use of firstCall relative to the