How To: Create webRequest set webRequest.Proxy fetch data from vendor via webResponse = webRequest.GetResponse(); use XSD to validate webResponse use XSD to create strongly-typed dataset strongly-typed dataset.ReadXML to populate strongly-typed dataset from webResponse Hopefully a vendor can send you some xml that looks like this: http://www.SomeVendor.com" xmlns:xsi="http://www.w3.or... xsi:schemaLocation="http://... LX010053 2006-09-26 LX010063 ......
Oracle Developer Tools for Visual Studio .NET with Oracle10g Release 2 ODAC 10.2.0.2.20
http://www.oracle.com/technology/software/tech/windows/odpnet/index.html
//convert xml string to dataset, and WriteXmlSchema to string System.IO. DataSet dsResponse = new DataSet();StringReader sr = new System.IO.StringReader(resp... sr = new System.IO.StreamReader( dsResponse.ReadXml(sr); System.Text. StringBuilder builder = new System.Text.StringBuilder();// Create the StringWriter object with the StringBuilder object. System.IO. StringWriter writer = new System.IO.StringWriter(buil... Write the schema into the StringWriter. dsResponse.WriteXmlSchema(w... ......
Original Article: http://weblogs.asp.net/rosh... Problem & Solution: Allow only one instance of any MDI child form in your MDI application One of the things I needed to do at an MDI application I was involved with was the ability to only load a specific form once, and make sure it does not load again. That form could not be modal, but could only have one instance running inside the MDI parent. I came up with a rather elegant solution, if I do say so myself :) ......