Our company dial with other company via Web based application we have access to our account in there site, we enter a lot of request using simple form then we get the results in the same page in table format.
What we need to interface (automate) the process between our system (C# .NET 2.0) and there site (Java Servlet JSP Secure), our system provide the information that we need to enter every day in there system and receive there response.
How we can make this kind of interface
Thank you.
SDev

Interfacings with Web Application
Kishore Gopalan
The msdn documentation of the two classes mentioned above would probably be enough to get you started.
http://msdn2.microsoft.com/en-us/library/system.net.httpwebrequest.aspx
http://msdn2.microsoft.com/en-us/library/system.net.httpwebresponse.aspx
Bilal Lodhi
Toby Broom
See HttpWebRequest and HttpWebResponse classes in System.Net namespace. They'll help you in bulding what you are thinking exactly.
Best Regards,
Rizwan
FranzCarl
SDev,
Sorry for the late reply, I missed your previous post. See these articles: http://www.west-wind.com/presentations/dotnetWebRequest/dotnetWebRequest.htm
http://www.developerfusion.co.uk/show/4637/2/
http://www.developerfusion.co.uk/show/4498/
There are 1000s avaiable on web to search and get started. Also see MSDN for details about HttpWebRequest and HttpWebResponse classes.
I hope this will help.
Best Regards,
Rizwan
cmacho
gpeng
Thank you
would you please provide me a simple example or a link to any example for interfacing the web application.
Thank you.