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;
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
add a comment |
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
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
add a comment |
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
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
rest azure web-services soap http-headers
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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