[HAPI-devel] CDA-basedMML in to the OBX-5 of a MDM^T02

2009-07-08 Thread alessandro
Hi all, I will be very happy to have an help about this: I have to do add the CDA-basedMML in to the OBX-5 of a MDM^T02 HL7 v.2.3.1 the CDA-basedMML document is a multimedia object and it is exchanged as a package in MIME (Multipurpose Internet Mail Exchange: RFC2046) format and encoded as an en

Re: [HAPI-devel] HAPI HL7

2009-07-08 Thread Kartik Soni
Hi Lorena, Which kind of project you are currently working on.? you can personally mail on [email protected] Regards, Kartik Lorena Sigüenza wrote: > > Hello > > My name is Lorena, I'm doing an prototype of Telemedicine, so I need to > work with DICOM, HL7, Java, etc. I'm looking

[HAPI-devel] Does HL7Server provide the method to break the current connection from the client ?

2009-07-08 Thread Yu Gu
Hi all . Does HL7Server in Hapi provide the method to break the current connection from the client ? When I try to stop the HL7Server, I call the hl7server.stop() method. It can stop running after the next connection is made, but it still response the client through the current connection. Ho

Re: [HAPI-devel] How can I stop HL7Server ? I start it in a new thread, but I can not stop it.

2009-07-08 Thread Yu Gu
Hi all, I add the operation of closing the socket, so method is changed like this: public void stopService(){ try{ if (isRunning()) { hl7server.stop(); } if(ss != null){ ss.close(); } } catch (IOException ioex) { ioex.printStackTrace