Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » OHF » Folder creation
Folder creation [message #39740] Fri, 04 January 2008 11:06 Go to next message
Eclipse UserFriend
Originally posted by: juj.lincoln.fr

hi,

I've got a problem with folder creation.
When I try to create a folder on the NIST server I have this message :
************************************************************ ****************************
ExternalIdentifier of type urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a
(XDSFolder.patientId) has no internal Name element"
************************************************************ ****************************

and these metadata are sent :
************************************************************ ****************************
<rim:RegistryPackage id="urn:uuid:2b46931e-ab3e-48a8-2622-00e018d4b31d"
objectType="urn:uuid:d9d542f3-6cc4-48b6-8870-ea235fbc94c2">
<rim:Name>
<rim:LocalizedString value="FOLDER">
</rim:LocalizedString>
</rim:Name>
<rim:Description>
</rim:Description>
<rim:ExternalIdentifier
identificationScheme="urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a "
value=" 21a217088720423^^^&amp;1.3.6.1.4.1.21367.2005.3.7&am p;ISO ">
</rim:ExternalIdentifier>
<rim:ExternalIdentifier
identificationScheme="urn:uuid:75df8f67-9973-4fbe-a900-df66cefecc5a "
value="1.3.6.1.4.1.21367.2005.3.7.20080104.112341.999">
<rim:Name>
<rim:LocalizedString value="XDSFolder.uniqueId">
</rim:LocalizedString>
</rim:Name>
</rim:ExternalIdentifier>
</rim:RegistryPackage>
************************************************************ ****************************

I don't know if it's an error in my code or if there is something else.

Here this is my code for folder creation :
************************************************************ ****************************
String folderEntryUUID = txnData.addFolder();
FolderType folder = txnData.getFolder(folderEntryUUID);

CX pid = Hl7v2Factory.eINSTANCE.createCX();
pid.setIdNumber("21a217088720423");
pid.setAssigningAuthorityUniversalId("1.3.6.1.4.1.21367.2005.3.7 ");
pid.setAssigningAuthorityUniversalIdType("ISO");
folder.setPatientId(pid);
************************************************************ ****************************

thank you for your help

Do you know when the documentation update on the new OHF-XDS will be
available?

JJameau
Re: Folder creation [message #39833 is a reply to message #39740] Fri, 04 January 2008 17:32 Go to previous messageGo to next message
Matthew DavisFriend
Messages: 269
Registered: July 2009
Senior Member
Hi,

I don't know the answer to this question right off hand. Sarah should
be able to help you more next week.

Thanks,
-Matt

exquisitus wrote:
> hi,
>
> I've got a problem with folder creation.
> When I try to create a folder on the NIST server I have this message :
> ************************************************************ ****************************
>
> ExternalIdentifier of type urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a
> (XDSFolder.patientId) has no internal Name element"
> ************************************************************ ****************************
>
>
> and these metadata are sent :
> ************************************************************ ****************************
>
> <rim:RegistryPackage id="urn:uuid:2b46931e-ab3e-48a8-2622-00e018d4b31d"
> objectType="urn:uuid:d9d542f3-6cc4-48b6-8870-ea235fbc94c2">
> <rim:Name>
> <rim:LocalizedString value="FOLDER">
> </rim:LocalizedString>
> </rim:Name>
> <rim:Description>
> </rim:Description>
> <rim:ExternalIdentifier
> identificationScheme="urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a "
> value=" 21a217088720423^^^&amp;1.3.6.1.4.1.21367.2005.3.7&am p;ISO ">
> </rim:ExternalIdentifier>
> <rim:ExternalIdentifier
> identificationScheme="urn:uuid:75df8f67-9973-4fbe-a900-df66cefecc5a "
> value="1.3.6.1.4.1.21367.2005.3.7.20080104.112341.999">
> <rim:Name>
> <rim:LocalizedString value="XDSFolder.uniqueId">
> </rim:LocalizedString>
> </rim:Name>
> </rim:ExternalIdentifier>
> </rim:RegistryPackage>
> ************************************************************ ****************************
>
>
> I don't know if it's an error in my code or if there is something else.
>
> Here this is my code for folder creation :
> ************************************************************ ****************************
>
> String folderEntryUUID = txnData.addFolder();
> FolderType folder = txnData.getFolder(folderEntryUUID);
>
> CX pid = Hl7v2Factory.eINSTANCE.createCX();
> pid.setIdNumber("21a217088720423");
> pid.setAssigningAuthorityUniversalId("1.3.6.1.4.1.21367.2005.3.7 ");
> pid.setAssigningAuthorityUniversalIdType("ISO");
> folder.setPatientId(pid);
> ************************************************************ ****************************
>
>
> thank you for your help
>
> Do you know when the documentation update on the new OHF-XDS will be
> available?
>
> JJameau
Re: Folder creation [message #40049 is a reply to message #39740] Tue, 08 January 2008 21:11 Go to previous message
No real name is currently offline No real nameFriend
Messages: 292
Registered: July 2009
Senior Member
Hi JJameau,

This appears to be a bug. Please open a bug in the eclipse bugzilla for
the ohf-source.

We are working on the new documentation - but have to make it past the
North American connectathon with a smaller team than last year. We are
making every effort to highlight changes from last year. We even have
isolated JUNITs that will take you through much of the basic functionality.

For documentation - please see the web, wiki and the JUNITS in each
plugin in the meantime.
http://www.eclipse.org/ohf/components/ihe/index.php
http://wiki.eclipse.org/OHF_IHE#Code_Branches

sorry for this delay,
regards,
- Sarah


exquisitus wrote:
> hi,
>
> I've got a problem with folder creation.
> When I try to create a folder on the NIST server I have this message :
> ************************************************************ ****************************
>
> ExternalIdentifier of type urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a
> (XDSFolder.patientId) has no internal Name element"
> ************************************************************ ****************************
>
>
> and these metadata are sent :
> ************************************************************ ****************************
>
> <rim:RegistryPackage id="urn:uuid:2b46931e-ab3e-48a8-2622-00e018d4b31d"
> objectType="urn:uuid:d9d542f3-6cc4-48b6-8870-ea235fbc94c2">
> <rim:Name>
> <rim:LocalizedString value="FOLDER">
> </rim:LocalizedString>
> </rim:Name>
> <rim:Description>
> </rim:Description>
> <rim:ExternalIdentifier
> identificationScheme="urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a "
> value=" 21a217088720423^^^&amp;1.3.6.1.4.1.21367.2005.3.7&am p;ISO ">
> </rim:ExternalIdentifier>
> <rim:ExternalIdentifier
> identificationScheme="urn:uuid:75df8f67-9973-4fbe-a900-df66cefecc5a "
> value="1.3.6.1.4.1.21367.2005.3.7.20080104.112341.999">
> <rim:Name>
> <rim:LocalizedString value="XDSFolder.uniqueId">
> </rim:LocalizedString>
> </rim:Name>
> </rim:ExternalIdentifier>
> </rim:RegistryPackage>
> ************************************************************ ****************************
>
>
> I don't know if it's an error in my code or if there is something else.
>
> Here this is my code for folder creation :
> ************************************************************ ****************************
>
> String folderEntryUUID = txnData.addFolder();
> FolderType folder = txnData.getFolder(folderEntryUUID);
>
> CX pid = Hl7v2Factory.eINSTANCE.createCX();
> pid.setIdNumber("21a217088720423");
> pid.setAssigningAuthorityUniversalId("1.3.6.1.4.1.21367.2005.3.7 ");
> pid.setAssigningAuthorityUniversalIdType("ISO");
> folder.setPatientId(pid);
> ************************************************************ ****************************
>
>
> thank you for your help
>
> Do you know when the documentation update on the new OHF-XDS will be
> available?
>
> JJameau
Re: Folder creation [message #584211 is a reply to message #39740] Fri, 04 January 2008 17:32 Go to previous message
Matthew DavisFriend
Messages: 269
Registered: July 2009
Senior Member
Hi,

I don't know the answer to this question right off hand. Sarah should
be able to help you more next week.

Thanks,
-Matt

exquisitus wrote:
> hi,
>
> I've got a problem with folder creation.
> When I try to create a folder on the NIST server I have this message :
> ************************************************************ ****************************
>
> ExternalIdentifier of type urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a
> (XDSFolder.patientId) has no internal Name element"
> ************************************************************ ****************************
>
>
> and these metadata are sent :
> ************************************************************ ****************************
>
> <rim:RegistryPackage id="urn:uuid:2b46931e-ab3e-48a8-2622-00e018d4b31d"
> objectType="urn:uuid:d9d542f3-6cc4-48b6-8870-ea235fbc94c2">
> <rim:Name>
> <rim:LocalizedString value="FOLDER">
> </rim:LocalizedString>
> </rim:Name>
> <rim:Description>
> </rim:Description>
> <rim:ExternalIdentifier
> identificationScheme="urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a "
> value=" 21a217088720423^^^&amp;1.3.6.1.4.1.21367.2005.3.7&am p;ISO ">
> </rim:ExternalIdentifier>
> <rim:ExternalIdentifier
> identificationScheme="urn:uuid:75df8f67-9973-4fbe-a900-df66cefecc5a "
> value="1.3.6.1.4.1.21367.2005.3.7.20080104.112341.999">
> <rim:Name>
> <rim:LocalizedString value="XDSFolder.uniqueId">
> </rim:LocalizedString>
> </rim:Name>
> </rim:ExternalIdentifier>
> </rim:RegistryPackage>
> ************************************************************ ****************************
>
>
> I don't know if it's an error in my code or if there is something else.
>
> Here this is my code for folder creation :
> ************************************************************ ****************************
>
> String folderEntryUUID = txnData.addFolder();
> FolderType folder = txnData.getFolder(folderEntryUUID);
>
> CX pid = Hl7v2Factory.eINSTANCE.createCX();
> pid.setIdNumber("21a217088720423");
> pid.setAssigningAuthorityUniversalId("1.3.6.1.4.1.21367.2005.3.7 ");
> pid.setAssigningAuthorityUniversalIdType("ISO");
> folder.setPatientId(pid);
> ************************************************************ ****************************
>
>
> thank you for your help
>
> Do you know when the documentation update on the new OHF-XDS will be
> available?
>
> JJameau
Re: Folder creation [message #584297 is a reply to message #39740] Tue, 08 January 2008 21:11 Go to previous message
No real name is currently offline No real nameFriend
Messages: 292
Registered: July 2009
Senior Member
Hi JJameau,

This appears to be a bug. Please open a bug in the eclipse bugzilla for
the ohf-source.

We are working on the new documentation - but have to make it past the
North American connectathon with a smaller team than last year. We are
making every effort to highlight changes from last year. We even have
isolated JUNITs that will take you through much of the basic functionality.

For documentation - please see the web, wiki and the JUNITS in each
plugin in the meantime.
http://www.eclipse.org/ohf/components/ihe/index.php
http://wiki.eclipse.org/OHF_IHE#Code_Branches

sorry for this delay,
regards,
- Sarah


exquisitus wrote:
> hi,
>
> I've got a problem with folder creation.
> When I try to create a folder on the NIST server I have this message :
> ************************************************************ ****************************
>
> ExternalIdentifier of type urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a
> (XDSFolder.patientId) has no internal Name element"
> ************************************************************ ****************************
>
>
> and these metadata are sent :
> ************************************************************ ****************************
>
> <rim:RegistryPackage id="urn:uuid:2b46931e-ab3e-48a8-2622-00e018d4b31d"
> objectType="urn:uuid:d9d542f3-6cc4-48b6-8870-ea235fbc94c2">
> <rim:Name>
> <rim:LocalizedString value="FOLDER">
> </rim:LocalizedString>
> </rim:Name>
> <rim:Description>
> </rim:Description>
> <rim:ExternalIdentifier
> identificationScheme="urn:uuid:f64ffdf0-4b97-4e06-b79f-a52b38ec2f8a "
> value=" 21a217088720423^^^&amp;1.3.6.1.4.1.21367.2005.3.7&am p;ISO ">
> </rim:ExternalIdentifier>
> <rim:ExternalIdentifier
> identificationScheme="urn:uuid:75df8f67-9973-4fbe-a900-df66cefecc5a "
> value="1.3.6.1.4.1.21367.2005.3.7.20080104.112341.999">
> <rim:Name>
> <rim:LocalizedString value="XDSFolder.uniqueId">
> </rim:LocalizedString>
> </rim:Name>
> </rim:ExternalIdentifier>
> </rim:RegistryPackage>
> ************************************************************ ****************************
>
>
> I don't know if it's an error in my code or if there is something else.
>
> Here this is my code for folder creation :
> ************************************************************ ****************************
>
> String folderEntryUUID = txnData.addFolder();
> FolderType folder = txnData.getFolder(folderEntryUUID);
>
> CX pid = Hl7v2Factory.eINSTANCE.createCX();
> pid.setIdNumber("21a217088720423");
> pid.setAssigningAuthorityUniversalId("1.3.6.1.4.1.21367.2005.3.7 ");
> pid.setAssigningAuthorityUniversalIdType("ISO");
> folder.setPatientId(pid);
> ************************************************************ ****************************
>
>
> thank you for your help
>
> Do you know when the documentation update on the new OHF-XDS will be
> available?
>
> JJameau
Previous Topic:Document instance returned from retrieveDocumentSet() has incomplete data
Next Topic:Setting "NetworkAccessPointID" on the ActiveParticipant in ATNA messages
Goto Forum:
  


Current Time: Tue Mar 19 03:37:33 GMT 2024

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

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

Back to the top