Monday, January 11, 2016

Why BizTalk not supporting multiple send locations for one send port?

     We can have multiple disassemblers in Receive Pipeline, we can receive multiple format files from the same receive pipeline. It execute all the components (0 to 255)placed in it.

     But we cannot have multiple assemblers in Send Pipeline (it can have only 0 to 1). So, we can't use  to send multiple format files through the same Send pipeline.


What if we  want to send multiple format files through the same Send pipeline ?
    We can create a Send port for each format and add them to a Send Port Group

Even I too have this below question in my mind, any idea!

Why BizTalk doesn't provide this feature, BizTalk server is not supporting more than one send location for one send port?

Wednesday, January 6, 2016

Identity (===. !==) vs Equality (==, !=) operators in JavaScript



These operators behave identically to the equality operators except no type conversion is done, and the types must be the same to be considered equal.

Using the == operator (Equality)

     true == 1; //true, because 'true' is converted to 1 and then compared
     "2" == 2;  //true, because "2" is converted to 2 and then compared

Using the === operator (Identity)

     true === 1; //false
     "2" === 2;  //false

This is because the equality operator == does type coercion, meaning that the interpreter implicitly tries to convert the values before comparing.

On the other hand, the identity operator === does not do type coercion, and thus does not convert the values when comparing.