• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Can you develop a Stubs class from local WSDD

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey everyone,

Sorry I am a little new to axis, but I am struggling with what is/how to use a WSDD file. So at the shop I work at we have a web service that is ran on Peoplesoft. Apparently in order to interact with said web service a WSDD file have to be used to allow for authentication. I have access to a LOCAL copy of both the WSDL and WSDD files. I have looked through many forums, and the Apache docs, but I can't seem to put together what is going on here, anyone think they are able to help?

Here is a similar WSDD file
<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<transport name="http" pivot="java rg.apache.axis.transport.http.HTTPSender"/>
<globalConfiguration >
<requestFlow >
<handler type="java rg.apache.ws.axis.security.WSDoAllSender" >
<parameter name="action" value="UsernameToken"/>
<parameter name="user" value="userName"/>
<parameter name="passwordCallbackClass" value="org.portal.security.wsse.RMSPasswordCallback"/>
<parameter name="passwordType" value="PasswordText"/>
<parameter name="mustUnderstand" value="0" />
<parameter name="wsse_ns" value="http://schemas.xmlsoap.org/ws/2002/07/secext" />
</handler>
</requestFlow >
</globalConfiguration >
</deployment>
 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Jackie,

are you trying to access a web service?

if yes, try to understand your WSDL. It gives you required information to access webservice. You can easily find detailed information about WSDL on net.

Thanks,
YGR
 
There is no greater crime than stealing somebody's best friend. I miss you tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic