Raúl Ribeiro
How to run another application or batch file from my Visual...
Example 1.Running a command line application, without concern for the results:
private void Run(){ System.Diagnostics.Process.Start(@"C:runFile.bat");}
Example 2.Retrieving the results and waiting until the process stops...
Como Serializar um Objecto para XML e Deserializar um XML para...
Serializar um Objecto para String (XML)
StringWriter sw = new StringWriter();
XmlSerializer serializer = new XmlSerializer(typeof(OBJECT));
serializer.Serialize(sw, getAcessoryEquipmentsRequest.SearchCriteria);
strXML = sw.ToString();
Deserializar uma String (XML) para Objecto
StringReader sr =...
Design Principles for AJAX Applications
Design Principles for AJAX Applications
Minimise traffic between browser and server so that the user feels the application is responsive.
Be clear on the interaction...
Ajax.NET – A free library for the Microsoft .NET Framework
Asynchronous JavaScript with XmlHttpRequest - C# Example
Download the latest Ajax.dll (5.5.13.1) to use it for free in your web projects.
To learn more about AJAX,...
Web services Contract-First, for real
WSCF 0.4 "Web services Contract-First, for real"
We featured the WsContractFirst Add-In in an earlier post, but Christian let me know they have a...
Anatomy of a Software Development Role: Solution Architect
Anatomy of a Software Development Role: Solution Architect
http://www.developer.com/mgmt/article.php/3504496
Have you ever wondered what it meant to be a solution architect? Most people wonder...