Thursday, December 15, 2005

How to produce a podcast

Very simple... It is an RSS 2.0 feed with one or more MP3 attachments.

http://audiofeeds.org/tutorial.php

Friday, December 09, 2005

XSLT

This site has some great info on sample code for XSLT
http://www.topxml.com/xsltStylesheets/xslt_extension_functions.asp

Securing your site

We know that the simplest way to secure your site is with a security certificate from Verisign or GoDaddy, but how do you do it? can you make your own certificates?

Here is the simplest set of instructions that I have seen:
http://www.soltrus.com/english/install/ms_v6.html

Also, Windows 2003, Std and Adv, come with certificate servers. So now you can secure your site with your own certificates. Just don't try to rename your server or it's domain, or else you will have to start all over.

Monday, December 05, 2005

Webservice Authentication Made Simple

< system.web.services.webservice(description:="authentication
Name:="AD", _
Namespace:=http://Tempuri.org/AD/AD) > _
Public Class VPO
Inherits System.Web.Services.WebService

#Region " Web Services Designer Generated Code "

'Implimentation of the Header Class
Public Authentication As AuthHeader

'The soapheader attribute tells the interface what to do.
< system.web.services.webservice(description:="authentication
CacheDuration:=0, _
Description:="Test Interface with Return", _
EnableSession:=False, _
MessageName:="TestReturn"), _
SoapHeader("Authentication") > _
Public Function HelloWorld() As String
Return "Hello World: " & Authentication.VerndorID.ToString
End Function
End Class

'This is the class that defines what is being passed in the authentication
Public Class AuthHeader
Inherits SoapHeader
Public VerndorID As Guid
End Class