Doubt to do integration between web systems using HttpWebRequest- C #

0

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

In this application, you need to exchange information between your company website and an external site.

Although this website does not have any information exchange component, it is only possible to send information by accessing the site through a credential and navigating between the menus and manually informing the data.

The challenge is to create 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 like this, where you have to select a menu item, fill in the items on the selected page and have it processed and fetched?

    
asked by anonymous 21.03.2017 / 19:26

1 answer

0

What you're trying to do is a Web Crawler . The idea is basically to make HTTP requests for the application in question, execute a parse of the returned HTML pages and, from the content obtained from them, make more requests.

To get an initial base, you can try using this article here .     

23.03.2017 / 01:42