હું ફરી એક વાર હાથ દ્વારા BDC ADF ફાઇલો કળાનો હતી (હું બિલ્ડ કરી શકે છે કે જેથી મારા "મારા લોન બંધ વિચાર!" હું) અને આ મનોરમ ભૂલ હિટ:
"Application definition import failed. નીચેની ભૂલ આવી:"
તમે જોઈ શકો છો, એક ભૂલ છે, પરંતુ … તે શું છે તે મને કહી જવા નથી.
મારા કિસ્સામાં, the issue turned out that I had started off with a functional ADF for a different project that connected to a database and executed a SQL query against a view. In this new project, I am calling a method on a web service. I had stripped out the DB specific stuff and added my web service stuff, પરંતુ અપડેટ નિષ્ફળ <LobSystem>’s Type attribute. I switched it to "WebService" અને હું happily નવી અને વધુ ઉત્તેજક આયાત ભૂલો પર ખસેડવામાં, જે કારણે કોર્સ નિયંત્રિત કરવામાં આવ્યા હતા.
અહીં ખોટું LobSystem છે:
<LobSystem
xmlns:xsi =HTTP://www.w3.org/2001/XMLSchema-instance
xsi:schemaLocation =HTTP://schemas.microsoft.com/office/2006/03/BusinessDataCatalogBDCMetadata.xsd
Type="Database"
Version="1.0.0.0" Name="xyzzy"
xmlns="HTTP://schemas.microsoft.com/office/2006/03/BusinessDataCatalog">
આ સાચું છે:
<LobSystem
xmlns:xsi =HTTP://www.w3.org/2001/XMLSchema-instance
xsi:schemaLocation =HTTP://schemas.microsoft.com/office/2006/03/BusinessDataCatalogBDCMetadata.xsd
Type="WebService"
Version="1.0.0.0" Name="xyzzy"
xmlns="HTTP://schemas.microsoft.com/office/2006/03/BusinessDataCatalog">
</અંત>