Unë kam qenë edhe një herë crafting QZHB fotografi FSHZH me dorë (kështu që unë mund të ndërtojë mia "zbres lëndinë e mia!" cred) dhe e goditi ky gabim lovely:
"Application definition import failed. Gabim e mëposhtme ndodhi:"
Siç mund ta shikoni, ka një gabim, por … ajo nuk do të më thoni se çfarë është.
Në rastin tim, 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, por dështoi për të rinovuar <LobSystem>’s Type attribute. I switched it to "WebService" dhe unë për fat të mirë u zhvendos për gabime të reja dhe më emocionuese të importit, të cilat janë trajtuar në kohën e duhur.
Këtu është LobSystem gabuar:
<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">
Kjo është e saktë:
<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">
</fund>