RE: AXIS App. Design/Architecture

2003-01-24 Thread Daleiden, Mike
Singleton will work as well. You would only have one instance of the singleton class PER JVM, not per thread. The biggest issue with a singleton is making sure that its methods are thread-safe. The best way to do this is to write very small, atomic methods and protect critical sections of a meth

RE: server-config.wsdd

2003-01-23 Thread Daleiden, Mike
It's not absolutely required that you copy it, but if you need to make any modifications to the settings (e.g., enabling remote admin, turning on/off multi-refs, etc.), you should copy it to your WEB-INF directory. That way, it will override the server-config.wsdd that is in the Axis jars. -Or

RE: axis and soap:binding style=document

2003-01-22 Thread Daleiden, Mike
Also, you will need to make sure your type mappings specify encodingStyle="": -Original Message----- From: Daleiden, Mike [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 10:34 AM To: [EMAIL PROTECTED] Subject: RE: axis and soap:binding style=document In t

RE: axis and soap:binding style=document

2003-01-22 Thread Daleiden, Mike
In the tag of your deploy.wsdd, set style="document" and use="literal": . . . -Original Message- From: Lars Girndt [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 10:23 AM To: [EMAIL PROTECTED] Subject: axis and soap:binding style=document Hello, Is there any

RE: WSDL2Java unable to find type

2003-01-21 Thread Daleiden, Mike
Wes - You need to prefix the reference to wontFind: Without the namespace prefix, WSDL2Java will assume that the type is defined in the default namespace (xmlns="http://schemas.xmlsoap.org/wsdl/";). --Mike -Original Message- From: Wes Devauld [mailto:[EMAIL PROTECTED]] Sent:

RE: newbie question - installation problems

2003-01-16 Thread Daleiden, Mike
Your missing the commons-discovery.jar file, which is causing the error. This should be placed in the same directory as your other Axis libs. -Original Message- From: NJ Rogers [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 1:03 PM To: [EMAIL PROTECTED] Subject: newbie questi

RE: Axis client, OutOfMemoryException

2003-01-13 Thread Daleiden, Mike
You're probably overrunning your stack, not heap. Try increasing stack size on the client VM. When arguments are passed in a method call, they are placed on the stack, not the heap. -Original Message- From: Brian W. Young [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 4:15 PM

RE: AdminClient

2002-12-19 Thread Daleiden, Mike
Cory - I've implemented code similar to this to deploy/register my service: String opts[] = new String[1]; opts[0] = "-l"; <== e.g., http://localhost:8080/myapp/services/AdminService try { serviceOptions = new Options(opts); } catch (Exception e) { serviceOptions

RE: TypeMapping for multiple wsdds

2002-12-11 Thread Daleiden, Mike
ke, I had tried this is v1.0 of Axis, was it just a bug in this release that it didn't work ? What release is it fixed in ? Thanks, Brian -Original Message- From: Daleiden, Mike [mailto:[EMAIL PROTECTED]] Sent: 11 December 2002 16:25 To: [EMAIL PROTECTED] Subject: RE: TypeMapping for

RE: TypeMapping for multiple wsdds

2002-12-11 Thread Daleiden, Mike
Use a comma-separated list of method names. -Original Message- From: Brian Dillon (ext. 944) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 11:28 AM To: '[EMAIL PROTECTED]' Subject: TypeMapping for multiple wsdds Hi, Two quick questions. Firstly Is it possible to have t

RE: why have to copy .class files of existing webapp into Axisweb-inf folder??

2002-11-27 Thread Daleiden, Mike
You can also create a directory on your Tomcat server that holds the webapp component classes containing the methods you want to call, then modify your classpath for both webapps to point to the "shared" components directory. This approach is similar to what is used in J2EE for EJBs -- the EJB cla

RE: Problem Mapping Custom Serializer and Deserializer in WSDD

2002-11-26 Thread Daleiden, Mike
yTestCallOid") );//Inoke the operationcom.fineos.ta.bo.Oid retOid = (com.fineos.ta.bo.Oid) cll.invoke(new Object[] {boOid}); Thanks, Brian -Original Message-From: Daleiden, Mike [mailto:[EMAIL PROTECTED]]Sent: 26 November 2002 14:47To: [EMAIL PROTECTED]Subject: RE: Problem Mapping Cu

RE: Problem Mapping Custom Serializer and Deserializer in WSDD

2002-11-26 Thread Daleiden, Mike
Title: Message Oops...looking at this again, I think it should be     ta="http://www.fineos.com/XMLSchema/ta" -Original Message-From: Daleiden, Mike [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 9:43 AMTo: [EMAIL PROTECTED]Subject: RE: Probl

RE: Problem Mapping Custom Serializer and Deserializer in WSDD

2002-11-26 Thread Daleiden, Mike
Title: Message Brian -   I think the problem is a typo in your WSDD:     http://wsdlService" should be     http://wsdlService" Try that and see if it fixes the problem.   --Mike -Original Message-From: Brian Dillon (ext. 944) [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: Generated WSDL <> original WSDL

2002-11-18 Thread Daleiden, Mike
Is the filename specified as an absolute path? Or is it relative to the web app? Please provide an example. -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 2:11 PM To: [EMAIL PROTECTED] Subject: Re: Generated WSDL <> original WSDL --

RE: java2WSDL/WSDL2Java problems

2002-11-15 Thread Daleiden, Mike
Actually, it appears that you did not specify the correct package for Wsdl2Java: java org.apache.axis.wsdl.WSDL2Java -Original Message- From: James Black [mailto:jblack@;ieee.org] Sent: Friday, November 15, 2002 1:36 PM To: [EMAIL PROTECTED] Subject: Re: java2WSDL/WSDL2Java problems

RE: Generated WSDL <> original WSDL

2002-11-15 Thread Daleiden, Mike
" attribute. This is because the Java String objects can have a null value, so Java2WSDL specifies that in the WSDL. -- Tom Jordahl Macromedia Server Development -Original Message- From: Daleiden, Mike [mailto:mike.daleiden@;aaaresponse.com] Sent: Thursday, November 14, 2002 1:52 P

RE: Generated WSDL <> original WSDL

2002-11-14 Thread Daleiden, Mike
treetAddress definitions, and the only difference I saw was the nillable="true" attribute. This is because the Java String objects can have a null value, so Java2WSDL specifies that in the WSDL. -- Tom Jordahl Macromedia Server Development -Original Message- From: Daleiden, M

RE: Generated WSDL <> original WSDL

2002-11-14 Thread Daleiden, Mike
e service in the server-config.wsdd if you want the WSDL to be static. I took a look at the StreetAddress definitions, and the only difference I saw was the nillable="true" attribute. This is because the Java String objects can have a null value, so Java2WSDL specifies that in the WSDL. -

Generated WSDL <> original WSDL

2002-11-14 Thread Daleiden, Mike
I hand-built a WSDL file to describe my web services, then used WSDL2Java as follows to generate the stubs and server-side code: java WSDL2Java -v -a -s --NStoPkg http://coqawl01-nat.aaaresponse.com:7001/rcapp/services/AirIQ=com.aaares ponse.rcapp.commserver.device.handler.airiq.soap.inbound webse