Web service help

J

jeewant

Hi,
I am creating web service for my company. The web service supposed
to pop up windows (web page with url address and unique id) after the
user is validated. I did the user authentication part using SOAP but I
could not be able to pop up windows(web page).How do I send a web page
in the client's side using web method.
Thank you
Jeewan
 
A

AMDRIT

Think of what is going on. You have a service and a client. The purpose of
the service is to facilite back end processing and minimize exposure and
protect intellectual property. The purpose of the client is to receive user
input and display information accordingly.

So the order of operation and area of responsibility would be more like:

User requests authentication
Client sends authentication request to service
Service receives authentication request and response accordingly (Sends a
URL back to the client)
Client recieves response and determines to continue or fail
Client determines the user has been authenticated and has a URL
Client renders clientside javascript (or your favorite scripting language)
<script>
window.open(url)
</script>
Client now has two interfaces available for user input or request

The rendering can happen with a response.write or with the renderer object
on the form.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top