Tuesday, August 30, 2005

Free Applications by Paul Helter from LORESOFT

Free Applications
SourceTracker
The SourceTracker project is a web service wrapper for the Visual Source Safe client. Project work will include web service, web client, GUI client and Visual Studio integration. Coming Soon ...


WebUI
The Web UI library is a collection of asp.net web controls. The first control in this series if a web menu.

CodeAssistant

CodeAssistant

Versioning messages in WebServices using XmlSerializer (was One parameter to rule them all)

Versioning messages in WebServices using XmlSerializer (was One parameter to rule them all)

Loosely Coupled--The Missing Pieces of Web Services

Loosely Coupled--The Missing Pieces of Web Services: "Loosely Coupled:
The Missing Pieces of Web Services
by Doug Kaye

Read reviews on Amazon.com
Read other reviews
Contents and Introduction (free download: 508k PDF)
Download chapters, parts, or the entire book

With its focus on the advanced topics of web services"

Manage message contract changes with versioning

Manage message contract changes with versioning

Monday, August 29, 2005

ASP.NET QuickStart Tutorial

ASP.NET QuickStart Tutorial

Microsoft QuickStart Tutorials

Microsoft QuickStart Tutorials

Sunday, August 28, 2005

Microsoft Web Services DevChannel

Microsoft Web Services DevChannel: "Write Secure Web Services
by Vijay Mehta
Getting Web services and binary attachments to work together is difficult when implementing security initiatives. In this article, you'll learn how to use Web Services Enhancements (WSE) 3.0 with Visual Studio 2005 to secure your Web Services and send binary data out of the box. "

start.com - ajax example site from MS

start.com

FTPOnline - VSLive! Orlando 2004 - Best Practices for SOA

FTPOnline - VSLive! Orlando 2004 - Best Practices for SOA: "

Welcome Guest!
Create Account | Login Locator+ Code:

Search: All VSM/VBPJ Java Pro WSSM XML

FTPOnlineChannelsConferencesResourcesHot TopicsPartner SitesMagazinesAbout FTP


Free Trial Issue of Visual Studio Magazine




email article
printer friendly


Best Practices for SOA
Microsoft's John deVadoss explores SOA design challenges and best practices.
VSLive! Orlando, "

Saturday, August 27, 2005

ASPNET articles many -FTPOnline - ASP.NET

FTPOnline - ASP.NET: "ASP.NET
Our expert contributors from FTPOnline and Visual Studio Magazine give you the scoop on what ASP.NET features matter, as well as practical, how-to articles on developing and debugging Web apps, extracting performance data, using page templates, and more. Check back for regular updates. "

Principles of Service Design: Service Patterns and Anti-Patterns

Summary: This paper, the first of a multi-paper series, provides some fundamental principles for designing and implementing Web services. The paper starts with a brief review of SOA concepts and leads up to a detailed discussion of several patterns and anti-patterns that developers can leverage when building Web services today. Guidance in this paper is applicable to any programming language or platform for which Web services can be developed and deployed. (18 printed pages)

1. Principles of Service Design: Document Centric Pattern.

2. Principles of Service Design: Idempotent Pattern.

3. Principles of Service Design: Reservation Pattern.

4. WSI Compliance

Friday, August 26, 2005

ESB and SOA Technology

ESB and SOA Technology

Wednesday, August 24, 2005

Virtual Earth and Google Maps, side-by-side

Virtual Earth and Google Maps, side-by-side

Tuesday, August 23, 2005

Design Strategies for Web Services Versioning @ SOA WEB SERVICES JOURNAL

Design Strategies for Web Services Versioning @ SOA WEB SERVICES JOURNAL: "A robust versioning strategy is needed to support multiple versions of Web services in development. This can allow for upgrades and improvements to be made to a Web service, while continuously supporting previously released versions. The right versioning strategy can maximize code reuse and provide a more manageable approach to the naming, deployment, and maintenance of your Web services.
The issue of versioning is a complicated one, and this article does not "

Web Services Architect : Articles : Versioning of Web Services

Web Services Architect : Articles : Versioning of Web Services

How do we maintain different versions of Web Services for different customers? In this article, we will define the common problem of versioning and attempt to find some solutions with respect to Web Services.

Monday, August 22, 2005

How to Export Crystal Report in ASP.NET

How to Export Crystal Report in ASP.NET

public class WebForm1 : System.Web.UI.Page
{
protected CrystalDecisions.Web.CrystalReportViewer CrystalReportViewer1;
protected System.Web.UI.WebControls.Button Button1;
private CrystalReport1 report = new CrystalReport1();

private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
CrystalReportViewer1.ReportSource = report;
CrystalReportViewer1.Visible = true;
}
…….

Now, all we need to do is to add the event handler for the export button and the code should look like this.

private void Button1_Click(object sender, System.EventArgs e)
{
MemoryStream oStream; // using System.IO

oStream = (MemoryStream)
report.ExportToStream(
CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
Response.Clear();
Response.Buffer= true;
Response.ContentType = "application/pdf";
Response.BinaryWrite(oStream.ToArray());
Response.End();
}

ASPNETWorld.com - ASP.NET Resource Portal and Store

ASPNETWorld.com - ASP.NET Resource Portal and Store

Service Orientation Patterns: Home

Service Orientation Patterns: Home

Yoel's Microsoft Message Queue (MSMQ) space

Yoel's Microsoft Message Queue (MSMQ) space

Tips for a successful MSMQ-enabled application

Tips for a successful MSMQ-enabled application

Sunday, August 21, 2005

How To, The Tutorial List Great How To list from ASPNetWorld.com

http://weblogs.asp.net/Varad/archive/2005/08/21/423177.aspx

Saturday, August 20, 2005

Enabling Roles in ASP.NET v2.0

Enabling Roles in ASP.NET v2.0

Thursday, August 18, 2005

ASP.NET 2.0 QuickStart Tutorial - Developer Fusion, the UK Developer Community

http://quickstart.developerfusion.co.uk/QuickStart

Tuesday, August 16, 2005

Service Orientation Patterns: Home

Service Orientation Patterns: Home

Architecture patterns DB for Enterprise

Architecture patterns DB

Web Services and other distributed technologies: System.Messaging Performance

Web Services and other distributed technologies: System.Messaging Performance

Web Services and other distributed technologies: Performance of ASP.NET Web Services, Enterprise Services, and .NET Remoting

Web Services and other distributed technologies: Performance of ASP.NET Web Services, Enterprise Services, and .NET Remoting

Web Services and other distributed technologies: Performance of ASP.NET Web Services, Enterprise Services, and .NET Remoting

Web Services and other distributed technologies: Performance of ASP.NET Web Services, Enterprise Services, and .NET Remoting

Wednesday, August 10, 2005

Visual Basic Developer Center: Free Book - Introducing Visual Basic 2005 for Developers

Visual Basic Developer Center: Free Book - Introducing Visual Basic 2005 for Developers

Sunday, August 07, 2005

Web.Config Template Reference

Web.Config Template Reference

Friday, August 05, 2005

Portal Seminar Virtual Class E-learning Dan Wahlin videos

Portal Seminar

Thursday, August 04, 2005

Cetus Links:18,193 Links on Objects and Components

Cetus Links:18,193 Links on Objects and Components

Wednesday, August 03, 2005

OraDirect .NET - ADO .NET provider for Oracle

OraDirect .NET - ADO .NET provider for Oracle

Ajax using XMLHttpRequest and Struts

Ajax using XMLHttpRequest and Struts

Tuesday, August 02, 2005

forgetfoo. - just play with it.

forgetfoo. - just play with it.

Monday, August 01, 2005

Visual Studio Magazine � Databind to Office Apps With Web Services

Visual Studio Magazine � Databind to Office Apps With Web Services

Wallace B. McClure - AJAX tons of links

Wallace B. McClure - AJAX