baifanvhai / apromore

Automatically exported from code.google.com/p/apromore
0 stars 0 forks source link

Exporting an EPML file into EPML produces empty model #95

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
This is a regression. Please check what's going on. Test case: model 171

Original issue reported on code.google.com by marcello...@gmail.com on 30 Sep 2010 at 6:36

GoogleCodeExporter commented 9 years ago
It was due to the files being canonized with the old component. Now works fine 
after removing all these old EPML files.

Original comment by marcello...@gmail.com on 30 Sep 2010 at 7:07

GoogleCodeExporter commented 9 years ago
Abdul, this seems to be the case again. Please try to import the attached model 
and you will see that the EPML stored is empty. There are already a couple of 
models in the repository, 134 and 135 which suffer from the same problem. Can 
you please fix this ASAP?

Original comment by marcello...@gmail.com on 17 Nov 2010 at 11:30

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by marcello...@gmail.com on 17 Nov 2010 at 11:30

GoogleCodeExporter commented 9 years ago
The header epml tag in both files was:
<epml xmlns="http://www.epml.de">
and the closing tag was:
</epml>

When i changed it to:
<epml:epml xmlns:epml="http://www.epml.de">
as well as the closing tag:
</epml:epml>

They work fine.

Original comment by aah.shareef@gmail.com on 18 Nov 2010 at 12:58

GoogleCodeExporter commented 9 years ago
The sample EPML files are correct. Simply, the namespace is not qualified with 
a prefix. Can you modify the adapter in order to be tolerant to this? In other 
words, we should be able to accept both cases. 

Original comment by marcello...@gmail.com on 18 Nov 2010 at 11:03