|
Home > Archive > BizTalk Server > February 2007 > BizTalk HTTP Adapter
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
BizTalk HTTP Adapter
|
|
| BizTalk Developer 2007-01-24, 7:17 pm |
| Is it possible to connect to a web page that uses domain authentication +
forms authentication, using biztalk http adapter? When you configure the HTTP
send port, you can specify only one set of credentials for Basic
Authentication. I assume this would be domain user id/pwd. Where would one
specify forms credentials or vice versa. Thx in advance.
| |
| Tao Zhang[MSFT] 2007-02-21, 1:18 am |
| If you have a remote site using form authentication, then, usually, there
is an equivalent URL to achieve the form authentication. It is usually in
the form of something like
http://remotesite/login.aspx?userna...erparam=xxx....
You can directly put that into HTTP Send port URL. If you directly use
that, then it is better remote host use https. Otherwise, the username
password is set in clear text
If you don't want to show your URL in http send port configuration, you can
use Dynamic Send Port. You can use an orchestration message construction
shape before deliver message to dynamic http send port. Using that, you
can specify URL in the your message's OutboundTransportLocation property.
And you can set all kinds of HTTP request header using the properties
attach to http request, you code will be like:
YourMessage(Http.HTTP_PROPERTYNAME)=your value;
This will give you almost total control of your HTTP send request.
--------------------[vbcol=seagreen]
<BizTalkDeveloper@discussions.microsoft.com>[vbcol=seagreen]
HTTP[vbcol=seagreen]
one[vbcol=seagreen]
|
|
|
|
|