摘要: To successfully deploy your .NET Framework application, you must understand how the common language runtime locates and binds to the assemblies that make up your application. By default, the runtime attempts to bind with the exact version of an assembly that the application was built with. This defa 阅读全文
posted @ 2013-03-12 22:26 Leo Tang 阅读(195) 评论(0) 推荐(0) 编辑
摘要: We can find the sample script located in the BizTalk installation folder:C:\Program Files (x86)\Microsoft BizTalk Server 2010\SDK\Samples\Admin\WMI\Enable Receive Location\VBScriptThen check the WMI reference to implement more featuries:MSBTS_ReceiveLocation (WMI)http://msdn.microsoft.com/zh-cn/libr 阅读全文
posted @ 2013-02-28 11:06 Leo Tang 阅读(275) 评论(0) 推荐(0) 编辑
摘要: // NOTE: These are dynamic port assignments. // These can changed at runtime without any impact! CRMAdapterRequestMsg(PropertySchema.ServerUrl) = CRM_URL;CRMAdapterRequestMsg(PropertySchema.UserName) = CRM_UserName;CRMAdapterRequestMsg(PropertySchema.Password) = CRM_Password;CRMAdapterRequestMsg(Pro 阅读全文
posted @ 2013-02-20 15:53 Leo Tang 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Note: If we want to subscribe the message without filter expressions by using orchestration, then we can'tuse PassThruReceive as Receive Pipeline! 阅读全文
posted @ 2013-02-19 21:42 Leo Tang 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Using declareParam and setParam to change the application nameFirstly,create an archive (or package)and declare a parameterC:\Program Files (x86)\IIS\Microsoft Web Deploy V3>msdeploy -verb:sync -source:apphostconfig="default web site\Testweb" -dest:archivedir="C:\deploytest" - 阅读全文
posted @ 2012-12-13 14:11 Leo Tang 阅读(335) 评论(0) 推荐(0) 编辑
摘要: Sample: we have Test folder under the application root, we want to read the connection string in test.config in the Test folder.using System;using System.Collections.Generic;using System.Linq;using System.Runtime.Serialization;using System.ServiceModel;using System.Text;using System.Web;using System 阅读全文
posted @ 2012-12-03 11:23 Leo Tang 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1. Add generated item2.Manually create composite schema3.Create messages,mapping and logic ports4.Deploy and configure physical portsNote:The schema must have two root nodes: one named Request and another named RequestResponse. The namespace of the schema must be in the format of http://[PROJECT_ NA 阅读全文
posted @ 2012-10-25 19:47 Leo Tang 阅读(194) 评论(0) 推荐(0) 编辑
摘要: enterprise application integration (EAI)In Visual Studio:. Create message schema. Create schema mapping. Create orchestration .Create receive port and send port .Configur receive, construct message, configure send. Deploy BizTalk application In BizTalk Administration:. Create physical ports and l... 阅读全文
posted @ 2012-10-18 17:58 Leo Tang 阅读(195) 评论(0) 推荐(0) 编辑
摘要: myResult =(3=="3")? "True":"False";TruemyResult=(3==="3")?"true":"false";falsevar current= new Date();var currentHour=current.getHours();Switch(true){ case(curentHour>8 && currentHour<12): document.write("Morning, sunshin 阅读全文
posted @ 2012-10-07 18:22 Leo Tang 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Scenario:The test certificates created by MakeCert, something like:makecert.exe -sr LocalMachine -ss MY -a sha1 -n CN=localhost -sky exchange -pemakecert.exe -sr CurrentUser -ss MY -a sha1 -n CN=client -sky exchange -pe1. "Keyset does not exist"It most probably that the process account doe 阅读全文
posted @ 2012-09-28 17:38 Leo Tang 阅读(231) 评论(0) 推荐(0) 编辑