vote up 0 vote down star

Here's the situation:

I have a web application (Java servlets) at "mycompany.com". A business partner is going to supply me with data from his application at "yourcompany.com".

His application is driven by a web form (POST). I know nothing about his application other than the results will always be returned via a web page.

For example, if I create a static HTML form with a submit button and send it to his web site, I get the results in my browser.

I can create that web form in my application, but now - how to I read the results from his web site?

Any ideas?

-R

flag

57% accept rate
Are you just dumping the content to screen, or do you have to process it first before anything else? – OMG Ponies Oct 20 at 19:55
do you mean toy can cross-site-post? – Henry Gao Oct 20 at 20:14
I'm supposed to process the info coming back from the other site in my application. – Huntrods Oct 20 at 22:48

3 Answers

vote up 3 vote down

Sounds like you want to do some screen scraping - check out XQuery for that.

link|flag
1  
sounds like it.... – Frank Oct 20 at 20:05
vote up 0 vote down

If he were up for upgrading how he does it, Web Services (specifically, SOAP) would be a standard, maintainable way to pass data between applications on a network.

link|flag
I totally agree, but his site is not going to get updated any time soon. What I get is what I get. <joy> – Huntrods Oct 20 at 22:49
vote up 0 vote down

If you want finer control in the process and not to XMLize the HTML page, I would use HttpClient + HTML Parser

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.