iT Synergy Blogs

Growing Innovation - Soluciones a problemas reales

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

Copyright © 2025 · iT Synergy·

Errores comunes ejecutando proyectos del Windows Azure Training Kit (WATK)
Errores comunes ejecutando proyectos del Windows Azure Training Kit (WATK) avatar

January 23, 2013 By Bernardo Enrique Cardales Acuña Leave a Comment

 

1. Package restore is disabled by default. To give consent, open the Visual Studio Options dialog, click on Package Manager node and check ‘Allow NuGet to download missing packages during build.’ You can also give consent by setting the environment variable ‘EnableNuGetPackageRestore’ to ‘true’. MyTodo.WebUx.

Este error para algunos es fácil solucionarlo pero para otros es un poco más complicado, estos son los pasos:

a. En Visual Studio 2012 TOOLS->Library Package Manager-> Package Manager Console.

image

b. Luego hacer clic en Restore

image

 

2. System.Runtime.InteropServices.SEHException: External component has thrown an exception.

Ocurre cuando el proyecto Windows Azure, no es el proyecto que inicialmente se ejecuta. Solución:

Clic derecho en el proyecto y seleccionar Set As Start Up Project.image

3.  The remote server returned an error: (403) Forbidden.

Al momento de enviar notificaciones ese es el mensaje de estado de conexión devuelto, aparentemente es un tema de autorización pero la excepción lanzada es esta Channel URL incompatible with caller app. Para este caso se tiene una aplicación Windows 8 en Javascript y un web site en azure encargado de enviar las notificaciones. Solución:

El  nombre de la aplicación es diferente al nombre del paquete del archivo package.appxmanifest.

image

Es decir, este mismo nombre  es el id de la aplicación que se le envía en el objeto cuando se registra el canal para recibir notificaciones.

image

Luego ir al web site e intentar enviar una notificación, el mensaje debe ser Status Code OK – 200: Notification was accepted by WNS.

Filed Under: Azure

Failed to load the current WSDL. An XML error has ocurred. (Microsoft.BizTalk.TrackingCompiler) (BAM)
Failed to load the current WSDL. An XML error has ocurred. (Microsoft.BizTalk.TrackingCompiler) (BAM) avatar

December 14, 2012 By Ana María Orozco Zuluaga Leave a Comment

When we work with BAM, we have to ways to deploy the activities (XML) and the Tracking’s we have made. One of them is doing it by console using the following commands:

You have to be in this directory: C:\Program Files (x86)\Microsoft BizTalk Server 2010\Tracking.

Once you are there you can apply them:

  • To deploy activity: bm.exe deploy-all -DefinitionFile
  • To deploy tracking: bttdeploy.exe

The other way to deploy the tracking file (.btt) is using the graphic interface call: Tracking Profile Editor (TPE).

The error which is showed in the title and in the next figures happens when you have made the .btt before and you want to open it for any reason.

This errors is shows up because the interface cannot load the orchestration assemblies that have interceptor in the activity.

The process you can follow is: without load the tracking profile, open the event source and select the orchestration schedule, select at least one of the assemblies which are involve in the tracking profile you tried to open before. After that, open the tracking profile normally and everything is going to work fine and is going to be loaded just as the follow figure shows:

 

 

Filed Under: BAM, Tracking Profile Editor Tagged With: BAM, BAMTraceException

RebuildIndexes in BizTalk Server
RebuildIndexes in BizTalk Server avatar

December 7, 2012 By Jaime Alonso Páez torres Leave a Comment

En ocasiones para mejorar desempeño en el proceso de publicación y suscripción de BizTalk Server junto con las tareas de mantenimiento (jobs de Sql Server) que ya posee BizTalk Server, es conveniente como en toda base de datos hacer un rebuild de indices a las bases de datos de BizTalk.

A continuación relaciono los procedimientos almacenados creados que son los únicos para soportar este proceso:

Base Datos                  Procedimiento Almacenado

BizTalkDTADb              dtasp_RebuildIndexes

BizTalkMsgBoxDb       bts_RebuildIndexes

BizTalk Server solo soporta rebuild de indices cuando este se encuentra completamente parado, por lo que se recomienda parar todos los host instances y el SQL Server Agent antes de ejecutar estos procedimientos.

Si se llegara presentar un error al ejecutar bts_RebuildIndexes, ver la documentación que hay sobre el mismo en el siguiente link:

You experience blocking, deadlock conditions, or other SQL Server issues when you try to connect to the BizTalkMsgBoxDb database in BizTalk Server

 

Article ID: 917845 – View products that this article applies to.
Expand all | Collapse all

On This Page

SYMPTOMS

In Microsoft BizTalk Server, you experience blocking, deadlock conditions, or other Microsoft SQL Server issues when you try to connect to the BizTalkMsgBoxDb database.

Back to the top | Give Feedback

CAUSE

This issue may occur if one or more of the following conditions are true:

  • The Auto Create Statistics option is enabled on the BizTalkMsgBoxDb database.
  • The Auto Update Statistics option is enabled on the BizTalkMsgBoxDb database.
  • The max degree of parallelism option is set to a value other than 1 on the computer that is running SQL Server and that is hosting the BizTalkMsgBoxDb database.
  • You defragment or rebuild an index in the BizTalkMsgBoxDb database when BizTalk Server is processing data.
Back to the top | Give Feedback

RESOLUTION

To resolve this issue, use one of the following methods.

Method 1: Disable the Auto Create Statistics option and the Auto Update Statistics option

To resolve this issue, disable the Auto Create Statistics option and the Auto Update Statisticsoption on the BizTalkMsgBoxDb database in SQL Server.

Method 2: Set the max degree of parallelism option to 1

To resolve this issue, set the max degree of parallelismoption to 1 on the computer that is running SQL Server.

Method 3: Do not rebuild an index when BizTalk Server is processing data

To resolve this issue, do not run the bts_RebuildIndexes stored procedure or any SQL command that rebuilds an index in a BizTalk Server database when BizTalk Server is processing data.

NoteDefragmenting an index in a BizTalk Server database is not supported.

Back to the top | Give Feedback

MORE INFORMATION

The bts_RebuildIndexes stored procedure

The only supported method to rebuild an index in the BizTalkMsgBoxDb database is to run the bts_RebuildIndexes stored procedure. On BizTalk Server 2006 and later versions, you can run the dtasp_RebuildIndexes stored procedure to rebuild indexes in the BizTalkDTADb database.

Most of the BizTalk indexes are GUID-based. Many tests have shown that as long as the tables are not scanned, GUID-based indexes can perform better than identity-based indexes for BizTalk-specific workloads. This may cause fragmentation. However, because data flows in and out of the tables at a steady pace, fragmentation may not cause any issues. If lots of data is expected to build up in the BizTalkMsgBox database, you can periodically rebuild indexes during scheduled downtime. The same guidelines apply to the tracking database.

You can use the DBCC DBREINDEX SQL command to rebuild an index in the other BizTalk Server databases. For an example of how to use the DBCC DBREINDEX SQL command, right-click the bts_RebuildIndexes stored procedure, and then click Properties.

Note Microsoft only supports rebuilding database indexes during BizTalk Server downtime. You should stop all host instances and SQL Server Agent before you rebuild an index. When you run the bts_RebuildIndexesstored procedure in BizTalk Server 2006 and later versions, you may receive one of the following error messages:

Error message 1
Msg 5239, Level 16, State 1, Procedure bts_RebuildIndexes, Line 4
Unable to process object ID 674101442 (object ‘TrackingData’)
This database consistency checker (DBCC) command does not support this kind of object.
Error message 2
Msg 5239, Level 16, State 1, Procedure bts_RebuildIndexes, Line 4 Unable to process object ID 722101613 (object ‘TrackingData’) because this DBCC command does not support objects of this type.

This problem occurs because the TrackingData object is a view in BizTalk Server 2006 and later versions. To resolve this problem, do the following and then execute the bts_RebuildIndexesstored procedure:

  1. Comment out the following line in the bts_RebuildIndexesstored procedure.
    DBCC DBREINDEX ('[dbo].[TrackingData]') WITH NO_INFOMSGS
  2. Add the following lines to the bts_RebuildIndexesstored procedure.
    DBCC DBREINDEX ('[dbo].[TrackingData_0_0]') WITH NO_INFOMSGS
    DBCC DBREINDEX ('[dbo].[TrackingData_0_1]') WITH NO_INFOMSGS
    DBCC DBREINDEX ('[dbo].[TrackingData_0_2]') WITH NO_INFOMSGS
    DBCC DBREINDEX ('[dbo].[TrackingData_0_3]') WITH NO_INFOMSGS
    DBCC DBREINDEX ('[dbo].[TrackingData_1_0]') WITH NO_INFOMSGS
    DBCC DBREINDEX ('[dbo].[TrackingData_1_1]') WITH NO_INFOMSGS
    DBCC DBREINDEX ('[dbo].[TrackingData_1_2]') WITH NO_INFOMSGS
    DBCC DBREINDEX ('[dbo].[TrackingData_1_3]') WITH NO_INFOMSGS
Back to the top | Give Feedback

Properties

Article ID: 917845 – Last Review: May 5, 2011 – Revision: 8.0
APPLIES TO
  • Microsoft BizTalk Server Branch 2010
  • Microsoft BizTalk Server Developer 2010
  • Microsoft BizTalk Server Enterprise 2010
  • Microsoft BizTalk Server Standard 2010
  • Microsoft BizTalk Server 2009 Branch
  • Microsoft BizTalk Server 2009 Developer
  • Microsoft BizTalk Server 2009 Enterprise
  • Microsoft BizTalk Server 2009 Standard
  • Microsoft BizTalk Server 2006 R2 Branch Edition
  • Microsoft BizTalk Server 2006 R2 Developer Edition
  • Microsoft BizTalk Server 2006 R2 Enterprise Edition
  • Microsoft BizTalk Server 2006 R2 Standard Edition
  • Microsoft BizTalk Server 2006 Standard Edition
  • Microsoft BizTalk Server 2006 Developer Edition
  • Microsoft BizTalk Server 2006 Enterprise Edition
  • Microsoft BizTalk Server 2004 Standard Edition
  • Microsoft BizTalk Server 2004 Developer Edition
  • Microsoft BizTalk Server 2004 Enterprise Edition
  • Microsoft BizTalk Server 2004 Partner Edition
Keywords:
kbbts kbtshoot kbprb KB917845
Back to the top | Give Feedback

Give Feedback

 

Was this information helpful?
Yes
No
Somewhat
How much effort did you personally put forth to use this article?
Very low
Low
Moderate
High
Very high
Tell us why and what can we do to improve this information

Back to the topBack to the top

Article Translations

(الشرق الاوسط (العربية

  • Other Microsoft sites
  • Windows
    Windows
  • Office
    Office
  • Windows Phone
    Windows Phone
  • Xbox
    Xbox
  • Skype
    Skype
  • Bing
    Bing
  • Microsoft Store
    Microsoft Store
    • Downloads
    • Download center
    • Windows downloads
    • Office downloads
    • Service Pack downloads
    • Direct X download
    • Security
    • Virus and Security solution center
    • Security home page
    • Microsoft Update
    • Download Security Essentials
    • Malware Removal tool
    • Support
    • Knowledge Base search
    • Supported Products list
    • Support offerings
    • Product support lifecycle
    • Small and medium business support
    • IT Pro support
    • Developer support
    • About Microsoft
    • Microsoft
    • Careers
    • Company news
    • Investor relations
    • Site map
  • Popular resources
  • Microsoft Outlook Express
  • Microsoft Fix It downloads
  • Windows keyboard shortcuts
  • Microsoft Visual C library runtime error
  • Windows Installer error: service could not be accessed
  • Windows Installer cleanup utility download
  • How to: Windows XP system restore
  • Windows update error message
  • Microsoft Security Essentials manual update download
  • Inbox Scanpst.exe

United States

©2012 Microsoft
  • Services Agreement
  • Contact Us
  • Terms of Use
  • Trademarks
  • Privacy & Cookies

Filed Under: BizTalk Tagged With: BizTalk, indexes

  • « Previous Page
  • 1
  • …
  • 20
  • 21
  • 22
  • 23
  • 24
  • …
  • 72
  • 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

Alexandra
Bravo Restrepo

Bernardo
Enrique Cardales

Juan
Alberto Vélez

Jhon
Jairo Rodriguez

Diana
Paola Padilla

Gustavo
Adolfo Echeverry

Carlos
Andrés Vélez

Yully
Arias Castillo

Brayan
Ruiz

Jesús
Javier Hernández

Alejandro
Garcia Forero

Natalia
Zartha Suárez

Josué
Leonardo Bohórquez

Oscar
Alberto Urrea

Odahir
Rolando Salcedo

Jimmy
Quejada Meneses

Juan
Mauricio García

Mario
Andrés Cortés

Eric
Yovanny Martinez

Carolina
Torres Rodríguez

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