Overriding method signatures

2004-02-02 Thread Josh Rehman
help! -- Thanks, Josh Rehman www.citysearch.com

Re: how to deal with optional fields in parameter bean

2003-09-24 Thread Josh Rehman
axisnewbie wrote: ... My question is if there is another way or if there is a standard way dealing with optional fields in parameter when Nil, NULL, zero is a valid value. I am interested in this problem as well.

Re: New to Axis on XP

2003-09-24 Thread Josh Rehman
Yves Gerber wrote: I have Windows XP Professional installed. And I've downloaded and installed Apache Tomcat 4.1.27 and Apache Axis 1.1 (I'm not going to be using .Net or anything like that). Can someone tell me step-by-step exactly what I should do to set this machine up to run SOAP? I've trie

Re: java.io.IOException: Type XXXX is referenced but not defined.

2003-09-19 Thread Josh Rehman
Zhang, Leslie Zhang (ICT Centre, ANU - Acton) wrote: I have encountered this kind of problems before. Have a look at the namespaces in your wsdl and make sure that there are correct. Make sure types are fully qualified. Thanks for the tip, Leslie. Turned out the problem was that the wsdl was, in

java2wsdl question on the use of interfaces

2003-09-19 Thread Josh Rehman
Hi, I have a service interface that itself uses interfaces. It looks like this: { User getUser(); User[] findUserByName(String name); ... } User is an interface implemented in two different concrete ways in my project (this is a requirement). java2wsdl warns out with: [java] 0 [main

Re: java.io.IOException: Type XXXX is referenced but not defined.

2003-09-18 Thread Josh Rehman
? Why does it require an interface composed of concrete java beans? Josh Rehman wrote: Has anyone ever recieved this error on wsdl2java? [java] java.io.IOException: Type UserView is referenced but not defined. [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.checkFo

java.io.IOException: Type XXXX is referenced but not defined.

2003-09-18 Thread Josh Rehman
Has anyone ever recieved this error on wsdl2java? [java] java.io.IOException: Type UserView is referenced but not defined. [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.checkForUndefined(SymbolTable.java:522) [java] at org.apache.axis.wsdl.symbolTable.SymbolTable

wsdl2java - shortcomings?

2003-09-18 Thread Josh Rehman
Hi, Still new to all this, so I'm not sure if this observation is accurate. It seems to be that wsdl2java could vastly improved if all of it's concrete classes were generated with delegate code pointing to some user specified implimentation. As it stands, I am forced to generate code, copy it

How to serialize Color?

2003-09-18 Thread Josh Rehman
If I try to use a "Color" member of a bean, things generate fine (albeit with a warning: generate-wsdl: [java] 1 [main] WARN fromJava.Types - The class java.awt.Color is defined in a java or javax package and cannot be converted into an xml schema type. An xml schema anyType will be used