Tipps Webspace Details Tools Windows Mobile Fun Development SQL Official Sites Virtualization Slide Decks Napster Storage BizTalk Media Center Tablet PC Shopping Diverse Searching Wii Templates Live Writer Silverlight Sidebar Gadgets SOA RFID SharePoint MindMapping Oslo Dublin Windows Azure TV WCF Twitter
André Dammeyer
Dipl. Informatiker, Developer & Software Architect

homeBlogOfADamdownloadssocial webresumecontact

BlogOfADam (rss)

Contains various stuff from André Dammeyer.


BizTalk Application Tracing Tool from CAT, Thu, 02 Sep 2010 21:14:16 GMT

feedback


Google Books Reader, Wed, 25 Aug 2010 21:12:24 GMT

feedback


MS Street Slide–an amazing new way of browsing on street maps, Sun, 15 Aug 2010 19:17:03 GMT

 

feedback


Whitepaper: BizTalk Server 2010 Technical Overview, Sun, 15 Aug 2010 18:45:11 GMT

feedback


New Release 1.3 of SftpAdapter, Sun, 15 Aug 2010 18:38:27 GMT

feedback


Tip on CODit Blog: Hosting WCF HTTP receive location inside BizTalk, without using IIS, Sun, 15 Aug 2010 18:34:39 GMT

feedback


Store Data in BizTalk SSO Store from Richard Seroter, Sun, 25 Jul 2010 13:24:35 GMT

feedback


Managing BizTalk via PowerShell Provider, Sun, 25 Jul 2010 13:15:15 GMT

feedback


Free XML editor–great for editing large xml files, Thu, 15 Jul 2010 17:15:26 GMT

feedback


Interesting Patterns & Practice Article: Developing Applications for SharePoint 2010, Sun, 04 Jul 2010 17:06:08 GMT

feedback


New Entertainment Site on Bing, Sun, 27 Jun 2010 21:13:01 GMT

feedback


Windows Live Essentials beta is available, Sun, 27 Jun 2010 21:04:36 GMT

feedback


BizTalk integration with SharePoint and the Cloud Presentation from Kent Weare, Sun, 27 Jun 2010 20:29:28 GMT

feedback


6 Take-aways from Richard Seroter about Microsoft StreamInsight, Sat, 26 Jun 2010 22:05:57 GMT

feedback


Jesus Rodriguez posts: BizTalk Data Services v0.6 is here!!!!!!!, Sat, 26 Jun 2010 22:01:14 GMT

feedback


BizTalk Server 2010 Beta: BizTalk + AppFabric from Thiago Almeida, Sat, 26 Jun 2010 21:51:42 GMT

feedback


Thiago Almeida mentions a nice feature of BizTalk 2010: Backup Compression, Sat, 26 Jun 2010 21:45:43 GMT

feedback


BizTalk 2009 Best Practices collected by Paul Somers, Mon, 21 Jun 2010 21:15:34 GMT

feedback


World Cup 2010 Application for Windows Mobile, Sun, 20 Jun 2010 22:20:59 GMT

feedback


RDCMan - Remote Desktop Connection Manager, Tue, 15 Jun 2010 21:37:02 GMT

feedback


Some Words about BizTalk + AppFabric from Thiago Almeida, Tue, 15 Jun 2010 21:33:57 GMT

feedback


Fußball WM Vorbereitungen 2010, Sun, 13 Jun 2010 12:42:32 GMT

Planung

(Live)Ticker

Übertragungen

feedback


Interesting Video: Instrument your BizTalk Server, Thu, 10 Jun 2010 21:31:55 GMT

feedback


BizTalk + AppFabric, a very interesting combination for low latency scenarios, Thu, 10 Jun 2010 21:27:31 GMT

feedback


HowTo: Dynamic Loading of XAML through WCF-Service, Thu, 03 Jun 2010 23:03:21 GMT

Download VS2010-Solution.

  • Create a WCF-service with one method
    • String SubmitAndGetXaml(string commandParameter)
      • The method loads a Xaml file with the name that is specified by commandParameter from disk
  • Create a WPF-Application with a main window
    • The main window contains a ContentControl-control
  • Add a reference to the WCF-service
  • In the constructor call the SubmitAndGetXaml with a parameter that points to a Xaml-file in the WCF-service
  • Use XamlReader.Parse to parse the return value of the SubmitAndGetXaml-method
  • Assign the result of the XamlReader.Parse-method to the content-property of the ContentControl of the main window

To allow interaction within your dynamic loaded Xamls,…

  • Implement a generic button-handler with in the code-behind of the main window
  • Add "ButtonBase.Click='button_OnSubmit'" (where "button_OnSubmit" is the name of the generic button-handler) to the main window grid
  • Test if current button name is "Submit"
    • If the condition is true, call the SubmitAndGetXaml and use as parameter the CommandParameter-property of the button-object

Note: This has to be done for each type of control that needs some code-behind action.

feedback


HowTo: Access Local XML-File in a ClickOnce WPF-Application, Thu, 03 Jun 2010 22:41:17 GMT

  • Create a XML-File in the Project (i.e. "myconfiguration.xml")
  • Mark it as "Content"
  • Set "Copy to Output Directory" to "Copy always"
  • Open "Project Properties", and go to "Publish"
  • Open "Application Files…", and set "Publish Status" to "Include"
  • The you can access the file like following
    • XDocument xdoc = XDocument.Load(System.IO.Path.Combine(Environment.CurrentDirectory, "myconfiguration.xml"));

feedback


HowTo: Create a ClickOnce WPF-Application, Thu, 03 Jun 2010 22:39:18 GMT

Download as PDF.


Note: This is only a sample configuration of a ClickOnce WPF-Application. There are several other settings that might be interesting to study!

clip_image001

  • Go to "Project Properties-->Signing"
    • "Create Test Certificate…"

clip_image002

  • "More Details…"
    • And install the certificate

clip_image003

  • Go to "Security"-tab
    • Check "Enable ClickOnce security settings"
      • Choose "This is a full trust application"

clip_image004

  • Go to "Publish"-tab
    • Enter a "Publish Location", i.e. an IIS application folder

clip_image005

  • At "Install Mode and Settings", choose "The application is available offline as well"
  • Go to "Updates..."
    • Check "The application should check for updates"
      • Here choose "Before the application starts"

clip_image006

  • Go to "Options…"
    • Fill in some information, i.e. like the following

clip_image007

clip_image008

  • Define a ".htm"-page and check "Automatically generate deployment web page after every publish

clip_image009

feedback


See some Videos & Feedback Links for BizTalk Server 2010 in the “BizTalk Server Team Blog”, Thu, 03 Jun 2010 16:56:53 GMT

feedback


Interestin Stuff about Large Message Transfer with WCF-Adapters from Paolo Salvatori, Sat, 29 May 2010 22:00:26 GMT

a good summary of howto deal with large messages in general and especially with WCF…

feedback


Walkthrough: Consume an ASP.NET WebService with BizTalk WCF Adapter, Wed, 26 May 2010 21:30:34 GMT

Download as PDF.

Preparation

  • Create a ASP.NET Webservice with the following interface

[WebMethod]

public BusinessObject GetBusinessObject(long id)

{

  BusinessObject bo = new BusinessObject() { name = "test", credit = 10 };

  return bo;

}

[WebMethod]

public string Echo(string val)

{

  return val;

}

With BusinessObject is

public class BusinessObject

{

  public string name;

  public int credit;

}

Visual Studio Tasks

  • Create an Empty BizTalk Project (ConsumeWebService.Schemas)
    • clip_image001
  • Right-click on the project and choose "Add Generated Items..."
    • clip_image002
  • Choose "Consume WCF Service"
    • clip_image003
  • The BizTalk WCF Service Consuming Wizard starts
    • clip_image004
  • clip_image005
  • clip_image006
    • Paste in the URL with "?WSDL"
  • clip_image007
  • clip_image008
  • Now the project should look like the following
    • clip_image009
  • Interesting is the schema "Service1_tempuri_org.xsd". It contains the schema for the request and response of the two webmethods of our webservice
    • clip_image010

BizTalk Administrator Tasks

  • For testing purpose we create a BizTalk Application called "ConsumeWebserviceApplication"
    • clip_image011
  • Create a Receive Port within the application
    • clip_image012
  • Create a Receive Location for the Receive Port
    • clip_image013
  • Import the Binding for the WebService
    • clip_image014
  • clip_image015
  • Now you should have two more Send Ports
    • clip_image016
  • Open the properties of "WcfSendPort_Service1_Service1Soap" and go to its Filters. Set the Filter to our Receive Port name "RcvPort"
    • clip_image017
  • Change the SOAP Action Header of the Send Port "WcfSendPort_Service1_Service1Soap"
  • Create another new Send Port "SndPort/FILE"
    • clip_image019
    • Set its Filters as following
      • clip_image020

Testing

  • Create a Instance of the schema "Service1_tempuri_org.xsd" for the method "GetBusinessObject"

<ns0:GetBusinessObject xmlns:ns0="http://tempuri.org/">

<ns0:id>10</ns0:id>

</ns0:GetBusinessObject>

  • Start the BizTalk Application "ConsumeWebserviceApplication"
  • Copy it to the folder, that is observed by the Receive Location "RcvLoc/FILE"
  • As a result you should get a output file in the output path to which the Send Port "SndPort/FILE" is configured. The xml is the result of the web service method call to GetBusinessObject

<GetBusinessObjectResponse xmlns="http://tempuri.org/"><GetBusinessObjectResult><name>test</name><credit>10</credit></GetBusinessObjectResult></GetBusinessObjectResponse>

feedback


Walkthrough: SQL Debatching in BizTalk (with WCF-SQL), Wed, 26 May 2010 21:23:21 GMT

Download as PDF

Tasks in SQL Management Studio

  • Create a database "DebatchingSampleDb"
    • clip_image001
  • Create a new table "tblData" in "DebatchingSampleDb"
    • clip_image002
  • Create a new stored procedure "SpCountData" in "DebatchingSampleDb"
    • clip_image003
  • Create a new stored procedure "SpGetData" in "DebatchingSampleDb"
    • clip_image004

Tasks in Visual Studio

  • Create a Visual Studio Project for later created schemas
    • clip_image005
    • Make it strong named!
      • clip_image006
  • "Add Generated Items" to the project
    • Either "Add Adapter Metadata" or "ConsumeAdapterService"
      • clip_image007
  • clip_image008
  • "Configure URI" in the dialog "Consume Adapter Service"
    • Go to the "URI Properties"
      • clip_image009
        • Fill the "Server" (of the database), the "InitialCatalog" (the name of the database) and an unique "InboundId" (can be anything!)
    • Go to the "Binding Properties"
      • clip_image010
        • InboundOpertationType = "TypedPolling"
        • PollingDataAvailableData = "EXEC SpCountData"
        • PollingStatement = "EXEC SpGetData"
    • Accept your changes with "OK"
  • Press "Connect" in the dialog "Consume Adapter Service"
    • clip_image011
      1. "Select Contract Type" to "Service (inbound operations)"
      2. Press "Select a category"
      3. Choose "TypedPolling"
      4. Press "Add"
      5. Filename Prefix = "DebatchingSample"
      6. Press "OK"
  • As a result you should have a Visual Studio Project that looks like the following
    • clip_image012
  • Delete the "BizTalk Orchestration.odx"

Tasks in BizTalk Administration Console

  • Create a new BizTalk Application "DebatchSampleApplication"
    • clip_image013
  • Create a new Receive Port "RcvPort/DebatchingSample"
    • clip_image014
  • clip_image015
  • Create a Receive Location "RcvLoc/DebatchingSample/SQL" under the Receive Port "RcvPort/DebatchingSample"
    • clip_image016
      • Select Type = "WCF-Custom"
      • Select Receive Pipeline "XmlReceive"
    • Press "Configure" the WCF-Custom
      • Configure "General"
        • clip_image017
        • Adress (URI) = "mssql://WIN-NQDUPNWZVQ4//DebatchingSampleDb?InboundId=DebatchingSampleDb
          • Note: WIN-NQDUPNWZVQ4 is the servername of the db!
          • Note: Important is that the value of the InboundId matches with the value we specified in the "Consume Adapter Service" dialog!
      • Configure Binding
        • clip_image018
        • Select "sqlBinding"
        • InboundOpertationType = "TypedPolling"
        • PollingDataAvailableData = "EXEC SpCountData"
        • PollingStatement = "EXEC SpGetData"
      • Apply the changes with "OK"
    • Apply the Receive Location settings with "OK"
  • Create a Static One-way Send Port "SndPort/DebatchingSample"
    • clip_image019
    • Configure "General" of the Send Port as "FILE" with a "PassThruTransmit"
      • clip_image020
    • Configure the "Filters"
      • clip_image021
        • Bts.ReceivePort == RcvPort/DebatchingSample

Tasks in Visual Studio

  • Configure "Deployment" of the project "DebatchingSamle.Schemas" to deploy to the "DebatchingSampleApplication"
    • clip_image022
  • Deploy the project

Testing the solution

  • Insert two rows into the DebatchingSampleDb.tblData
    • clip_image023
  • Start the BizTalk Application "DebatchingSampleApplication"
    • clip_image024
  • Result: There should be one file in the output folder

Tasks in Visual Studio (Changes for debatching!)

  • Set "Envelope" to "yes" in the schema "DebatchingSample_DebatchingSampleDb.xsd"
    • clip_image025
  • Set the body-node
    • clip_image026
  • Set ist child node to "Max occurs = 1"

clip_image027

  • Redeploy the schema!

ReTesting the solution

  • Insert two rows into the DebatchingSampleDb.tblData
    1. clip_image023[1]
  • Start the BizTalk Application "DebatchingSampleApplication"
    • clip_image024[1]
  • Result: There should be two files in the output folder

feedback


New BizTalk Documenter – Release - v3.4.0.0, Mon, 24 May 2010 17:16:25 GMT

feedback


Interesting stuff about Windows Azure from Steve Marx – Windows Azure Drive, Mon, 17 May 2010 20:41:30 GMT

feedback


Mobile Services of Deutsche Post, Sun, 16 May 2010 21:55:00 GMT

feedback


Some very good articles about Windows Server 2008, especially Hyper-V, Sat, 15 May 2010 13:43:31 GMT

feedback


Office Mobile 2010 in Marketplace, Sat, 15 May 2010 13:10:49 GMT

download Office Mobile to your windows mobile 6.5 device from here.

feedback


Cool Video about PowerPoint Streaming on Different Devices, Sat, 15 May 2010 13:04:30 GMT

 

feedback


SQL Azure Quick Links in SQL Azure Team Blog, Sat, 15 May 2010 12:37:12 GMT

feedback


SharePoint 2010 Virtual Machine (RTM) for download, Thu, 13 May 2010 13:13:17 GMT

feedback


Whitepaper Comparing SQL Azure vs. SQL Server, Thu, 13 May 2010 12:55:03 GMT

feedback


Notepad++ Helper, Mon, 10 May 2010 22:14:36 GMT

A list can be found at http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_Central .

Helpers that I have tested:

feedback


Cool trick to map a local drive letter to a SkyDrive folder without third party software, Sun, 09 May 2010 15:34:22 GMT

feedback


Waiting for Windows Live Wave 4 because of the ability to store OneNote notebooks in SkyDrive, Sun, 09 May 2010 15:25:29 GMT

feedback


Twitter + Email = TweetByMail, Sun, 09 May 2010 15:05:21 GMT

a cool service for everyone that has most time only access to email:

feedback


Microsoft SQL Azure FAQ is available as Word document, Sun, 09 May 2010 14:52:03 GMT

feedback


Public BizTalk Server 2010 Installation Documentation, Sun, 09 May 2010 13:11:15 GMT

feedback


How to install BAM Portal on a 64-Bit environment, Sun, 09 May 2010 12:57:56 GMT

Because i just tapped into this known issue while configuring my BizTalk 2010 environment, i add a link to the article that describes what to do in this case:

feedback


Producer for PowerPoint, Sat, 08 May 2010 14:34:43 GMT

Producer for PowerPoint for Office 2003 – 2010.

feedback


Disabling Itinerary Encryption in ESB Toolkit 2.0 (from Peter Kelcey), Sat, 01 May 2010 15:13:55 GMT

Peter Kelcey descirbes how to disable the intinerary encryption feature of ESB Toolkit 2.0 to be able to export models without encryption. This is obvisously only a good idea on a dev machine, or if your intineraries do not contain any sensible information.

Connected Systems in the Great White North : Disabling Itinerary Encryption in the ESB Toolkit 2.0

 

In short terms:

  1. open “C:\Program Files\Microsoft BizTalk ESB Toolkit 2.0\Tools\Itinerary Designer\ruleset.config”, i.e. in Visual Studio
  2. search for <property name="EncryptionCertificate">
  3. comment its “validator”-subnode, that contains a validator type of “Microsoft.Practices.Modeling.Validation.X509CertificateContainerValidator”.

Be sure to restart Visual Studio, because it has to reload the ruleset.config!

feedback


AeroZoom for Windows 7 Magnifier makes a presentation mouse, Fri, 30 Apr 2010 19:50:06 GMT

feedback


Erstes Deutsches BizTalk Server Forum, Thu, 29 Apr 2010 19:43:50 GMT

feedback


feedling – a feed reader that displays its items on the desktop, Mon, 26 Apr 2010 22:03:10 GMT

feedback


Windows Phone 7 Office Video on YouTube, Mon, 26 Apr 2010 21:51:52 GMT

 

feedback


Free ebook - Introducing Microsoft SQL Server 2008 R2, Sun, 25 Apr 2010 22:03:34 GMT

feedback


LINQPad – a tool to create LINQ Queries, Sun, 25 Apr 2010 21:49:20 GMT

feedback


Xobni now supports Office 2010 32/64-bit, Sun, 25 Apr 2010 12:38:51 GMT

feedback


Infos about Upgrading from SharePoint 2010 Beta 2 to RTM from Mick Breeze, Sun, 25 Apr 2010 12:24:54 GMT

feedback


Microsoft offers for all Facebookers an Office App for creating and sharing Documents, Sun, 25 Apr 2010 12:14:43 GMT

feedback


Thiago Almeida about using EPM Transactions within Pipeline Components, Wed, 14 Apr 2010 22:16:38 GMT

Often it is necessary i.e. to archive all incoming messages within a recieve location, and only if the transaction into the message box is commited. Thiago Almeida is describing this in his blog entry:

feedback


ESB Toolkit 2.0 Architecture Poster Download, Wed, 14 Apr 2010 22:11:13 GMT

The poster is available here.

feedback


Richard Seroter points out to a paper about Testing Service Oriented Solutions, Wed, 14 Apr 2010 22:06:42 GMT

Interesting stuff, did not read the complete paper but Richard’s summary

feedback


Info about getting WinDBG, Wed, 14 Apr 2010 22:01:36 GMT

feedback


Mentioning again CloudCasts - Webcasts, Wed, 14 Apr 2010 21:56:09 GMT

Just because I read a blog entry about some new ‘BizTalk Light and Easy’ webcasts, again I want to note that CloudCasts is a great webcast portal!

feedback


MVP 2010 for BizTalk Server, Thu, 01 Apr 2010 17:34:43 GMT

Great news just before my holiday! I just received a mail from Microsoft. I am very proud to be again a Microsoft Most Valuable Professional for BizTalk Server.

This gives me again the possibility to get latest stuff about Microsoft server products, especially BizTalk Server.

feedback


BizTalk 2009 R2 is now BizTalk 2010, Wed, 31 Mar 2010 20:08:09 GMT

I know that I am a bit late with this blog entry, but for completeness I want to mention this info.

I am just playing with the CTP Bits and it I think the renaming makes sense!

feedback


Windows Phone Development, Sat, 20 Mar 2010 15:20:31 GMT

feedback


Some infos about BizTalk 2009 R2, Thu, 18 Mar 2010 21:38:20 GMT

Like Paul Somers I had my fingers also on the latest BizTalk 2009 R2 bits, and I agree with Paul that BizTalk 2009 R2 goes a good step further in the right direction.

feedback


A very good ESB Toolkit introduction from Jon Flanders, Thu, 18 Mar 2010 21:30:12 GMT

feedback


Interesting blog about reasons to move to BizTalk Server 2009 R2, Mon, 08 Mar 2010 09:13:36 GMT

Reasons for moving from BizTalk Server 2006 to BizTalk Server 2009 R2.

feedback


BizTalk ESB Toolkit Core Components and Examples from Jon Flanders, Sun, 07 Mar 2010 00:54:15 GMT

feedback


Document about using BizTalk Server to integrate SAP, Sun, 07 Mar 2010 00:52:35 GMT

feedback


What do you suggest? – interesting search routes, Sun, 07 Mar 2010 00:46:28 GMT

feedback


Sinn und Unsinn der Windows Communication Foundation – Artikel von Holger Schwichtenberg, Sat, 27 Feb 2010 10:06:20 GMT

 

heise Developer - 22.02.2010 14:05 - Sinn und Unsinn der Windows Communication Foundation

feedback


Problems with VMware USB Arbitration Service and suspend mode, Sat, 20 Feb 2010 15:51:10 GMT

I am running Windows 7 x64 on a HP EliteBook 8530p. After installing latest VMWare Player (3.0.1) on the machine i got heavy issues after start from suspend mode. Sometimes the os hangs when suspending, and somtimes my usb or bluetooth hardware was not working anymore.

The only solution i found after many trial error sessions was to disable the service “VMware USB Arbitration Service” in the service control manager. That’s ok for me as a workaround, but clearly not acceptable.

But my hope is that Microsoft will support x64 OS’s with Windows Virtual PC.

feedback


Windows Phone 7, Mon, 15 Feb 2010 23:05:39 GMT

just demoed on MWC, here is some more stuff about Windows Phone 7:

feedback


SharePoint 2010 on Windows Server 2008 R2 Issue (5048), Mon, 15 Feb 2010 23:04:23 GMT

The Installation of my standalone SharePoint 2010 on Windows Server 2008 R2 was really straight forward until running the SharePoint Configuration Wizard. I got the following error after running the SharePoint Configuration Wizard:

Log Name:      System
Source:        Microsoft-Windows-WAS
Date:          15.02.2010 13:55:18
Event ID:      5048
Task Category: None
Level:         Warning
Keywords:      Classic
User:          N/A
Computer:      WIN2K8R2-ADAM
Description:
The application '/_vti_bin/sts' belonging to site '1650856093' has an invalid AppPoolId 'SecurityTokenServiceApplicationPool' set.  Therefore, the application will be ignored.
Event Xml:
<Event xmlns="
http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Microsoft-Windows-WAS" Guid="{524B5D04-133C-4A62-8362-64E8EDB9CE40}" EventSourceName="WAS" />
    <EventID Qualifiers="32768">5048</EventID>
    <Version>0</Version>
    <Level>3</Level>
    <Task>0</Task>
    <Opcode>0</Opcode>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2010-02-15T21:55:18.000000000Z" />
    <EventRecordID>2734</EventRecordID>
    <Correlation />
    <Execution ProcessID="0" ThreadID="0" />
    <Channel>System</Channel>
    <Computer>WIN2K8R2-ADAM</Computer>
    <Security />
  </System>
  <EventData>
    <Data Name="Application">1650856093</Data>
    <Data Name="SiteID">/_vti_bin/sts</Data>
    <Data Name="AppPoolID">SecurityTokenServiceApplicationPool</Data>
  </EventData>
</Event>

The solution was to install the hotfix for WCF 3.5 for Windows Server 2008 R2.

feedback


Monitoring BizTalk Server with HP OpenView, Sat, 13 Feb 2010 14:50:57 GMT

A whitepaper about monitoring BizTalk Server Solutions with HP OpenView

feedback


Consolidated BizTalk blogs, Sat, 13 Feb 2010 14:37:09 GMT

feedback


Google Buzz in Deutschland verfügbar, Wed, 10 Feb 2010 22:00:51 GMT

Neu! Google Buzz in Google Mail

feedback


PDF Thumbnails und Preview für 64 Bit Windows, Mon, 08 Feb 2010 22:44:05 GMT

 

WindowsBlog.at | PDF Thumbnails und Preview für 64 Bit Windows

feedback


Developing a Streaming Pipeline Component for BizTalk Server, Mon, 08 Feb 2010 22:26:51 GMT

feedback


BizTalk Documenter v3.3 released, Tue, 02 Feb 2010 21:31:29 GMT

look at Santosh Benjamin’s Weblog for more details

or download the BizTalk Documenter v3.3 at Codeplex.

For me the most interesting new feature is the “Word” output (seems to be longer available, but I did not know).

feedback


Interesting stuff about Optimizing XML Queries in SQL Server from Eric Stott, Tue, 02 Feb 2010 21:21:39 GMT

feedback


Adressen von der Deutsche Post, Tue, 02 Feb 2010 21:13:01 GMT

feedback


Useful DOS Batch functions, Mon, 01 Feb 2010 22:32:37 GMT

feedback


MobiPDFScanner - images to PDF on windows phone, Mon, 01 Feb 2010 22:13:29 GMT

feedback


Oh, it seems to be possible to run android on my htc touch pro 2, Sat, 30 Jan 2010 13:59:46 GMT

feedback


BizTalk Server 2006 R2 SP1 is available for download, Sat, 30 Jan 2010 13:45:04 GMT

Download details: BizTalk Server 2006 R2 SP1

feedback


Airfoil for Windows: cool remote sound software, Sat, 30 Jan 2010 13:34:02 GMT

I was searching for a solution to play music from my notebook/tablet via my media center pc on my hifi sound system. And this software seems to work quite well:

feedback


Hotfix for VS issues with BizTalk 2009 available, Thu, 28 Jan 2010 20:01:58 GMT

feedback


Very interesting infos about BizTalk Hosts from Yossi Dahan, Tue, 26 Jan 2010 21:23:02 GMT

Yossi Dahan talks about hosts and their internal management in BizTalk (i.e. each host has its own queue in the message box) and the consequences. Really very interesting!

feedback


BizTalk Benchmark Wizard, Tue, 26 Jan 2010 21:15:09 GMT

It is a tool that shows you if your BizTalk installation is performing well or not!

feedback


Videos about Windows Azure, Thu, 21 Jan 2010 22:26:16 GMT

  1. Whiteboard Video 1 of 4: What is the Windows Azure Platform?
  2. Whiteboard Video 2 of 4: What is Windows Azure?
  3. Whiteboard Video 3 of 4: What is SQL Azure?
  4. Whiteboard Video 4 of 4: What is the Access Control Service and the Service Bus?

feedback


New Version of NMap, Thu, 21 Jan 2010 21:51:22 GMT

security scanner nmap 5.20

feedback


New Marketplace alternative OpnMarket, Mon, 18 Jan 2010 18:19:32 GMT

feedback


nanoGroove, another Windows Mobile Client for GrooveShark, Sun, 17 Jan 2010 20:35:50 GMT

http://www.nanogroove.net/

feedback


Cool Collection of BizTalk Test Stuff, Wed, 13 Jan 2010 22:01:38 GMT

BizTalk Test Guide

feedback


SQL Azure North Europe Data Center is Online, Wed, 13 Jan 2010 21:26:06 GMT

since 8th of january the data center in Dublin is online.

feedback


Download My BizTalk 2009 Visio Shapes, Mon, 11 Jan 2010 21:25:16 GMT

It is always the same issue, you have to illustrate a BizTalk solution and you need always the same shapes. So some time ago I started to collect some nice shapes for illustrating BizTalk solutions.

If you need some space-saving BizTalk Visio Shapes, then try my BizTalk 2006 Shapes. But if you need some shapes that are also suitable for PowerPoint presentations, then try my new BizTalk 2009 Shapes. My way to use these shapes is to create a visio drawing to illustrate the solution. And then I copy the drawing to the resulting PowerPoint presentation.

feedback


Disabling Time Synchronization under Virtual PC, Wed, 06 Jan 2010 21:30:17 GMT

In Virtual PC 2007, Virtual Server and Windows Virtual PC per default the time is synchronized with the host time every 15 seconds. If you have to manipulate the time of a virtual system (for example for testing purposes), then you can change the time synch settings within the VMC-file of your virtual system. For details look at the excellent blog entry in Virtual PC Guy's WebLog : Disabling Time Synchronization under Virtual PC 2007 .

feedback


Copyright © 2009 by André Dammeyer.