|
Home > Archive > BizTalk Server Orchestration > February 2005 > Order Tag in BizTalk Mappin
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Order Tag in BizTalk Mappin
|
|
|
| Hello,
I want to know if is possible Order Tag XML Elements, in BizTalk
Transformation, with some Object or Script.
If yes, can anyone help me how???
Thanks a Lot,
Francesco
--
Francesco
| |
| Sasidhar Parvatham 2005-02-23, 5:58 pm |
| Francesco,
I am not sure whether I got your question correctly. Do you want to have XML
elements in a specific order? If so did you look into Sequence tag while
creating the schema? Is that what you are looking for?
--
Sasidhar
http://bizstop.blogspot.com/
"jron" <francesco334@interfree.it> wrote in message
news:2005022313244716482@mynewsgate.net...
> Hello,
> I want to know if is possible Order Tag XML Elements, in BizTalk
> Transformation, with some Object or Script.
> If yes, can anyone help me how???
>
> Thanks a Lot,
> Francesco
>
> --
> Francesco
>
| |
|
| Sasidhar Parvatham <sasidhar.parvatham@gmail.com> ha scritto:
> Francesco,
>
> I am not sure whether I got your question correctly. Do you want to
have XML
> elements in a specific order? If so did you look into Sequence tag while
> creating the schema? Is that what you are looking for?
No, the problem is this:
I receive from BizTalk Receive Object, an XML like this:
<Root>
<ADV>
<Name>test1</Name>
<Price>80,33</Price>
</ADV>
<ADV>
<Name>test1</Name>
<Price>14,33</Price>
</ADV>
...
</Root>
I want, then, by Tranform Object, order the tag <ADV> from min Price to
Max Price, by a Script or a particular object of BizTalk.
Can I make this in BizTalk Mapping? (or BizTalk Tranformation)
Thanks a lot, (it's very urgent!)
Francesco
--
Francesco
| |
| Sasidhar Parvatham 2005-02-24, 7:50 am |
| xsl:sort might help you. I dont know a way to do this in BizTalk mapper. But
what you can do is write XSL and create a map out of it.
You can get more information at http://www.w3schools.com/xsl/el_sort.asp
I use a tool called Xselerator for creating in XSL
--
Sasidhar
http://bizstop.blogspot.com/
"jron" <francesco334@interfree.it> wrote in message
news:2005022412403716482@mynewsgate.net...
> Sasidhar Parvatham <sasidhar.parvatham@gmail.com> ha scritto:
>
> have XML
>
>
> No, the problem is this:
> I receive from BizTalk Receive Object, an XML like this:
> <Root>
> <ADV>
> <Name>test1</Name>
> <Price>80,33</Price>
> </ADV>
> <ADV>
> <Name>test1</Name>
> <Price>14,33</Price>
> </ADV>
> ...
> </Root>
>
> I want, then, by Tranform Object, order the tag <ADV> from min Price to
> Max Price, by a Script or a particular object of BizTalk.
> Can I make this in BizTalk Mapping? (or BizTalk Tranformation)
>
> Thanks a lot, (it's very urgent!)
> Francesco
>
>
> --
> Francesco
>
|
|
|
|
|