Category: FromSitesTree.com

Arithmetic Operations using two variables #Linux/Unix: Shell Programming – 001

#!/bin/sh #will do addition, subtraction, multiplication, and division of two variables X=12 Y=5 #print the values of the variables echo “X value is: “$X echo “Y value is: “$Y #addition echo “X + Y” = `expr $X + $Y` #subtraction echo “Y – X” = `expr $Y – $X` #multiplication echo “X * Y” = …

Continue reading

Creating and Consuming XML Web Services #Misc .Net

Brought from our old-site (this short note can be as old as 2007): http://salearningschool.com/displayArticle.php?table=Articles&articleID=1120&title=Creating%20and%20Consuming%20XML%20Web%20Services visual studio .net -> File Menu -> new project -> Visual Basic/C# projects ->ASP.Net Web Service -> The project will get created Some Files as created: AssemblyInfo.cs/vb: sharing and reuse in the CLR, Web.config, service1.asmx, service1.asmx.cs/vb Create web service methods in …

Continue reading

Misc Web API stuff for .Net #Misc .Net

Learn how to implement Web API service in DNN Build your first Web API/RestFul application in .Net From: http://sitestree.com/?p=3781 Categories:Misc .NetTags: Post Data:2016-07-17 21:19:45 Shop Online: https://www.ShopForSoul.com/ (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com In Bengali: http://Bangla.SaLearningSchool.com http://SitesTree.com 8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) Shop Online: https://www.ShopForSoul.com/ Medium: https://medium.com/@SayedAhmedCanada

Debugging in .Net, (XML Web Services) #Misc .Net

Brought from: http://salearningschool.com/displayArticle.php?table=Articles&articleID=1117&title=Debugging%20in%20.Net,%20(XML%20Web%20Services) Just listing some related notes. Tools: DbgClr -GUI Based, CorDbg – command line based You can use the debug menu. Start, Step Into, Step Over, New Breakpoint options – as available in most Good to great IDEs for debugging Watch Window: Check the values of variables and expressions Call Stack Window: Function …

Continue reading

XmlTextReader Overview #Misc .Net

Brought from our old site: http://salearningschool.com/displayArticle.php?table=Articles&articleID=626&title=XmlTextReader%20Overview Overview of .Net XmlReader and XmlWriter Object XmlReader Can read XML data both from file or stream. Readonly access. Also, provides information about the XML data. XmlTextReader class is derived from XmlReader. It provides faster access to XML data though it does not support validating DTD or XML schema. …

Continue reading

Understanding .Net Application Deployment: .Net Deployment Features #Misc .Net

Brought from our old-site: http://salearningschool.com/displayArticle.php?table=Articles&articleID=1116&title=Understanding%20.Net%20Application%20Deployment:%20.Net%20Deployment%20Features Features you are required to understand: No-impact applications: isolate applications, remove DLL effects, Keeping the Components Private: components available only to the application, Controlled Code Sharing using GAC, Side by Side Versioning: Multiple versions of the same application, Xcopy Deployment: Without registry entries (copy to a directory), On the fly …

Continue reading

Overview of XML programming in Dot Net #Misc .Net

Brought from our old-site (a very old short-note): http://salearningschool.com/displayArticle.php?table=Articles&articleID=625&title=%3Ch2%3EOverview%20of%20XML%20programming%20in%20Dot%20Net%3C/h2%3E Overview of XML programming in Dot Net XML DOM (Document Object Model) Three ways to read XML documents in dot net are: XML DOM, SAX, XMLReader. DOM loads entire XML data into memory for processing, it is both read-write, I mean you can change XML data …

Continue reading

Debug and Trace classes in .Net #Misc .Net

Brought from our old-site (yes, pretty old short-note): http://salearningschool.com/displayArticle.php?table=Articles&articleID=636&title=Debug%20and%20Trace%20Classes%20in%20.Net Debug and Trace classes in .Net You can always debug your applications line by line. However, when the applications get very bigger/larger, debugging line by line may not be an efficient way for finding errors in code (well, you can first find out the error region …

Continue reading

Deploying .Net Windows Applications #Misc .Net

Brought from our old-site:http://salearningschool.com/displayArticle.php?table=Articles&articleID=797&title=Deploying%20.Net%20Windows%20Applications Deploying .Net Windows Applications Ways to deployment: XCOPY, Automated setup application Use XCOPY only when there is no external dependencies other than .Net framework. And it is guaranteed that .Net framework is installed in all the target machines. Also, make sure the application directory contains all the files Command example: XCOPY …

Continue reading

Database Programming in .Net: ADO.Net Overview #Misc .Net

Overview of ADO.net Purpose Components of ADO.net and their functions ADO.net provides disconnected database access to make minimum resource (RAM,Page Table,Heap) use. Database connections are open as long as the connection is required. Afterwards, the connection is just closed. If connections are kept active and if new connections are used for new operations, the system …

Continue reading