<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-3031</id>
	<title>Nabble - Medical Science Apps.</title>
	<updated>2008-12-01T09:46:17Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Medical-Science-Apps.-f3031.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Medical-Science-Apps.-f3031.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-20776933</id>
	<title>Re: does hapi check that a segment i spresent in a message in mandatory</title>
	<published>2008-12-01T09:46:17Z</published>
	<updated>2008-12-01T09:46:17Z</updated>
	<author>
		<name>Bryan Tripp</name>
	</author>
	<content type="html">HAPI doesn't test for valid structure by default. The thorough way to
&lt;br&gt;do it is to use conformance profiles (see
&lt;br&gt;&lt;a href=&quot;http://www.hl7.org/Special/committees/ictc/index.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.hl7.org/Special/committees/ictc/index.cfm&lt;/a&gt;), and a
&lt;br&gt;ca.uhn.hl7v2.validation.impl.ConformanceProfileRule. If that's too
&lt;br&gt;much trouble, you can write a simpler
&lt;br&gt;ca.uhn.hl7v2.validation.MessageRule yourself.
&lt;br&gt;&lt;br&gt;The empty segments are created when the parser iterates through the
&lt;br&gt;message structure to find the right place to put the segment data.
&lt;br&gt;&lt;br&gt;Bryan
&lt;br&gt;&lt;br&gt;On Fri, Nov 28, 2008 at 5:26 AM, Fabio Daprile
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20776933&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabio.daprile@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; i received this message from a remote system:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; MSH|^~\&amp;|G2|Insiel|RIS|Syncromed|20070702090200+0000||ADT^A08^ADT_A01|G2070000003114850300|P|2.5||||||8859/1
&lt;br&gt;&amp;gt; PID|||9056752||RUBINI^RENATO||19431020000000+0000|M|||VIA DELLE BORRE
&lt;br&gt;&amp;gt; 26^^036017^^41052~VIA DELLE BORRE
&lt;br&gt;&amp;gt; 26^^036017^^41052^^M||||||||||||036017|||100
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This message is obviously wrong, because the segment PV1, which is
&lt;br&gt;&amp;gt; mandatory, is absent.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I parse this message with the following java code:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;String msg6 =
&lt;br&gt;&amp;gt; &amp;quot;MSH|^~\\&amp;|G2|Insiel|RIS|Syncromed|200707020902||ADT^A08|G2070000003114850300|P|2.5|\r&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;+ &amp;quot;PID|||9056752||RUBINI^RENATO^^^^^L||194310200000|M|||VIA
&lt;br&gt;&amp;gt; DELLE BORRE 26^^036017^^41052^^L41052~VIA DELLE BORRE
&lt;br&gt;&amp;gt; 26^^036017^^41052^^M|||||||RBNRNT43R20E264C|46394391||||036017|||100&amp;quot;;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;String[] messages = {msg6};
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PipeParser hapiPipeParser = new PipeParser();
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;try {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;hapiMsg = hapiPipeParser.parse(msg6);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;} catch (EncodingNotSupportedException e) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// TODO Auto-generated catch block
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;e.printStackTrace();
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;} catch (HL7Exception e) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// TODO Auto-generated catch block
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;e.printStackTrace();
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Document hapidoc = null;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DefaultXMLParser xmlparse = new DefaultXMLParser();
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;try {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;hapidoc = xmlparse.encodeDocument(hapiMsg);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;} catch (HL7Exception e) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// TODO Auto-generated catch block
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;e.printStackTrace();
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And the result is the following:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;ADT_A01&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.1&amp;gt;|&amp;lt;/MSH.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.2&amp;gt;^~\&amp;amp;&amp;lt;/MSH.2&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.3&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;HD.1&amp;gt;G2&amp;lt;/HD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/MSH.3&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.4&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;HD.1&amp;gt;Insiel&amp;lt;/HD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/MSH.4&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.5&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;HD.1&amp;gt;RIS&amp;lt;/HD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/MSH.5&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.6&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;HD.1&amp;gt;Syncromed&amp;lt;/HD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/MSH.6&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.7&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;TS.1&amp;gt;200707020902&amp;lt;/TS.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/MSH.7&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.9&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSG.1&amp;gt;ADT&amp;lt;/MSG.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSG.2&amp;gt;A08&amp;lt;/MSG.2&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/MSH.9&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.10&amp;gt;G2070000003114850300&amp;lt;/MSH.10&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.11&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PT.1&amp;gt;P&amp;lt;/PT.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/MSH.11&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;MSH.12&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;VID.1&amp;gt;2.5&amp;lt;/VID.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/MSH.12&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/MSH&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;SFT/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;EVN/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.3&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;CX.1&amp;gt;9056752&amp;lt;/CX.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/PID.3&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.5&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XPN.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;FN.1&amp;gt;RUBINI&amp;lt;/FN.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/XPN.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XPN.2&amp;gt;RENATO&amp;lt;/XPN.2&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XPN.7&amp;gt;L&amp;lt;/XPN.7&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/PID.5&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.7&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;TS.1&amp;gt;194310200000&amp;lt;/TS.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/PID.7&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.8&amp;gt;M&amp;lt;/PID.8&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.11&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XAD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;SAD.1&amp;gt;VIA DELLE BORRE 26&amp;lt;/SAD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/XAD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XAD.3&amp;gt;036017&amp;lt;/XAD.3&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XAD.5&amp;gt;41052&amp;lt;/XAD.5&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XAD.7&amp;gt;L41052&amp;lt;/XAD.7&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/PID.11&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.11&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XAD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;SAD.1&amp;gt;VIA DELLE BORRE 26&amp;lt;/SAD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/XAD.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XAD.3&amp;gt;036017&amp;lt;/XAD.3&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XAD.5&amp;gt;41052&amp;lt;/XAD.5&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;XAD.7&amp;gt;M&amp;lt;/XAD.7&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/PID.11&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.18&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;CX.1&amp;gt;RBNRNT43R20E264C&amp;lt;/CX.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/PID.18&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.19&amp;gt;46394391&amp;lt;/PID.19&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.23&amp;gt;036017&amp;lt;/PID.23&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;PID.26&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;CE.1&amp;gt;100&amp;lt;/CE.1&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/PID.26&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/PID&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/ADT_A01&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It seems that Hapi creates empty segments, if not present in the
&lt;br&gt;&amp;gt; incoming message, but only up to the last existing segment. Why it does
&lt;br&gt;&amp;gt; not create empty segments for the following segments ?
&lt;br&gt;&amp;gt; And why it does not throw any exception when a Mandatory segment is not
&lt;br&gt;&amp;gt; present in the message?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If this is a feature and not a bug, somebody &amp;nbsp;can explain to me how to
&lt;br&gt;&amp;gt; implement this check? Is it possible to use the Validators
&lt;br&gt;&amp;gt; (ValidationContextImpl) for this? Maybe somebody has already a class
&lt;br&gt;&amp;gt; that does this kind of job.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If this is a bug, is there a bug ticket opened? Or should i open one?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; greetings,
&lt;br&gt;&amp;gt; Fabio Daprile
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Fabio Daprile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; via Galilei, 2 39100 Bolzano (BZ) - Italy Mobile +39 3491204973 tel.
&lt;br&gt;&amp;gt; +39.0471065901 fax. +39.0471065919 e-mail &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20776933&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabio.daprile@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Hl7api-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20776933&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20776933&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/does-hapi-check-that-a-segment-i-spresent-in-a-message-in-mandatory-tp20732893p20776933.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20732893</id>
	<title>does hapi check that a segment i spresent in a message in mandatory</title>
	<published>2008-11-28T02:26:58Z</published>
	<updated>2008-11-28T02:26:58Z</updated>
	<author>
		<name>Fabio Daprile</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;i received this message from a remote system:
&lt;br&gt;&lt;br&gt;MSH|^~\&amp;|G2|Insiel|RIS|Syncromed|20070702090200+0000||ADT^A08^ADT_A01|G2070000003114850300|P|2.5||||||8859/1
&lt;br&gt;PID|||9056752||RUBINI^RENATO||19431020000000+0000|M|||VIA DELLE BORRE 
&lt;br&gt;26^^036017^^41052~VIA DELLE BORRE 
&lt;br&gt;26^^036017^^41052^^M||||||||||||036017|||100
&lt;br&gt;&lt;br&gt;This message is obviously wrong, because the segment PV1, which is 
&lt;br&gt;mandatory, is absent.
&lt;br&gt;&lt;br&gt;I parse this message with the following java code:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String msg6 = 
&lt;br&gt;&amp;quot;MSH|^~\\&amp;|G2|Insiel|RIS|Syncromed|200707020902||ADT^A08|G2070000003114850300|P|2.5|\r&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; + &amp;quot;PID|||9056752||RUBINI^RENATO^^^^^L||194310200000|M|||VIA 
&lt;br&gt;DELLE BORRE 26^^036017^^41052^^L41052~VIA DELLE BORRE 
&lt;br&gt;26^^036017^^41052^^M|||||||RBNRNT43R20E264C|46394391||||036017|||100&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String[] messages = {msg6};
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PipeParser hapiPipeParser = new PipeParser();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hapiMsg = hapiPipeParser.parse(msg6);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (EncodingNotSupportedException e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (HL7Exception e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Document hapidoc = null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DefaultXMLParser xmlparse = new DefaultXMLParser();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hapidoc = xmlparse.encodeDocument(hapiMsg);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (HL7Exception e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;And the result is the following:
&lt;br&gt;&lt;br&gt;&amp;lt;ADT_A01&amp;gt;
&lt;br&gt;&amp;lt;MSH&amp;gt;
&lt;br&gt;&amp;lt;MSH.1&amp;gt;|&amp;lt;/MSH.1&amp;gt;
&lt;br&gt;&amp;lt;MSH.2&amp;gt;^~\&amp;amp;&amp;lt;/MSH.2&amp;gt;
&lt;br&gt;&amp;lt;MSH.3&amp;gt;
&lt;br&gt;&amp;lt;HD.1&amp;gt;G2&amp;lt;/HD.1&amp;gt;
&lt;br&gt;&amp;lt;/MSH.3&amp;gt;
&lt;br&gt;&amp;lt;MSH.4&amp;gt;
&lt;br&gt;&amp;lt;HD.1&amp;gt;Insiel&amp;lt;/HD.1&amp;gt;
&lt;br&gt;&amp;lt;/MSH.4&amp;gt;
&lt;br&gt;&amp;lt;MSH.5&amp;gt;
&lt;br&gt;&amp;lt;HD.1&amp;gt;RIS&amp;lt;/HD.1&amp;gt;
&lt;br&gt;&amp;lt;/MSH.5&amp;gt;
&lt;br&gt;&amp;lt;MSH.6&amp;gt;
&lt;br&gt;&amp;lt;HD.1&amp;gt;Syncromed&amp;lt;/HD.1&amp;gt;
&lt;br&gt;&amp;lt;/MSH.6&amp;gt;
&lt;br&gt;&amp;lt;MSH.7&amp;gt;
&lt;br&gt;&amp;lt;TS.1&amp;gt;200707020902&amp;lt;/TS.1&amp;gt;
&lt;br&gt;&amp;lt;/MSH.7&amp;gt;
&lt;br&gt;&amp;lt;MSH.9&amp;gt;
&lt;br&gt;&amp;lt;MSG.1&amp;gt;ADT&amp;lt;/MSG.1&amp;gt;
&lt;br&gt;&amp;lt;MSG.2&amp;gt;A08&amp;lt;/MSG.2&amp;gt;
&lt;br&gt;&amp;lt;/MSH.9&amp;gt;
&lt;br&gt;&amp;lt;MSH.10&amp;gt;G2070000003114850300&amp;lt;/MSH.10&amp;gt;
&lt;br&gt;&amp;lt;MSH.11&amp;gt;
&lt;br&gt;&amp;lt;PT.1&amp;gt;P&amp;lt;/PT.1&amp;gt;
&lt;br&gt;&amp;lt;/MSH.11&amp;gt;
&lt;br&gt;&amp;lt;MSH.12&amp;gt;
&lt;br&gt;&amp;lt;VID.1&amp;gt;2.5&amp;lt;/VID.1&amp;gt;
&lt;br&gt;&amp;lt;/MSH.12&amp;gt;
&lt;br&gt;&amp;lt;/MSH&amp;gt;
&lt;br&gt;&amp;lt;SFT/&amp;gt;
&lt;br&gt;&amp;lt;EVN/&amp;gt;
&lt;br&gt;&amp;lt;PID&amp;gt;
&lt;br&gt;&amp;lt;PID.3&amp;gt;
&lt;br&gt;&amp;lt;CX.1&amp;gt;9056752&amp;lt;/CX.1&amp;gt;
&lt;br&gt;&amp;lt;/PID.3&amp;gt;
&lt;br&gt;&amp;lt;PID.5&amp;gt;
&lt;br&gt;&amp;lt;XPN.1&amp;gt;
&lt;br&gt;&amp;lt;FN.1&amp;gt;RUBINI&amp;lt;/FN.1&amp;gt;
&lt;br&gt;&amp;lt;/XPN.1&amp;gt;
&lt;br&gt;&amp;lt;XPN.2&amp;gt;RENATO&amp;lt;/XPN.2&amp;gt;
&lt;br&gt;&amp;lt;XPN.7&amp;gt;L&amp;lt;/XPN.7&amp;gt;
&lt;br&gt;&amp;lt;/PID.5&amp;gt;
&lt;br&gt;&amp;lt;PID.7&amp;gt;
&lt;br&gt;&amp;lt;TS.1&amp;gt;194310200000&amp;lt;/TS.1&amp;gt;
&lt;br&gt;&amp;lt;/PID.7&amp;gt;
&lt;br&gt;&amp;lt;PID.8&amp;gt;M&amp;lt;/PID.8&amp;gt;
&lt;br&gt;&amp;lt;PID.11&amp;gt;
&lt;br&gt;&amp;lt;XAD.1&amp;gt;
&lt;br&gt;&amp;lt;SAD.1&amp;gt;VIA DELLE BORRE 26&amp;lt;/SAD.1&amp;gt;
&lt;br&gt;&amp;lt;/XAD.1&amp;gt;
&lt;br&gt;&amp;lt;XAD.3&amp;gt;036017&amp;lt;/XAD.3&amp;gt;
&lt;br&gt;&amp;lt;XAD.5&amp;gt;41052&amp;lt;/XAD.5&amp;gt;
&lt;br&gt;&amp;lt;XAD.7&amp;gt;L41052&amp;lt;/XAD.7&amp;gt;
&lt;br&gt;&amp;lt;/PID.11&amp;gt;
&lt;br&gt;&amp;lt;PID.11&amp;gt;
&lt;br&gt;&amp;lt;XAD.1&amp;gt;
&lt;br&gt;&amp;lt;SAD.1&amp;gt;VIA DELLE BORRE 26&amp;lt;/SAD.1&amp;gt;
&lt;br&gt;&amp;lt;/XAD.1&amp;gt;
&lt;br&gt;&amp;lt;XAD.3&amp;gt;036017&amp;lt;/XAD.3&amp;gt;
&lt;br&gt;&amp;lt;XAD.5&amp;gt;41052&amp;lt;/XAD.5&amp;gt;
&lt;br&gt;&amp;lt;XAD.7&amp;gt;M&amp;lt;/XAD.7&amp;gt;
&lt;br&gt;&amp;lt;/PID.11&amp;gt;
&lt;br&gt;&amp;lt;PID.18&amp;gt;
&lt;br&gt;&amp;lt;CX.1&amp;gt;RBNRNT43R20E264C&amp;lt;/CX.1&amp;gt;
&lt;br&gt;&amp;lt;/PID.18&amp;gt;
&lt;br&gt;&amp;lt;PID.19&amp;gt;46394391&amp;lt;/PID.19&amp;gt;
&lt;br&gt;&amp;lt;PID.23&amp;gt;036017&amp;lt;/PID.23&amp;gt;
&lt;br&gt;&amp;lt;PID.26&amp;gt;
&lt;br&gt;&amp;lt;CE.1&amp;gt;100&amp;lt;/CE.1&amp;gt;
&lt;br&gt;&amp;lt;/PID.26&amp;gt;
&lt;br&gt;&amp;lt;/PID&amp;gt;
&lt;br&gt;&amp;lt;/ADT_A01&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;It seems that Hapi creates empty segments, if not present in the 
&lt;br&gt;incoming message, but only up to the last existing segment. Why it does 
&lt;br&gt;not create empty segments for the following segments ?
&lt;br&gt;And why it does not throw any exception when a Mandatory segment is not 
&lt;br&gt;present in the message?
&lt;br&gt;&lt;br&gt;If this is a feature and not a bug, somebody &amp;nbsp;can explain to me how to 
&lt;br&gt;implement this check? Is it possible to use the Validators 
&lt;br&gt;(ValidationContextImpl) for this? Maybe somebody has already a class 
&lt;br&gt;that does this kind of job.
&lt;br&gt;&lt;br&gt;If this is a bug, is there a bug ticket opened? Or should i open one?
&lt;br&gt;&lt;br&gt;greetings,
&lt;br&gt;Fabio Daprile
&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;Fabio Daprile
&lt;br&gt;&lt;br&gt;via Galilei, 2 39100 Bolzano (BZ) - Italy Mobile +39 3491204973 tel. 
&lt;br&gt;+39.0471065901 fax. +39.0471065919 e-mail &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20732893&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabio.daprile@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20732893&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/does-hapi-check-that-a-segment-i-spresent-in-a-message-in-mandatory-tp20732893p20732893.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20709243</id>
	<title>Re: Why ADT_A08 message is NOT in package ca.uhn.hl7v2.model.v25.message</title>
	<published>2008-11-26T13:00:17Z</published>
	<updated>2008-11-26T13:00:17Z</updated>
	<author>
		<name>nicovn</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;The model class (=message structure) to use for an ADT^A08 event is ADT_A01.
&lt;br&gt;&lt;br&gt;The file 2.5.properties in folder ca\uhn\hl7v2\parser\eventmap should 
&lt;br&gt;help you in finding out what class to use.
&lt;br&gt;&lt;br&gt;The best option of course is to look in the hl7 standard documents 
&lt;br&gt;where the message structure for each event is specified too.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Best Regards
&lt;br&gt;&lt;br&gt;Nico
&lt;br&gt;&lt;br&gt;At 25/11/2008, Dayu Han wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;Hi All
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I try to create a ADT_A08 message of v2.5 and find that it is not even
&lt;br&gt;&amp;gt;in the package: ca.uhn.hl7v2.model.v25.message. Is there a reason for
&lt;br&gt;&amp;gt;this ? Any workaround if available ? Any other suggestions ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Many thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;HL7 Champion.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;-------------------------------------------------------------------------
&lt;br&gt;&amp;gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;&amp;gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;&amp;gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt;_______________________________________________
&lt;br&gt;&amp;gt;Hl7api-devel mailing list
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20709243&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20709243&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Why-ADT_A08-message-is-NOT-in-package-ca.uhn.hl7v2.model.v25.message-tp20686421p20709243.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20686421</id>
	<title>Why ADT_A08 message is NOT in package ca.uhn.hl7v2.model.v25.message</title>
	<published>2008-11-25T09:52:01Z</published>
	<updated>2008-11-25T09:52:01Z</updated>
	<author>
		<name>Dayu Han</name>
	</author>
	<content type="html">Hi All
&lt;br&gt;&lt;br&gt;I try to create a ADT_A08 message of v2.5 and find that it is not even &amp;nbsp;
&lt;br&gt;in the package: ca.uhn.hl7v2.model.v25.message. Is there a reason for &amp;nbsp;
&lt;br&gt;this ? Any workaround if available ? Any other suggestions ?
&lt;br&gt;&lt;br&gt;Many thanks
&lt;br&gt;&lt;br&gt;HL7 Champion.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20686421&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Why-ADT_A08-message-is-NOT-in-package-ca.uhn.hl7v2.model.v25.message-tp20686421p20686421.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20676368</id>
	<title>Re: DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory - No user-defined packages for version 2.1</title>
	<published>2008-11-24T23:40:27Z</published>
	<updated>2008-11-24T23:40:27Z</updated>
	<author>
		<name>Frederic JECKER</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;These debug log traces aren't important, they only state that the HAPI &amp;nbsp;
&lt;br&gt;parser didn't find any
&lt;br&gt;user defined classes for Segments/Messages.
&lt;br&gt;To define your own classes, simply create a custom_packages directory &amp;nbsp;
&lt;br&gt;on your classpath.
&lt;br&gt;In this directory place one file per version you wish to define your &amp;nbsp;
&lt;br&gt;custom classes (ex: 2.3.1, 2.4)
&lt;br&gt;each file will contain one line : the name of the package containing &amp;nbsp;
&lt;br&gt;your custom classes.
&lt;br&gt;These will be loaded and used by HAPI automatically
&lt;br&gt;&lt;br&gt;Hope this helps
&lt;br&gt;&lt;br&gt;Fred
&lt;br&gt;&lt;br&gt;&lt;br&gt;Le 24 nov. 08 à 23:59, Dayu Han a écrit :
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I developed a simple application using HAPI, however, when the
&lt;br&gt;&amp;gt; application starts, we have the following errors:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined
&lt;br&gt;&amp;gt; packages for version 2.1
&lt;br&gt;&amp;gt; DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined
&lt;br&gt;&amp;gt; packages for version 2.2
&lt;br&gt;&amp;gt; DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined
&lt;br&gt;&amp;gt; packages for version 2.3
&lt;br&gt;&amp;gt; DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined
&lt;br&gt;&amp;gt; packages for version 2.3.1
&lt;br&gt;&amp;gt; DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined
&lt;br&gt;&amp;gt; packages for version 2.4
&lt;br&gt;&amp;gt; DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined
&lt;br&gt;&amp;gt; packages for version 2.5
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any input would be appreciated.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; HL7 Champion.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's &amp;nbsp;
&lt;br&gt;&amp;gt; challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win &amp;nbsp;
&lt;br&gt;&amp;gt; great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in &amp;nbsp;
&lt;br&gt;&amp;gt; the world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Hl7api-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20676368&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20676368&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/DEBUG-ca.uhn.hl7v2.parser.DefaultModelClassFactory---No-user-defined-packages-for-version-2.1-tp20671854p20676368.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20671854</id>
	<title>DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory - No user-defined packages for version 2.1</title>
	<published>2008-11-24T14:59:31Z</published>
	<updated>2008-11-24T14:59:31Z</updated>
	<author>
		<name>Dayu Han</name>
	</author>
	<content type="html">Hello
&lt;br&gt;&lt;br&gt;I developed a simple application using HAPI, however, when the &amp;nbsp;
&lt;br&gt;application starts, we have the following errors:
&lt;br&gt;&lt;br&gt;DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined &amp;nbsp;
&lt;br&gt;packages for version 2.1
&lt;br&gt;DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined &amp;nbsp;
&lt;br&gt;packages for version 2.2
&lt;br&gt;DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined &amp;nbsp;
&lt;br&gt;packages for version 2.3
&lt;br&gt;DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined &amp;nbsp;
&lt;br&gt;packages for version 2.3.1
&lt;br&gt;DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined &amp;nbsp;
&lt;br&gt;packages for version 2.4
&lt;br&gt;DEBUG ca.uhn.hl7v2.parser.DefaultModelClassFactory &amp;nbsp;- No user-defined &amp;nbsp;
&lt;br&gt;packages for version 2.5
&lt;br&gt;&lt;br&gt;Any input would be appreciated.
&lt;br&gt;&lt;br&gt;HL7 Champion.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20671854&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/DEBUG-ca.uhn.hl7v2.parser.DefaultModelClassFactory---No-user-defined-packages-for-version-2.1-tp20671854p20671854.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20649962</id>
	<title>Re: implementation of RSP^K22 (Find candidates response)</title>
	<published>2008-11-23T11:15:11Z</published>
	<updated>2008-11-23T11:15:11Z</updated>
	<author>
		<name>nicovn</name>
	</author>
	<content type="html">Hi Alessandro,
&lt;br&gt;&lt;br&gt;hmm ... looks like one of the frequently asked questions on this forum ;-)
&lt;br&gt;&lt;br&gt;As you can see in the HL7 standard doc, the RSP^K22 event uses the 
&lt;br&gt;RSP_K21 message structure, so you should use the HAPI RSP_K21 message 
&lt;br&gt;structure class.
&lt;br&gt;&lt;br&gt;Hope this helps.
&lt;br&gt;&lt;br&gt;Kind Regards
&lt;br&gt;&lt;br&gt;Nico
&lt;br&gt;&lt;br&gt;At 20/11/2008, alessandro wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;Hallo all
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I'm writing code for &amp;nbsp;the messages: QBP^Q22 &amp;nbsp;(Find Candidates) and the
&lt;br&gt;&amp;gt;response RSP^K22 &amp;nbsp;(Find candidates response) &amp;nbsp;in ver2.5
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;unfortunately this messages are not implemented &amp;nbsp;in the package
&lt;br&gt;&amp;gt;ca.uhn.hl7v2.model.v25.message.*
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;for the QBP^Q22 I don't have problem, I used the class
&lt;br&gt;&amp;gt;ca.uhn.hl7v2.model.v25.message.QBP^Qnn
&lt;br&gt;&amp;gt;and I did like this for the segment QPD:
&lt;br&gt;&amp;gt;...
&lt;br&gt;&amp;gt;terser.set(&amp;quot;QPD-1-1&amp;quot;,&amp;quot;Q22&amp;quot;);
&lt;br&gt;&amp;gt;terser.set(&amp;quot;QPD-1-2&amp;quot;,&amp;quot;Find Candidates&amp;quot;);
&lt;br&gt;&amp;gt;terser.set(&amp;quot;QPD-1-3&amp;quot;,&amp;quot;HL7v2.5&amp;quot;);
&lt;br&gt;&amp;gt;...
&lt;br&gt;&amp;gt;and for the User Parameters (in succesive fields)
&lt;br&gt;&amp;gt;terser.set(&amp;quot;QPD-3-1&amp;quot;,@PID.5.1=DYLAN);
&lt;br&gt;&amp;gt;terser.set(&amp;quot;QPD-4-1&amp;quot;,@PID.5.2=BOB);
&lt;br&gt;&amp;gt;...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;For his response RSP^K22 &amp;nbsp;(Find candidates response) there is the problem.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Maybe someone has an implementation of the class &amp;nbsp;v25.message.RSP^K22
&lt;br&gt;&amp;gt;or maybe have solved the problem to parse this RSP^K22
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;thanks in advance
&lt;br&gt;&amp;gt;Alex DP
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;-------------------------------------------------------------------------
&lt;br&gt;&amp;gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;&amp;gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;&amp;gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt;_______________________________________________
&lt;br&gt;&amp;gt;Hl7api-devel mailing list
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20649962&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20649962&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/implementation-of-RSP%5EK22-%28Find-candidates-response%29-tp20599569p20649962.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20645728</id>
	<title>Re: OBX-5 Observation value</title>
	<published>2008-11-23T04:27:14Z</published>
	<updated>2008-11-23T04:27:14Z</updated>
	<author>
		<name>Murali</name>
	</author>
	<content type="html">&lt;br&gt;I have resolved the issue populating OBX segments in the message.
&lt;br&gt;But now I have the same issue with retrieving OBX information from the message to stringlist..I need to collect list of OBX segments and need to fill the string list with the report text from each oBX segment.
&lt;br&gt;&lt;br&gt;Please guide me on how to do this in version 2.5
&lt;br&gt;&lt;br&gt;Your help is highly appreciated.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Murali
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On Sun, 11/23/08, Murali &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20645728&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;muralimed@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; From: Murali &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20645728&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;muralimed@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Subject: [HAPI-devel] OBX-5 Observation value
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20645728&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Date: Sunday, November 23, 2008, 4:46 PM
&lt;br&gt;&amp;gt; Hi ,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Could anyone help me with how to fill the Observation value
&lt;br&gt;&amp;gt; with list of strings.I need to create OBX object for each
&lt;br&gt;&amp;gt; line in the string list and form a message.Could anyone
&lt;br&gt;&amp;gt; guide me how to do this in version 2.5.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am finding difficulty in creating OBX object for each
&lt;br&gt;&amp;gt; line and set the value.Please write the code for it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt; Murali
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move
&lt;br&gt;&amp;gt; Developer's challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK
&lt;br&gt;&amp;gt; &amp; win great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event
&lt;br&gt;&amp;gt; anywhere in the world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Hl7api-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20645728&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20645728&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/OBX-5-Observation-value-tp20645181p20645728.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20645181</id>
	<title>OBX-5 Observation value</title>
	<published>2008-11-23T03:16:33Z</published>
	<updated>2008-11-23T03:16:33Z</updated>
	<author>
		<name>Murali</name>
	</author>
	<content type="html">Hi ,
&lt;br&gt;&lt;br&gt;Could anyone help me with how to fill the Observation value with list of strings.I need to create OBX object for each line in the string list and form a message.Could anyone guide me how to do this in version 2.5.
&lt;br&gt;&lt;br&gt;I am finding difficulty in creating OBX object for each line and set the value.Please write the code for it.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Murali
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20645181&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/OBX-5-Observation-value-tp20645181p20645181.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20599569</id>
	<title>implementation of RSP^K22 (Find candidates response)</title>
	<published>2008-11-20T03:29:32Z</published>
	<updated>2008-11-20T03:29:32Z</updated>
	<author>
		<name>alessandro-45</name>
	</author>
	<content type="html">Hallo all
&lt;br&gt;&lt;br&gt;I'm writing code for &amp;nbsp;the messages: QBP^Q22 &amp;nbsp;(Find Candidates) and the 
&lt;br&gt;response RSP^K22 &amp;nbsp;(Find candidates response) &amp;nbsp;in ver2.5
&lt;br&gt;&lt;br&gt;unfortunately this messages are not implemented &amp;nbsp;in the package 
&lt;br&gt;ca.uhn.hl7v2.model.v25.message.*
&lt;br&gt;&lt;br&gt;for the QBP^Q22 I don't have problem, I used the class 
&lt;br&gt;ca.uhn.hl7v2.model.v25.message.QBP^Qnn
&lt;br&gt;and I did like this for the segment QPD:
&lt;br&gt;...
&lt;br&gt;terser.set(&amp;quot;QPD-1-1&amp;quot;,&amp;quot;Q22&amp;quot;);
&lt;br&gt;terser.set(&amp;quot;QPD-1-2&amp;quot;,&amp;quot;Find Candidates&amp;quot;);
&lt;br&gt;terser.set(&amp;quot;QPD-1-3&amp;quot;,&amp;quot;HL7v2.5&amp;quot;);
&lt;br&gt;...
&lt;br&gt;and for the User Parameters (in succesive fields)
&lt;br&gt;terser.set(&amp;quot;QPD-3-1&amp;quot;,@PID.5.1=DYLAN);
&lt;br&gt;terser.set(&amp;quot;QPD-4-1&amp;quot;,@PID.5.2=BOB);
&lt;br&gt;...
&lt;br&gt;&lt;br&gt;For his response RSP^K22 &amp;nbsp;(Find candidates response) there is the problem.
&lt;br&gt;&lt;br&gt;Maybe someone has an implementation of the class &amp;nbsp;v25.message.RSP^K22
&lt;br&gt;or maybe have solved the problem to parse this RSP^K22
&lt;br&gt;&lt;br&gt;thanks in advance
&lt;br&gt;Alex DP
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20599569&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/implementation-of-RSP%5EK22-%28Find-candidates-response%29-tp20599569p20599569.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20445778</id>
	<title>[SPAM] I found driving license</title>
	<published>2008-11-11T10:46:30Z</published>
	<updated>2008-11-11T10:46:30Z</updated>
	<author>
		<name>cdmedicpacsweb-usuarios mailing list</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;head&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
 &lt;/head&gt;
&lt;html&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://xsw.terblev.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://aiibs.terblev.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://sdefp.terblev.cn/7.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives Sund Design pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://hfv.terblev.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://xgvvhq.terblev.cn/optout.php?remove=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 Sund Design, Inc. All rights reserved.&lt;br&gt;
        2308 Pointe Loop, Bismarck, ND 58503&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20445778&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--I-found-driving-license-tp20445778p20445778.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20436958</id>
	<title>[SPAM] Drunk Michelle Obama in bed</title>
	<published>2008-11-11T02:37:27Z</published>
	<updated>2008-11-11T02:37:27Z</updated>
	<author>
		<name>cdmedicpacsweb-usuarios mailing list</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;head&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
 &lt;/head&gt;
&lt;html&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://pjaye.ybniczc.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://qlbrfb.ybniczc.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://wifzba.ybniczc.cn/7.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives Sund Design pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://fpqreyy.ybniczc.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://pwlimw.ybniczc.cn/optout.php?remove=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 Sund Design, Inc. All rights reserved.&lt;br&gt;
        2308 Pointe Loop, Bismarck, ND 58503&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20436958&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--Drunk-Michelle-Obama-in-bed-tp20436958p20436958.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20432058</id>
	<title>[SPAM] Obama's first statement to nation</title>
	<published>2008-11-10T17:54:00Z</published>
	<updated>2008-11-10T17:54:00Z</updated>
	<author>
		<name>cdmedicpacsweb-usuarios mailing list</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;head&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
 &lt;/head&gt;
&lt;html&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://nyz.vnqubmq.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://jjlm.vnqubmq.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://mobu.vnqubmq.cn/7.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives Colorgraphic-Com pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://uwnwl.vnqubmq.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://cjnv.vnqubmq.cn/removeme.pl?to_remove=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 Colorgraphic-Com, Inc. All rights reserved.&lt;br&gt;
        1500 Capital Blvd, Raleigh, NC 27603&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20432058&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--Obama%27s-first-statement-to-nation-tp20432058p20432058.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20422139</id>
	<title>[SPAM] Your private life is known to everyone</title>
	<published>2008-11-10T07:31:48Z</published>
	<updated>2008-11-10T07:31:48Z</updated>
	<author>
		<name>cdmedicpacsweb-usuarios mailing list</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;head&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
 &lt;/head&gt;
&lt;html&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://gym.qxtbhip.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://ycqc.qxtbhip.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://kqff.qxtbhip.cn/7.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives Colorgraphic-Com pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://msrtgu.qxtbhip.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://ejych.qxtbhip.cn/removeme.pl?to_remove=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 Colorgraphic-Com, Inc. All rights reserved.&lt;br&gt;
        1500 Capital Blvd, Raleigh, NC 27603&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20422139&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--Your-private-life-is-known-to-everyone-tp20422139p20422139.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20418830</id>
	<title>Re: 2.5 Support</title>
	<published>2008-11-10T04:14:23Z</published>
	<updated>2008-11-10T04:14:23Z</updated>
	<author>
		<name>Frederic JECKER</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;&lt;div apple-content-edited=&quot;true&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; &quot;&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Helvetica; &quot;&gt;Thanks for your answer !&lt;/div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Helvetica; &quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Helvetica; &quot;&gt;As I use HAPI on production environments, I'm also interrested in future evolutions of it.&lt;/div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Helvetica; &quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Helvetica; &quot;&gt;Regards&lt;/div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Helvetica; &quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Helvetica; &quot;&gt;FJ&lt;/div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Helvetica; &quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt; &lt;/div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;Le 10 nov. 08 à 12:35, Erik Gfesser a écrit :&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; &quot;&gt;&lt;div&gt;&lt;div style=&quot;font-family: 'Courier New', courier, monaco, monospace, sans-serif; font-size: 10pt; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;div style=&quot;font-family: 'Courier New', courier, monaco, monospace, sans-serif; font-size: 10pt; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Yes,&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Frédéric,&lt;/font&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;HAPI supports HL7 v2.5...My question to everyone has been whether HAPI development is going to continue with additional versions of the HL7 2.x specification. Is anyone familiar with the HAPI roadmap?&lt;br&gt;&lt;br&gt;Erik&lt;/font&gt;&lt;br&gt;&lt;br&gt;&lt;div style=&quot;font-family: arial, helvetica, sans-serif; font-size: 13px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;&lt;hr size=&quot;1&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold; &quot;&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Frédéric JECKER &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20418830&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;f.jecker@...&lt;/a&gt;&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold; &quot;&gt;To:&lt;/span&gt;&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20418830&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hl7api-devel@...&lt;/a&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold; &quot;&gt;Sent:&lt;/span&gt;&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Monday, November 10, 2008 2:15:31 AM&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold; &quot;&gt;Subject:&lt;/span&gt;&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;[HAPI-devel] 2.5 Support&lt;br&gt;&lt;/font&gt;&lt;br&gt;Hi,&lt;br&gt;&lt;br&gt;Could someone tell me if HAPI supports HL7 V2.5 ?&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br&gt;F.J.&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp;amp; win great prizes&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;amp;url=/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________&lt;br&gt;Hl7api-devel mailing list&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20418830&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20418830&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/2.5-Support-tp20416250p20418830.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20416250</id>
	<title>2.5 Support</title>
	<published>2008-11-10T00:15:31Z</published>
	<updated>2008-11-10T00:15:31Z</updated>
	<author>
		<name>Frederic JECKER</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Could someone tell me if HAPI supports HL7 V2.5 ?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;F.J.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20416250&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/2.5-Support-tp20416250p20416250.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20410723</id>
	<title>[SPAM] We got your personal video</title>
	<published>2008-11-09T12:56:28Z</published>
	<updated>2008-11-09T12:56:28Z</updated>
	<author>
		<name>cdmedicpacsweb-usuarios mailing list</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;head&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
 &lt;/head&gt;
&lt;html&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://zdk.jypaspv.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://rju.jypaspv.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://pivqpl.jypaspv.cn/7.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives ClickCulture pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://gum.jypaspv.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://wehrzu.jypaspv.cn/optout.aspx?user=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 ClickCulture, Inc. All rights reserved.&lt;br&gt;
        3739-210 NATIONAL DR, Raleigh, NC 27612&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20410723&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--We-got-your-personal-video-tp20410723p20410723.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20407271</id>
	<title>[SPAM] Doctor ballinger</title>
	<published>2008-11-09T07:17:56Z</published>
	<updated>2008-11-09T07:17:56Z</updated>
	<author>
		<name>cdmedicpacsweb-usuarios mailing list</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;head&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
 &lt;/head&gt;
&lt;html&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://wtl.irasxdx.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://jjreoam.irasxdx.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://jigj.irasxdx.cn/img_under2.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives Kellen Creative pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://jjjxpdv.irasxdx.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://nyazhm.irasxdx.cn/optout.aspx?user=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 Kellen Creative, Inc. All rights reserved.&lt;br&gt;
        1100 Johnson Ferry Rd, Sandy Springs, GA&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20407271&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--Doctor-ballinger-tp20407271p20407271.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20401815</id>
	<title>[SPAM] Michelle Obama cheats with McCane</title>
	<published>2008-11-08T15:49:53Z</published>
	<updated>2008-11-08T15:49:53Z</updated>
	<author>
		<name>cdmedicpacsweb-usuarios mailing list</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;head&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
 &lt;/head&gt;
        &lt;html&gt;
&lt;body&gt;
&lt;tr&gt;
		&lt;td class=EC_container bgcolor=&quot;#F2F2F2&quot;&gt;
			&lt;table cellpadding=0 cellspacing=0 width=&quot;100%&quot;&gt;
				&lt;tr&gt;
					&lt;td&gt;

                                                &lt;div align=center&gt; &lt;a href=&quot;http://xhqqmul.hxfazud.cn&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://clxsr.hxfazud.cn/3.gif&quot; border=0 alt=&quot;Click Here!&quot;&gt;&lt;/a&gt; &lt;/div&gt;
					                    &lt;/td&gt;
				&lt;/tr&gt;
				&lt;tr&gt;
					&lt;td class=EC_legal&gt;
					&lt;strong&gt;About this mailing: &lt;/strong&gt;&lt;br&gt;
You are receiving this e-mail because you subscribed to MSN Featured Offers. Microsoft respects your privacy. If you do not wish to receive this MSN Featured Offers e-mail, please click the &quot;Unsubscribe&quot; link below. This will not unsubscribe
you from e-mail communications from third-party advertisers that may appear in MSN Feature Offers. This shall not constitute an offer by MSN. MSN shall not be responsible or liable for the advertisers' content nor any of the goods or service
 advertised. Prices and item availability subject to change without notice.&lt;br&gt;&lt;br&gt;

		?2008 Microsoft | &lt;a href=&quot;http://www.hxfazud.cn/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Unsubscribe&lt;/a&gt; | &lt;a href=&quot;http://poqrh.hxfazud.cn&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;More Newsletters&lt;/a&gt; | &lt;a href=&quot;http://zlk.hxfazud.cn&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Privacy&lt;/a&gt;&lt;br&gt;&lt;br&gt;
		Microsoft Corporation, One Microsoft Way, Redmond, WA 98052



					&lt;/td&gt;
				&lt;/tr&gt;
			&lt;/table&gt;
		&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;



        &lt;/div&gt;
    &lt;/div&gt;

          &lt;/div&gt;

    &lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20401815&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--Michelle-Obama-cheats-with-McCane-tp20401815p20401815.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20390818</id>
	<title>[SPAM] ?I found you private video</title>
	<published>2008-11-07T15:32:05Z</published>
	<updated>2008-11-07T15:32:05Z</updated>
	<author>
		<name>NEWS Sensation-37</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Alternative Designs&lt;/title&gt;

&lt;/head&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://fohqkf.cutnokc.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://nliu.cutnokc.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://hobpb.cutnokc.cn/img_under2.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives Alternative Designs pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://xcrg.cutnokc.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://ggjwwto.cutnokc.cn/optout.aspx?user=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 Alternative Designs, Inc. All rights reserved.&lt;br&gt;
        2836 Merrill St, Saint Paul, MN 55113&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20390818&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM---I-found-you-private-video-tp20390818p20390818.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20380594</id>
	<title>[SPAM] Make her grotto wet of pleasure</title>
	<published>2008-11-07T05:32:43Z</published>
	<updated>2008-11-07T05:32:43Z</updated>
	<author>
		<name>Sensation news-53</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Guayaba Productions Corporation&lt;/title&gt;

&lt;/head&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://ntdtp.xrteoft.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://guo.xrteoft.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://auu.xrteoft.cn/img_left2.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives Guayaba Productions Corporation pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://giq.xrteoft.cn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://pmtpjum.xrteoft.cn/optout.aspx?user=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 Guayaba Productions Corporation, Inc. All rights reserved.&lt;br&gt;
        515 Suite L-6 Providence Highway, Dedham, MA 02026&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20380594&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--Make-her-grotto-wet-of-pleasure-tp20380594p20380594.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20377379</id>
	<title>Re: Parsing an empty segment throws an exception</title>
	<published>2008-11-07T01:12:22Z</published>
	<updated>2008-11-07T01:12:22Z</updated>
	<author>
		<name>Frédéric Dubru-3</name>
	</author>
	<content type="html">Hi Nico,
&lt;br&gt;&lt;br&gt;You'right, my example was not well chosen. But the same problem occurs 
&lt;br&gt;with the following one:
&lt;br&gt;&lt;br&gt;MSH|^~\&amp;|||||20080627102031.292+0100||ADT^A31|EJ557600005480760|P|2.3|||||BE|8859/1|FR
&lt;br&gt;EVN||20080627101943+0100
&lt;br&gt;PID|||M07869D^^^ADMISSION^^ISSTLUC||DUPONT^JEAN||19701004000000+0100|M
&lt;br&gt;PD1
&lt;br&gt;PV1||N
&lt;br&gt;&lt;br&gt;The PD1 segment does not contain any mandatory field, so this message is 
&lt;br&gt;legal and should be parsed by HAPI.
&lt;br&gt;&lt;br&gt;Fred.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20377379&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nicovn@...&lt;/a&gt; a écrit :
&lt;br&gt;&amp;gt; Hi Frederic,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; An empty PV1 segment in an ADT message is not allowed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It should at least contain a value in PV1-2 Patient Class.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you don't have visit data (like in your A31 example) you should put 
&lt;br&gt;&amp;gt; a N (not applicable) in PV1-2.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20377379&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Timezone-and-DST-issue-tp18397626p20377379.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20376542</id>
	<title>[SPAM] State-of-art cure for male</title>
	<published>2008-11-07T00:31:39Z</published>
	<updated>2008-11-07T00:31:39Z</updated>
	<author>
		<name>Requested news-6</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;FW Graphic Design Group&lt;/title&gt;

&lt;/head&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://cbnlfh.wordgrass.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://qhryj.wordgrass.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://ooxw.wordgrass.com/img_under2.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives FW Graphic Design Group pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://wtrfbuz.wordgrass.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://hfxxs.wordgrass.com/optout.aspx?user=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 FW Graphic Design Group, Inc. All rights reserved.&lt;br&gt;
        110 Old Pascack Rd., Pearl River, NY 10965&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20376542&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--State-of-art-cure-for-male-tp20376542p20376542.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20367757</id>
	<title>Re: Parsing an empty segment throws an exception</title>
	<published>2008-11-06T11:10:59Z</published>
	<updated>2008-11-06T11:10:59Z</updated>
	<author>
		<name>nicovn</name>
	</author>
	<content type="html">Hi Frederic,&lt;br&gt;&lt;br&gt;An empty PV1 segment in an ADT message is not allowed.&lt;br&gt;&lt;br&gt;It should at least contain a value in PV1-2 Patient Class.&lt;br&gt;&lt;br&gt;If you don't have visit data (like in your A31 example) you should put a N (not applicable) in PV1-2.&lt;br&gt;&lt;br&gt;&lt;br&gt;Hope this helps.&lt;br&gt;&lt;br&gt;Best Regards&lt;br&gt;&lt;br&gt;Nico&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;hr&gt;Hi,I got an exception while trying to parse a HL7 message with an empty PV1 segment (using HAPI 0.5.1). Although it is rather unusual, I don't read anything in the spec which forbids it. Example:MSH|^~\\&amp;amp;|||||20080627102031.292+0100||ADT^A31|EJ557600005480760|P|2.3|||||BE|8859/1|FREVN||20080627101943+0100PID|||M07869D^^^ADMISSION^^ISSTLUC||DUPONT^JEAN||19701004000000+0100|MPV1java.lang.StringIndexOutOfBoundsException: String index out of range: -1    at java.lang.String.substring(String.java:1768)    at ca.uhn.hl7v2.parser.PipeParser.doParse(PipeParser.java:241)    at ca.uhn.hl7v2.parser.Parser.parse(Parser.java:151)    at
ca.uhn.hl7v2.view.Viewer.main(Viewer.java:119)As a workaround, we changed the PipeParser code like this:                    // name = segments[i].substring(0, segments[i].indexOf(delim));                    if (segments[i].indexOf(delim) &amp;gt;= 0 ) {                      name = segments[i].substring(0, segments[i].indexOf(delim));                    } else {                      name = segments[i];                    }-- Frédéric DubruDépartement informatiqueCliniques universitaires Saint-Luc10, avenue HippocrateB-1200 Bruxelleshttp://www.saintluc.be-------------------------------------------------------------------------This SF.Net email is sponsored by the Moblin Your Move Developer's challengeBuild the coolest Linux based applications with Moblin SDK &amp;amp; win great prizesGrand prize is a trip for two to an Open Source event anywhere in the worldhttp://moblin-contest.org/redirect.php?banner_id=100&amp;amp;url=/_______________________________________________Hl7api-devel mailing
&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20367757&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;listHl7api-devel@...&lt;/a&gt;://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;br&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20367757&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Timezone-and-DST-issue-tp18397626p20367757.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20363338</id>
	<title>Parsing an empty segment throws an exception</title>
	<published>2008-11-06T07:33:36Z</published>
	<updated>2008-11-06T07:33:36Z</updated>
	<author>
		<name>Frédéric Dubru-3</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I got an exception while trying to parse a HL7 message with an empty PV1 
&lt;br&gt;segment (using HAPI 0.5.1). Although it is rather unusual, I don't read 
&lt;br&gt;anything in the spec which forbids it. Example:
&lt;br&gt;&lt;br&gt;MSH|^~\&amp;|||||20080627102031.292+0100||ADT^A31|EJ557600005480760|P|2.3|||||BE|8859/1|FR
&lt;br&gt;EVN||20080627101943+0100
&lt;br&gt;PID|||M07869D^^^ADMISSION^^ISSTLUC||DUPONT^JEAN||19701004000000+0100|M
&lt;br&gt;PV1
&lt;br&gt;&lt;br&gt;java.lang.StringIndexOutOfBoundsException: String index out of range: -1
&lt;br&gt;&amp;nbsp; &amp;nbsp; at java.lang.String.substring(String.java:1768)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at ca.uhn.hl7v2.parser.PipeParser.doParse(PipeParser.java:241)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at ca.uhn.hl7v2.parser.Parser.parse(Parser.java:151)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at ca.uhn.hl7v2.view.Viewer.main(Viewer.java:119)
&lt;br&gt;&lt;br&gt;As a workaround, we changed the PipeParser code like this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // name = segments[i].substring(0, 
&lt;br&gt;segments[i].indexOf(delim));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (segments[i].indexOf(delim) &amp;gt;= 0 ) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; name = segments[i].substring(0, 
&lt;br&gt;segments[i].indexOf(delim));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; name = segments[i];
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Frédéric Dubru
&lt;br&gt;Département informatique
&lt;br&gt;Cliniques universitaires Saint-Luc
&lt;br&gt;10, avenue Hippocrate
&lt;br&gt;B-1200 Bruxelles
&lt;br&gt;&lt;a href=&quot;http://www.saintluc.be&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.saintluc.be&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Hl7api-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20363338&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Hl7api-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/hl7api-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/hl7api-devel-f3468.html&quot; embed=&quot;fixTarget[3468]&quot; target=&quot;_top&quot; &gt;hl7api-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Timezone-and-DST-issue-tp18397626p20363338.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20362764</id>
	<title>[SPAM] Weakening male power?</title>
	<published>2008-11-06T07:02:58Z</published>
	<updated>2008-11-06T07:02:58Z</updated>
	<author>
		<name>Shocking news-12</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Pickering Creative Group&lt;/title&gt;

&lt;/head&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://mrw.reflectioncount.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://hdl.reflectioncount.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://kkrce.reflectioncount.com/widget2.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives Pickering Creative Group pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://qrreddb.reflectioncount.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://xvils.reflectioncount.com/optout.aspx?user=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 Pickering Creative Group, Inc. All rights reserved.&lt;br&gt;
        8001 S 13th Street, Lincoln, NE 68512&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cdmedicpacsweb-usuarios mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20362764&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cdmedicpacsweb-usuarios@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cdmedicpacsweb-usuarios&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/cdmedicpacsweb-usuarios-f3272.html&quot; embed=&quot;fixTarget[3272]&quot; target=&quot;_top&quot; &gt;cdmedicpacsweb-usuarios&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-SPAM--Weakening-male-power--tp20362764p20362764.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20354953</id>
	<title>[SPAM] How hot are your nights?</title>
	<published>2008-11-05T20:17:20Z</published>
	<updated>2008-11-05T20:17:20Z</updated>
	<author>
		<name>Breaking news-67</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Mad 4 Marketing&lt;/title&gt;

&lt;/head&gt;
&lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;FONT SIZE=&quot;1&quot; COLOR=&quot;#000000&quot; FACE=&quot;ARIAL&quot;&gt;If you are unable to see the message below, &lt;A href=&quot;http://pkshw.productsea.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here to view&lt;/A&gt;.&lt;br&gt;
&lt;/FONT&gt;&lt;font face=&quot;ARIAL&quot; color=&quot;#808080&quot; size=&quot;2&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/CENTER&gt;
&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;
  &lt;table border=&quot;0&quot; width=&quot;600&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
      &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://ygf.productsea.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://wcdxs.productsea.com/pic_left2.jpg&quot;&gt;&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;table width=&quot;555&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td align=&quot;center&quot; class=&quot;gray&quot;&gt;
      &lt;p&gt; &lt;font size=&quot;-1&quot; color=&quot;#999999&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;You have received this message because you opted in to receives Mad 4 Marketing pecial &lt;br&gt;
        offers via email. Login to your member account to&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://vujmcib.productsea.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;edit your email subscription&lt;/font&gt;&lt;/a&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;font color=&quot;#999999&quot;&gt;&lt;br&gt;
        &lt;font size=&quot;-1&quot;&gt;Click here to&lt;/font&gt;
  &lt;/font&gt;&lt;/font&gt; &lt;font size=&quot;-2&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;
  &lt;a href=&quot;http://tbqxus.productsea.com/remove.php?remove=cdmedicpacsweb-usuarios@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;unsubscribe&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;.&lt;/font&gt;&lt;br&gt;
        &lt;br&gt;
        &lt;font color=&quot;#999999&quot; size=&quot;-1&quot;&gt;PLEASE DO NOT REPLY - This is being sent
        from an unattended mailbox. &lt;br&gt;
      &lt;p&gt;&lt;font color=&quot;#999999&quot; size=&quot;-1&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&gt;Copyright &amp;copy; 2008 Mad 4 Marketing, Inc. All rights reserved.&lt;br&gt;
        5203 NW 33rd Ave, Fort Lauderdale, FL 33309&lt;/font&gt;&lt;/p&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SD