| Register | FAQ | Calendar | Search | Today's Posts | Mark Forums Read |
|
#21
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > Great site! Good luck to it's owner! http://www.avwzioni.org/nudi BizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
|
#22
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > luogo grande nessun osservazioni! http://www.avwzioni.org/moliseBizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
|
#23
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > Grand emplacement! La conception est merveilleuse! http://www.avwzioni.org/supereva BizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
|
#24
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > WOW!! I like it! http://www.avwzioni.org/figa BizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
|
#25
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > Interesting contents i consider.. http://www.bambini.batcave.net BizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
|
#26
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > http://www.bloggingmylife.com/?u=sessois BizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
|
#27
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > http://itsesso.beeplog.com BizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
|
#28
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > 9 su 10! Ottenerlo! Siete buoni! http://www.2ire17.org/alessandra BizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
|
#29
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > Ich besichtige deinen Aufstellungsort wieder bald fur sicheres! http://www.2ire17.org/pokemon-porn BizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
|
#30
| |||
| |||
| > Hey boys and girls, > > > > I ran into a bit of a piccle with the mapper. I''m writing a custom xslt > fuctoid and taking in an xpath as a parameter. > > The problem is that when I connect the functoid with an element in the > mapper, it generates double quotes around the > > parameters. Then, when I run a value-of statement on the xpath parameter I > get the xpath statement, not the value of the evaluation! The problem turns > out to be the double quotes. I created an exampel that runs in xmlspy and it > works the same way. It works with single quotes but not with double. I can't > do anything about the call unfortunately, what I can effect is the > XpathLookupFunctoid template below. > > What I need is a way to convince the value-of statement to evalutate the > statement instead of just outputting the xpath statemenat by itself. > > I tryed all kinds of tricks that I could emagine including substrings and > variables. It seems that the string becomes a totally different animal once > it gets double quoted. > > Below is the xmlspy sample you can run in xmlspy. If the extra quote sight > on the xpath parameter in the call-template statement is removed it works > fine. But since that's generated by Biztalk I cant do anything about it so > the > manipulation needs to be done in XpathLookupFunctoid: > > Below is the xmlspy compatible example: > > <?xml version="1.0" encoding="UTF-8"?> > <xsl:stylesheet version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> > > > > > <xsl:template match="/"> > <xsl:call-template name="XpathLookupFunctoid"> > <xsl:with-param name="searchparam" select="9" /> > <xsl:with-param name="targetnodename" > select=""Name2"" /> > <xsl:with-param name="xpath" > select=""(//*[local-name()='dtParParty' and > PartyTypeCode=9]/Shortname)[1]"" /> > <xsl:with-param name="defaultvalue" select=""NPs > Default value"" /> > </xsl:call-template> > > </xsl:template> > > <xsl:template name="XpathLookupFunctoid"> > <xsl aram name="searchparam" />> <xsl aram name="targetnodename" />> <xsl aram name="xpath" />> <xsl aram name="defaultvalue" />> > <xsl:variable name="ren" select="$xpath"/> > > <xsl:element name="{$targetnodename}"> > Resultat: <xsl:value-of select="$ren"/> > </xsl:element> > </xsl:template> > > </xsl:stylesheet> > > > > Greatfull for all ideas > > > Niklas Pettersson > Karlstad, Sweden > > > > > > I'll be BACK! http://www.2ire17.org/cristianaBizTalk Utilities - Frustration free BizTalk Adapters http://www.topxml.com/biztalkutilities |
![]() |
| Thread Tools | |
| Display Modes | |
In an effort to better serve ads to our visitors, cookies are used on objectmix.com. For more information, check out our Privacy Policy.