Doubt to make integration between web systems, using Httpwebrequest- Language c#

Asked

Viewed 101 times

0

I’m building a C# web application using VS 2010.

In this application I need to exchange information between the company website and an external website.

Except that this site has no component for information exchange, it is only possible to send information by accessing the site through credential and navigating between menus and manually informing the data.

The challenge is to create an automation/integration for this. Consulting on the internet, I am seeing many things in particular about Httpwebrequest that would be the way. Has anyone seen or done anything similar, where you have to select a menu item, fill in the items on the selected page have them processed and get results?

1 answer

0

What you’re trying to do is a Web Crawler. The idea is basically to go making HTTP requests to the application in question, run a parse of the returned HTML pages and, from the content obtained from them, make further requests.

To have an initial basis, you can try to use this article here.

  • Thanks for the feedback, I’ll take a look at the nomination. I am testing the Selenium is meeting, but the problem is that opens the browser and all browsing is viewed, it would not be necessary for the user to stay watching the process...

Browser other questions tagged

You are not signed in. Login or sign up in order to post.