|
|
|
| Can someone help me to create the dynamic http send port with dynamic basic authentication username and password and dynamic url queryparameters?
thx. in advance
| |
|
| I created the dynamic http send port and I was able to set the address using "Port_1(Microsoft.XLANGs.BaseTypes.Address) = "http://******/test.asp" but I dont know how to add the dynamic username and password for the basic authentication type.
| |
| Matt Milner 2004-05-25, 11:38 pm |
| use the following in your message assignment shape:
mymessage(Http.UserName) = "myusername";
mymessage(http.Password) = "mypassword";
mymessage(http.AuthenticationScheme) = "Basic";
Matt
"SB" <anonymous@discussions.microsoft.com> wrote in message
news:2432765A-7441-4F01-A8FB-452F45AA1A67@microsoft.com...
> I created the dynamic http send port and I was able to set the address
using "Port_1(Microsoft.XLANGs.BaseTypes.Address) = "http://******/test.asp"
but I dont know how to add the dynamic username and password for the basic
authentication type.
| |
|
| I created the dynamic port and assinged the following in the message assignment shape;
mysendPort(Microsoft.XLANGs.BaseTypes.Address) = "http://*****/test.asp";
mymessage(Http.UserName) = "myusername";
mymessage(http.Password) = "mypassword";
mymessage(http.AuthenticationScheme) = "Basic";
Do you think I am doing the above correctly.
One more question,
I like to assign this send port to the parties but I cannot see this send port in the availble lists in the party edit -> sendport list.
thx. in advance.
| |
| Matt Milner 2004-05-30, 10:47 am |
| If the port is dynamic, then it is not statically defined so it cannot be
added to a party. You are looking at two different ways to do the same type
of thing. You can either use the dynamic send port and set the address and
possibly other properties or you can use role links and set the party so
that it uses the port for the party.
Matt
"SB" <anonymous@discussions.microsoft.com> wrote in message
news:63A78ADE-D1EB-469C-AC9D-1EABE17A2B41@microsoft.com...
> I created the dynamic port and assinged the following in the message
assignment shape;
>
> mysendPort(Microsoft.XLANGs.BaseTypes.Address) = "http://*****/test.asp";
> mymessage(Http.UserName) = "myusername";
> mymessage(http.Password) = "mypassword";
> mymessage(http.AuthenticationScheme) = "Basic";
>
> Do you think I am doing the above correctly.
> One more question,
> I like to assign this send port to the parties but I cannot see this send
port in the availble lists in the party edit -> sendport list.
>
> thx. in advance.
|
|
|
|