Communication between ASP.NET app and Windows Client app

G

Guest

Hi All

I have a requirement where the user clicks a button on the windows app. A
browser pops up. User enters some data in the browser. And I want the data
sent back to the windows app. How do i do this.

I see two issues here.

How would the client know when I am done with my Changes on the browser. We
thought we would some polling which is a bad idea. Any suggestions???

How do I send the data to the client. WCF is not an option for us. Sorry

Any ideas?

Regards
 
B

bruce barker

you have really two optios.

1) polling a web service like you planned.
2) hosting the browser with your windows app. you can then catch
navigation events and read the dom.

-- bruce (sqlwork.com)
 
J

John Saunders [MVP]

Sekhar said:
Hi All

I have a requirement where the user clicks a button on the windows app. A
browser pops up. User enters some data in the browser. And I want the data
sent back to the windows app. How do i do this.

I see two issues here.

How would the client know when I am done with my Changes on the browser.
We
thought we would some polling which is a bad idea. Any suggestions???

How do I send the data to the client. WCF is not an option for us. Sorry

You can pop up a dialog box hosting the Web Browser Control. You can control
it programmatically. That should help your windows application know whether
a particular button has been clicked in the browser, and even pick up the
data.
 
G

Guest

Thank you.
Shall try

Regards


John Saunders said:
You can pop up a dialog box hosting the Web Browser Control. You can control
it programmatically. That should help your windows application know whether
a particular button has been clicked in the browser, and even pick up the
data.
 

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