10 - WSO2 EI Tutorial | Configure HTTP Endpoint

Поделиться
HTML-код
  • Опубликовано: 19 сен 2024

Комментарии • 24

  • @myronriw200
    @myronriw200 3 года назад +1

    Thankyou Mr for your tutorial. I almost gave up but found your channel and managed to get me excited.

    • @integrationcorner268
      @integrationcorner268  3 года назад +1

      Thank you so much. That's a great complement. Sharing knowledge is the whole purpose of this channel .. keep learning

  • @vasupandian
    @vasupandian 4 года назад +1

    Wow great work

  • @tusharkhurana-p2r
    @tusharkhurana-p2r Год назад

    Hi, very helpful video! Thank you!
    Can you tell how to set the query parameters if we are using existing endpoint?

  • @ashokg9077
    @ashokg9077 3 года назад +2

    how to pass the bearer token to http end point

    • @integrationcorner268
      @integrationcorner268  3 года назад +1

      You can set Authorization Header using Header or property mediator before entering HTTP Endpoint

    • @ashokchary
      @ashokchary 2 года назад

      @@integrationcorner268 Thank you so much... All this training videos helped me a lot in my work and improved my skills in beginner stage..

  • @MANOJKUMAR-rw9zw
    @MANOJKUMAR-rw9zw 6 месяцев назад

    Is it possible to dynamically hit different endpoints using call mediator
    Eg : when i iterate over a json loop
    i he different urls and i need to hit call mediator inside iterator each timee . Can i make call mediator dynamic?

  • @hiepnguyenhoang1604
    @hiepnguyenhoang1604 2 года назад

    That's an awesome video! How i can pass header value which take from previous payload factory? i used to use expression value in header mediator but it's not working

  • @animedepok5070
    @animedepok5070 2 года назад

    Hi Sir, I want to ask about my sample integration has result Transfer-Encoding: Chunked. Could you help me what should I do ?

  • @chj915
    @chj915 4 года назад

    how to submit XML body (application/xml) data to HTTP endpoint? I am getting the "Unsupported Media Type" error. I am using payloadFactory to set XML body.

    • @integrationcorner268
      @integrationcorner268  4 года назад

      Hejun Chen - unsupported media type indicates the content type that you are sending to the backend is different from what it is expecting. I am sure you must have tried setting content-type using header/property mediator. If yes, what is the scope defined ?

  • @NguyenTruong-jd1rf
    @NguyenTruong-jd1rf 4 года назад +1

    Thanks for your video! I want to add more informations to httpEndpoint such as header: authorization, type/ body; how can i do it?

    • @integrationcorner268
      @integrationcorner268  4 года назад +1

      Nguyên Trương - Thanks for watching the video. You can set Authorization header, for that matter any other headers, either using the property mediator or header mediator.

    • @NguyenTruong-jd1rf
      @NguyenTruong-jd1rf 4 года назад

      @@integrationcorner268 I tried add body with property but it's wrong:
      Please help to advise a way to fix it! Thanks for your support!

    • @integrationcorner268
      @integrationcorner268  4 года назад +1

      @@NguyenTruong-jd1rf - Are you trying to send these details to the backend as x-www-form-urlencoded data to get a token? if that is true, you may use the code as below





      $1

    • @NguyenTruong-jd1rf
      @NguyenTruong-jd1rf 4 года назад

      @@integrationcorner268 I have tried:









      $1





















      The request is 405 error, although I tried post in postman that responsing value correctly

    • @integrationcorner268
      @integrationcorner268  4 года назад +1

      @@NguyenTruong-jd1rf - 405 means method not allowed which is fairly straight forward. Please make sure you are passing correct HTTP Method to the backend by validating what is configured in your endpoint configuration.