Calling a asp.net page in the biztalk orchestration

Home Page Forums BizTalk 2004 – BizTalk 2010 Calling a asp.net page in the biztalk orchestration

Viewing 2 reply threads
  • Author
    Posts
    • #16895

      hello

      can anyone help me out

      I need to Call a asp.net page in the biztalk orchestration and get back the results to Biztalk server for further process.

      Thanks in advance

       

       

    • #16897

      You can use HTTP Solicit-Response Send Port to send data to Asp.net page……and consume the response from the page.

    • #16900

      Depends on the method you use to call the asp.net page.

      If you use the POST method (e.g. form post) then you can use the standard Http Adapter, with a map and flat file assembler to construct the form message.

      If you use the GET method, then you will need to write a custom request/response Http adapter.
      Or you can write a .Net class to call the asp.net page and return the result. You can call the .NET class from the orchestration. If you use a static method on this class, you do not have to instantiate the class or worry about making it serializable.

      The  custom adapter is more complicated, but you have advantages like, using a pipeline for message manipulaton and the in-built retry capabilities.

       

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