Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » XML Schema Definition (XSD) » Problem while serializing xsd schema
Problem while serializing xsd schema [message #598171] Fri, 09 June 2006 07:13
Jason is currently offline JasonFriend
Messages: 45
Registered: July 2009
Member
Hi all

I want to construct a schema and save it
My code like this:

saveFile.addSelectionListener(new SelectionListener()
{
public void widgetSelected(SelectionEvent e)
{
FileDialog fd = new FileDialog(getShell(), SWT.SAVE);
String filename = fd.open();
if (filename == null)
return;

URI fileURI = URI.createPlatformResourceURI(filename);
ResourceSet resourceSet = new ResourceSetImpl();
Resource resource = resourceSet.createResource(fileURI);
resource.getContents().add(newSchema);
try
{
resource.save(Collections.EMPTY_MAP);
}
catch (Exception ex)
{
ex.printStackTrace();
}
}
});

but when I run the application, I get the following error message:
java.io.IOException: The path '/xxx/xxx.xsd' is unmapped
at
org.eclipse.emf.ecore.resource.impl.URIConverterImpl.createP latformResourceO
utputStream(URIConverterImpl.java:376)
at
org.eclipse.emf.ecore.resource.impl.URIConverterImpl.createO utputStream(URIC
onverterImpl.java:306)
at DropTargetTree$5.widgetSelected(DropTargetTree.java:193)

what's the problem?
Previous Topic:Changing namespaces?
Next Topic:Problem while serializing xsd schema
Goto Forum:
  


Current Time: Fri Apr 19 10:47:34 GMT 2024

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

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

Back to the top