నేను మళ్లీ చేతితో 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" మరియు నేను సంతోషంగా కొత్త మరియు మరింత ఉత్తేజకరమైన దిగుమతి లోపాలు వెళ్లారు, ఇది కారణంగా కోర్సు లో నిర్వహించింది.
ఇక్కడ తప్పు 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">
</చివర>