<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>news.eclipse.rt.eclipselink</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/maillist.html</link>
		<description>NewsGroup: news.eclipse.rt.eclipselink</description>
		<language>en-us</language>
		<pubDate>Fri, 18 Sep 2009 10:00:05 GMT</pubDate>
		<lastBuildDate>Fri, 18 Sep 2009 10:00:05 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>news.eclipse.rt.eclipselink</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/maillist.html</link>
		</image>
 

	<item>
		<title>[news.eclipse.rt.eclipselink] Re: MOXy - mapping enums</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01221.html</link>
		<description>Sorry. I have a much trickier transformation mapping which uses a similar structure that I'm getting the same error with, and I was hoping that getting help with this simpler mapping would lead me in the right direction on the other issue. However, it turn...</description>
		<content:encoded><![CDATA[<tt>Sorry. I have a much trickier transformation mapping which uses a similar 
structure that I'm getting the same error with, and I was hoping that 
getting help with this simpler mapping would lead me in the right 
direction on the other issue. However, it turns out that the error came 
from the tricky mapping all along and had nothing to do with the enum 
mapping.</tt><br>
<br>
<pre style="margin: 0em;">I'll probably be back with questions about the other mapping soon. :P
/Matti</pre><br>
<br>
]]></content:encoded>
		<pubDate>Fri, 18 Sep 2009 09:47:48 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01221.html</guid>
		<author>g8a@xxxxxxx (Matti Hansson)</author>
	</item>


	<item>
		<title>[news.eclipse.rt.eclipselink] not support  executeThreadRuntime</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01220.html</link>
		<description>I'm getting the following message using eclipslink version 1.1.2.v20090612-r4475 with weblogic 10.3. [EL Warning]: 2009-09-17 19:03:30.215--Version of WebLogic does not support executeThreadRuntime - using ClassLoader: weblogic.management.NoAccessRuntimeEx...</description>
		<content:encoded><![CDATA[<tt>I'm getting the following message using eclipslink version 
1.1.2.v20090612-r4475<br>
with weblogic 10.3. </tt><br>
<br>
<tt>[EL Warning]: 2009-09-17 19:03:30.215--Version of WebLogic does not 
support executeThreadRuntime - using ClassLoader: 
weblogic.management.NoAccessRuntimeException: Access not allowed for 
subject: principals=[], on ResourceType: ThreadPoolRuntime Action: 
execute, Target: getExecuteThread</tt><br>
<br>
<tt>Does any body know what does it mean? Did I forget to configure something? 
May I not worry about it? </tt><br>
<br>
<tt>Thanks. Mauro. </tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Thu, 17 Sep 2009 22:14:41 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01220.html</guid>
		<author>mauro-flores@xxxxxxx (Mauro )</author>
	</item>
	<item>
		<title>[news.eclipse.rt.eclipselink] MOXy - mapping enums</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01219.html</link>
		<description>Hi! I'm trying to map an enumeration with MOXy using a transformation mapping but I can't get it to work. Here's what I got: Java: public enum Detail { GENERAL, DETAILED } public class MyClass { Detail detail; /* getters &amp;amp; setters */ } XML: &amp;lt;app:MyClass de...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi!
I'm trying to map an enumeration with MOXy using a transformation mapping but I can't get it to work. Here's what I got:</pre><br>
<pre style="margin: 0em;">Java:
public enum Detail { GENERAL, DETAILED }</pre><br>
<pre style="margin: 0em;">public class MyClass {
   Detail detail;
   /* getters &amp; setters */
}
XML:
&lt;app:MyClass detail=&quot;GENERAL&quot; xmlns:app=&quot;<a  href="http://example.com&quot;/">http://example.com&quot;/</a>&gt;
Configuration:
private XMLDescriptor createDescriptor() {
   XMLDescriptor descriptor = super.buildDescriptor(MyClass.class);
   descriptor.setDefaultRootElement(&quot;app:MyClass&quot;);
   descriptor.add(createDetailMapping());
   return descriptor;
}</pre><br>
<pre style="margin: 0em;">private XMLTransformationMapping createDetailMapping() {
   XMLTransformationMapping mapping = new XMLTransformationMapping();
   mapping.setAttributeName(&quot;detail&quot;);
   EnumTransformer transformer = new EnumTransformer();
   mapping.setAttributeTransformer(transformer);
   mapping.addFieldTransformer(&quot;@detail&quot;, transformer);
   return mapping;
}
Transformer:
public class EnumTransformer implements AttributeTransformer, FieldTransformer {
 private AbstractTransformationMapping mapping;
 private XMLField detailField;</pre><br>
<pre style="margin: 0em;"> public void initialize(AbstractTransformationMapping mapping) {
   this.mapping = mapping;
   NamespaceResolver namespaceResolver = ((XMLDescriptor)mapping.getDescriptor()).getNamespaceResolver();
   detailField = new XMLField(&quot;@detail&quot;);
   detailField.setNamespaceResolver(namespaceResolver);
 }</pre><br>
<tt> public Object buildAttributeValue(Record record, Object object, Session session) {<br>
   String detail = (String) record.get(detailField);<br>
   return Detail.valueOf(detail);<br>
 }<br>
 
 public Object buildFieldValue(Object instance, String fieldName, Session session) {<br>
   return mapping.getAttributeValueFromObject(instance);<br>
 }<br>
}</tt><br>
<br>
<pre style="margin: 0em;">When I try to run it I get this stack trace:
java.lang.NullPointerException
	at org.eclipse.persistence.oxm.record.UnmarshalRecord.startElement(UnmarshalRecord.java:551)
	at org.eclipse.persistence.internal.oxm.record.SAXUnmarshallerHandler.startElement(SAXUnmarshallerHandler.java:273)
	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:501)
	at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(XMLNSDocumentScannerImpl.java:400)
	at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl$NSContentDriver.scanRootElementHook(XMLNSDocumentScannerImpl.java:626)
	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:3095)
	at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$PrologDriver.next(XMLDocumentScannerImpl.java:921)
	at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:648)
	at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScannerImpl.java:140)
	at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:510)
	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:807)
	at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:737)
	at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:107)
	at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1205)
	at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.java:522)
	at org.eclipse.persistence.internal.oxm.record.XMLReader.parse(XMLReader.java:99)
	at org.eclipse.persistence.internal.oxm.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:215)
	at org.eclipse.persistence.internal.oxm.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:192)
	at org.eclipse.persistence.oxm.XMLUnmarshaller.unmarshal(XMLUnmarshaller.java:274)
	...</pre><br>
<pre style="margin: 0em;"><br>Anyone knows what's going on?
Thanks!</pre><br>
]]></content:encoded>
		<pubDate>Thu, 17 Sep 2009 13:54:45 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01219.html</guid>
		<author>g8a@xxxxxxx (Matti Hansson)</author>
	</item>


	<item>
		<title>[news.eclipse.rt.eclipselink] Re: EclipseLink-7242</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01218.html</link>
		<description>If a call a business method, I must know previously what it returns, I must know if it was implemented to bring a relationship or not. That would be enough. But for openjpa null collection means that the It was not initialized and empty collection means th...</description>
		<content:encoded><![CDATA[<tt>If a call a business method, I must know previously what it returns, I 
must know 
if it was implemented to bring a relationship or not. That would be 
enough. </tt><br>
<br>
<tt>But for openjpa null collection means that the It was not initialized and 
empty collection means that there is no elements indeed. </tt><br>
<br>
<tt>Mauro. </tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Wed, 16 Sep 2009 22:35:51 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01218.html</guid>
		<author>mauro-flores@xxxxxxx (Mauro )</author>
	</item>
	<item>
		<title>[news.eclipse.rt.eclipselink] Re: EclipseLink-7242</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01217.html</link>
		<description>Doug, I really appreciate your reply. &amp;quot;I am unsure how the application would differentiate this state&amp;quot; That's the backstage of openjpa. My application don't worry about it. I made I simple example that can show the difference of behavior. It shows the chan...</description>
		<content:encoded><![CDATA[<tt>Doug, </tt><br>
<br>
<pre style="margin: 0em;">I really appreciate your reply.</pre><br>
<pre style="margin: 0em;">&quot;I am unsure how the application would differentiate this state&quot;
That's the backstage of openjpa. My application don't worry about it.</pre><br>
<tt>I made I simple example that can show the difference of behavior. It shows 
the change of values in 3 scenarios traced before and after the 
serialization (web context)<br>
1)after the find and before the execution of method get of relationship<br>
2)after the get and before the method size 
3)after the size </tt><br>
<br>
<tt>In openjpa, if a relationship was no initialized (scenario 1) , its 
serialized with null. As soon as a method getRelationship is executed its 
filled with a subclass of ArrayList with 0 or more elements(scenario 2 e 
3). So a null collection means that relationship was not initialized  and 
an empty collection means that the relationship doesn't exist. </tt><br>
<br>
<tt>In eclipselink, in all scenarios the relationship has an InternalList. In 
scenario 1 and 2 the internal list has the property isInstantiated set to 
false and  throws an exception when serialized In scenario  3, the 
property isInstantiated is set to true and relationship is serialized. </tt><br>
<br>
<tt>Eclipselink wouldn't have an configured option sinalizing to serialize 
relationship as null when the property isInstatiated is set to false???? 
Wouldn't it be a good approach? </tt><br>
<br>
<tt>I'm working on  a proxy (Ejb interceptor) that makes exactly this. Each 
collection of a returned entity that has an InternalList not instantiated 
is set to null before the serialization. I'm not sure if that's the best 
approach. </tt><br>
<br>
<pre style="margin: 0em;">Example
=======</pre><br>
<tt>---------------------------------------------------<br>
EJB Class: 
---------------------------------------------------</tt><br>
<br>
<pre style="margin: 0em;">@Stateless(mappedName = &quot;ARN&quot;)
@TransactionAttribute(TransactionAttributeType.REQUIRED)
public class ARNImpl implements ARN {</pre><br>
<pre style="margin: 0em;">	protected final Log logger = LogFactory.getLog(getClass());</pre><br>
<tt>	@Resource 
	SessionContext context;<br>
	<br>
	@PersistenceContext(unitName=&quot;TESTE&quot;) 
	EntityManager em;</tt><br>
<br>
<tt> @TransactionAttribute(TransactionAttributeType.REQUIRED)  
 public A consultWithoutGet(int code) {<br>
   System.out.println(&quot;Code&quot; + code);<br>
   A a  = em.find(A.class, code);<br>
   return a;<br>
 }<br>
	<br>
	@TransactionAttribute(TransactionAttributeType.REQUIRED)	<br>
	public A consultWithoutSize(int code) {<br>
	  System.out.println(&quot;Code&quot; + code);<br>
   A a  = em.find(A.class, code);<br>
   List&lt;B&gt; listaB = a.getListB();<br>
   if (listaB == null) {<br>
     System.out.println(&quot;SessionBean Before size() - null relationship&quot;);<br>
     return a;<br>
   }<br>
   System.out.println(&quot;SessionBean Before size() - Class relationship: &quot; 
+ listaB.getClass().getName());<br>
   System.out.println(&quot;SessionBean Before size() - Super Class 
relationship: &quot; + listaB.getClass().getSuperclass().getName());<br>
   if (listaB instanceof IndirectList) {       
     System.out.println(&quot;SessionBean Before size() - Eclipselink 
Instantiated: &quot; + ((IndirectList)listaB).isInstantiated());<br>
   }<br>
   return a;<br>
	}<br>
	<br>
	@TransactionAttribute(TransactionAttributeType.REQUIRED)	<br>
	public A consultWithSize(int code) {<br>
	  System.out.println(&quot;Code&quot; + code);<br>
   A a  = em.find(A.class, code);<br>
   int size = a.getListB().size();    
   List&lt;B&gt; listaB = a.getListB();<br>
   if (listaB == null) {<br>
     System.out.println(&quot;SessionBean After size() - null relationship&quot;);<br>
     return null;<br>
   }    
   listaB = a.getListB();<br>
   System.out.println(&quot;SessionBean size - : &quot; + size);<br>
   System.out.println(&quot;SessionBean After  size() - Class relationship: &quot; 
+ listaB.getClass().getName());<br>
   System.out.println(&quot;SessionBean After  size() - Super Class 
relationship: &quot; + listaB.getClass().getSuperclass().getName());<br>
   if (listaB instanceof IndirectList) {       
     System.out.println(&quot;After  size() - Eclipselink Instantiated: &quot; + 
((IndirectList)listaB).isInstantiated());<br>
   }<br>
   return a;<br>
	}</tt><br>
<br>
<pre style="margin: 0em;">----------------------------------------------
Pojo Method called from JSP that calls the EJB
----------------------------------------------</pre><br>
<tt> public void consult() {<br>
   ARN arn = (ARN) ServiceLocator.getEJB3(ARN.class);<br>
   A a = arn.consultWithoutGet(code);<br>
   try {<br>
     if (a.getListB() != null) {<br>
       System.out.println(&quot;Web context - before get() - class &quot; + 
a.getListB().getClass().getName());<br>
       System.out.println(&quot;Web context - before get() - size &quot; + 
a.getListB().size());<br>
     } else {<br>
       System.out.println(&quot;Web context - before get() - relationship 
null&quot;);<br>
     }<br>
   } catch (Exception e) {<br>
     System.out.println(&quot;Web context - before size() - exeption: &quot; + 
e.getClass());<br>
   }<br>
   try {<br>
     a = arn.consultWithoutSize(code);<br>
     if (a.getListB() != null) {<br>
       System.out.println(&quot;Web context - before size() - class &quot; + 
a.getListB().getClass().getName());<br>
       System.out.println(&quot;Web context - before size() - size &quot; + 
a.getListB().size());<br>
     } else {<br>
       System.out.println(&quot;Web context - before size() - relationship 
null&quot;);<br>
     }<br>
   } catch (Exception e) {<br>
     System.out.println(&quot;Web context - before size() - exeption: &quot; + 
e.getClass());<br>
   }<br>
   try {<br>
     a = arn.consultWithSize(code);<br>
     System.out.println(&quot;Web context - after size() - class &quot; + 
a.getListB().getClass().getName());<br>
     System.out.println(&quot;Web context - after size() - size &quot; + 
a.getListB().size());<br>
   } catch (Exception e) {<br>
     System.out.println(&quot;Web context - after size() - exeption: &quot; + 
e.getClass());<br>
   }<br>
 }</tt><br>
<br>
<pre style="margin: 0em;">------------------
Entity A
------------------
@Entity
@Table(name = &quot;A&quot;)
public class A implements Serializable{</pre><br>
<pre style="margin: 0em;">	@OneToMany(fetch = FetchType.LAZY, mappedBy = &quot;a&quot;)
	private List&lt;B&gt; listB = new ArrayList&lt;B&gt;();</pre><br>
<pre style="margin: 0em;">}</pre><br>
<pre style="margin: 0em;">========================
Running with eclipselink
========================</pre><br>
<tt>Web context - before get() - class 
org.eclipse.persistence.indirection.IndirectList<br>
Web context - before get() - exeption: class 
org.eclipse.persistence.exceptions.ValidationException</tt><br>
<br>
<tt>SessionBean Before size() - Class relationship: 
org.eclipse.persistence.indirection.IndirectList<br>
SessionBean Before size() - Super Class relationship: java.util.Vector<br>
SessionBean Before size() - Eclipselink Instantiated: false<br>
Web context - before size() - class 
org.eclipse.persistence.indirection.IndirectList<br>
Web context - before size() - exeption: class 
org.eclipse.persistence.exceptions.ValidationException</tt><br>
<br>
<tt>SessionBean size - : 2<br>
SessionBean After  size() - Class relationship: 
org.eclipse.persistence.indirection.IndirectList<br>
SessionBean After  size() - Super Class relationship: java.util.Vector<br>
After  size() - Eclipselink Instantiated: true<br>
Web context - after size() - class 
org.eclipse.persistence.indirection.IndirectList<br>
Web context - after size() - size 2</tt><br>
<br>
<pre style="margin: 0em;"><br>====================
Running with openjpa
====================</pre><br>
<pre style="margin: 0em;">Web context - before get() - relationship null</pre><br>
<tt>SessionBean Before size() - Class relationship: 
org.apache.openjpa.util.java$util$ArrayList$proxy<br>
SessionBean Before size() - Super Class relationship: java.util.ArrayList<br>
Web context - before size() - class 
org.apache.openjpa.util.java$util$ArrayList$proxy<br>
Web context - before size() - size 2</tt><br>
<br>
<tt>SessionBean size - : 2<br>
SessionBean After  size() - Class relationship: 
org.apache.openjpa.util.java$util$ArrayList$proxy<br>
SessionBean After  size() - Super Class relationship: java.util.ArrayList<br>
Web context - after size() - class 
org.apache.openjpa.util.java$util$ArrayList$proxy<br>
Web context - after size() - size 2</tt><br>
<br>
<pre style="margin: 0em;"><br></pre><br>
<br>
]]></content:encoded>
		<pubDate>Wed, 16 Sep 2009 22:14:32 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01217.html</guid>
		<author>mauro-flores@xxxxxxx (Mauro )</author>
	</item>


	<item>
		<title>[news.eclipse.rt.eclipselink] Re: EclipseLink-7242</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01216.html</link>
		<description>Mauro, I have been assisting several groups in doing similar migrations and would be interested in any all feedback or notes on your efforts so we can publish them on the wiki to assist the entire community. On this specific issue I am not sure I understan...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Mauro,</pre><br>
<tt>I have been assisting several groups in doing similar migrations and would 
be interested in any all feedback or notes on your efforts so we can 
publish them on the wiki to assist the entire community.</tt><br>
<br>
<tt>On this specific issue I am not sure I understand the functionality you 
are seeing in OpenJPA. During detachment (through serialization) if a null 
reference or empty collection is returned I am unsure how the application 
would differentiate this state from the scenario where the entity actually 
had a null or empty collection. We have always sided with throwing an 
exception versus returning an entity in a state which may be incorrect.</tt><br>
<br>
<tt>Can you provide more insight as to how your application differentiates a 
null value or empty collection caused by serialization versus one that is 
actually null or empty?</tt><br>
<br>
<pre style="margin: 0em;">Doug</pre><br>
<br>
]]></content:encoded>
		<pubDate>Tue, 15 Sep 2009 14:37:12 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01216.html</guid>
		<author>douglas.clarke@xxxxxxx (Doug Clarke)</author>
	</item>
	<item>
		<title>[news.eclipse.rt.eclipselink] Re: release plans</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01215.html</link>
		<description>We are currently reviewing our release plans. The published plans for 1.2.0, 2.0.0, and 1.1.3 will most likely all be adjusted shortly. The schedule change is due to changes in the overall Java EE 6 schedule of which EclipseLink is delivering the JPA 2.0 r...</description>
		<content:encoded><![CDATA[<tt>We are currently reviewing our release plans. The published plans for 
1.2.0, 2.0.0, and 1.1.3 will most likely all be adjusted shortly. The 
schedule change is due to changes in the overall Java EE 6 schedule of 
which EclipseLink is delivering the JPA 2.0 reference implementation as 
well as some delays getting IP reviewed for the originally scheduled 1.2.0 
release. </tt><br>
<br>
<tt>I am hoping to propose an updated schedule for final review at this week's 
committer meeting (Thursday) and will update the published release dates 
following this meeting.</tt><br>
<br>
<tt>Once we have the proposed schedule published for the committers to review 
I will post a link here as well so we can get additional community 
feedback.</tt><br>
<br>
<pre style="margin: 0em;">Doug</pre><br>
<br>
]]></content:encoded>
		<pubDate>Tue, 15 Sep 2009 14:32:00 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01215.html</guid>
		<author>douglas.clarke@xxxxxxx (Doug Clarke)</author>
	</item>


	<item>
		<title>[news.eclipse.rt.eclipselink] Re: release plans</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01214.html</link>
		<description>Hi Thanks for asking this, I am also not sure about the releases right now. And I've got one more question: Version 2.0 is scheduled for this fall and I am very keen on that since I want to dig into JPA 2 and not bothering with the old spec to long. Is it ...</description>
		<content:encoded><![CDATA[<pre>Hi

Thanks for asking this, I am also not sure about the releases right now.

And I've got one more question: Version 2.0 is scheduled for this fall and I am
very keen on that since I want to dig into JPA 2 and not bothering with the old
spec to long. Is it possible to use EclipseLink 2.0 in an RCP app right away, or
do we have to wait for the next eclipse simultaneous release next summer?

&gt; Hi eclipselink team,
&gt; 
&gt; could you please specify the release plans for the next weeks.
&gt; In the master timeline, there is a 1.2.0 release scheduled for the
&gt; 9/30/2009, but up to now there is no milestone or RC available.
&gt; 
&gt; In my company we have a release scheduled for 9/30/2009, and the 1.1.2
&gt; code that we use currently contains at least on blocker:
&gt; <a  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=288620">https://bugs.eclipse.org/bugs/show_bug.cgi?id=288620</a>
&gt; and with a potential workaround:
&gt; <a  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=221389">https://bugs.eclipse.org/bugs/show_bug.cgi?id=221389</a>
&gt; 
&gt; How stable are the milestones? For example the 1.1.3 M2 passes all the
&gt; unit tests in the JPA section.
&gt; 
&gt; Could you please also explain what are the differences between the 1.1.3
&gt; and the 1.2.0 release.
&gt; And will be the JPA 1.0 handling in the 2.0 release backwards compatible
&gt; to the 1.1.2/1.2.0 versions?
&gt; 
&gt; Will the 1.1.3 release contain the bugfixes for the earlier 1.2.0 release?
&gt; 
&gt; thanks in advance for your answers.
&gt; 
&gt; best regards,
&gt; Felix
&gt; 

</pre>]]></content:encoded>
		<pubDate>Mon, 14 Sep 2009 16:45:09 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01214.html</guid>
		<author>my.mailing.lists@xxxxxxx (Marc Schlegel)</author>
	</item>
	<item>
		<title>[news.eclipse.rt.eclipselink] Re: ddl-generation</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01213.html</link>
		<description>Are you just seeing errors logged, or is an error occurring? With drop-and-create EclipseLink will log errors if the drop fails, but will ignore the errors and try to create the tables, errors will only be thrown if the create fails. With create EclipseLin...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Are you just seeing errors logged, or is an error occurring?</pre><br>
<pre style="margin: 0em;">With drop-and-create EclipseLink will log errors if the drop fails, but will ignore the errors and try to create the tables, errors will only be thrown if the create fails.</pre><br>
<pre style="margin: 0em;">With create EclipseLink will log errors if the create fails, but ignore the errors and assume the database is already created.</pre><br>
<pre style="margin: 0em;">You can turn logging off, if you wish to not see the errors logged.
Sometimes they are useful, as a drop may have failed because of a constraint error.</pre><br>
<br>
]]></content:encoded>
		<pubDate>Mon, 14 Sep 2009 15:04:13 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01213.html</guid>
		<author>james.sutherland@xxxxxxx (James)</author>
	</item>
	<item>
		<title>[news.eclipse.rt.eclipselink] release plans</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01212.html</link>
		<description>Hi eclipselink team, could you please specify the release plans for the next weeks. In the master timeline, there is a 1.2.0 release scheduled for the 9/30/2009, but up to now there is no milestone or RC available. In my company we have a release scheduled...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi eclipselink team,</pre><br>
<tt>could you please specify the release plans for the next weeks.<br>
In the master timeline, there is a 1.2.0 release scheduled for the 
9/30/2009, but up to now there is no milestone or RC available.</tt><br>
<br>
<tt>In my company we have a release scheduled for 9/30/2009, and the 1.1.2 
code that we use currently contains at least on blocker:<br>
<a  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=288620">https://bugs.eclipse.org/bugs/show_bug.cgi?id=288620</a><br>
and with a potential workaround:<br>
<a  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=221389">https://bugs.eclipse.org/bugs/show_bug.cgi?id=221389</a></tt><br>
<br>
<tt>How stable are the milestones? For example the 1.1.3 M2 passes all the 
unit tests in the JPA section.</tt><br>
<br>
<tt>Could you please also explain what are the differences between the 1.1.3 
and the 1.2.0 release.<br>
And will be the JPA 1.0 handling in the 2.0 release backwards compatible 
to the 1.1.2/1.2.0 versions?</tt><br>
<br>
<pre style="margin: 0em;">Will the 1.1.3 release contain the bugfixes for the earlier 1.2.0 release?</pre><br>
<pre style="margin: 0em;">thanks in advance for your answers.</pre><br>
<pre style="margin: 0em;">best regards,
Felix</pre><br>
<br>
]]></content:encoded>
		<pubDate>Mon, 14 Sep 2009 12:42:52 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.rt.eclipselink/msg01212.html</guid>
		<author>hansharz_bugzilla@xxxxxxx (Hans Harz)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
