Archive for August, 2008
Wednesday, August 13th, 2008
Scenario you have a global search box on your website and when you input the first character of the first name , all the words which starts with that particular word will be displayed in the list box. the good thing is that as its an ajax control, its fast enough without the post back, [...]
Posted in Biztalk | Comment (1)
Wednesday, August 13th, 2008
One of my blog reader posted the below question, Well , I was expecting this question as I had encountered the same issue and resolved. Please find the question along with the resolution as below. Hi I have tried the above code, and found a problem – The encrypted value of 4 is S91QD+K0/u8=. When [...]
Posted in Biztalk | No Comments
Tuesday, August 12th, 2008
XPath 1.0 have many string functions: concat(string string1, string string2, …)— This function returns all strings you pass to it concatenated (that is, joined) together. contains(string string1, string string2)— This function returns true if the first string contains the second one. normalize-space(string string1)— This function returns string1 after leading and trailing whitespace is stripped and [...]
Posted in Biztalk | No Comments
Sunday, August 10th, 2008
[youtube=http://in.youtube.com/watch?v=ITPHd5BmRaM]
Posted in Biztalk | No Comments
Thursday, August 7th, 2008
Design pattern are the standards and best practices used to accomplish a particular goal, well there are various design patterns, they are Abstract factory pattern, Builder pattern, and Factory pattern. Abstract factory pattern : Its a pattern where you create the interface and the interface expose the properties , methods , events and classess.. Like [...]
Posted in Biztalk | Comment (1)
Wednesday, August 6th, 2008
Posted in Biztalk | No Comments
Monday, August 4th, 2008
I have a xml sample file generated from the schema. <ns0:PurchaseOrder xmlns:ns0=”http://yourprojectname.Schemas.PO”> <PONumber>PONumber_0</PONumber> <PODate>1999-05-31</PODate> <POQty>POQty_0</POQty> <Customer> <Name1>Google</Name1> <Name1>Google web</Name1> </Customer> </ns0:PurchaseOrder> now, in order to find a countthe nodes in a xml file , you need to place the below code in the buffer are of the inline XSLT call template <xsl:template name=”MyXsltSampleTemplate”> <xsl:variable name=”countofPO” [...]
Posted in Biztalk | No Comments
Friday, August 1st, 2008
I have a xml sample file generated from the schema. <ns0:PurchaseOrder xmlns:ns0=”http://yourprojectname.Schemas.PO”> <PONumber>PONumber_0</PONumber> <PODate>1999-05-31</PODate> <POQty>POQty_0</POQty> <Customer> <Name1>BiztalkServerGuide</Name1> </Customer> </ns0:PurchaseOrder> now, in order to find a specific string in the element , you need to place the below code in the buffer are of the inline XSLT call template <xsl:template name=”AnyNameofYourChoice” match=”//*[starts-with(/*[local-name()='PurchaseOrder' and namespace-uri()='http://yourprojectname.Schemas.PO']/*[local-name()='Customer' and namespace-uri()='']/*[local-name()='Name1' [...]
Posted in Biztalk | No Comments