Skip to main content



      Home
Home » Modeling » UML2 » How to fix a "Package with uri not found." error
How to fix a "Package with uri not found." error [message #693542] Wed, 06 July 2011 13:50 Go to next message
Eclipse UserFriend
Build Identifier: 20090619-0625

The following code provides me with the following error,
"Package with uri htt..//schema.omg.org/spec/UML/2.1.1 not found.".
I was hoping someone could possibly explain to me what is happening. Within
the contents of the project.xmi file it contains that uri and this file was
exported from Rhapsody. This .xmi file is a model diagram. I found out that
EMF allows an interpretation of this model as a UML and in turn I was hoping I
could traverse that UML interpretation rather than the .xmi text. My ultimate
goal is to recreate that Rhapsody model in Eclipse.

Here is the beginning of the stack trace:


org.eclipse.emf.ecore.resource.Resource$IOWrappedException: Package with uri htt..//schema.omg.org/spec/UML/2.1.1 not found. (file:/C:/project.xmi, 3, 80)
at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.handleErrors(XMLLoadImpl.java:83)
at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl.java:191)
at org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl.doLoad(XMLResourceImpl.java:180)
at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(ResourceImpl.java:1494)


(the htt..// is a weblink)

Code:

String pathToXMI = "C:\\project.xmi";
File XMIFile = new File(pathToXMI);
URI coreXMI = URI.createFileURI(pathToXMI);


Resource resource = resourceFact.createResource(coreXMI);
try {

resource.load(new FileInputStream(XMIFile), Collections.EMPTY_MAP);

} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}


I believe I have to register the package but I'm not exactly sure how to... any form of assistance would be greatly appreciated.

Thanks.
Re: How to fix a "Package with uri not found." error [message #881360 is a reply to message #693542] Mon, 04 June 2012 08:04 Go to previous message
Eclipse UserFriend
sorry for reviving such old thread, but this might come handy for someone google-ing this question:

I just encountered the same error, then it came to my mind that i haven't initialized my generated package.
It can be done easily through:

YourGeneratedPackage.eINSTANCE.eClass();


if we take a closer look at its code:

YourGeneratedPackage eINSTANCE = foo.bar.impl.YourGeneratedPackageImpl.init();
Previous Topic:qualified association
Next Topic:Problem in a loop parcour XML
Goto Forum:
  


Current Time: Wed Jul 02 16:52:30 EDT 2025

Powered by FUDForum. Page generated in 0.03501 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top