08-03-05 10:51 PM
Have you configured your SMTP send handler with a SMTP server name? (Static
wouldn't work either in this case, but I thought I'd ask.)
Scott Colestock
www.traceofthought.net
"David Gil" <david_gil@tecnologia.cajamar.es> wrote in message
news:eLXP2IBmFHA.3448@TK2MSFTNGP12.phx.gbl...
> Hi:
>
> I make test with the static port, and it work right, But I need
> to send email to different email addresses for that I need to use a
> dinamyc port. In both case I use the same parameters. In this
> orchestration I define the dinamyc port with "Send Pipeline:
> Microsoft.BizTalk.DefaultPipelines.PassThruTransmit". In the Expression
> box I write the receiver email with this expression
> ""DinamycPort(Microsoft.XLANGs.BaseTypes.Address)="mailto:test@test.es;"".
> I create a message (ResponseMsg) and I specify the smtp parameters:
>
> ResponseMsg(SMTP.DeliveryReceipt)= false;
> ResponseMsg(SMTP.ReadReceipt)= false;
> ResponseMsg(SMTP.SMTPAuthenticate)= 0;
> ResponseMsg(SMTP.SMTPHost)= "192.168.188.3";
> ResponseMsg(SMTP.From)= creator@htp.es;
> ResponseMsg(SMTP.Subject)="Test with Dinamyc ";
> ResponseMsg(SMTP.CC)= copy@htp.es;
>
> When I make a test, I get the following error:
> The adapter failed on an attempt to transmit a message going to send
> port with the address mailto:test@test.es. Details: "The transport failed
> to connect to the server.
>
> But I get connectivity with the SMTPHost (I can make a telnet
> 192.168.188.3 port 25) and I can send email by commands. This is a test
> smtp server and it is not necessary to authenticate against it.
>
> What is the problem? Can I help me?
>
> Than you in advanced.
>
>
[ Post a follow-up to this message ]
|