• 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
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

WSDL question

 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have an application which is a web conference application. The application provider has given me a WSDL file which contains all the services provided by them. Now I have to get the methods from the WSDL file. I have to develop web application which contacts the methods generated by the WSDL file and perform some tasks.


For this, i used Apache axis to generate the code from the WSDL file.

1) Using the tool I have generated a wsdd file.
2)deployed the wsdd file on to the axis using org.apache.axis.client.AdminClient.
3)All the services were deployed onto the axis.
4) I have got all the methods corresponding to WSDL file.
5) Now I am stuck with a small issue as to how I can contact the application.

Now what i want to do is :
In place of application login page,i need to put my own web page wherein the user enters his details.After the user submitting the form,i need to perform the authentication tasks.

Below is the login process of conference application:

1)Actually when users registers to the application,the details of the users is stored in .dat file .
2)so, when the users login into the application,they check whether the user exists or not by checking in the .dat file.If user exists,he is allowed to access the application.If not,access is denied to the user.


Now,in want to place my own web page in place of conference application page.After the users enters the values in the web page to register,the details of the user should be stored in the .dat file.If the login into the application,i need to check whether the user is existing user or a new user.


You can find the WSDL file from the below URL

http://203.196.150.184/app/conferencelibrary.wsdl



So,can anyone please help me in this as this is very urgent for me.

Thanks in Advance,
regards,
Siva Sankar
 
Bartender
Posts: 2968
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by siva sankar:
The application provider has given me a WSDL file which contains all the services provided by them. Now I have to get the methods from the WSDL file. I have to develop web application which contacts the methods generated by the WSDL file and perform some tasks.



Here it sounds like you need to implement a web services client. The steps that you describe later sound like you are building the web service itself. Given that you have the WSDL use the Axis WSDL2Java tool to generate the client stubs. With the stubs and any axis jars that the stuba may need you should be able to build a command line, GUI, or Web application WS client without actually deploying axis itself.
 
Well THAT's new! Comfort me, reliable tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic