Running Silverlight webparts in Sharepoint

18. January 2010

This guide, although for silverlight 1.0, illustrates how to create a sharepoint webpart running silverlight

http://www.codeproject.com/KB/sharepoint/MOSS4Devs-05-Silverlight.aspx


Michael Høtoft  

Sharepoint Server

Sharepoint Debugging

15. January 2010

Enabling sharepoint debugging errors :

 

<configuration>

  <SharePoint>

    <SafeMode CallStack="true" />

  </SharePoint>

  <system.web>

    <customErrors mode="Off" />

    <compilation debug="true" />

  </system.web>

</configuration>

 


Michael Høtoft  

Sharepoint Server

BizTalk 2009R2 overview

13. January 2010

What we can expect in the planned BizTalk 2009R2 version :

BizTalk Server 2009 R2

BizTalk Server 2009 R2 is planned for 2010 and will include:

Support for new Platform releases:

  • Visual Studio 2010

  • SQL Server 2008 R2

  • Windows Server 2008 R2

Improved Business to Business(B2B) scenarios

  • Mapper Enhancements: Mapper Enhancement includes enhanced visualization, scrolling and search capabilities.

  • FPTS adapter: a secure and standards-based adapter allows exchanging documents between trading partners using the FTP protocol.

  • Updated B2B Accelerators

Productivity Enhancements

  • Performance tuning dashboard.

  • Improved support for event processing and filtering for RFID Events.

  • Support PowerShell for Management tasks.

  • New SCOM object model to better reflect BizTalk artifacts.

Beyond BizTalk Server 2009 R2

In the releases beyond 2009 R2, BizTalk Server will continue to be Microsoft’s Integration Server, further facilitating the implementation of solutions such as Enterprise Application Integration (EAI), Enterprise Service Bus (ESB) and Business to Business (B2B) Integration. Efficiently managing large scale deployments and ensuring business continuity for mission-critical workloads is going to continue to be crucial for EAI, ESB and B2B solutions. We are committed to continue innovating and enhancing the application development and lifecycle management experience of integration solutions with BizTalk Server. For future releases beyond BizTalk Server 2009 R2, we are planning to invest in the following main areas:

  • Deep Microsoft Application Platform Alignment

    Leveraging innovations in the platform including in .NET and in the Windows Server AppFabric to further enhance BizTalk Server’s enterprise-readiness by simplifying development, scalability, deployment and management capabilities.

  • Enterprise Connectivity for AppFabric

    Making it easier for .NET application built on the AppFabric to integrate seamlessly with existing enterprise applications such as Line Of Business (LOB) systems and with the existing Business-to-Business connectivity infrastructure.

  • On-Premise Server and Cloud Service Symmetry

    Facilitating the connection from on-premise applications to cloud services on Windows Azure platform and from cloud services to on-premise applications. Including the option to deploy some integration services as cloud services on the Windows Azure platform.

As part of the deep alignment and need to support a common programming model BizTalk Server will support WF. Microsoft is committed to investments our customers have in existing BizTalk technologies and we will continue to support BizTalk Server’s XLANG orchestration technology along with other artifacts in BizTalk Server.

Copied from the BizTalk Roadmap : http://www.microsoft.com/biztalk/en/us/roadmap.aspx

 

 


Michael Høtoft  

BizTalk Server

Basic BizTalk messaging event envelope

8. January 2010

Recenetly i had to created a loosely coupled Event systemet based facilitaded by an Event Envelope with promoted properties for routing.

this relyes on the use of the any xml. I tend to forget the detail of this rarely used element so here are the steps.

1, Create the envelope structure

2, Add an Any element

 

3, Tell the validator to skip the content of the AnyElement


Michael Høtoft  

BizTalk Server

Dublin repository

8. January 2010

Some Ressources regarding the upcomming dublin server :

Features of Dublin :

http://channel9.msdn.com/posts/johanlindfors/Inside-the-Windows-Application-Server-Enhancements-known-as-Dublin-12/

Hosting Workflows

http://channel9.msdn.com/posts/johanlindfors/Inside-the-Windows-Application-Server-Enhancements-known-as-Dublin-22/

 


Michael Høtoft  

Dublin, Workflow

Ways to accept Any Xml into BizTalk

8. January 2010

While working with an EventEnvelope setup i was looking for way put ANY xml into BizTalk.

 

And ofc. Richard Seroter has made a marvelouse blog on the topic Laughing

http://seroter.wordpress.com/2009/06/16/four-ways-to-accept-any-xml-data-into-biztalk-web-services/

 

 


Michael Høtoft  

BizTalk Server