.NET news » Search results

Search results for query "wcf" (35):

WCF Client Server Application with Custom Authentication, Authorization, Encryption and Compression – Part 2

HTTP - No IIS; Authentication - No SSL/X509 Certificate; Encryption - RSA+AES for Request, AES for Response; Compression - GZip for both Request/Response.
2011-03-08 07:24:00   Source: WCF Client Server Application with...   Tags: Internet

WCF Client Server Application with Custom Authentication, Authorization, Encryption and Compression - Part 1

HTTP - No IIS; Authentication - No SSL/X509 Certificate; Encryption - RSA+AES for Request, AES for Response; Compression - GZip for both Request/Response.
2011-03-08 06:53:00   Source: WCF Client Server Application with...   Tags: Internet

A Sample Silverlight 4 Application Using MEF, MVVM, and WCF RIA Services - Part 2

Part 2 of a series describing the creation of a Silverlight business application using MEF, MVVM Light, and WCF RIA Services. In this second part, we will go through various topics on how MVVM Light Toolkit is used in our sample application.

WCF Killer

Simple high performance drop-in TCP protocol handler for client server communications with POCO objects and no messy proxy classes like WCF.
2011-02-12 02:38:00   Source: WCF Killer   Tags: Performance

Service Bus Architecture based on WCF (3): build your ESB

Service Bus Architecture based on WCF (3): build your ESB
2011-02-10 00:33:00   Source: Service Bus Architecture based on   Tags: Build

Crossing WCF boundaries with a configuration-less dynamic self-adaptive ORM library

An extension to the KyneticORM library that permits seamless database operation in WCF scenarios
2011-01-28 19:58:00   Source: Crossing WCF boundaries with a...   Tags: Database

Quick ways to boost performance and scalability of ASP.NET, WCF and Desktop Clients

There are some simple configuration changes that you can make on machine.config and IIS to give your web applications significant performance boost. These are simple harmless changes but makes a lot of difference in terms of scalability.
2010-12-06 14:50:00   Source: Quick ways to boost performance and scalability of...   Tags: ASP.NET

A Sample Silverlight 4 Application Using MEF, MVVM, and WCF RIA Services - Part 1

Part 1 of a series describing creation of a Silverlight business application using MEF, MVVM Light, and WCF RIA Services

WCF by Example - Chapter XI - NHibernate Implementation

Unit of work pattern on NHibernate using repositories
2010-11-24 08:12:00   Source: WCF by Example - Chapter XI -...   Tags: Examples

Updating My Online Boggle Solver Using jQuery Templates and WCF

With WebForms, each ASP.NET page's rendered output includes a <form> element that performs a postback to the same page whenever a Button control within the form is clicked, or whenever the user modifies a control whose AutoPostBack property is set to True. This model simplifies web page development, but carries with it some costs - namely, the large amount of data exchanged between the client and the server during a postback. On postback the browser sends the values of all of its form fields (including hidden ones, like view state, which may be quite large) to the server; the server then sends back the entire contents of the web page. While there are some scenarios where this amount of information needs to be exchanged, in many cases the user has performed some action that requires far less information to be exchanged. With a little bit of forethought and code we can have the browser and server exchange much less data, which leads to more responsive web pages and an improved user experience.

Over the past several weeks I've been writing an article series on accessing server-side data from client script. Rather than rely solely on forms and postbacks, many websites use JavaScript code to asynchronously communicate with the server in response to the page loading or some other user action. The server, upon receiving the JavaScript-initiated request, returns just the data needed by the browser, which the browser then seamlessly integrates into the web page. There are a variety of technologies and techniques that can be employed to provide both the needed server- and client-side functionality. Last week's article, Using WCF Services with jQuery and the ASP.NET Ajax Library, explored using the Windows Communication Foundation, or WCF, to serve data from the web server and showed how to consume such a service using both the ASP.NET Ajax Library and jQuery.

In a previous 4Guys article, Creating an Online Boggle Solver, I built an application to find all solutions in a game of Boggle. (Boggle is a word game trademarked by Parker Brothers and Hasbro that involves several players trying to find as many words as they can in a 4x4 grid of letters.) This article takes the lessons learned in Using WCF Services with jQuery and the ASP.NET Ajax Library and uses them to update the user interface for my online Boggle solver, replacing the existing WebForms-based user interface with a more modern and responsive interface. I also used jQuery Templates, a JavaScript-based templating library that is useful for displaying the results from a server-side service.

2010-11-23 18:00:00   Source: Updating My Online Boggle Solver Using jQuery Templates...   Tags: Other