community-content

Forum Replies Created

Viewing 15 posts - 6,871 through 6,885 (of 9,652 total)
  • Author
    Posts
  • in reply to: Invalid child element #16064

    Hemant,

    Is your schema is flat file schema?

    It looks to me you have tag identifier issue,

    before doing mapping make sure your schema is right(i.e validate with sameple). 

    Thanks

    Nar-

     

     

    in reply to: About transactions #16063

    Scopes don't need to be transactional. A non-transactional scope is usefule for error handling (when all you want is to use it as a sort of try{} catch{} block) or simply as a way to declare vairables/messages that are local to a given portion of your orchestration (you can define them at the scope level instead of at the orchestration level).

     And no, you can't add a catch exception block wihout a scope.
     

    in reply to: Client Certificate SOAP Adapter Issue #16062

    I thought this forum is very cooperative in guiding ppl. But i guess not all get replys.Thanks you to biztalk experts.

    in reply to: Expression shape #16060

    Yes you can do this, here's a short sample:

    construct SQLinserterrorMSG

    {

    // Use the Variable varXMLDom to load in some XML

    varXMLDOM.LoadXml(@"<ns0:errormsg xmlns:ns0=""http://SQLinsertErrorMSGsSchema""><ns0:sync><ns0:after><ns0:errormsg &#8230;. FileID=""10"" FelTEXT=""errorTEXT_10""/></ns0:after></ns0:sync></ns0:errormsg>");

    // Assign the BizTalk message to the XMLDom variable. Note this can be accomplished becuase a BizTalk message derives from an XMLDocument.

    SQLinserterrorMSG = varXMLDOM;

    // If there are no distinguished fields, then XPATH can be used to set the attributes in the message.

    xpath(SQLinsertMSG , "//@FileID") = "99999";

    xpath(SQLinsertMSG, //@errorTEXT) = "some text…";

    }

    in reply to: monitor recieve locations #16055

    The best way is to use a tool like Microsoft Operations Management (MOM).  It integrates into BizTalk and SQL very well.

     

    Other Event Log monitoring tools works as well.

    in reply to: Message Context #16054

    You access the values like: Message(Property).  You will get a drop down with values so you just have to know what one to select.  I think the POP ones all start with POP.

    You can look at "Configuring the POP3 Adapter" in the help guide for more info. 

     

    Hope this helps.

    in reply to: How to get webservice response from Biztalk #16052

    Well, inside BizTalk this is done with a Request-Response port.  Not really sure what you are looking to do, but if you set up your Orchestration with a Request-Response port you can return any type of message you like.

     

    Hope this helps.

    in reply to: BizTalk 2004 SP2? #16051

    Sorry I don’t have a date but I thought it was soon…  Not that this really helps you much.

    in reply to: Forcing a "Suspended (Non Resumable)" state #16050

    I don’t really know of a way. 

     

    That is kind of messing with the way BizTalk does recovery, guaranteed message, transmissions, etc.

     

    I know you can view the messages by status using WMI – but I don’t think you can change it.

     

    You could probably write some code inside your Orchestration exception block to terminate the message on the failed send port, but probably not change the state of the message.

     

    Hope this helps.

    in reply to: Dynamic Mapped Drive #16048

    I think that error is usually a security / per missions issue.  Might want to make sure that user has full control of the location. 

     

    You could always log into BizTalk server with that user and try to navigate to the share – just to see if it works.

    in reply to: Msg schema not appearing in Mapper dropdown #16047

    Are the inputs simple types?  That is, if your input to your web service is a String or an INT you will not get an input schema.  Those are handled as multiple part messages.

     

    If you input is a complex type (i.e. a class), you should see the schema.

     

    Hope this helps.

    in reply to: Cannot Promote field #16046

    You are probably trying to promote a field that is not supported – like a repeating element.  Those types of items you need to promote inside a custom pipeline component.

    in reply to: Biztalk 2004 trial version #16045

    here you go:

    http://download.microsoft.com/download/4/1/2/4121c8be-6034-4cae-ab1b-74caa1644ed1/BTS2004Eval_EN.exe

    before u install make sure sql sever and Visual Studio Installed, follow the installation guide.

    Nar-

    in reply to: SQL Adapter Schema Genaration Issue!! #16042

    i got the solution

    http://support.microsoft.com/kb/897291

    i don't know why we have to change char like this?

    Nar-

    in reply to: Oracle adapter – getting multiple results (rowset) #16035

    The Microsoft BizTalk 2006 Adapters for Enterprise Applications  documentation. Each adpater has documentation. Look in your Start Menu.

Viewing 15 posts - 6,871 through 6,885 (of 9,652 total)