community-content

Forum Replies Created

Viewing 15 posts - 7,216 through 7,230 (of 9,652 total)
  • Author
    Posts
  • in reply to: Install Developer Tools after main installation? #15532

    This site is wonderful.[i:160f694bb7] [b:160f694bb7]THANK YOU![/b:160f694bb7][/i:160f694bb7]
    [quote:160f694bb7=\”greg.forsythe\”]If you unselect the already installed components they will be uninstalled.
    If you just select the the Developer Tools and SDK, leaving the other options alone, it will just add the Developer Tools and SDK.[/quote:160f694bb7][i:160f694bb7][/i:160f694bb7]

    in reply to: Major Enterprises using BizTalk #15536

    Has microsoft ever published a list of enterprise customers who are successfully using BizTalk2004/2006 for mission critical projects..?

    in reply to: Trouble creating Biztalk map #15534

    You will need to use custom Xslt.
    There are a number of ways of doing this in Xslt, the most efficient is using Muenchian grouping.

    [url]http://www.jenitennison.com/xslt/grouping/muenchian.html[/url]

    in reply to: storing xml file in database using sql adapter #15336

    Can you email me your project

    in reply to: Route on MessageType property without schema deployed? #15521

    I have not used cURL, but I suspect it may be using \”application/x-www-form-urlencoded” or “multipart/form-data\” encoding to send the message.

    The HTTP adapter just passes the raw message content to the pipeline.
    So if is not plain Xml then you will need to decode it.

    How are you expecting messages to be sent to the Http adapter. Is this internal where you have control over the sender or are you expecting external parties to send data.

    in reply to: XML Validator – C# code – catching errors problem #14135

    I still need a little help here… I started using the same validation class in a BizTalk 2006 solution. It is still working perfectly, but because the XmlVali######Reader is obsolete in .Net 2.0, I’m getting warnings. I tried modifying the class to use the following code instead of the XmlVali######Reader approach:

    [code:1:144a86be14]
    // Set up XmlVali######Reader and validate document – OBSOLETE!
    //Using XmlReaderSettings instead

    XmlReaderSettings settings = new XmlReaderSettings();

    settings.ValidationType = ValidationType.Schema;

    XmlReader reader = XmlReader.Create(new System.IO.StringReader(businessDocument.OuterXml), settings);
    foreach (XmlSchema xschema in btsSchemaCollection.SchemaCollection)
    {
    settings.Schemas.Add(xschema);
    }

    settings.ValidationEventHandler += new ValidationEventHandler(reader_ValidationEventHandler);

    while (reader.Read()) { }

    reader.Close();[/code:1:144a86be14]

    However this is not getting my document validated at all (it always validates fine even when it shouldn’t). Any idea on what could I be missing? Thanks again for the help

    in reply to: Install Developer Tools after main installation? #15531

    I have already installed Biztalk 2006 which is working great. I installed Visual Studio 2005 [i:af3a506e76][b:af3a506e76]after [/b:af3a506e76][/i:af3a506e76]Biztalk, and therefore now I want to install the Developer tools and SDK.

    When I run the installation wizard I choose \”Custom\” and select only the Developer tools and SDK. Will this uninstall everything else or just install Developer tools and SDK and let everything else remain?

    thanks in advance.

    in reply to: System Monitoring #14205

    Can anyone point a BizTalk newbie in the right direction concerning system monitoring. I don’t mean BAM, I mean more system error notifications, etc.

    Thanks.

    in reply to: Route on MessageType property without schema deployed? #15526

    Greg – thanks for the extra effort. I am pretty sure you are right, the problem I suspect for me is this –

    I have an HttpAdapter on the Receive Location. Now to post HTTP to this location I am using cURL – a command line utility to post HTTP quickly. cURL expects URL-Encoded data and something about this and the encoding is throwing this.

    Do you know a better way to post message over HTTP?

    [quote:037bea0ce7=\”greg.forsythe\”]I just did a quick test and it worked for me. The message type property is promoted, even if the schema is not deployed and I could set a filter on a send port to route the message based on message type

    Could your error be some sort of encoding problem with the test message[/quote:037bea0ce7]

    in reply to: storing xml file in database using sql adapter #15330

    Hi,

    I am also stuck up with same problem as you mentioned above.

    I got one xml message as response of SQL request-response adapter.
    I have transformed this message to another schema. And then stored it in xmlDoc variable. Now in order to send message to another system, i want to send one field and whole XML message. So i have constructed it with Transforming and by setting the value of xmlMessage as \”Empty\” in transform and then assiging the distinguished field of type nText a value of xmlDoc.outerXML.

    But i get the same error as

    \”A failure occured while evaluating the distinguished field proc_selct.newXML against the message part data.The message part data does notcontain at least one of the nodes specified by the Xpah expression that corresponds to the distinguished field.\”

    I have also tested this by creating the a dummy message and then constructing real message but it gives the same error.

    Also i have tested it by giving a default value to distinguished field but also it gives the same error.

    How can i solve this problem?

    Plz help as it urgent.

    Thanks in advanced.

    in reply to: file duplication to send port location #14200

    That was it 🙂

    Many thanks.

    in reply to: Global counters in orchestrations #15529

    Hello,

    I’m trying to find how to do global counters in orchestrations. I’d like to have a global variable to increase for each message that pass across this orchestration. I need it to know how many messages I’ve processed and gather it in a log.

    Does somebody know how to do this?

    Thank you.

    in reply to: To Learn Biztalk 2006?? #15517

    Hi all member,

    I’m a new biztalker, and i’m learning how to intergration bettwen Biztalk 2006 and SAP, so can you help me:
    1. which version of SAP to support the intergration?
    2. what are requirement components of SAP (such as Netwaver, …) to intergration with biztalk 2006?

    Thanks,

    in reply to: Route on MessageType property without schema deployed? #15520

    I just did a quick test and it worked for me. The message type property is promoted, even if the schema is not deployed and I could set a filter on a send port to route the message based on message type

    Could your error be some sort of encoding problem with the test message

    in reply to: Route on MessageType property without schema deployed? #15525

    Tried this – I am getting \”[b:0d7effb04c]Failure executing receive pipeline…..No Disassemble Stage components can recognize the data[/b:0d7effb04c]\”

Viewing 15 posts - 7,216 through 7,230 (of 9,652 total)