How to connect a C++ application to Biztalk 2006?

Home Page Forums BizTalk 2004 – BizTalk 2010 How to connect a C++ application to Biztalk 2006?

Viewing 3 reply threads
  • Author
    Posts
    • #17462

      I  need to connect a C++ application to Biztalk. The application sends some message (possibly an XML file) to Biztalk, Biztalk process the file and sends it to an datawarehouse. Which would be the best way to fulfill this? Any tips? Thanks a lot.

    • #17470

      If it is a file that the C++ application would generate then you can use the File adapter of Biztalk to get that file, process it and send that to the dataware house. You'd need to tell biztalk the file location on which to listen so that whenever a file is dropped there, biztalk picks that up.

       The question of how to send messages to Biztalk, it connects to different protocols and locations using adapters, there are number of out-of-the-box adapters included with Biztalk server 2006, which include, File, FTP, MSMQ, MQ Series, Sql Server, Oracle, SOAP, Http etc. So it all depends on the convenience of the sending application, if it is more convinient for it to send message through a queue, then it can use a queue, if it can easily send a SOAP (Web Service) message then that can be used and so on…

      Hope this helps.

       Regards,

      Sajid.

    • #17490

      Thanks for your tip, it really helps.

       I thought about send the message by file but in such a case, the C++ application has to be on the machine as the Biztalk.

      It would be better to send SOAP so the C++ application (MYSQL source code) can talk to Biztalk over the Internet. I am trying to figure out a way to do this.

      Regards,

      Luo
       

       

       

      • #17500

        Lou, 

        What you can do is expose your orchestration as Web Service, and then call that from your application.

         Exposing an orchestration as web service is very easy in Biztalk and can be achieved using a Wizard.

         

        Regards,

        Sajid.

    • #17510

      Great idea!

      MYSQL source code has a VC++ version, I can just add a web reference to the project and start to use the web service. It sounds to be much easier than I expected.

       

       

Viewing 3 reply threads
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.