iT Synergy Blogs

Growing Innovation - Soluciones a problemas reales

  • Facebook
  • Instagram
  • LinkedIn
  • Phone
  • Twitter
  • YouTube

Copyright © 2025 · iT Synergy·

Error instalando Dynamic Resolution Sample en Windows Server 2008
Error instalando Dynamic Resolution Sample en Windows Server 2008 avatar

October 12, 2010 By Jaime Alonso Páez torres Leave a Comment

Problema

El error es generado cuando se ejecuta por linea de comandos el instalador del ejemplo de ESB llamado Dynamic Resolution, ubicado en ..Samples\DynamicResolution\Install\Scripts\DynamicResolution_Install.cmd

The term ‘C:\Programs Files (X86)\Microsoft Visual Studio 8\SDK\v2.0\bin\gacutil.exe’ is not recognized as the name of a cmdlet

Este es un pantallazo del error.

Causa

Sucede en equipos de 64 bits que tengan instalado VS2010 y algunas extensiones de VS2008, ya que el script ESBFunctions.ps1, ubicado en c:\projects\microsoft.practices.esb\source\install\scripts\, intenta ubicar la herramienta de registrar dll en el GAC en una ruta existente que no posee este ejecutable gacutil.exe.

Solución

Es necesario modificar el script c:\projects\microsoft.practices.esb\source\install\scripts\ESBFunctions.ps1, para que ubique la ruta correcta del gacutil.exe

1. Abrir con el notepad el script.

2. Reemplazar las líneas

$SDKPath=(Get-ItemProperty  “hklm:SOFTWARE\Wow6432Node\Microsoft\.NETFramework\”).$SdkKeyName

if ($SDKPath -eq $null)
{
$SDKPath=(Get-ItemProperty  “hklm:SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v7.1”).InstallationFolder
}
if ($SDKPath -eq $null)
{
$SDKPath=(Get-ItemProperty  “hklm:SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v7.0A”).InstallationFolder
}

por

$SDKPath=(Get-ItemProperty  “hklm:SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v7.0A”).InstallationFolder

if ($SDKPath -eq $null)
{
$SDKPath=(Get-ItemProperty  “hklm:SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v7.1”).InstallationFolder
}
if ($SDKPath -eq $null)
{
$SDKPath=(Get-ItemProperty  “hklm:SOFTWARE\Wow6432Node\Microsoft\.NETFramework\”).$SdkKeyName
}

Filed Under: .NET, BizTalk, BizTalk 2010 configurations, BizTalk Application, BizTalk Services

BizTalk 2010 Six new Posters!!!.. BAM, Capabilites, Runtime Architecture, Scale-out Configuration, ESB Toolkit and Database Infraestructure
BizTalk 2010 Six new Posters!!!.. BAM, Capabilites, Runtime Architecture, Scale-out Configuration, ESB Toolkit and Database Infraestructure avatar

September 23, 2010 By Marco Antonio Hernández Prado Leave a Comment

 

Como nos tiene acostumbrado Microsoft nos está actualizando los poster a la última versión de BizTalk, aquí les me muestro un link y el resumen de Microsoft sobre cada poster

BizTalk Server 2010 BAM Poster

https://www.microsoft.com/en-us/download/details.aspx?id=13211

Este poster es un resumen del ciclo de vida completo de BAM. Representa el diseño del modelo de observación por el analista de negocio, mapeando el modelo de observación a la implementación realizada por el desarrollador, el deployment por el administrador del sistema y los canales de presentación para los usuarios de negocio. Los dos, usuarios nuevos y experimentados van a tener un mejor entendimiento de los conceptos, procesos y administración de BAM.

 

BizTalk Server 2010 Capabilities Poster

https://www.microsoft.com/en-us/download/details.aspx?id=7142

Este poster muestra las capacidades de BizTalk Server 2010 reunidas en ocho categorías y está diseñado para permitir discusiones técnicas proporcionando vistas de alto nivel y detalladas de las capacidades y características incluidas. Para BizTalk 2010 se actualizó el poster que incluye nuevas características y capacidades, incluyendo mejoras en RFID, AppFabric, BizTalk Adapter Pack, EDI, AS2, y mejor integración con Visual Studio y Windows Server.

 

BizTalk Server 2010 Runtime Architecture Poster

https://www.microsoft.com/en-us/download/details.aspx?id=22226

Este poster muestra los módulos y componentes del ambiente de ejecución de BizTalk Server 2010, incluyendo flujos de mensajes, flujo de datos, y referencias que ocurren en tiempo de ejecución. Puede ser usado para mostrar como las capacidades listadas en el poster de BizTalk Server 2010 Capabilities Poster son actualmente implementadas.

 

BizTalk Server 2010 Scale-out Configurations Poster

https://www.microsoft.com/en-us/download/details.aspx?id=9729

Este poster describe los escenarios típicos y las opciones comunes para escalar horizontalmente (scaling out) BizTalk Server 2010. Este ilustra como escalar horizontalmente para lograr una alta disponibilidad a través de balanceo de carga y tolerancia a fallos y como se debe configurar para escenarios de alto rendimiento. El poster esta diseñado para uso de Profesionales IT y desarrolladores que necesitan diseñar, realizar deploy y administrar implementaciones a gran escala de BizTalk Server 2010.

 

BizTalk Server 2010 ESB Toolkit Architecture Poster

https://www.microsoft.com/en-us/download/details.aspx?id=11976

Este poster representa la arquitectura de BizTalk ESB Toolkit. Muestra los componentes del core del toolkit, y como estos se integran con BizTalk Server.

 

BizTalk Server 2010 Database Infrastructure Poster

https://www.microsoft.com/en-us/download/details.aspx?id=24711

Este poster muestra las bases de datos  y componentes asociados, job, servicios, UI, y eventos de BizTalk Server 2010. Incluyen tablas que describen las bases de datos y los jobs. Este poster está dirigido principalmente para DBAs y administradores del ambiente de BizTalk, sin embargo también sirve como una introducción a la infraestructura para todos los usuarios.

Filed Under: .NET, BizTalk, BizTalk 2010 configurations, BizTalk Application, ESB, SOA Tagged With: BizTalk, ESB

ESB Toolkit 2.0 – Send Port “All.Exceptions” : The send adapter for this send port is not supported on 64-bit host instances. Please make sure that the send adapter is associated with a 32-bit only handler.
ESB Toolkit 2.0 – Send Port “All.Exceptions” : The send adapter for this send port is not supported on 64-bit host instances. Please make sure that the send adapter is associated with a 32-bit only handler. avatar

July 6, 2010 By Jaime Alonso Páez torres Leave a Comment

Problema.

Al tratar de publicar un mensaje de falla usando el framework de excepciones del bus de servicios (ESB), en el log de eventos quedaba registrado el siguiente error:

A message sent to adapter “BiztalkMessagingEngine” on send port “ALL.Exceptions” with URI “SQL://[NombreServidor]/EsbExceptionDb/” is suspended.

Error details: The send adapter for this send port is not supported on 64-bit host instances. Please make sure that the send adapter is associated with a 32-bit only handler.

MessageId:  {9301F3A2-CB70-4D37-90CA-6DF4404BF631}

InstanceID: {A7CB7EEF-27AC-44C8-9C1C-49748B17FA0C}

El sendport “All.Exceptions” encargado de publicar los mensajes de falla en el repositorio central EsbExceptionDb quedaba suspendido ya que este no es soportado en Host de 64 bits.

Solución.

Es necesario crear un host dedicado de 32 bits, crear el host instance correspondiente, crear un send handler de SQL que use este host y configurar el send port “All.Exceptions” para que utilice este send handler recién creado.

El punto clave es cuando se crea el host, acá un pantallazo del check box que se debe habilitar para que quede bien configurado.

Filed Under: .NET, BizTalk, BizTalk 2010 configurations, BizTalk Application, SOA

  • « Previous Page
  • 1
  • …
  • 4
  • 5
  • 6
  • 7
  • 8
  • …
  • 11
  • Next Page »

Team


Marco
Antonio Hernández

Jaime
Alonso Páez

Luis
Carlos Bernal

Ana
María Orozco

Juan
Camilo Zapata

Carlos
Alberto Rueda

Sonia
Elizabeth Soriano

Diana
Díaz Grijalba

Bernardo
Enrique Cardales

Alexandra
Bravo Restrepo

Juan
Alberto Vélez

Diana
Paola Padilla

Jhon
Jairo Rodriguez

Yully
Arias Castillo

Carlos
Andrés Vélez

Brayan
Ruiz

Jesús
Javier Hernández

Alejandro
Garcia Forero

Gustavo
Adolfo Echeverry

Josué
Leonardo Bohórquez

Oscar
Alberto Urrea

Odahir
Rolando Salcedo

Jimmy
Quejada Meneses

Natalia
Zartha Suárez

Mario
Andrés Cortés

Eric
Yovanny Martinez

Carolina
Torres Rodríguez

Juan
Mauricio García

Tag Cloud

.NET (9) 940px (1) Analysis Services mdx (1) An attempt was made to load a program with an incorrect format. (1) ASP.NET MVC (1) Azure (3) Backup (1) BAM (7) BAM API (1) BAMTraceException (2) BI (3) BizTalk (24) Business Intelligence (6) C# (2) caracteristicas de publicacion (2) Content Editor (3) ESB (15) ESB Toolkit (3) General (4) habilitar caracteristicas (3) indexes (2) Integration Services (2) Master Page (3) MDX (2) MSE (11) net.tcp (2) Office 365 (2) Oracle (2) Performance Point (2) Public Website (2) Receive Location (2) SDK (2) Servicio Web (2) Sharepoint 2010 (2) SharePoint 2013 (4) SharePoint Online (2) SOA (8) Soap Fault (2) Sort Months MDX (2) SQL Server (2) Visual (2) Visual Studio 2010 (2) WCF (19) Windows (3) Windows 8 (17)

Categories

  • .NET (33)
  • Analysis Services (1)
  • ASP.NET MVC (2)
  • Azure (7)
  • BAM (9)
  • BAM PrimaryImport (3)
  • BigData (1)
  • BizTalk (77)
  • BizTalk 2010 configurations (57)
  • BizTalk Application (60)
  • BizTalk Services (13)
  • Business Intelligence (4)
  • Cloud (3)
  • CMD (1)
  • CodeSmith – NetTiers (2)
  • CommandPrompt (1)
  • CRM OptionSet mapping component (1)
  • Desarrollo de software (6)
  • develop (6)
  • developers (3)
  • DropBox (1)
  • Dynamics (1)
  • Enterprise Architect (1)
  • Entity Framework (1)
  • Errores BizTalk (2)
  • ESB (27)
  • ETL (1)
  • Event Viewer (1)
  • Excel Services (1)
  • Foreach loop container (1)
  • General (4)
  • Gerencia de Proyectos (2)
  • Google (1)
  • Grouped Slices (1)
  • Human Talent (1)
  • IIS (4)
  • Integración (6)
  • Integration Services (3)
  • KingswaySoft (1)
  • Lync (1)
  • MSE (13)
  • Office 365 (2)
  • Oracle Data Adapter (2)
  • Performance Point (4)
  • Picklist (1)
  • Pivot Table (1)
  • Procesos (1)
  • Pruebas (1)
  • Public Website (2)
  • Reports (1)
  • SCRUM (1)
  • SDK (2)
  • SEO (1)
  • Servicios (2)
  • Sharepoint (9)
  • SharePoint 2010 (10)
  • SharePoint 2013 (4)
  • SharePoint Online (2)
  • SharpBox (1)
  • Shortcuts (1)
  • Sin categoría (1)
  • SOA (50)
  • SQL (5)
  • SQL Server (3)
  • SQL Server Management Studio (1)
  • SSIS (3)
  • SSL (1)
  • SSO (1)
  • Tracking Profile Editor (2)
  • Twitter (1)
  • Uncategorized (1)
  • Virtual Network (2)
  • Visual Studio 11 (1)
  • Visual Studio 2010 (2)
  • Visual Studio Online (1)
  • VMware (2)
  • WCF (24)
  • Web (1)
  • Web Api (1)
  • Windows (5)
  • Windows 8 (11)
  • Windows Azure (2)
  • Windows Live Write (1)
  • Windows Phone (7)
  • Windows Phone 8 (1)
  • Windows Scheduler (1)
  • windows8 (2)
  • WindowsRT (3)
  • WP7 SDK (1)

Manage

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org