kalyanms1

Stories submitted by kalyanms1

Configure WSE to validate SOAP message(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

One type verifying the SOAP message is validating the digital signature for the incoming message.Signature validation is done by WSE prior to the execution of the recipient code. The following procedure can be used to configure the WSE to validate the digital signature for SOAP message. read more...

add a comment |category: |Views: 39

tags: another

Adding Security Credentials to SOAP(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

The WSE 3.0 for .NET enables the developers for creating one or more security credentials that can be added to the SOAP Message. The following procedure describes how to add one or more security credentials to a SOAP Message.A computer must be configured to accept the SOAP Messages embedded with the security credentials. read more...

add a comment |category: |Views: 55

tags: another

WSE 3.0 Overview(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

Web Services Enhancements is a .NET class library to develop web services using latest protocols. Features read more...

add a comment |category: |Views: 120

tags: another

Introduction to SOA (techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

SOA represents new model for building distributed applications. SOA is a platform where you can expose your organization business logic through services. Here services are the interfaces which process and deliver the XML Messages. read more...

add a comment |category: |Views: 55

tags: another

SOAP Fundamentals(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

Introduction SOAP is a protocol to exchange the XML messages over the network using HTTP\HTTPS.It stands for Simple Object Access Protocol.It is platform and language independent. read more...

1 comment |category: |Views: 68

tags: another

Introduction to Microsoft Sync Framwework(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

Microsoft Sync Framework is a platform which enables collaboration and offline access among applications, services and devices. Using Sync Framework developers can build sync systems that can integrate any application with any data using any protocol over the network. read more...

add a comment |category: |Views: 16

tags: another

Microsoft Sync Framework(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

This post explains how synch provider communicates with a data source and retrieves information from metadata store. Sync providers can communicate with other sync providers through a synch session. read more...

add a comment |category: |Views: 16

tags: another

WCF Terms(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

Message A message contains data which consist of body and headers. read more...

add a comment |category: |Views: 24

tags: another

Service Model Metadata Utility Tool(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

The Service Model Metadata Utility Tool is used to generate service model code from metadata documents. read more...

add a comment |category: |Views: 34

tags: another

Working with configuration files(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

Configuration files are central place to configure your web or windows applications. The web.config file is used for configuring the web applications and app.config for windows applications. read more...

add a comment |category: |Views: 8

tags: another

LINQ Architecture(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 10 months ago

Language-Integrated Query (LINQ) is a new feature introduced in visual studio 2008 and .NET Framework 3.5. Developers can write the queries in the code to retrieve the data from various types of data sources like SQL,XML and XQuery. read more...

add a comment |category: |Views: 48

tags: another

SQL server 2005 Features(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 10 months ago

Development Features * CommonTableExpressions Which returns a record set in a statement. CTE can be thought of as a temporary result set which can be defined in the SELECT,INSERT,UPDATE and DELETE statements. CTE can be self-referencing and can be referenced multiple times in the same query. read more...

add a comment |category: |Views: 6

tags: another

Joins in SQL server 2005(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 10 months ago

Fundamentals of joins in SQL server By using joins, we can get the data from two or more tables based on logical condition between the tables. The two tables in a query related by * specifying a column from each table used in the join. read more...

add a comment |category: |Views: 22

tags: another

Automatically Implemented Properties Feature in C# 3.0(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 10 months ago

Introduction of Automatic Properties in C# 3.0 make property declaration more concise. It saves some of your time in typing a lot of code. Example: class Employee { public string FirstName { get; set; } } read more...

add a comment |category: |Views: 11

tags: another

Object and Collection Initializers Feature in C# 3.0(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 10 months ago

C# 3.0 introduced the another interesting feature Object and Collection initialization expressions. Object Intialization Expressions allows you to initialize an object without invoking the constructor and setting its properties. If you take Employee Class as an Example: read more...

add a comment |category: |Views: 15

tags: another

Factory method Designpattern using C#(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 10 months ago

The factory method pattern is a creational design pattern used in software development to encapsulate the process of creating the objects. Concerns: read more...

add a comment |category: |Views: 34

tags: another