RE: ideas on debugging a blank ?wsdl page?

2002-03-15 Thread Chris Haddad
Chris - Does the jws file have a java package name defined? I was experiencing a blank wsdl page when the jws contained a package name, but was placed in the /axis directory. It should be placed in /axis// Hope this helps, /Chris -Original Message- From: Chris Wilkins [mailto:[EMA

RE: ideas on debugging a blank ?wsdl page?

2002-03-15 Thread Dave Dunkin
Title: RE: ideas on debugging a blank ?wsdl page? Chris, You may be missing a class from your classpath. Try beta1 -- it will give an appropriate error message if this is the case. Dave -Original Message- From: Chris Wilkins [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002

ideas on debugging a blank ?wsdl page?

2002-03-15 Thread Chris Wilkins
Hi all. Any ideas for debugging the following problem? I am getting a blank wsdl page generated for a jws page (using the ?wsdl parameter in the URL) that calls on a fair amount of complex libraries. I have a trivial jws page that I successfully get a wsdl generated for. I can't find a log that i

RE: Beta 1 is now available!

2002-03-15 Thread ajack
Not just AXIS, more interrop of this w/ other user code, but I was looking at the "changes since alpha-3" page see AXIS has moved to commons logging (at least the source shows this, the doc says "common.logging" not "commons.logging") . so, away from log4j. So should all users of apache stuff

Question about Axis servers and Servlet containers

2002-03-15 Thread Bryan Field-Elliot
Hi, I'm new to Axis, but am eager to get eye-deep in it. ;) I'm building some SOAP interfaces to a larger web-based application, which already has a large Servlet/JSP component (based upon Struts). I'd like for my SOAP services (in Axis) to be able to interact with the Servlet context in variou

Re: overloaded methods

2002-03-15 Thread Doug Davis
Rich - the DII interface has trouble with overloaded methods as well. -Dug R J Scheuerle Jr/Austin/IBM@IBMUS on 03/15/2002 05:00:40 PM Please respond to [EMAIL PROTECTED] To:[EMAIL PROTECTED] cc: Subject:Re: overloaded methods Java2WSDL currently generates mangled operation names wh

Re: overloaded methods

2002-03-15 Thread R J Scheuerle Jr
Java2WSDL currently generates mangled operation names when it encounters overloaded java names. I don't think your problem is entirely limited to the name attribute on the input/output parts. Russell and I will revisit the overloading question...including roundtripping...after the beta release.

Re: overloaded methods

2002-03-15 Thread robert woodley
Thanks for your suggestion. I studied the test cases, and it seems to me that there is a bug or something in Java2wsdl. (Though since I'm new to this, the error is quite possibly mine.) Basically you can't do a round-trip with overloaded methods from java->wsdl->java. I examined the WSDL generat

Re: Beta 1 is now available!

2002-03-15 Thread Tom Myers
At 02:09 PM 3/15/2002 -0600, Russell Butek wrote: >http://xml.apache.org/axis/dist/beta1 > >Russell Butek >[EMAIL PROTECTED] (Congratulations!) and I just wanted to congratulate you on your timing, as it applies to me personally. You see, your message was sent just four minutes after the APress t

BETA 1 Examples Deployment fails.

2002-03-15 Thread Parimi Srinivas
Hi all, I just installed BETA1. When I tried to deploy Stock quote example, ends up in NullPointerException. I use Tomcat 4.0.3. Tomcat CLASSPATH contains D:\tomcat\bin>startup Using CATALINA_BASE: D:\tomcat Using CATALINA_HOME: D:\tomcat Using CATALINA_TMPDIR: D:\tomcat\temp Using JAVA_HOM

Beta 1 is now available!

2002-03-15 Thread Russell Butek
http://xml.apache.org/axis/dist/beta1 Russell Butek [EMAIL PROTECTED]

namespace question for wsdl generation in JavaProvider (beta1 rc2)

2002-03-15 Thread Stephen Belknap
this question applies to beta1 rc2 when i try to generate the WSDL from the ?wsdl query, the namespaces that get generated for the targetNamespace, intf, and impl all includes a complete URL that includes the location of the machine that hte axis servlet is running on. also, all namespace="" val

Re: wsdl2java works with all XMLSchema?

2002-03-15 Thread R J Scheuerle Jr
1) WSDL2Java does not support most facets. There is no support for minInclusive. 2) We don't support this version of the "id" attribute. What do you think it should do ? 3) To construct your own myPositiveInteger, create a complexType that extends an xsd:int. Rich Scheuerle XML & Web Services D

Re: wsdl2java works with all XMLSchema?

2002-03-15 Thread Michael Tang
thanks.   But even if I use:                    to define my own positive integer, the tool would not create the MyPostiveInteger class even though the created code does refer to the class. Maybe this is a known bug?   -Michael       - Original Message - From: R J Scheue

Re: wsdl2java works with all XMLSchema?

2002-03-15 Thread R J Scheuerle Jr
Axis does not support all of the XMLSchema primitives. It supports the ones explicitly listed in JSR 101. You should change your schema to use xsd:int. Rich Scheuerle XML & Web Services Development 512-838-5115 (IBM TL 678-5115)

wsdl2java works with all XMLSchema?

2002-03-15 Thread Michael Tang
I run into problem with wsdl2java when I used positiveInteger from the http://www.w3.org/2000/10/XMLSchema in my wsdl file. What is the compatibility of this tool with different XMLSchema?   thanks,   -michaelGet more from the Web. FREE MSN Explorer download : http://explorer.msn.com

Re: overloaded methods

2002-03-15 Thread Russell Butek
Overloaded methods work. See the test xml-axis/java/test/wsdl/clash/. We haven't done any major stress testing on overloaded methods, so it wouldn't surprise me if there are still holes, but the concept is there and it seems to work OK. Russell Butek [EMAIL PROTECTED] robert woodley <[EMAIL P

RE: What should WSDL2Java generate on inheritance?

2002-03-15 Thread robert woodley
Regarding: "I am trying to find a reason why someone would define types while not referring to them. The only one I see is for method overloading." Here is another reason: using Collection classes that lose the type information of the items they contain. That type information needs to be handed

overloaded methods

2002-03-15 Thread robert woodley
This pertains to stub generation. I've seen earlier posts here that indicate that there was a bug with over-loaded methods. That is, the stub generator will generate identical signatures, rather than the different, overloaded signatures. Is there a resolution in sight? Any clever workarounds oth

RE: Array complexType

2002-03-15 Thread R J Scheuerle Jr
The Axis runtime is not "wsdl-aware"; so when Option[] is serialized, it does not know anything about the wsdl/xml. Since nothing it emitted for Option[], there is no meta data that can be easily added to make this happen. The arbitrary naming is accepted by non-axis servers. Rich Scheuerle XML

RE: Array complexType

2002-03-15 Thread Simon McClenahan
I've specified the name of the element as in the schema, so either WSDL2Java doesn't generate the stub code with that information, or the Axis runtime is ignoring it. We have been developing our own customized lightweight SOAP server, so I am concerned about interoperability with SOAP clients su

RE: axis response is empty

2002-03-15 Thread Liang, Chihong
this works! thanks a whole lot. -Original Message- From: Peter Allday [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 6:11 AM To: [EMAIL PROTECTED] Subject: Re: axis response is empty I had the same problem. In my case the server was having a problem serializing the object that

RE: Array complexType

2002-03-15 Thread R J Scheuerle Jr
Simon, Your schema is correct. WSDL2Java will correctly interpret the type as an Option[]. However, when the Axis runtime serializes the Option[], it does not know the name of the array component element (in your case "option").The axis runtime always uses the name "item" when serializing t

RE: Array complexType

2002-03-15 Thread Simon McClenahan
The point is, I think I have a correct schema fragment, even after reading the SOAP spec. This is why I think it is a bug with WSDL2Java. I have posted before http://marc.theaimsgroup.com/?l=axis-user&m=101465679419996&w=2 about a NPE with WSDL2Java. After debugging I got around the error by chang

RE: Wsdl2java exception

2002-03-15 Thread Yoann Brenet
It's working with the last version. Thanx a lot. Bye Yoann -Message d'origine- De : Peter Allday [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 15 mars 2002 15:58 À : [EMAIL PROTECTED] Objet : Re: Wsdl2java exception Yep, worked fine for me too. Peter - Original Message - F

Re: Wsdl2java exception

2002-03-15 Thread Peter Allday
Yep, worked fine for me too. Peter - Original Message - From: "Glen Daniels" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 15, 2002 2:44 PM Subject: RE: Wsdl2java exception > > Are you running with the latest source? I just tried this file and it worked fine for me.

Axis & Helloworld

2002-03-15 Thread Manuel Reyes
I am looking for a basic HelloWorld sample application that uses Axis, is anybody aware of any tutorials? I have tried the documentation at : http://www.javaworld.com/javaworld/jw-01-2002/jw-0125_p.html but this fails (FYI compiler cant find ServiceClient) Regards Manuel Reyes ext : 4547 System

RE: Wsdl2java exception

2002-03-15 Thread Glen Daniels
Are you running with the latest source? I just tried this file and it worked fine for me. --G > -Original Message- > From: Yoann Brenet [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 15, 2002 9:37 AM > To: [EMAIL PROTECTED] > Subject: RE: Wsdl2java exception > > > > > Here it is

RE: Wsdl2java exception

2002-03-15 Thread Yoann Brenet
Here it is : http://aulx01:8180/axis/services/PositioningService"; xmlns="http://schemas.xmlsoap.org/wsdl/"; xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"; xmlns:impl="http://aulx01:8180/axis/services/PositioningService-impl"; xmlns:intf="http://aulx01:8180/axis/services/Position

Re: Wsdl2java exception

2002-03-15 Thread Peter Allday
Can you post your wsdl file? Peter - Original Message - From: "Yoann Brenet" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 15, 2002 2:20 PM Subject: Wsdl2java exception > Hello all ! > > I'm trying to use the Wsdl2java class on a wsdl file, but there is a > java.lang.N

Wsdl2java exception

2002-03-15 Thread Yoann Brenet
Hello all ! I'm trying to use the Wsdl2java class on a wsdl file, but there is a java.lang.NullPointerException throwed in the getComplexElementTypesAndNames method of the SchemaUtils class. I checked the code and here are the code lines : NodeList children = node.getChildNodes(); Node complexC

RE: Array complexType

2002-03-15 Thread St-Germain, Sylvain
Have a look at www.w3.org/TR/soap section 5.4.2 Arrays Sylvain. -Original Message- From: Simon McClenahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 5:20 PM To: Axis User (E-mail) Subject: Array complexType In my WSDL embedded Schema I have: ...

RE: Possible bug in Alpha1 RC2: Document style service with two metho ds

2002-03-15 Thread Ramon Turnes
Finally I figured it out, I just put: and it worked. Regards. > -Original Message- > From: Ramon Turnes [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 14, 2002 4:42 PM > To: '[EMAIL PROTECTED]' > Cc: '[EMAIL PROTECTED]' > Subject: Possible bug in Alpha1 RC2: Document style servi

RE: Service.createCall() internal error exception

2002-03-15 Thread Neil Smyth
I found the problem, sorry for the post. I was missing the client-config.wsdd file. -Original Message- From: Neil Smyth [mailto:[EMAIL PROTECTED]] Sent: 15 March 2002 09:44 To: '[EMAIL PROTECTED]' Subject: Service.createCall() internal error exception Apologies if I am missing something

Re: Getting started Part 2

2002-03-15 Thread Peter Allday
A few questions.. When you deployed it did it say that it had deployed successfully? Where is your classes/example/axis dir? Peter - Original Message - From: "Eddie Post" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 14, 2002 9:20 PM Subject: Re: Getting started Part

Re: axis response is empty

2002-03-15 Thread Peter Allday
I had the same problem. In my case the server was having a problem serializing the object that represented the complex type. The solution was to add a beanMapping to the deployment descriptor (wsdd) file. e.g. (taken from axis user guide) Hope this helps Peter - Original Message - F

Re: Basic Design Issue..

2002-03-15 Thread Peter Allday
Hi, I'm fairly new to this stuff as well, so this is just a guess, but according to the WSDL doc http://www.w3.org/TR/wsdl#_porttypes it supports a Notification operation from the server, which is what you are looking for. However, the WSDL docs says: "Although the base WSDL structure support

RE: UDDI4j and Axis 3/13 build

2002-03-15 Thread Chris Haddad
Thanks David. it was a false alarm. I was running a script file that did not use my environment classpath, but had a hard-coded -cp value. The script needed to be updated to reflect the jar changes in Axis. /Chris -Original Message- From: David Melgar [mailto:[EMAIL PROTECTED]] Sen

Re: UDDI4j and Axis 3/13 build

2002-03-15 Thread David Melgar
The first Axis class that UDDI4J uses is javax.xml.rpc.Service. It looks like you do not have Axis in the classpath. David Melgar Web Services Toolkit Development Emerging Technologies [EMAIL PROTECTED] "Chris Haddad" <[EMAIL PROTECTED]> on 03/15/2002 02:00:17 PM Please respond to [EMAIL PROT

Service.createCall() internal error exception

2002-03-15 Thread Neil Smyth
Apologies if I am missing something basic, but in trying to execute some of the samples in the the latest code from cvs I am getting an InternalErrorException. The problem code is simply: service = new Service(); which causes a null pointer as the service does not have a configuration set. I ca