من کار با امروز BDC, coding ADF files by hand and generating myself some errors. One such error:
برنامه واردات تعریف شکست خورد. خطای زیر رخ داده است: می تواند نوع شرح داده شده توسط TypeName TypeDescriptor بار نیست. نام پارامتر: typeName خطا یا درست قبل از خط مواجه شد: '35’ و موقعیت: ’20’.
MOSS displayed this error when I tried to import the ADF XML file.
I researched the Internets and found that I was referencing the LOB instance name (from the <LobSystemInstance>) in my <TypeDescriptor> node when I should have referenced the LOB name itself (از <LobSystem>).
اشتباه:
<TypeDescriptor TypeName="Conchango.KeyValue, LOB Instance Name" Name="KeyValue">
Correct:
<TypeDescriptor TypeName="Conchango.KeyValue, LOB Name" Name="KeyValue">
Hope this one saves someone an hour or two of time.
</پایان>
سپاس ها
I got this error. But my TypeDescriptor was pointing to the LOBName not the LOB instance. So no idea of what is wrong. I searched the entire solution for this. No use.