Configuration to use my WSDL rather than AXIS generated WSDL

2007-11-06 Thread Ford, Jennifer M.
All:

I am having some interoperability problems with a .NET client, and
they've suggested that it's because of the changes that AXIS makes to my
WSDL when the services are published.  I'd like to make the services use
the original WSDL, and it looks like there used to be a way to do that
in the server-config.wsdd file.  Is there a corollary to that for Axis
2?

Thanks,

Jennifer Ford



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Configuration to use my WSDL rather than AXIS generated WSDL

2007-11-06 Thread Raghu Upadhyayula
In the services.xml there is a parameter named " useOriginalwsdl", set
that to true.

Thanks
Raghu

-Original Message-
From: Ford, Jennifer M. [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 06, 2007 9:55 AM
To: axis-user@ws.apache.org
Subject: Configuration to use my WSDL rather than AXIS generated WSDL

All:

I am having some interoperability problems with a .NET client, and
they've suggested that it's because of the changes that AXIS makes to my
WSDL when the services are published.  I'd like to make the services use
the original WSDL, and it looks like there used to be a way to do that
in the server-config.wsdd file.  Is there a corollary to that for Axis
2?

Thanks,

Jennifer Ford



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Configuration to use my WSDL rather than AXIS generated WSDL

2007-11-06 Thread Ford, Jennifer M.
Thanks for your help!

When I did that, I got the following when I clicked on the service link
from the listServices page:

- 
  Unable to generate WSDL 1.1 for this
service 
  If you wish Axis2 to automatically generate the WSDL 1.1, then
please +set useOriginalwsdl as false in your services.xml 
  

I would have thought it would just display the WSDL I gave it in the
resources directory.  Is that incorrect?  Is there another location
where it is expected?

Thanks,
Jennifer

-Original Message-
From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 06, 2007 12:08 PM
To: axis-user@ws.apache.org
Subject: RE: Configuration to use my WSDL rather than AXIS generated
WSDL

In the services.xml there is a parameter named " useOriginalwsdl", set
that to true.

Thanks
Raghu

-Original Message-
From: Ford, Jennifer M. [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 06, 2007 9:55 AM
To: axis-user@ws.apache.org
Subject: Configuration to use my WSDL rather than AXIS generated WSDL

All:

I am having some interoperability problems with a .NET client, and
they've suggested that it's because of the changes that AXIS makes to my
WSDL when the services are published.  I'd like to make the services use
the original WSDL, and it looks like there used to be a way to do that
in the server-config.wsdd file.  Is there a corollary to that for Axis
2?

Thanks,

Jennifer Ford



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Configuration to use my WSDL rather than AXIS generated WSDL

2007-11-06 Thread robert lazarski
You need to put your WSDL file into the aar's META-INF directory.

HTH,
Robert

On 11/6/07, Ford, Jennifer M. <[EMAIL PROTECTED]> wrote:
> Thanks for your help!
>
> When I did that, I got the following when I clicked on the service link
> from the listServices page:
>
> - 
>   Unable to generate WSDL 1.1 for this
> service
>   If you wish Axis2 to automatically generate the WSDL 1.1, then
> please +set useOriginalwsdl as false in your services.xml
>   
>
> I would have thought it would just display the WSDL I gave it in the
> resources directory.  Is that incorrect?  Is there another location
> where it is expected?
>
> Thanks,
> Jennifer
>
> -Original Message-
> From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, November 06, 2007 12:08 PM
> To: axis-user@ws.apache.org
> Subject: RE: Configuration to use my WSDL rather than AXIS generated
> WSDL
>
> In the services.xml there is a parameter named " useOriginalwsdl", set
> that to true.
>
> Thanks
> Raghu
>
> -Original Message-
> From: Ford, Jennifer M. [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, November 06, 2007 9:55 AM
> To: axis-user@ws.apache.org
> Subject: Configuration to use my WSDL rather than AXIS generated WSDL
>
> All:
>
> I am having some interoperability problems with a .NET client, and
> they've suggested that it's because of the changes that AXIS makes to my
> WSDL when the services are published.  I'd like to make the services use
> the original WSDL, and it looks like there used to be a way to do that
> in the server-config.wsdd file.  Is there a corollary to that for Axis
> 2?
>
> Thanks,
>
> Jennifer Ford
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Configuration to use my WSDL rather than AXIS generated WSDL

2007-11-06 Thread Shrish Mishra
Try this:

In .aar file keep your generated wsdl inside META-INF directory. Axis engine
picks wsdl from there and if it does not find one it generates one.

-- 
Regards,
-Shrish Mishra

On 11/6/07, Ford, Jennifer M. <[EMAIL PROTECTED]> wrote:
>
> Thanks for your help!
>
> When I did that, I got the following when I clicked on the service link
> from the listServices page:
>
> - 
>   Unable to generate WSDL 1.1 for this
> service
>   If you wish Axis2 to automatically generate the WSDL 1.1, then
> please +set useOriginalwsdl as false in your services.xml
>   
>
> I would have thought it would just display the WSDL I gave it in the
> resources directory.  Is that incorrect?  Is there another location
> where it is expected?
>
> Thanks,
> Jennifer
>
> -Original Message-
> From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, November 06, 2007 12:08 PM
> To: axis-user@ws.apache.org
> Subject: RE: Configuration to use my WSDL rather than AXIS generated
> WSDL
>
> In the services.xml there is a parameter named " useOriginalwsdl", set
> that to true.
>
> Thanks
> Raghu
>
> -Original Message-
> From: Ford, Jennifer M. [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, November 06, 2007 9:55 AM
> To: axis-user@ws.apache.org
> Subject: Configuration to use my WSDL rather than AXIS generated WSDL
>
> All:
>
> I am having some interoperability problems with a .NET client, and
> they've suggested that it's because of the changes that AXIS makes to my
> WSDL when the services are published.  I'd like to make the services use
> the original WSDL, and it looks like there used to be a way to do that
> in the server-config.wsdd file.  Is there a corollary to that for Axis
> 2?
>
> Thanks,
>
> Jennifer Ford
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>