Re: How do you set the name?

2006-05-05 Thread Rich Rodriguez
I believe the namespace in the bean mapping should be some URN rather than a java:package declaration. For example: http://foo.com/address" languageSpecificType="java:my.package.Address"/> On 5/5/06, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote: When running wsdl2java in debug mode, I see the follo

Re: Axis appends 'Services' to the service name.

2006-05-05 Thread Rich Rodriguez
Try the wsdlServiceElement parameter in the deployment descriptor:On 5/5/06, Santunu Podder <[EMAIL PROTECTED]> wrote: Hi All,When I generate my wsdl using axis, it appends an extra word 'Service' tothe service name.Pasted below is a section of my wsdl...   name="TestServices"> locatio

Re: Problem with .Net 1.1 client

2006-05-03 Thread Rich Rodriguez
With the Axis 1.3 BeanSerializer the array "items" seem to be named the same as the array property itself. This is fixed in the next version?On 5/3/06, Anne Thomas Manes <[EMAIL PROTECTED]> wrote: Edit the WSDL and change the elements named "item" in your two arrays to unique names. You need to be

Re: [Axis2] marshalling & hashCode/equals methods question

2006-04-29 Thread Rich Rodriguez
I believe WSDL2Java does this.On 4/29/06, Michele Mazzucco <[EMAIL PROTECTED]> wrote: Hi Ajith ,actually I haven't tryed ADB yet since the ADB tutorial says it is a"simple" databinding framework (and thus it's not able to compile all types of schemas).At now I've tried Castor and Sun JAXB code gene

Re: Making Axis work with HTTP/Basic authentication and a VB.Net client

2006-04-28 Thread Rich Rodriguez
rvices' .wsdd file you have added the "Authenticate" handler> to the request flow.>> Is that correct?>> So it looks like I need to write my own handler class to send back a > 401> error to the client if no username and passwo

Re: Making Axis work with HTTP/Basic authentication and a VB.Net client

2006-04-28 Thread Rich Rodriguez
To answer your question - yes, that is my setup.On 4/28/06, Kevin O'Rourke <[EMAIL PROTECTED]> wrote: Thanks for the information.  Just to be sure I understand:- you have written your own AuthenticationHandler class and added it as a handler in server-config.wsdd- you have added the HTTPAuthHandler

Re: Making Axis work with HTTP/Basic authentication and a VB.Net client

2006-04-28 Thread Rich Rodriguez
My authentication handler is just an modified version of the SimpleAuthenticationHandler that ships with Axis to hit my user table. To be honest, I'm not totally clear on the interaction between that handler and the HttpAuthHandler. My auth handler issues a fault if the user and password are not in

Re: Making Axis work with HTTP/Basic authentication and a VB.Net client

2006-04-27 Thread Rich Rodriguez
The auth handler I have is defined outside the service as:    The transport request flow is defined as:                And each service has a request flow of:           On 4/27/06, Kevin O'Rourke <[EMAIL PROTECTED]> wrote: I'm trying to do authentication fo