Developer Geeks Home

Your location: San Luis Obispo, California, United States

Advance »

Featured Articles [93]

RSS
  • 0
  • Likes
  • 51
  • Views
  • 0
  • Comments

Agile Development Method: Scrum at a glance

Posted 10 days ago

Here, we will take at look at essential elements of Scrum Agile Development Method. This could be used as Scrum Cheat Sheet.

What is Scrum?

Scrum is an iterative and incremental agile software development framework for managing software projects and product or application development. Its focus is on a flexible product development strategy where a development team works as a unit to reach a common goal.

Essential Elements of Scrum (Cheat Sheet)

...

Read Full Article »


  • 1
  • Likes
  • 241
  • Views
  • 0
  • Comments

How to Quickly Create a Copy of a Table using Transact-SQL

Posted 2 months ago

Lets see how to Quickly Create a Copy of a Table using Transact-SQL

The easiest way to create a copy of a table is to use a Transact-SQL command. Use SELECT INTO to extract all the rows from an existing table into the new table. The new table must not exist already. The following example will copy the Employees table under the Company schema to a new table called Employees under the Department schema...

Read Full Article »


  • 1
  • Likes
  • 1.6k
  • Views
  • 0
  • Comments

How to create REST service with JSON and SOAP API in WCF

Posted 6 months ago

This article will demonstrate how create REST service with JSON and SOAP API all in one WCF service in ASP.NET 4.0

Introduction

The WCF REST Programming Model provides the required elements to build REST services with WCF. REST services are designed to be accessed by the widest range of possible clients, including Web browsers, using XML/JSON responses.

...

Read Full Article »


  • 0
  • Likes
  • 946
  • Views
  • 0
  • Comments

Thread Synchronization Essentials in .Net

Posted 11 months ago

This is a brief article showing what are the essentials of synchronization in thread.

Thread Synchronization Essentials

The following tables summarize the .NET tools available for coordinating or synchronizing the actions of threads:

...

Read Full Article »


  • 1
  • Likes
  • 13.5k
  • Views
  • 0
  • Comments

How to host WSHttpBinding and NetTcpBinding in a single WCF Service

Posted one year ago

This article will demonstrate you how to host service endpoints with WSHttpBinding and NetTcpBinding in a single WCF Service.

Introduction

Let's jump to implementation.

Implementation

1. Open a new ConsoleApplication in VS .Net IDE. Rename it to "SelfHostWCF".

2. Add a reference to System.ServiceModel dll in the project.

3. Create a ServiceContract Interface and implement the Service class with OperactionContract.

...

Read Full Article »


  • 0
  • Likes
  • 867
  • Views
  • 2
  • Comments

Software development tools for Managers, Developers, Architects and Testers

Posted one year ago

Frequently used Software development tools for Project Managers, Developers, Analysts, Architects and Testers.

Planning and Implementation Tools

...

Version Control and Collaboration Tools

...

Testing and Defect Management Tools

...

Read Full Article »


  • 0
  • Likes
  • 2k
  • Views
  • 0
  • Comments

How to read event log and display the content on ASP.NET page

Posted one year ago

This article will show you how to read windows event log and display its content on ASP.NET page, based on user selection.

Following is the sample code to write to the windows event log and display the contents of user selected windows event log on ASP.NET page.

...

Read Full Article »


  • 0
  • Likes
  • 2.6k
  • Views
  • 2
  • Comments

How to verify the email address is valid in ASP.NET

Posted one year ago

This article will demonstrate how to verify that the email address provided by a user is a valid email address, using a sample code.

Introduction

Some times website owners need to allow users to get registered on their website or subscribe to newsletters on their website, by allowing users to provide their email addresses. But how would you verify that the user provided email addresses are genuine and valid, to avoid bounced email messages.

This article will demonstrate how to verify that the email address provided by a user is a valid email address, using a sample code.

Implementation

ASP.NET Provides Built-in DNS Resolving Support. DNS class from System.Net namespace can be used to resolve DNS hostnames into IP addresses. Using this class we could verify email addresses and ensure that the domain name specified by the user actually resolved to an existing domain name.

...

Read Full Article »


  • 0
  • Likes
  • 2.3k
  • Views
  • 0
  • Comments

How to read an xml file and retrieve xml element values in .Net

Posted one year ago

This article will demonstrate how to read an xml file and retrieve xml element values in .Net using a sample Console application in C#.

Introduction

This is a Console application in .Net to read an xml file and retrieve xml element values.

This application will load the xml file from the provided file path, fetch all instances of the provided xml element from the xml file and then write the xml element values in a text file on your hard drive.

Attached are the source code and the EXE for this project for download.

Implementation

...

Read Full Article »


  • 0
  • Likes
  • 1.5k
  • Views
  • 1
  • Comments

Working with Cookies in ASP.NET

Posted one year ago

This article will briefly introduce you to the Cookies in ASP.NET and how work with Cookies.

What is Cookies?

The Cookie is a collection of key/value pairs that hold text values set by a page in a web request. By default, the collection is empty. The cookie contains information the Web application can read whenever the user visits the website.

Following are few examples of how to work with Cookie collections in ASP .Net web applications.

...

Read Full Article »