Main menu:

 

November 2008
M T W T F S S
« Sep    
 12
3456789
10111213141516
17181920212223
24252627282930

Site search

Archives

Categories

Tags

Links:

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 [...]

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>

count the number of attributes in a node

<xsl:template match=”YourNodeName”>
<xsl:variable name=”attributeCount”><xsl:value-of select=”count(@*)” /></xsl:variable>

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 [...]

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 [...]

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 [...]

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 [...]

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 [...]

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 [...]

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 [...]