Archive for 'Uncategorized'
Biztalk server interview questions
Explain Biztalk server architecture
what is the difference between BizTalk 2004 and 2006
what is Party Resolution, how do you implement the same.
What is enterprise single sign on and how does it work?
How do you implement Digital Signature in Biztalk server.
What is Envelop Schema? How do you extract each of the msgs?
How does content based message routing [...]
Posted: November 17th, 2008 under Uncategorized.
Comments: none
create a html image element using xslt
the following code will help you to create a html image element using xslt
<xsl:element name=”img”>
<xsl:attribute name=”src”>
<xsl:value-of select=”yourwebsiteBaseUrl”/>/imagelocation/image.jpg
</xsl:attribute>
<xsl:attribute name=”alt”>alt Text</xsl:attribute>
<xsl:attribute name=”width”>250</xsl:attribute>
</xsl:element>
Posted: November 12th, 2008 under Uncategorized.
Comments: none
count the number of attributes in a node
<xsl:template match=”YourNodeName”>
<xsl:variable name=”attributeCount”><xsl:value-of select=”count(@*)” /></xsl:variable>
Posted: November 11th, 2008 under Uncategorized.
Comments: none
Biztalk server training in bangalore
Experts from conglomerative domains have converged to a point to leverage their technological skills coupled with their managerial skills to help you work on emerging technologies. You will be trained on biz talk server application development , deployment, advanced topics (BAS,BAM,BRE) and many more bonus topic’s which are required for a professional to have [...]
Posted: November 4th, 2008 under Uncategorized.
Comments: none
abstract factory pattern usage
hello every one,
its been long time i have written on this blog, as I am very much busy at work , well in this post I am going to write about the application of abstract factory pattern.
Factory is an entity whose main business is to create products, in the same way we have abstract factory [...]
Posted: September 11th, 2008 under Uncategorized.
Comments: none
The significance of proxy in remoting
While i was working on a .net remoting application I was wondering why do we need a separate proxy class, why can’t we have the client calling the remote object ,can not call it directly.
This question might have been encountered by many techies, but very few people try to digg into the details..
The answer to [...]
Posted: August 17th, 2008 under Uncategorized.
Comments: none
Getting the value of asp.net control using Request.Form
you have an asp textbox with the id as txtBox and the button as btnSubmit ,
now you enter the text as “Sample” in the textbox, on click of submit, in order to get the value of the textbox .
you need to put the name in the Request.Form, like Request.Form["txtBox"], now if you have a master [...]
Posted: July 3rd, 2008 under Uncategorized.
Tags: asp.net
Comments: none
Asp.net Usercontrols on Sharepoint with the help of Smart parts
Couple of years back i worked on share point 3.0 development, where the scenario was to display a data grid on the share point, I found a way to achieve the same by using the smart parts, you need to create an asp.net web application, place the dll in the bin directory of the sharepoint [...]
Posted: July 1st, 2008 under Uncategorized.
Tags: asp.net, MOSS, smart parts, user controls
Comments: none
Delivery notifications in BizTalk Server 2006
Few days back I did ink on how to route the failed messages, by enabling macros at the filter, in this post i will be writing about how to set the acknowledgments in biztalk server,
In the properties window of the send port you will be able to see the Delivery Notifications as the property ,change [...]
Posted: June 30th, 2008 under Uncategorized.
Comments: none
Failed message routing in BizTalk Server
If you ever had a chance to route the failed messages, well in biz talk server we can route the failed messages , you can achieve this
By enabling Enable routing for failed messages on the physical receive port sampleReceive,
create a physical send port errorSend which subscribes to the error message, so in the filter properties [...]
Posted: June 26th, 2008 under Uncategorized.
Tags: BizTalk, failed message, routing
Comments: none