Write Event Log Entry / WebService Timeout with BizTalk

The following Code (written in Expression Shapes) will write to the Event Log:
System.Diagnostics.EventLog.WriteEntry("Detail: "+System.Convert.ToString(SOAPException.Message),"");

The following Code will set a Timeout for a WebService:
WSRegistrationRequest(SOAP.ClientConnectionTimeout) = 20000;

Both Tips are out of a nice MSDN Article (BizTalk 2004 and WebServices):
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/BTS_2004WP/html/5cab05ab-6848-4f6c-8d11-9abc4dd1d1fa.asp

Deploy .NET Assembly to GAC

3 steps to deploy an assembly in the GAC:

  1. Create or locate Key File for signing: sn -k "Path to SNK File"
  2. Assign the Key to your Project (AssemblyInfo File): <Assembly: AssemblyKeyFile("Path to SNK File")>
  3. Deploy the dll: gacutil -I "Path to DLL"
     
«January»
SunMonTueWedThuFriSat
25262728293031
1234567
891011121314
15161718192021
22232425262728
2930311234