| Author |
how to send Text Email in BizTalk Orchestration
|
|
| Lakshmi Murthy 2005-07-14, 7:47 am |
| Hi,
I need to send a text Email from my orchestration.
I implement the RawString type,declare RawOutMsg as a message of type
Microsoft.XLANGs.CustomFormattersSDK.RawString.
But when I construct a message in the Expression Editor :
RawOutMsg = new Microsoft.XLANGs.CustomFormattersSDK.RawString("Mensaje
Body" );
I get the error message: "identifier CustomFormattersSDK does not exist in
Microsoft.XLangs are you missing an assembly reference ?
What am i doing wrong? Please let me know.
Thanks in advance
Regards
Lakshmi
| |
| Yossi Dahan 2005-07-14, 7:47 am |
| Did you make sure to build the sample of the formatter, GAC it and add a
reference to it in the orchestration project?
Yossi Dahan
"Lakshmi Murthy" <LakshmiMurthy@discussions.microsoft.com> wrote in message
news:8AAAE050-39DA-42D2-9D0A-1F24E44AC797@microsoft.com...
> Hi,
>
> I need to send a text Email from my orchestration.
>
> I implement the RawString type,declare RawOutMsg as a message of type
> Microsoft.XLANGs.CustomFormattersSDK.RawString.
>
> But when I construct a message in the Expression Editor :
> RawOutMsg = new Microsoft.XLANGs.CustomFormattersSDK.RawString("Mensaje
> Body" );
>
> I get the error message: "identifier CustomFormattersSDK does not exist in
> Microsoft.XLangs are you missing an assembly reference ?
>
> What am i doing wrong? Please let me know.
>
> Thanks in advance
> Regards
> Lakshmi
>
| |
| Lakshmi Murthy 2005-07-14, 7:47 am |
| Yes, i did.
"Lakshmi Murthy" wrote:
> Hi,
>
> I need to send a text Email from my orchestration.
>
> I implement the RawString type,declare RawOutMsg as a message of type
> Microsoft.XLANGs.CustomFormattersSDK.RawString.
>
> But when I construct a message in the Expression Editor :
> RawOutMsg = new Microsoft.XLANGs.CustomFormattersSDK.RawString("Mensaje
> Body" );
>
> I get the error message: "identifier CustomFormattersSDK does not exist in
> Microsoft.XLangs are you missing an assembly reference ?
>
> What am i doing wrong? Please let me know.
>
> Thanks in advance
> Regards
> Lakshmi
>
| |
| Yossi Dahan 2005-07-14, 7:47 am |
| Lakshmi
I'm a bit confused -
I've just carefully followed the instructions as they appear on
http://msdn.microsoft.com/library/d..._email_ijqb.asp
and it all works like a charm.
one thing that confused me is that you use "RawOutMsg = new
Microsoft.XLANGs.CustomFormattersSDK.RawString(....."
When in my case it is
Message_1 = new
Microsoft.Samples.BizTalk.XlangCustomFormatters.RawString("...."
Notice the difference in the namespaces?
Also check your spelling and lowercase/uppercase - in the error message it
appears as ">> I get the error message: "identifier CustomFormattersSDK does
not exist in[vbcol=seagreen]
(stress on Xlangs)
while on your declaration its Microsoft.XLANGs.
Yossi Dahan
"Lakshmi Murthy" <LakshmiMurthy@discussions.microsoft.com> wrote in message
news:B89FE21E-D1B5-4A30-85ED-5B205C518FFF@microsoft.com...[vbcol=seagreen]
> Yes, i did.
>
> "Lakshmi Murthy" wrote:
>
|
|
|
|