Location of .wsdd file

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Location of .wsdd file

deepak nigam-2
Hello all,

I am trying to integrate CyberSource with OFBiz using SOAP toolkit. We can
consume its web services using Apache Axis and WSS4J. I am following the
developer's guide [1] for it.

The last step in this guide is as follows:


*Run the sample as follows:*
*java -Daxis.ClientConfigFile=SampleDeploy.wsdd Sample*

It is providing axis.ClientConfigFile from the command line argument. Where
do I need to configure and put this file in OFBiz (or any web application)?

Thanks in advance!

[1]
http://apps.cybersource.com/library/documentation/dev_guides/SOAP_Toolkits/html/wwhelp/wwhimpl/js/html/wwhelp.htm#href=ApacheAxis.12.1.html

Regards,
Deepak Nigam
grv
Reply | Threaded
Open this post in threaded view
|

Re: Location of .wsdd file

grv
If you just want to run the tutorial as it is, you need to place WSDD in
the directory your code is getting executed from. Idea is it should be
available in the classpath.

Coming to OFBiz, you can place WSDD in any of the java packages (because
they are on the classpath) and provide fully qualified name of the
package/<WSDD-file-name>. It should work.

Should be like this -

-Daxis.ClientConfigFile=com/apache/ofbiz/xyx/SampleDeploy.wsdd

Best,
Girish

On Wed, Sep 4, 2019 at 10:23 AM Deepak Nigam <[hidden email]>
wrote:

> Hello all,
>
> I am trying to integrate CyberSource with OFBiz using SOAP toolkit. We can
> consume its web services using Apache Axis and WSS4J. I am following the
> developer's guide [1] for it.
>
> The last step in this guide is as follows:
>
>
> *Run the sample as follows:*
> *java -Daxis.ClientConfigFile=SampleDeploy.wsdd Sample*
>
> It is providing axis.ClientConfigFile from the command line argument. Where
> do I need to configure and put this file in OFBiz (or any web application)?
>
> Thanks in advance!
>
> [1]
>
> http://apps.cybersource.com/library/documentation/dev_guides/SOAP_Toolkits/html/wwhelp/wwhimpl/js/html/wwhelp.htm#href=ApacheAxis.12.1.html
>
> Regards,
> Deepak Nigam
>