Welcome to Comunidade Bloggers |create|it| Sign in | Join | Help

Browse by Tags

Biztalk xml header processing

When we use infopath or similar technologies with biztalk, the messages have always a xml processing header. Biztalk does not copy xml processing header to the output messages by default, so we have to set it manually. There are several options in biztalk
Posted by tpo | 0 Comments
Filed under: ,

Using xpath function in orchestrations

Xpath is a function that can be used in any orchestration to set and retrieve data from/to messages. The syntax is very simple: Set a value in message xpath(message, "xpathQuery") = value; Get a value from message variable = xpath(message, "xpathQuery");
Posted by tpo | 0 Comments
Filed under:

Replace namespace prefix pipeline component

In some biztalk integrations with legacy systems, there are message specifications that requires a specific namespace prefix, but all biztalk messages use ns0, ns1, ns... definition to define prefix information. To solve this problem there are two solutions
Posted by tpo | 0 Comments
Filed under:

How to - Validate Windows Workflow custom activity input

Windows Workflow allow us to perform custom validator input that is executed at design and compile time. The error output is similar as Biztalk Orchestration shape errors. Adding a validator to a custom activity involves two steps: Create a class that
Posted by tpo | 0 Comments

Using WF CallExternalMethod activity in Windows Workflow

The CallExternalMethod Activity allows us to make synchronous communication between Workflow and the Host through the Local Service using Local Service Communication. Local Service Communication allows workflows to communicate with an external service
Posted by tpo | 1 Comments

Como executar pesquisas ao estado de um Workflow de máquina de estados

Um Workflow de máquina de estados permite que sejam efectuadas pesquisas sobre uma instância. Para tal deve-se usar um objecto da classe StateMachineWorkflowInstance (System.Workflow.Activities), que permite por exemplo obter a seguinte informação
Posted by tpo | 1 Comments

Ciclo de Webcasts - Introdução ao Windows Workflow Foundation com a Framework 3.5

Nos passados dia 3 e 4 de março fiz uns webcasts para Webcasts4share da Microsoft sob o tema "Introdução ao Windows Workflow Foundation com a Framework 3.5". Ainda não estão disponíveis para download,
Posted by tpo | 3 Comments

Set Sharepoint workflow task permissions

I have saw many posts about this problem, many questions but few answers. So, how do we set permissions to workflow tasks: In workflow code behind create a HybridDictionary property something like this: Go to the CreateTask action/shape properties The
Posted by tpo | 0 Comments
Filed under: ,

Microsoft Tech Ed 2007 - Barcelona

5-9 Nov 2007, i'll be there with Jota.
Posted by tpo | 0 Comments
Filed under:

Custom Property demotion - Using IDocumentSpec and IPropertyAnnotation

Sometimes the property demotion rules are very difficult to apply in the Xml Assembler Pipeline. There are some limitations: • The Biztalk context dependency forces that data must be in message context when the demote occurs; • Orchestrations
Posted by tpo | 0 Comments
Filed under:

Dicas relativamente a event handlers de sharepoint

Aqui vão algumas dicas no desenvolvimento de handlers de sharepoint: Um event handler relativamente a items, usa as permissões do utilizador que o submete. Terá de se ter cuidado, pois esta situação representa um enorme
Posted by tpo | 0 Comments
Filed under:

Criar um webservice para aceder ao contexto do Windows SharePoint Services 3.0

O processo de criação de um webservice para aceder ao contexto do Windows Sharepoint Services 3.0 é uma tarefa de certa forma complexa, terão de se efectuar um conjunto de passos que descrevo nos pontos seguintes: Criar Webservice
Posted by tpo | 0 Comments
Filed under:

Terminar orquestrações suspensas usando WMI

Quem está farto de usar o Hat para terminar orquestrações suspensas, poderá usar um script WMI da seguinte forma: query = "SELECT * FROM MSBTS_ServiceInstance where ServiceClass = 1 and ServiceInstanceStatus = 32 Set instSet
Posted by tpo | 0 Comments
Filed under:

Publicação de vários tipos de mensagens para o Biztalk por Web Service

A publicação de mensagens de diversos schemas para o Biztalk, envolve um conjunto de questões. Normalmente segue-se a abordagem de criar Web Services com os Schemas das mensagens usando o “Web Service Publishing Wizard”.
Posted by tpo | 0 Comments
Filed under: