Azure Logic App Custom Connector - SOAP to REST - Pass HTTP header from REST to SOAP request Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How to send a header using a HTTP request through a curl call?Understanding REST: Verbs, error codes, and authenticationCustom HTTP headers : naming conventionsDo sessions really violate RESTfulness?CXF: Add implicit headers to WSDL and WADL responses for a CXF SOAP/REST web serviceAzure Logic App: passing JWT tokenLogic App HTTP connector: TrustFailure errorIn azure logic App how to pass Cookie to Http requestBuilding a custom Azure Logic App Connector for php based REST API'sLogic App Custom Connector SOAP to Rest problem

How do pianists reach extremely loud dynamics?

old style "caution" boxes

How to convince students of the implication truth values?

Why wasn't DOSKEY integrated with COMMAND.COM?

What does the "x" in "x86" represent?

Do wooden building fires get hotter than 600°C?

Is it a good idea to use CNN to classify 1D signal?

Why aren't air breathing engines used as small first stages

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

Why do we bend a book to keep it straight?

Do square wave exist?

Is there a kind of relay only consumes power when switching?

What is the meaning of the new sigil in Game of Thrones Season 8 intro?

Is it cost-effective to upgrade an old-ish Giant Escape R3 commuter bike with entry-level branded parts (wheels, drivetrain)?

First console to have temporary backward compatibility

Is the Standard Deduction better than Itemized when both are the same amount?

How to tell that you are a giant?

Maximum summed powersets with non-adjacent items

Can a party unilaterally change candidates in preparation for a General election?

If a contract sometimes uses the wrong name, is it still valid?

How do I make this wiring inside cabinet safer? (Pic)

How to Make a Beautiful Stacked 3D Plot

What would be the ideal power source for a cybernetic eye?

Chinese Seal on silk painting - what does it mean?



Azure Logic App Custom Connector - SOAP to REST - Pass HTTP header from REST to SOAP request



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How to send a header using a HTTP request through a curl call?Understanding REST: Verbs, error codes, and authenticationCustom HTTP headers : naming conventionsDo sessions really violate RESTfulness?CXF: Add implicit headers to WSDL and WADL responses for a CXF SOAP/REST web serviceAzure Logic App: passing JWT tokenLogic App HTTP connector: TrustFailure errorIn azure logic App how to pass Cookie to Http requestBuilding a custom Azure Logic App Connector for php based REST API'sLogic App Custom Connector SOAP to Rest problem



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















In Azure I am able to create a Logic App Custom Connector to a SOAP API endpoint using Call Mode: SOAP to REST.
This SOAP Web Service needs an HTTP Header named Cookie with the value LoginCert=.
When modifying the Request of this connector I cannot find a way to add the Cookie HTTP header in the REST request and have that same Cookie be added to the SOAP request. Does anyone know how or if it is even possible to have HTTP headers from the REST request forwarded to the SOAP request made by the custom connector?



PS: This is possible in Azure via the API Management tool's REST to SOAP using the same WSDL, and then using the newly created REST endpoints inside of a Logic App Flow but this is not the solution.



TLDR: How can one add a HTTP header in an SOAP to REST Azure Logic App Custom Connector so the header is forwarded to the SOAP endpoint?










share|improve this question






















  • Please check if this is something you are looking for- blogs.msdn.microsoft.com/david_burgs_blog/2018/02/28/… Also check this too twocents.nl/?p=1998 Hope it helps.

    – Mohit Verma - MSFT
    Mar 13 at 12:13












  • @MohitVerma-MSFT Thanks for the links. I hadn't tried SOAP pass through but I just did and have the same problem. In code view I add the header "Cookie":"LoginCert=<valueFromLoginService>" and that header is not getting passed through the the SOAP call to the external service.

    – teancum21
    Mar 14 at 22:18






  • 1





    Seems this is a pretty common request. feedback.azure.com/forums/287593-logic-apps/suggestions/…

    – teancum21
    Mar 14 at 22:19


















0















In Azure I am able to create a Logic App Custom Connector to a SOAP API endpoint using Call Mode: SOAP to REST.
This SOAP Web Service needs an HTTP Header named Cookie with the value LoginCert=.
When modifying the Request of this connector I cannot find a way to add the Cookie HTTP header in the REST request and have that same Cookie be added to the SOAP request. Does anyone know how or if it is even possible to have HTTP headers from the REST request forwarded to the SOAP request made by the custom connector?



PS: This is possible in Azure via the API Management tool's REST to SOAP using the same WSDL, and then using the newly created REST endpoints inside of a Logic App Flow but this is not the solution.



TLDR: How can one add a HTTP header in an SOAP to REST Azure Logic App Custom Connector so the header is forwarded to the SOAP endpoint?










share|improve this question






















  • Please check if this is something you are looking for- blogs.msdn.microsoft.com/david_burgs_blog/2018/02/28/… Also check this too twocents.nl/?p=1998 Hope it helps.

    – Mohit Verma - MSFT
    Mar 13 at 12:13












  • @MohitVerma-MSFT Thanks for the links. I hadn't tried SOAP pass through but I just did and have the same problem. In code view I add the header "Cookie":"LoginCert=<valueFromLoginService>" and that header is not getting passed through the the SOAP call to the external service.

    – teancum21
    Mar 14 at 22:18






  • 1





    Seems this is a pretty common request. feedback.azure.com/forums/287593-logic-apps/suggestions/…

    – teancum21
    Mar 14 at 22:19














0












0








0








In Azure I am able to create a Logic App Custom Connector to a SOAP API endpoint using Call Mode: SOAP to REST.
This SOAP Web Service needs an HTTP Header named Cookie with the value LoginCert=.
When modifying the Request of this connector I cannot find a way to add the Cookie HTTP header in the REST request and have that same Cookie be added to the SOAP request. Does anyone know how or if it is even possible to have HTTP headers from the REST request forwarded to the SOAP request made by the custom connector?



PS: This is possible in Azure via the API Management tool's REST to SOAP using the same WSDL, and then using the newly created REST endpoints inside of a Logic App Flow but this is not the solution.



TLDR: How can one add a HTTP header in an SOAP to REST Azure Logic App Custom Connector so the header is forwarded to the SOAP endpoint?










share|improve this question














In Azure I am able to create a Logic App Custom Connector to a SOAP API endpoint using Call Mode: SOAP to REST.
This SOAP Web Service needs an HTTP Header named Cookie with the value LoginCert=.
When modifying the Request of this connector I cannot find a way to add the Cookie HTTP header in the REST request and have that same Cookie be added to the SOAP request. Does anyone know how or if it is even possible to have HTTP headers from the REST request forwarded to the SOAP request made by the custom connector?



PS: This is possible in Azure via the API Management tool's REST to SOAP using the same WSDL, and then using the newly created REST endpoints inside of a Logic App Flow but this is not the solution.



TLDR: How can one add a HTTP header in an SOAP to REST Azure Logic App Custom Connector so the header is forwarded to the SOAP endpoint?







rest azure web-services soap http-headers






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 8 at 18:57









teancum21teancum21

112




112












  • Please check if this is something you are looking for- blogs.msdn.microsoft.com/david_burgs_blog/2018/02/28/… Also check this too twocents.nl/?p=1998 Hope it helps.

    – Mohit Verma - MSFT
    Mar 13 at 12:13












  • @MohitVerma-MSFT Thanks for the links. I hadn't tried SOAP pass through but I just did and have the same problem. In code view I add the header "Cookie":"LoginCert=<valueFromLoginService>" and that header is not getting passed through the the SOAP call to the external service.

    – teancum21
    Mar 14 at 22:18






  • 1





    Seems this is a pretty common request. feedback.azure.com/forums/287593-logic-apps/suggestions/…

    – teancum21
    Mar 14 at 22:19


















  • Please check if this is something you are looking for- blogs.msdn.microsoft.com/david_burgs_blog/2018/02/28/… Also check this too twocents.nl/?p=1998 Hope it helps.

    – Mohit Verma - MSFT
    Mar 13 at 12:13












  • @MohitVerma-MSFT Thanks for the links. I hadn't tried SOAP pass through but I just did and have the same problem. In code view I add the header "Cookie":"LoginCert=<valueFromLoginService>" and that header is not getting passed through the the SOAP call to the external service.

    – teancum21
    Mar 14 at 22:18






  • 1





    Seems this is a pretty common request. feedback.azure.com/forums/287593-logic-apps/suggestions/…

    – teancum21
    Mar 14 at 22:19

















Please check if this is something you are looking for- blogs.msdn.microsoft.com/david_burgs_blog/2018/02/28/… Also check this too twocents.nl/?p=1998 Hope it helps.

– Mohit Verma - MSFT
Mar 13 at 12:13






Please check if this is something you are looking for- blogs.msdn.microsoft.com/david_burgs_blog/2018/02/28/… Also check this too twocents.nl/?p=1998 Hope it helps.

– Mohit Verma - MSFT
Mar 13 at 12:13














@MohitVerma-MSFT Thanks for the links. I hadn't tried SOAP pass through but I just did and have the same problem. In code view I add the header "Cookie":"LoginCert=<valueFromLoginService>" and that header is not getting passed through the the SOAP call to the external service.

– teancum21
Mar 14 at 22:18





@MohitVerma-MSFT Thanks for the links. I hadn't tried SOAP pass through but I just did and have the same problem. In code view I add the header "Cookie":"LoginCert=<valueFromLoginService>" and that header is not getting passed through the the SOAP call to the external service.

– teancum21
Mar 14 at 22:18




1




1





Seems this is a pretty common request. feedback.azure.com/forums/287593-logic-apps/suggestions/…

– teancum21
Mar 14 at 22:19






Seems this is a pretty common request. feedback.azure.com/forums/287593-logic-apps/suggestions/…

– teancum21
Mar 14 at 22:19













0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069373%2fazure-logic-app-custom-connector-soap-to-rest-pass-http-header-from-rest-to%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069373%2fazure-logic-app-custom-connector-soap-to-rest-pass-http-header-from-rest-to%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved