Monday, May 26, 2008

BizTalk FTP Adapter raises mystic error

"A failure occurred when parsing the remote folder listing"... just switch to passive mode.... :-)

Sunday, May 25, 2008

HowTo use dynamic SAP Send Port with SAP Adapter 2.0

as described in the linked ms article above you can set the SAP URI dynamically. But the most problem you have is to install the SAP Adpter 2.0 on a Windows Vista Client... SAP Connector... VS.NET 2003... and all these stupid stuff....

Main problem is to set the username and password on runtime. You have to address the SAP Adapter properties in the header of the message send to the SAP system. You need to reference th Microsoft.BizTalk.SAPAdapterProperties.dll into your VS.NET Solution and you are now able to set the user credientials at runtime.

Wednesday, May 21, 2008

Uninitializes dynamic send port :-)

ok ok...

some kind of stupid stuff...
i was searching to resolve the error while compiling an orchestration... this error is normally thrown when you have no address registered for a dynamic send port...
BUT i had set this property... äääääähhhmmm... but not in the correct order...

this is the BAD expression in the shape:

Port_DynamicSAP(Microsoft.XLANGs.BaseTypes.TransportType) = "SAP";
Port_DynamicSAP(Microsoft.XLANGs.BaseTypes.Address) = SOMESTRING;

and this is the GOOD expression in the shape:

Port_DynamicSAP(Microsoft.XLANGs.BaseTypes.Address) = SOMESTRING;
Port_DynamicSAP(Microsoft.XLANGs.BaseTypes.TransportType) = "SAP";

*g*... errare humanum est....

Tuesday, May 13, 2008

MOSS Profile Import works only with one DC

If you want to import profiles in MOSS, you have to use only one domain controller for a LDAP query. this is by design... i have this situation:

three import sources and two domain controllers in "cluster mode". the first two import sources will work, but the third fails....

there is a workaround for this: just do an OR and use only two LDAP sources... or (of course) do an OR and use only ONE LDAP query... i will write some more lines about this tomorrow...

Friday, May 9, 2008

E-AI

in honor of my/our job.... all our cars have now the licence number schema E-AI XXX :-)

Thursday, May 8, 2008

Starting book project "SAP Integration"

Today is kickoff for my new book project about "Consulting in integration projects".

I have 2 co-authors (both cutomers with integration skills) and will write about our experiences in this kinds of projects.

The book will release at the end of 2008. I will post a lot of experiences about this stuff while i'm writing the book... :-)

Friday, May 2, 2008

HTTP Error 411 ---- BizTalk HTTP Send Adapter

Some servers will throw an HTTP Error 411, when you send an message via BizTalk HTTP Send Adapter.... then there is only one way to go.... disable the chunked encoding....