.NET Remoting Overview Creating Windows Services in .Net From: http://sitestree.com/?p=5230 Categories:24Tags: Post Data:2012-10-07 01:02:12 Shop Online: <a href=’https://www.ShopForSoul.com/’ target=’new’ rel=”noopener”>https://www.ShopForSoul.com/</a> (Big Data, Cloud, Security, Machine Learning): Courses: <a href=’http://Training.SitesTree.com’ target=’new’ rel=”noopener”> http://Training.SitesTree.com</a> In Bengali: <a href=’http://Bangla.SaLearningSchool.com’ target=’new’ rel=”noopener”>http://Bangla.SaLearningSchool.com</a> <a href=’http://SitesTree.com’ target=’new’ rel=”noopener”>http://SitesTree.com</a> 8112223 Canada Inc./JustEtc: <a href=’http://JustEtc.net’ target=’new’ rel=”noopener”>http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a> Shop Online: <a …
Category: FromSitesTree.com
Aug 20
Key Strategies in Software Debugging #22
Key Strategies in Software Debugging. 1. Understand the requirements well. Design the software well. Code well. These will reduce the number of defects in your system. 2. Don’t use random guessing about defects. Use a systematic and scientific method to detect and fix bugs. 3. Identify the root cause of a defect. Understand the program …
Aug 20
Creating and Consuming XML Web Services #24
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 the asmx.vb/cs files. A sample web-service method is already there Now you can …
Aug 20
Debugging in .Net, (XML Web Services) #24
May not make sense to all. 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 …
Aug 20
Advanced Topics in .Net XML Web Services #24
SOAP Extensions: “SOAP Extensions are components that can access the SOAP messages. Think of them as objects that sit on the HTTP pipeline who can pick the SOAP messages at each stage and manipulate them. When the HTTP request comes from the client, it is handled by aspnet_isapi.dll. The appropriate handler for web services will …
Aug 20
Advanced XML Web Services Programming #24
Attributes of a web method. Using attributes, you can define the behavior of the methods exposed. Syntax VB.net _Public Function …. C# [WebMethod (BufferResponse=false)]public int HelloWorld(){…… Attributes: BufferResponse: Should the response be buffered? CacheDuration: Number of seconds the response is cached in memory Description: Describe a web method EnableSession: Should session state be enabled or …
Aug 19
XmlTextReader Overview #24
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. XmlValidatingReader class supports both DTD and …
Aug 19
Overview of XML programming in Dot Net #24
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 and save. DOM uses data-structures to represent the data in the …
Aug 19
Build RPM Package #26
Check the tutorial below for a detail discussionhttp://www.rpm.org/max-rpm/ From: http://sitestree.com/?p=4749 Categories:26Tags: Post Data:2010-08-25 17:48:18 Shop Online: <a href=’https://www.ShopForSoul.com/’ target=’new’ rel=”noopener”>https://www.ShopForSoul.com/</a> (Big Data, Cloud, Security, Machine Learning): Courses: <a href=’http://Training.SitesTree.com’ target=’new’ rel=”noopener”> http://Training.SitesTree.com</a> In Bengali: <a href=’http://Bangla.SaLearningSchool.com’ target=’new’ rel=”noopener”>http://Bangla.SaLearningSchool.com</a> <a href=’http://SitesTree.com’ target=’new’ rel=”noopener”>http://SitesTree.com</a> 8112223 Canada Inc./JustEtc: <a href=’http://JustEtc.net’ target=’new’ rel=”noopener”>http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a> Shop Online: <a …
Aug 19
Quick guide to RPM (Red Hat Package Manager) #26
Quick Guide to RPM RPM-Red Hat Package Manager Caldera, Suse, Fedora also use RPM rpm -qa | more to check the installed software in the system q=query a=list rpm -qi faq Query individual package q=query i=requires a package name faq=the package rpm -ql faq List all the files for the package faq q=query l=list files …
