RE: book

2003-09-17 Thread chaddad
Hi Tania - A group of Axis committers and friends-of-Axis are working on a technical, developer and architect oriented book that delves into the nuts and bolts of building web service endpoints, clients, handlers, and transports using Axis. JAX-RPC, connecting to JMS and EJB's, and .NET intero

Re: Deserializing exception

2003-08-31 Thread chaddad
mike - you most likely do need a typemapping in the wsdd. please post your wsdl and the wsdd generated by wsdl2java. thanks, /Chris -- Original Message -- From: <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Sun, 31 Aug 2003 23:35:11 +0200 (ME

Re: Axis code generation HOW-TO

2003-08-28 Thread chaddad
Great tip Stuart! here's some additional tricks. the destination directory for all generated source files should be /build/work directory. usually i have /build/work/schema for wsdl and /build/work/com/... for java source. after generating the java source, copy the implementation file over i

Re: spaces in service names

2003-08-14 Thread chaddad
Shantanu - Anne pointed out that service names MUST conform to the rules for the xsd:NCName type (according to the WSDL schema definition) and therefore spaces are invalid. I was erroneously just focused on the service endpoint URL used by Axis and had overlooked this fact. /Chris --- shanta

Re: What is the attachments.Directory for?

2003-08-14 Thread chaddad
The attachments.directory path points to a location used to temporarily save large attachment files. If deleted, Axis will fall back and use alternative locations. Best course of action is to modify the value to point to a directory used to hold temporary files. /Chris -- Original

Re: Undefined namespace in WSDL file generated by Axis

2003-08-14 Thread chaddad
Harry - What type are the userColl and projectColl fields? /Chris -- Original Message -- From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 13 Aug 2003 16:38:43 -0700 >Hi, > My web service is in Axis 1.1 and the C# client is using MS WS

Re: Undefined namespace in WSDL file generated by Axis

2003-08-14 Thread chaddad
Thanks. > > >Harry Wen > > > > > "chaddad" > > <[EMAIL PROTECTED]To: <[EMAIL PROTECTED]>

RE: How to extract Soap header from Web Service client?

2003-08-14 Thread chaddad
The method is in the nightly build. /Chris -- Original Message -- From: Naresh Agarwal <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Wed, 13 Aug 2003 23:00:46 -0700 (PDT) >Hi Girish, > >There is no such function in Stub interface. Which Axis vers

Re: spaces in service names

2003-08-14 Thread chaddad
d if it was protected. > >Probably I should post this axis-dev. > >Shantanu > >--- chaddad <[EMAIL PROTECTED]> wrote: >> Shantanu - >> >> If you have control over the service, it would be >> easier to just remove the space from the service >>

Re: question regarding axis in tomcat

2003-08-14 Thread chaddad
Shantanu - If you have control over the service, it would be easier to just remove the space from the service name. /Chris -- Original Message -- From: Shantanu Sen <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Wed, 13 Aug 2003 14:05:55 -0700 (

Re: So server side handlers really work?

2003-07-30 Thread chaddad
Ross - the documentation states that SimpleSessionHandler needs to be mapped into both the request and response flows on the server. Because you haven't mapped the handler into the response flow, the doServer code for when context.getPastPivot() == false will never be executed which is critical

RE: exception handling strategies

2003-07-28 Thread chaddad
Paul - the xml-axis\test directory is a great place to start to view code samples. for example, /test/faults/TestEncode.java /test/soap12/TestFault.java Axis is fully configurable as to the fault information and can conform to the WS-I suggestion. it does not conform out of the box because

Re: Attachment problems

2003-07-28 Thread chaddad
Martin - have you tried executing xml-axis/java/test/saaj/TestAttachment.java in your environment? The testMultipleAttachments method seems to execute similar code. /Chris -- Original Message -- From: "BTInternet" <[EMAIL PROTECTED]> Reply-To: [EMAIL P

Re: MIME and DIME

2003-07-03 Thread chaddad
good idea Eric! no, Axis requires the client code to explicitly set the encapsulation format. Here's the required code to specify use of DIME: call.setProperty( call.ATTACHMENT_ENCAPSULATION_FORMAT, call.ATTACHMENT_ENCAPSULATION_FORMAT_DIME); /Chris -- Original Message

Re: WSDL2Java bug? or my misunderstanding

2003-06-21 Thread chaddad
Mark - When testing the wsdl (and uncommenting the part) wsdl2java is properly parsing the file. i'm using a nightly build. can you provide the exact command line that you are using? thanks, /Chris -- Original Message -- From: mark pope <[EMAIL PROTE