<?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>bpel-dev</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/maillist.html</link>
		<description>bpel-dev</description>
		<language>en-us</language>
		<pubDate>Tue, 24 Nov 2009 16:50:13 GMT</pubDate>
		<lastBuildDate>Tue, 24 Nov 2009 16:50:13 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>bpel-dev</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/maillist.html</link>
		</image>
 

	<item>
		<title>Re: [bpel-dev] The design tool different from OASIS specification for	BPEL2.0</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01023.html</link>
		<description> From: Michael Illiger2 &amp;lt;MILLIGER@xxxxxxxxxx&amp;gt; Subject: Re: [bpel-dev] The design tool different from OASIS specification for BPEL2.0 To: &amp;quot;BPEL Designer project developer discussions.&amp;quot; &amp;lt;bpel-dev@xxxxxxxxxxx&amp;gt; Date: Tuesday, November 24, 2009, 8:29 PM Hey Jon...</description>
		<content:encoded><![CDATA[<pre>

On Nov 24, 2009, at 10:17 AM, Simon D Moser &lt;SMOSER@xxxxxxxxxx&gt; wrote:


Hi Joni,

In any XML document, the &quot;context node&quot; is the root node of the document,
e.g. the &lt;schema&gt; element in a XML Schema (XSD), the &lt;definition&gt; element
in a WSDL or the &lt;process&gt; element in a BPEL file.
Now a BPEL variable points either to a XSD element, an XSD Type Definition
or a WSDL message - in other words, it points only to a specific &quot;fragment&quot;
of the referenced XML document.
Thus, when you have an xpath expression, you can only access that portion
(because the bpel engine only knows about the {type, element or message},
but not the &quot;context node&quot; of the whole document.
The Xpath processor at runtime can only access that portion, thus you
cannot use location paths that point outside of the &quot;known&quot; fragment -
using a $varName notation sets up the valid context, but restricts the
processing to that particular XML subtree.
[whereas in &quot;pure&quot; Xpath, you could use a &quot;/&quot; notation to select the root
node of the whole document etc.]

HTH

Mit freundlichen Gr&#xFC;&#xDF;en / Kind regards

Simon Daniel Moser

Team Lead BPEL Editor - Websphere Integration Developer (WID)
IBM Software Group, Application and Integration Middleware Software
Business Process Solutions Development 1





 Phone:            +49-7031-16-4304           IBM Deutschland                      (Embedded
                                                                                 image moved
                                                                                    to file:
                                                                               pic17971.gif)

 Fax:              +49-7031-16-4890           Schoenaicher Str. 220   

 E-Mail:           smoser@xxxxxxxxxx          71032 Boeblingen        

                                              Germany                 





 IBM Deutschland                                                      
 Research &amp;                                                           
 Development                                                          
 GmbH /                                                               
 Vorsitzender des                                                     
 Aufsichtsrats:                                                       
 Martin Jetter                                                        
 Gesch&#xE4;ftsf&#xFC;hrung:                                                
 Dirk Wittkopp                                                        
 Sitz der                                                             
 Gesellschaft:                                                        
 B&#xF6;blingen /                                                        
 Registergericht:                                                     
 Amtsgericht                                                          
 Stuttgart, HRB                                                       
 243294                                                               





|------------&gt;
| From:      |
|------------&gt;
--------------------------------------------------------------------------------------------------------------------------------------------------|
 |Joni Lee &lt;webcokies@xxxxxxxxx&gt;                                                                                                                    |
--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------&gt;
| To:        |
|------------&gt;
--------------------------------------------------------------------------------------------------------------------------------------------------|
 |&quot;BPEL Designer project developer discussions.&quot; &lt;bpel-dev@xxxxxxxxxxx&gt;                                                                             |
--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------&gt;
| Date:      |
|------------&gt;
--------------------------------------------------------------------------------------------------------------------------------------------------|
 |11/24/2009 04:45 PM                                                                                                                               |
--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------&gt;
| Subject:   |
|------------&gt;
--------------------------------------------------------------------------------------------------------------------------------------------------|
 |Re: [bpel-dev] The design tool different from OASIS specification for   BPEL2.0                                                                   |
--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------&gt;
| Sent by:   |
|------------&gt;
--------------------------------------------------------------------------------------------------------------------------------------------------|
 |bpel-dev-bounces@xxxxxxxxxxx                                                                                                                      |
--------------------------------------------------------------------------------------------------------------------------------------------------|






Hi Michael,                                                           

Thank you many times, you save me from the wrong way. Since you are a master, would you
please give me a light on this following rule under 8.2.4:            



&quot;When XPath 1.0 is used as an expression language in WS-BPEL there is no context node
available. Therefore the legal values of the XPath Expr (             
<a  href="http://www.w3.org/TR/xpath#NT-Expr">http://www.w3.org/TR/xpath#NT-Expr</a>) production must be restricted in order to prevent
access to the context node.                                           
Specifically, the &quot;LocationPath&quot; (<a  href="http://www.w3.org/TR/xpath#NT-LocationPath">http://www.w3.org/TR/xpath#NT-LocationPath</a>)
production rule of &quot;PathExpr&quot; (<a  href="http://www.w3.org/TR/xpath#NT-PathExpr">http://www.w3.org/TR/xpath#NT-PathExpr</a>) production rule
MUST NOT be used when XPath is used as an expression language.&quot;       



--&gt; but why we can use:                                               
&lt;from&gt;$variable.part/a/b/c&lt;/from&gt;???
What is the restriction of XPath under 8.2.4? Although I google all the time. But I
haven't really understand it yet.                                     

Thank you again.                                                      
and have a nice day                                                   

--- On Tue, 11/24/09, Michael Illiger2 &lt;MILLIGER@xxxxxxxxxx&gt; wrote:   

 From: Michael Illiger2 &lt;MILLIGER@xxxxxxxxxx&gt;                         
 Subject: Re: [bpel-dev] The design tool different from OASIS specification for BPEL2.0
 To: &quot;BPEL Designer project developer discussions.&quot; &lt;bpel-dev@xxxxxxxxxxx&gt;
 Date: Tuesday, November 24, 2009, 8:29 PM                            

 Hey Joni,                                                            

 You are not on the latest version of the BPEL 2.0 spec. (            
 <a  href="http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html">http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html</a>)              
 Here it says in chapter 8.4:                                         

 The from-spec MUST be one the following variants:                    

 &lt;from variable=&quot;BPELVariableName&quot; part=&quot;NCName&quot;?&gt;                
    &lt;query queryLanguage=&quot;anyURI&quot;?&gt;?                                
       queryContent                                                   
    &lt;/query&gt;                                                          
 &lt;/from&gt;                                                              
 &lt;from partnerLink=&quot;NCName&quot; endpointReference=&quot;myRole|partnerRole&quot; /&gt;
 &lt;from variable=&quot;BPELVariableName&quot; property=&quot;QName&quot; /&gt;            
 &lt;from expressionLanguage=&quot;anyURI&quot;?&gt;expression&lt;/from&gt;               
 &lt;from&gt;&lt;literal&gt;literal value&lt;/literal&gt;&lt;/from&gt;                        
 &lt;from/&gt;                                                              



_______________________________________________
bpel-dev mailing list
bpel-dev@xxxxxxxxxxx
<a  href="https://dev.eclipse.org/mailman/listinfo/bpel-dev">https://dev.eclipse.org/mailman/listinfo/bpel-dev</a>
&lt;pic17971.gif&gt;
_______________________________________________
bpel-dev mailing list
bpel-dev@xxxxxxxxxxx
<a  href="https://dev.eclipse.org/mailman/listinfo/bpel-dev">https://dev.eclipse.org/mailman/listinfo/bpel-dev</a>


</pre>]]></content:encoded>
		<pubDate>Tue, 24 Nov 2009 16:45:45 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01023.html</guid>
		<author>belkoura@xxxxxxx (Amine Belkoura)</author>
	</item>
	<item>
		<title>Re: [bpel-dev] The design tool different from OASIS specification for	BPEL2.0</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01022.html</link>
		<description> From: Michael Illiger2 &amp;lt;MILLIGER@xxxxxxxxxx&amp;gt; Subject: Re: [bpel-dev] The design tool different from OASIS specification for BPEL2.0 To: &amp;quot;BPEL Designer project developer discussions.&amp;quot; &amp;lt;bpel-dev@xxxxxxxxxxx&amp;gt; Date: Tuesday, November 24, 2009, 8:29 PM Hey Jon...</description>
		<content:encoded><![CDATA[<pre>
Hi Joni,

In any XML document, the &quot;context node&quot; is the root node of the document,
e.g. the &lt;schema&gt; element in a XML Schema (XSD), the &lt;definition&gt; element
in a WSDL or the &lt;process&gt; element in a BPEL file.
Now a BPEL variable points either to a XSD element, an XSD Type Definition
or a WSDL message - in other words, it points only to a specific &quot;fragment&quot;
of the referenced XML document.
Thus, when you have an xpath expression, you can only access that portion
(because the bpel engine only knows about the {type, element or message},
but not the &quot;context node&quot; of the whole document.
The Xpath processor at runtime can only access that portion, thus you
cannot use location paths that point outside of the &quot;known&quot; fragment -
using a $varName notation sets up the valid context, but restricts the
processing to that particular XML subtree.
[whereas in &quot;pure&quot; Xpath, you could use a &quot;/&quot; notation to select the root
node of the whole document etc.]

HTH

Mit freundlichen Gr&#xFC;&#xDF;en / Kind regards

Simon Daniel Moser

Team Lead BPEL Editor - Websphere Integration Developer (WID)
IBM Software Group, Application and Integration Middleware Software
Business Process Solutions Development 1
                                                                       
                                                                       
                                                                       
                                                                       
                                                                       
  Phone:            +49-7031-16-4304           IBM Deutschland                      (Embedded
                                                                                  image moved
                                                                                     to file:
                                                                                pic17971.gif)
                                                                       
  Fax:              +49-7031-16-4890           Schoenaicher Str. 220   
                                                                       
  E-Mail:           smoser@xxxxxxxxxx          71032 Boeblingen        
                                                                       
                                               Germany                 
                                                                       
                                                                       
                                                                       
                                                                       
                                                                       
  IBM Deutschland                                                      
  Research &amp;                                                           
  Development                                                          
  GmbH /                                                               
  Vorsitzender des                                                     
  Aufsichtsrats:                                                       
  Martin Jetter                                                        
  Gesch&#xE4;ftsf&#xFC;hrung:                                                
  Dirk Wittkopp                                                        
  Sitz der                                                             
  Gesellschaft:                                                        
  B&#xF6;blingen /                                                        
  Registergericht:                                                     
  Amtsgericht                                                          
  Stuttgart, HRB                                                       
  243294                                                               
                                                                       




|------------&gt;
| From:      |
|------------&gt;
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|
  |Joni Lee &lt;webcokies@xxxxxxxxx&gt;                                                                                                                    |
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------&gt;
| To:        |
|------------&gt;
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|
  |&quot;BPEL Designer project developer discussions.&quot; &lt;bpel-dev@xxxxxxxxxxx&gt;                                                                             |
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------&gt;
| Date:      |
|------------&gt;
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|
  |11/24/2009 04:45 PM                                                                                                                               |
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------&gt;
| Subject:   |
|------------&gt;
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|
  |Re: [bpel-dev] The design tool different from OASIS specification for   BPEL2.0                                                                   |
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------&gt;
| Sent by:   |
|------------&gt;
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|
  |bpel-dev-bounces@xxxxxxxxxxx                                                                                                                      |
  &gt;--------------------------------------------------------------------------------------------------------------------------------------------------|





                                                                       
 Hi Michael,                                                           
                                                                       
 Thank you many times, you save me from the wrong way. Since you are a master, would you
 please give me a light on this following rule under 8.2.4:            
                                                                       
                                                                       
                                                                       
 &quot;When XPath 1.0 is used as an expression language in WS-BPEL there is no context node
 available. Therefore the legal values of the XPath Expr (             
 <a  href="http://www.w3.org/TR/xpath#NT-Expr">http://www.w3.org/TR/xpath#NT-Expr</a>) production must be restricted in order to prevent
 access to the context node.                                           
 Specifically, the &quot;LocationPath&quot; (<a  href="http://www.w3.org/TR/xpath#NT-LocationPath">http://www.w3.org/TR/xpath#NT-LocationPath</a>)
 production rule of &quot;PathExpr&quot; (<a  href="http://www.w3.org/TR/xpath#NT-PathExpr">http://www.w3.org/TR/xpath#NT-PathExpr</a>) production rule
 MUST NOT be used when XPath is used as an expression language.&quot;       
                                                                       
                                                                       
                                                                       
 --&gt; but why we can use:                                               
 &lt;from&gt;$variable.part/a/b/c&lt;/from&gt;???                                  
 What is the restriction of XPath under 8.2.4? Although I google all the time. But I
 haven't really understand it yet.                                     
                                                                       
 Thank you again.                                                      
 and have a nice day                                                   
                                                                       
 --- On Tue, 11/24/09, Michael Illiger2 &lt;MILLIGER@xxxxxxxxxx&gt; wrote:   
                                                                       
  From: Michael Illiger2 &lt;MILLIGER@xxxxxxxxxx&gt;                         
  Subject: Re: [bpel-dev] The design tool different from OASIS specification for BPEL2.0
  To: &quot;BPEL Designer project developer discussions.&quot; &lt;bpel-dev@xxxxxxxxxxx&gt;
  Date: Tuesday, November 24, 2009, 8:29 PM                            
                                                                       
  Hey Joni,                                                            
                                                                       
  You are not on the latest version of the BPEL 2.0 spec. (            
  <a  href="http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html">http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html</a>)              
  Here it says in chapter 8.4:                                         
                                                                       
  The from-spec MUST be one the following variants:                    
                                                                       
  &lt;from variable=&quot;BPELVariableName&quot; part=&quot;NCName&quot;?&gt;                
     &lt;query queryLanguage=&quot;anyURI&quot;?&gt;?                                
        queryContent                                                   
     &lt;/query&gt;                                                          
  &lt;/from&gt;                                                              
  &lt;from partnerLink=&quot;NCName&quot; endpointReference=&quot;myRole|partnerRole&quot; /&gt;
  &lt;from variable=&quot;BPELVariableName&quot; property=&quot;QName&quot; /&gt;            
  &lt;from expressionLanguage=&quot;anyURI&quot;?&gt;expression&lt;/from&gt;               
  &lt;from&gt;&lt;literal&gt;literal value&lt;/literal&gt;&lt;/from&gt;                        
  &lt;from/&gt;                                                              
                                                                       


_______________________________________________
bpel-dev mailing list
bpel-dev@xxxxxxxxxxx
<a  href="https://dev.eclipse.org/mailman/listinfo/bpel-dev">https://dev.eclipse.org/mailman/listinfo/bpel-dev</a>
</pre><p><strong>Attachment:
<a href="gifsxBYYcxEZc.gif" ><tt>pic17971.gif</tt></a></strong><br>
<em>Description:</em> GIF image</p>
]]></content:encoded>
		<pubDate>Tue, 24 Nov 2009 16:23:09 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01022.html</guid>
		<author>SMOSER@xxxxxxx (Simon D Moser)</author>
	</item>
	<item>
		<title>Re: [bpel-dev] The design tool different from OASIS specification for	BPEL2.0</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01021.html</link>
		<description> </description>
		<content:encoded><![CDATA[<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;"><DIV>Hi Michael,</DIV>
<DIV>&nbsp;</DIV>
<DIV>Thank you many times, you save me from the wrong way. Since you are a master, would you please give me a light on this following rule&nbsp;under 8.2.4:</DIV>
<DIV>&nbsp;</DIV>
<P class=MsoNormal><EM>"When XPath 1.0 is used as an _expression_ language in WS-BPEL there is no context node available. Therefore the legal values of the XPath Expr (</EM><A href="http://www.w3.org/TR/xpath#NT-Expr"><EM>http://www.w3.org/TR/xpath#NT-Expr</EM></A><EM>) production must be restricted in order to prevent access to the context node.</EM></DIV>
<DIV><EM>Specifically, the "</EM><A href="http://www.w3.org/TR/xpath#NT-LocationPath"><SPAN style="COLOR: windowtext"><EM>LocationPath</EM></SPAN></A><EM>" (</EM><A href="http://www.w3.org/TR/xpath#NT-LocationPath"><SPAN style="COLOR: windowtext"><EM>http://www.w3.org/TR/xpath#NT-LocationPath</EM></SPAN></A><EM>) production rule of "</EM><A href="http://www.w3.org/TR/xpath#NT-PathExpr"><SPAN style="COLOR: windowtext"><EM>PathExpr</EM></SPAN></A><EM>" (</EM><A href="http://www.w3.org/TR/xpath#NT-PathExpr"><SPAN style="COLOR: windowtext"><EM>http://www.w3.org/TR/xpath#NT-PathExpr</EM></SPAN></A><EM>) production rule MUST NOT be used when XPath is used as an _expression_ language."</EM></DIV>
<DIV><EM></EM>&nbsp;</DIV>
<DIV><EM>--&gt;</EM> but why we can use:</DIV>
<DIV>&lt;from&gt;$variable.part<STRONG>/a/b/c</STRONG>&lt;/from&gt;???</DIV>
<DIV>What is the restriction of XPath under 8.2.4? Although I google all the time. But I&nbsp;haven't really understand it yet.</DIV>
<DIV><BR>Thank you again.</DIV>
<DIV>and have a nice day</DIV>
<DIV><BR>--- On <B>Tue, 11/24/09, Michael Illiger2 <I>&lt;MILLIGER@xxxxxxxxxx&gt;</I></B> wrote:<BR></DIV>
<BLOCKQUOTE style="BORDER-LEFT: rgb(16,16,255) 2px solid; PADDING-LEFT: 5px; MARGIN-LEFT: 5px"><BR>From: Michael Illiger2 &lt;MILLIGER@xxxxxxxxxx&gt;<BR>Subject: Re: [bpel-dev] The design tool different from OASIS specification for BPEL2.0<BR>To: "BPEL Designer project developer discussions." &lt;bpel-dev@xxxxxxxxxxx&gt;<BR>Date: Tuesday, November 24, 2009, 8:29 PM<BR><BR>
<DIV id=yiv555809694><FONT size=2 face=sans-serif>Hey Joni,</FONT> <BR><BR><FONT size=2 face=sans-serif>You are not on the latest version of the BPEL 2.0 spec. (</FONT><A href="http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html" rel=nofollow target=_blank><FONT size=2 face=sans-serif>http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html</FONT></A><FONT size=2 face=sans-serif>)</FONT> <BR><FONT size=2 face=sans-serif>Here it says in chapter 8.4:</FONT> <BR><BR><FONT size=2 face=sans-serif>The from-spec MUST be one the following variants:</FONT> <BR><BR><FONT color=#008080 size=2 face="Courier New">&lt;</FONT><FONT color=#3f8080 size=2 face="Courier New">from </FONT><FONT color=#800080 size=2 face="Courier New">variable</FONT><FONT size=2 face="Courier New">=</FONT><FONT color=#4200ff size=2 face="Courier New">"BPELVariableName" </FONT><FONT color=#800080 size=2 face="Courier New">part</FONT><FONT size=2 face="Courier New">=</FONT><FONT color=#4200ff
 size=2 face="Courier New">"NCName"</FONT><FONT size=2 face="Courier New">?</FONT><FONT color=#008080 size=2 face="Courier New">&gt;</FONT> 
<DIV><FONT color=#008080 size=2 face="Courier New">&nbsp;&nbsp; &lt;query </FONT><FONT color=#800080 size=2 face="Courier New">queryLanguage</FONT><FONT size=2 face="Courier New">=</FONT><FONT color=#4200ff size=2 face="Courier New">"anyURI"</FONT><FONT size=2 face="Courier New">?</FONT><FONT color=#008080 size=2 face="Courier New">&gt;</FONT><FONT size=2 face="Courier New">?</FONT> 
<DIV><FONT color=#008080 size=2 face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT><FONT size=2 face="Courier New">queryContent</FONT> 
<DIV><FONT size=2 face="Courier New">&nbsp;&nbsp; </FONT><FONT color=#008080 size=2 face="Courier New">&lt;/query&gt;</FONT> 
<DIV><FONT color=#008080 size=2 face="Courier New">&lt;/from&gt;</FONT> 
<DIV><FONT color=#008080 size=2 face="Courier New">&lt;</FONT><FONT color=#3f8080 size=2 face="Courier New">from </FONT><FONT color=#800080 size=2 face="Courier New">partnerLink</FONT><FONT size=2 face="Courier New">=</FONT><FONT color=#4200ff size=2 face="Courier New">"NCName" </FONT><FONT color=#800080 size=2 face="Courier New">endpointReference</FONT><FONT size=2 face="Courier New">=</FONT><FONT color=#4200ff size=2 face="Courier New">"myRole|partnerRole" </FONT><FONT color=#008080 size=2 face="Courier New">/&gt;</FONT> 
<DIV><FONT color=#008080 size=2 face="Courier New">&lt;</FONT><FONT color=#3f8080 size=2 face="Courier New">from </FONT><FONT color=#800080 size=2 face="Courier New">variable</FONT><FONT size=2 face="Courier New">=</FONT><FONT color=#4200ff size=2 face="Courier New">"BPELVariableName" </FONT><FONT color=#800080 size=2 face="Courier New">property</FONT><FONT size=2 face="Courier New">=</FONT><FONT color=#4200ff size=2 face="Courier New">"QName" </FONT><FONT color=#008080 size=2 face="Courier New">/&gt;</FONT> 
<DIV><FONT color=#008080 size=2 face="Courier New">&lt;</FONT><FONT color=#3f8080 size=2 face="Courier New">from </FONT><FONT color=#800080 size=2 face="Courier New">expressionLanguage</FONT><FONT size=2 face="Courier New">=</FONT><FONT color=#4200ff size=2 face="Courier New">"anyURI"</FONT><FONT size=2 face="Courier New">?</FONT><FONT color=#008080 size=2 face="Courier New">&gt;</FONT><FONT size=2 face="Courier New">_expression_</FONT><FONT color=#008080 size=2 face="Courier New">&lt;/</FONT><FONT color=#3f8080 size=2 face="Courier New">from</FONT><FONT color=#008080 size=2 face="Courier New">&gt;</FONT> 
<DIV><FONT color=#008080 size=2 face="Courier New">&lt;</FONT><FONT color=#3f8080 size=2 face="Courier New">from</FONT><FONT color=#008080 size=2 face="Courier New">&gt;&lt;</FONT><FONT color=#3f8080 size=2 face="Courier New">literal</FONT><FONT color=#008080 size=2 face="Courier New">&gt;</FONT><FONT size=2 face="Courier New">literal value</FONT><FONT color=#008080 size=2 face="Courier New">&lt;/</FONT><FONT color=#3f8080 size=2 face="Courier New">literal</FONT><FONT color=#008080 size=2 face="Courier New">&gt;&lt;/</FONT><FONT color=#3f8080 size=2 face="Courier New">from</FONT><FONT color=#008080 size=2 face="Courier New">&gt;</FONT> 
<DIV><FONT color=#008080 size=2 face="Courier New">&lt;</FONT><FONT color=#3f8080 size=2 face="Courier New">from/</FONT><FONT color=#008080 size=2 face="Courier New">&gt;</FONT> </DIV></DIV></BLOCKQUOTE></td></tr></table><br>

      ]]></content:encoded>
		<pubDate>Tue, 24 Nov 2009 15:45:33 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01021.html</guid>
		<author>webcokies@xxxxxxx (Joni Lee)</author>
	</item>
	<item>
		<title>Re: [bpel-dev] The design tool different from OASIS specification for	BPEL2.0</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01020.html</link>
		<description>Hey Joni, You are not on the latest version of the BPEL 2.0 spec. (http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html) Here it says in chapter 8.4: The from-spec MUST be one the following variants: &amp;lt;from variable=&amp;quot;BPELVariableName&amp;quot; part=uot;NCName;?; n...</description>
		<content:encoded><![CDATA[<font size=2 face="sans-serif">Hey Joni,</font>
<br>
<br><font size=2 face="sans-serif">You are not on the latest version of
the BPEL 2.0 spec. (</font><a href="http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html"><font size=2 face="sans-serif">http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html</font></a><font size=2 face="sans-serif">)</font>
<br><font size=2 face="sans-serif">Here it says in chapter 8.4:</font>
<br>
<br><font size=2 face="sans-serif">The from-spec MUST be one the following
variants:</font>
<br>
<br><font size=2 color=#008080 face="Courier New">&lt;</font><font size=2 color=#3f8080 face="Courier New">from
</font><font size=2 color=#800080 face="Courier New">variable</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New">&quot;BPELVariableName&quot;
</font><font size=2 color=#800080 face="Courier New">part</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New">&quot;NCName&quot;</font><font size=2 face="Courier New">?</font><font size=2 color=#008080 face="Courier New">&gt;</font>
<p><font size=2 color=#008080 face="Courier New">&nbsp;&nbsp; &lt;query
</font><font size=2 color=#800080 face="Courier New">queryLanguage</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New">&quot;anyURI&quot;</font><font size=2 face="Courier New">?</font><font size=2 color=#008080 face="Courier New">&gt;</font><font size=2 face="Courier New">?</font>
<p><font size=2 color=#008080 face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</font><font size=2 face="Courier New">queryContent</font>
<p><font size=2 face="Courier New">&nbsp;&nbsp; </font><font size=2 color=#008080 face="Courier New">&lt;/query&gt;</font>
<p><font size=2 color=#008080 face="Courier New">&lt;/from&gt;</font>
<p><font size=2 color=#008080 face="Courier New">&lt;</font><font size=2 color=#3f8080 face="Courier New">from
</font><font size=2 color=#800080 face="Courier New">partnerLink</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New">&quot;NCName&quot;
</font><font size=2 color=#800080 face="Courier New">endpointReference</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New">&quot;myRole|partnerRole&quot;
</font><font size=2 color=#008080 face="Courier New">/&gt;</font>
<p><font size=2 color=#008080 face="Courier New">&lt;</font><font size=2 color=#3f8080 face="Courier New">from
</font><font size=2 color=#800080 face="Courier New">variable</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New">&quot;BPELVariableName&quot;
</font><font size=2 color=#800080 face="Courier New">property</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New">&quot;QName&quot;
</font><font size=2 color=#008080 face="Courier New">/&gt;</font>
<p><font size=2 color=#008080 face="Courier New">&lt;</font><font size=2 color=#3f8080 face="Courier New">from
</font><font size=2 color=#800080 face="Courier New">expressionLanguage</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New">&quot;anyURI&quot;</font><font size=2 face="Courier New">?</font><font size=2 color=#008080 face="Courier New">&gt;</font><font size=2 face="Courier New">_expression_</font><font size=2 color=#008080 face="Courier New">&lt;/</font><font size=2 color=#3f8080 face="Courier New">from</font><font size=2 color=#008080 face="Courier New">&gt;</font>
<p><font size=2 color=#008080 face="Courier New">&lt;</font><font size=2 color=#3f8080 face="Courier New">from</font><font size=2 color=#008080 face="Courier New">&gt;&lt;</font><font size=2 color=#3f8080 face="Courier New">literal</font><font size=2 color=#008080 face="Courier New">&gt;</font><font size=2 face="Courier New">literal
value</font><font size=2 color=#008080 face="Courier New">&lt;/</font><font size=2 color=#3f8080 face="Courier New">literal</font><font size=2 color=#008080 face="Courier New">&gt;&lt;/</font><font size=2 color=#3f8080 face="Courier New">from</font><font size=2 color=#008080 face="Courier New">&gt;</font>
<p><font size=2 color=#008080 face="Courier New">&lt;</font><font size=2 color=#3f8080 face="Courier New">from/</font><font size=2 color=#008080 face="Courier New">&gt;</font>
<br><font size=2 face="sans-serif"><br>
</font>
<br>
<br>
<br><font size=2 face="sans-serif">That means that the following BPEL snippet
is correct:</font>
<br>
<br><font size=3>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;bpel:copy&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:from part=&quot;parameters&quot;
variable=&quot;TravelBookingInput&quot;&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:query
queryLanguage=&quot;urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0&quot;&gt;&lt;![CDATA[TravelBookRequest/startAirport]]&gt;&lt;/bpel:query&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/bpel:from&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:to part=&quot;parameters&quot;
variable=&quot;TravelBookingOutput&quot;&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:query
queryLanguage=&quot;urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0&quot;&gt;&lt;![CDATA[TravelBookResponse/startAirport]]&gt;&lt;/bpel:query&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/bpel:to&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/bpel:copy&gt;</font>
<br>
<br><font size=2 face="sans-serif">However you can also use the $-XPath-Syntax
to do the above assignment. (Use the &quot;_expression_&quot; option on the
assignment properties page to do this)</font>
<br>
<br><font size=3>&nbsp; &nbsp; &nbsp; &nbsp; &lt;bpel:copy&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:from expressionLanguage=&quot;...&quot;&gt;$TravelBookingInput.parameters/TravelBookRequest/startAirport&lt;/bpel:from&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:to expressionLanguage=&quot;...&quot;&gt;$TravelBookingOutput.parameters/TravelBookResponse/startAirport&lt;/bpel:to&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/bpel:copy&gt;</font>
<br>
<br><font size=2 face="sans-serif">(Assuming &quot;TravelBookingInput&quot;
and &quot;TravelBookingOutput&quot; are BPEL variables that point on WSDL
messages and &quot;parameters&quot; is a WSDL part within those messages...)</font>
<br>
<br>
<br>
<br><font size=1 face="Arial">Mit freundlichen Gr&#xFC;&#xDF;en / Kind regards</font>
<br>
<br><font size=2 face="Arial"><b>Michael Illiger</b></font>
<br>
<br><font size=1 color=#0060a0 face="Arial">Software Developer - BPEL Editor
/ WID</font>
<br><font size=1 color=#0060a0 face="Arial">IBM Software Group, Application
and Integration Middleware Software</font>
<br><font size=1 color=#0060a0 face="Arial">WSS Business Process Solutions
Development 1</font>
<table>
<tr>
<td colspan=4>
<hr>
<tr>
<td colspan=4>
<tr>
<td><font size=1 color=#0060a0 face="Arial">Phone:</font>
<td><font size=1 color=#0060a0 face="Arial">+49-7031-16-1273</font>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;IBM Deutschland</font>
<td rowspan=4>
<div align=right><img src="gif2F7JSUP7Ao.gif"></div>
<tr>
<td><font size=1 color=#0060a0 face="Arial">E-Mail:</font>
<td><font size=1 color=#0060a0 face="Arial">milliger@xxxxxxxxxx</font>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;Schoenaicher Str. 220</font>
<tr>
<td>
<td>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;71032 Boeblingen</font>
<tr>
<td>
<td>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;Germany</font>
<tr>
<td colspan=4>
<hr>
<tr>
<td colspan=4>
<tr>
<td colspan=4><font size=1 color=#a2a2a2 face="Arial">IBM Deutschland Research
&amp; Development GmbH / Vorsitzender des Aufsichtsrats: Martin Jetter
<br>
Gesch&#xE4;ftsf&#xFC;hrung: Dirk Wittkopp<br>
Sitz der Gesellschaft: B&#xF6;blingen / Registergericht: Amtsgericht Stuttgart,
HRB 243294 </font></table>
<br>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">From:</font>
<td><font size=1 face="sans-serif">Joni Lee &lt;webcokies@xxxxxxxxx&gt;</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">To:</font>
<td><font size=1 face="sans-serif">bpel-dev@xxxxxxxxxxx</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Date:</font>
<td><font size=1 face="sans-serif">11/24/2009 12:38 AM</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Subject:</font>
<td><font size=1 face="sans-serif">[bpel-dev] The design tool different
from OASIS specification for &nbsp; &nbsp; &nbsp; &nbsp;BPEL2.0</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Sent by:</font>
<td><font size=1 face="sans-serif">bpel-dev-bounces@xxxxxxxxxxx</font></table>
<br>
<hr noshade>
<br>
<br>
<br>
<table>
<tr valign=top>
<td><font size=3>Hi,<br>
<br>
As specified under <b>8.4</b> OASIS Specification:<br>
</font><a href="http://www.oasis-open.org/apps/group_public/download.php/18714/#_Toc135660191"><font size=3>http://www.oasis-open.org/apps/group_public/download.php/18714/#_Toc135660191</font></a><font size=3><br>
the from-spec <b>MUST</b> be one of the following variants: </font>
<br><tt><font size=3>&lt;from variable=&quot;NCName&quot; part=&quot;NCName&quot;?/&gt;<br>
<br>
&lt;from partnerLink=&quot;NCName&quot; endpointReference=&quot;myRole|partnerRole&quot;/&gt;<br>
<br>
&lt;from variable=&quot;NCName&quot; property=&quot;QName&quot;/&gt;<br>
<br>
&lt;from expressionLanguage=&quot;anyURI&quot;?&gt;_expression_&lt;/from&gt;<br>
<br>
&lt;from&gt;&lt;literal&gt;literal value&lt;/literal&gt;&lt;/from&gt;</font></tt>
<br><font size=3>--------------------------------------------------------------------------------------------------------<br>
<br>
I've just install BPEL2.0 for Eclipse. When I make an assign of one variable
(messageType.part/query) to another variable (messageType.part/query),
the code are displayed in &lt;from&gt;&lt;query&gt;&lt;/query&gt;&lt;/from&gt;,
which are not allowed in BPEL 2.0?<br>
<br>
It has to be like this instead: &lt;from&gt;$message.part/query&lt;/from&gt;<br>
Or am I wrong with the 2.0 specification?<br>
----------------------------------------------------------------------------------------------------------<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:copy&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:from part=&quot;parameters&quot;
variable=&quot;TravelBookingInput&quot;&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:query
queryLanguage=&quot;urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0&quot;&gt;&lt;![CDATA[TravelBookRequest/startAirport]]&gt;&lt;/bpel:query&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/bpel:from&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:to part=&quot;parameters&quot;
variable=&quot;TravelBookingOutput&quot;&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;bpel:query
queryLanguage=&quot;urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0&quot;&gt;&lt;![CDATA[TravelBookResponse/startAirport]]&gt;&lt;/bpel:query&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/bpel:to&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/bpel:copy&gt;</font></table>
<br><tt><font size=2>_______________________________________________<br>
bpel-dev mailing list<br>
bpel-dev@xxxxxxxxxxx<br>
</font></tt><a href="https://dev.eclipse.org/mailman/listinfo/bpel-dev"><tt><font size=2>https://dev.eclipse.org/mailman/listinfo/bpel-dev</font></tt></a><tt><font size=2><br>
</font></tt>
<br>
<br>]]></content:encoded>
		<pubDate>Tue, 24 Nov 2009 13:29:18 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01020.html</guid>
		<author>MILLIGER@xxxxxxx (Michael Illiger2)</author>
	</item>


	<item>
		<title>[bpel-dev] The design tool different from OASIS specification for	BPEL2.0</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01019.html</link>
		<description>Hi,As specified under 8.4 OASIS Specification:http://www.oasis-open.org/apps/group_public/download.php/18714/#_Toc135660191the from-spec MUST be one of the following variants: &amp;lt;from variable="NCName" part="NCName"?/&amp;gt;&amp;lt;from partnerLink="NCName" endpointRefer...</description>
		<content:encoded><![CDATA[<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Hi,<br><br>As specified under <span style="font-weight: bold;">8.4</span> OASIS Specification:<br>http://www.oasis-open.org/apps/group_public/download.php/18714/#_Toc135660191<br><span lang="EN">the </span>from-spec <span style="font-weight: bold;">MU</span><span lang="EN"><span style="font-weight: bold;">ST</span> be one of the
following variants: <br></span><pre style="background: rgb(231, 222, 239) none repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;"><span lang="EN">&lt;from variable="NCName" part="NCName"?/&gt;<br><br>&lt;from partnerLink="NCName" endpointReference="myRole|partnerRole"/&gt;<br><br>&lt;from variable="NCName" property="QName"/&gt;<br><br></span>&lt;from expressionLanguage="anyURI"?&gt;_expression_&lt;/from&gt;<span lang="EN"><br><br>&lt;from&gt;&lt;literal&gt;literal value&lt;/literal&gt;&lt;/from&gt;</span></pre><span lang="EN">--------------------------------------------------------------------------------------------------------<br></span><br>I've just install BPEL2.0 for Eclipse. When I make an assign of one variable (messageType.part/query) to another variable (messageType.part/query), the code are displayed in &lt;from&gt;&lt;query&gt;&lt;/query&gt;&lt;/from&gt;, which are not
 allowed in BPEL 2.0?<br><br>It has to be like this instead: &lt;from&gt;$message.part/query&lt;/from&gt;<br>Or am I wrong with the 2.0 specification?<br>----------------------------------------------------------------------------------------------------------<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;bpel:copy&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;bpel:from part="parameters" variable="TravelBookingInput"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"&gt;&lt;![CDATA[TravelBookRequest/startAirport]]&gt;&lt;/bpel:query&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 &lt;/bpel:from&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;bpel:to part="parameters" variable="TravelBookingOutput"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"&gt;&lt;![CDATA[TravelBookResponse/startAirport]]&gt;&lt;/bpel:query&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/bpel:to&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/bpel:copy&gt;<br></td></tr></table><br>



      ]]></content:encoded>
		<pubDate>Mon, 23 Nov 2009 23:37:56 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01019.html</guid>
		<author>webcokies@xxxxxxx (Joni Lee)</author>
	</item>


	<item>
		<title>[bpel-dev] partnerLink extension</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01018.html</link>
		<description>Hi,&amp;#xA0;I want to extend the &amp;quot;PartnerLink&amp;quot; action like in the example:&amp;lt;bpel:partnerlinks&amp;gt;&amp;#xA0;&amp;#xA0; &amp;lt;bpel:partnerlink name=&amp;quot;QName&amp;quot; ext:attrName=&amp;quot;yes|no&amp;quot; /&amp;gt; &amp;lt;/bpel:partnerlinks&amp;gt;The xml validation allows this extension (no errors or warning),&amp;#xA0;but it is possible to integ...</description>
		<content:encoded><![CDATA[Hi,&#xA0;<div>I want to extend the &quot;PartnerLink&quot; action like in the example:</div><div><br></div><div>&lt;bpel:partnerlinks&gt;</div><div>&#xA0;&#xA0; &lt;bpel:partnerlink name=&quot;QName&quot; ext:attrName=&quot;yes|no&quot; /&gt;</div>
<div>&lt;/bpel:partnerlinks&gt;<br clear="all"><br></div><div>The xml validation allows this extension (no errors or warning),&#xA0;</div><div>but it is possible to integrate this into the design (property view)&#xA0;like&#xA0;the&#xA0;selection&#xA0;of&#xA0;role?</div>
<div>If yes, how can I do it?&#xA0;</div><div><br></div><div>Thanks</div><div><br>-- <br>Valeria Viannei<br>
</div>
]]></content:encoded>
		<pubDate>Mon, 09 Nov 2009 15:40:02 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01018.html</guid>
		<author>valeriaviannei@xxxxxxx (valeria)</author>
	</item>


	<item>
		<title>[bpel-dev] Re: Write a custom extension activity - help</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01017.html</link>
		<description>Hi!I&amp;#39;ve followed all the steps explained in the &amp;quot;Write a custom extension activity.pdf&amp;quot; and I&amp;#39;ve downloaded the source code from cvs... but in the both cases i have the following errors (see log file in attach)Can you help me? Thanks!-- Valeria Viannei Att...</description>
		<content:encoded><![CDATA[<span class="Apple-style-span" style="font-family: arial, sans-serif, &#39;Arial Unicode MS&#39;; font-size: 13px; border-collapse: collapse; ">Hi!<div><span style="font-family: arial, helvetica, geneva; font-size: 13px; ">I&#39;ve followed all the steps explained in the &quot;Write a custom extension activity.pdf&quot; and I&#39;ve downloaded the source code from cvs...</span></div>
<div><span style="font-size: 13px; "></span><font face="arial, helvetica, geneva">but in the both cases i have the following errors (see log file in attach)</font></div><div><font face="arial, helvetica, geneva">Can you help me?</font></div>
<div><font face="arial, helvetica, geneva"><br></font></div><div><font face="arial, helvetica, geneva">Thanks!</font></div></span><br>-- <br>Valeria Viannei<br>
<p><strong>Attachment:
<a href="rtfkfQQ8KXLOk.rtf" ><tt>my_log.rtf</tt></a></strong><br>
<em>Description:</em> RTF file</p>
]]></content:encoded>
		<pubDate>Thu, 05 Nov 2009 10:40:25 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01017.html</guid>
		<author>valeriaviannei@xxxxxxx (valeria)</author>
	</item>
	<item>
		<title>[bpel-dev] Project meta data is out of date for technology.bpel</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01016.html</link>
		<description>Michal, Simon, Projects are required to keep meta data up to date using the MyFoundation Portal (http://portal.eclipse.org/). The following problems were found with this project's meta-data: * The date for release &amp;quot;0.4.0&amp;quot; is in the past, but the release is...</description>
		<content:encoded><![CDATA[<pre>Michal, Simon,
Projects are required to keep meta data up to date using the MyFoundation
Portal (<a  href="http://portal.eclipse.org/">http://portal.eclipse.org/</a>).  The following problems were found
with this project's meta-data:

* The date for release &quot;0.4.0&quot; is in the past, but the release is not
marked as completed. If it is completed, it should be marked as completed;
if it has been postponed, it should be given a new target date.
* There is no next/future release of this project. All Eclipse projects
must have a &quot;next release&quot; planned and scheduled.


</pre>]]></content:encoded>
		<pubDate>Thu, 05 Nov 2009 05:00:18 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01016.html</guid>
		<author>emo@xxxxxxx (portal on behalf of emo)</author>
	</item>


	<item>
		<title>Re: [bpel-dev] How to change the default behavior of	LeafBorder.paint()</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01015.html</link>
		<description>Hello, there needs to be some &amp;quot;hard-coding&amp;quot; here because you have to find out whether there are any extension point implementers. Your code looks good to me  - evtl. you could put this stuff into org.eclipse.bpel.ui.extensions.BPELUIRegistry. That's where ...</description>
		<content:encoded><![CDATA[<font size=2 face="sans-serif">Hello,</font>
<br>
<br><font size=2 face="sans-serif">there needs to be some &quot;hard-coding&quot;
here because you have to find out whether there are any extension point
implementers. Your code looks good to me &nbsp;- evtl. you could put this
stuff into <b>org.eclipse.bpel.ui.extensions.BPELUIRegistry</b>. That's
where we handle all our other extension-points...<br>
</font>
<br><font size=1 face="Arial">Mit freundlichen Gr&#252;&#223;en / Kind regards</font>
<br>
<br><font size=2 face="Arial"><b>Michael Illiger</b></font>
<br>
<br><font size=1 color=#0060a0 face="Arial">Software Developer - BPEL Editor
/ WID</font>
<br><font size=1 color=#0060a0 face="Arial">IBM Software Group, Application
and Integration Middleware Software</font>
<br><font size=1 color=#0060a0 face="Arial">WSS Business Process Solutions
Development 1</font>
<table>
<tr>
<td colspan=4>
<hr>
<tr>
<td colspan=4>
<tr>
<td><font size=1 color=#0060a0 face="Arial">Phone:</font>
<td><font size=1 color=#0060a0 face="Arial">+49-7031-16-1273</font>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;IBM Deutschland</font>
<td rowspan=4>
<div align=right><img src="gifFBaSfq6Nrt.gif"></div>
<tr>
<td><font size=1 color=#0060a0 face="Arial">E-Mail:</font>
<td><font size=1 color=#0060a0 face="Arial">milliger@xxxxxxxxxx</font>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;Schoenaicher Str. 220</font>
<tr>
<td>
<td>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;71032 Boeblingen</font>
<tr>
<td>
<td>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;Germany</font>
<tr>
<td colspan=4>
<hr>
<tr>
<td colspan=4>
<tr>
<td colspan=4><font size=1 color=#a2a2a2 face="Arial">IBM Deutschland Research
&amp; Development GmbH / Vorsitzender des Aufsichtsrats: Martin Jetter
<br>
Gesch&#228;ftsf&#252;hrung: Erich Baier<br>
Sitz der Gesellschaft: B&#246;blingen / Registergericht: Amtsgericht Stuttgart,
HRB 243294 </font></table>
<br>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">From:</font>
<td><font size=1 face="sans-serif">zeng zhen &lt;zengzn@xxxxxxxxx&gt;</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">To:</font>
<td><font size=1 face="sans-serif">Michael Illiger2/Germany/IBM@IBMDE</font>
<tr>
<td valign=top><font size=1 color=#5f5f5f face="sans-serif">Cc:</font>
<td><font size=1 face="sans-serif">&quot;BPEL Designer project developer
discussions.&quot; &lt;bpel-dev@xxxxxxxxxxx&gt;, bpel-dev-bounces@xxxxxxxxxxx</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Date:</font>
<td><font size=1 face="sans-serif">10/19/2009 06:02 PM</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Subject:</font>
<td><font size=1 face="sans-serif">Re: [bpel-dev] How to change the default
behavior of &nbsp; &nbsp; &nbsp; &nbsp; LeafBorder.paint()</font></table>
<br>
<hr noshade>
<br>
<br>
<br><font size=3>Hello, Michael,<br>
<br>
thank you for your answer.<br>
I still have a question about creating an extension point in bpel.ui.<br>
<br>
I have defined an extension point with name &quot;customvisual&quot; in
plugin.xml of bpel.ui<br>
<br>
I have added following codes in org.eclipse.bpel.ui.editpart.border.LeafBorder
to create an instance of the extension. <br>
&nbsp;&nbsp;&nbsp; protected void getExtensionLeafBorder() {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; instance = null;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; instance =&nbsp; (LeafBorder) BPELUIRegistry.readCustomvisual(&quot;extension.leafborder&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (instance == null) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return ;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;&nbsp; }<br>
<br>
This instance is used in paint(IFigure figure, Graphics graphics, Insets
insets) </font><font size=2 face="sans-serif">to adjust the visualization
of the activity nodes</font><font size=3>.<br>
My question is: is there a way to avoid modifying the source code of org.eclipse.bpel.ui.editpart.border.LeafBorder?
Because the hardcoding is always bad.<br>
<br>
thanks!<br>
<br>
Zhen and Ting<br>
<br>
</font>
<br><font size=3>2009/10/12 Michael Illiger2 &lt;</font><a href=mailto:MILLIGER@xxxxxxxxxx><font size=3 color=blue><u>MILLIGER@xxxxxxxxxx</u></font></a><font size=3>&gt;</font>
<br><font size=2 face="sans-serif">Hello Ting,</font><font size=3> <br>
</font><font size=2 face="sans-serif"><br>
as of today we don't have the possibility to adjust the visualization of
the activity nodes using extension points.</font><font size=3> </font><font size=2 face="sans-serif"><br>
So the answer is, yes - you would have to define an extension point in
bpel.ui.</font><font size=3><br>
</font><font size=1 face="Arial"><br>
Mit freundlichen Gr&#252;&#223;en / Kind regards</font><font size=3> <br>
</font><font size=2 face="Arial"><b><br>
Michael Illiger</b></font><font size=3> <br>
</font><font size=1 color=#0060a0 face="Arial"><br>
Software Developer - BPEL Editor / WID</font><font size=3> </font><font size=1 color=#0060a0 face="Arial"><br>
IBM Software Group, Application and Integration Middleware Software</font><font size=3>
</font><font size=1 color=#0060a0 face="Arial"><br>
WSS Business Process Solutions Development 1</font><font size=3> </font>
<table>
<tr>
<td colspan=4>
<hr>
<tr>
<td colspan=4>
<tr>
<td><font size=1 color=#0060a0 face="Arial">Phone:</font><font size=3>
</font>
<td><font size=1 color=#0060a0 face="Arial">+49-7031-16-1273</font><font size=3>
</font>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;IBM Deutschland</font><font size=3>
</font>
<td rowspan=4>
<div align=right><img src="gifqMiAbmI9Xv.gif" width=87 height=30></div>
<tr>
<td><font size=1 color=#0060a0 face="Arial">E-Mail:</font><font size=3>
</font>
<td><a href=mailto:milliger@xxxxxxxxxx target=_blank><font size=1 color=blue face="Arial"><u>milliger@xxxxxxxxxx</u></font></a><font size=3>
</font>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;Schoenaicher Str. 220</font><font size=3>
</font>
<tr>
<td>
<td>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;71032 Boeblingen</font><font size=3>
</font>
<tr>
<td>
<td>
<td><font size=1 color=#0060a0 face="Arial">&nbsp;Germany</font><font size=3>
</font>
<tr>
<td colspan=4>
<hr>
<tr>
<td colspan=4>
<tr>
<td colspan=4><font size=1 color=#a2a2a2 face="Arial">IBM Deutschland Research
&amp; Development GmbH / Vorsitzender des Aufsichtsrats: Martin Jetter
<br>
Gesch&#228;ftsf&#252;hrung: Erich Baier<br>
Sitz der Gesellschaft: B&#246;blingen / Registergericht: Amtsgericht Stuttgart,
HRB 243294 </font></table>
<br><font size=3><br>
<br>
<br>
</font>
<table width=100%>
<tr valign=top>
<td width=12%><font size=1 color=#5f5f5f face="sans-serif">From:</font><font size=3>
</font>
<td width=87%><font size=1 face="sans-serif">ting wang &lt;</font><a href=mailto:tting.wang@xxxxxxxxx target=_blank><font size=1 color=blue face="sans-serif"><u>tting.wang@xxxxxxxxx</u></font></a><font size=1 face="sans-serif">&gt;</font><font size=3>
</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">To:</font><font size=3>
</font>
<td><a href="mailto:bpel-dev@xxxxxxxxxxx" target=_blank><font size=1 color=blue face="sans-serif"><u>bpel-dev@xxxxxxxxxxx</u></font></a><font size=3>
</font>
<tr>
<td valign=top><font size=1 color=#5f5f5f face="sans-serif">Cc:</font><font size=3>
</font>
<td><font size=1 face="sans-serif">zhen zeng &lt;</font><a href=mailto:zengzn@xxxxxxxxx target=_blank><font size=1 color=blue face="sans-serif"><u>zengzn@xxxxxxxxx</u></font></a><font size=1 face="sans-serif">&gt;</font><font size=3>
</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Date:</font><font size=3>
</font>
<td><font size=1 face="sans-serif">10/12/2009 04:14 PM</font><font size=3>
</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Subject:</font><font size=3>
</font>
<td><font size=1 face="sans-serif">[bpel-dev] How to change the default
behavior of LeafBorder.paint()</font><font size=3> </font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Sent by:</font><font size=3>
</font>
<td><a href="mailto:bpel-dev-bounces@xxxxxxxxxxx" target=_blank><font size=1 color=blue face="sans-serif"><u>bpel-dev-bounces@xxxxxxxxxxx</u></font></a></table>
<br><font size=3><br>
</font>
<hr noshade><font size=3><br>
<br>
</font>
<br><font size=3>Hallo,<br>
<br>
I am trying to wirte an extension to change the default behavior of org.eclipse.bpel.ui.editparts.borders.LeafBorder,
for example, the shape of the elements border. By default it is Rectangle
and I want to change it into circle.<br>
<br>
Is there an extension point, which i can use to implement it?<br>
Or I have to define an extension point in org.eclipse.bpel.ui?<br>
<br>
any answer is appreciate <br>
<br>
-- <br>
<br>
Best Regards<br>
<br>
<br>
Mit Freundlichen Gr&#252;&#223;en<br>
<br>
&#x795D;<br>
&nbsp; &nbsp; &#x5546;&#x797A;<br>
<br>
Ting Wang<br>
<br>
<br>
<br>
<br>
&quot;The bane of my existence is doing things<br>
that I know the computer could do for me&quot;</font>
<br><font size=3>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;-- Dan Connolly</font><tt><font size=2>_______________________________________________<br>
bpel-dev mailing list</font></tt><tt><font size=2 color=blue><u><br>
</u></font></tt><a href="mailto:bpel-dev@xxxxxxxxxxx" target=_blank><tt><font size=2 color=blue><u>bpel-dev@xxxxxxxxxxx</u></font></tt></a><font size=3 color=blue><u><br>
</u></font><a href="https://dev.eclipse.org/mailman/listinfo/bpel-dev" target=_blank><tt><font size=2 color=blue><u>https://dev.eclipse.org/mailman/listinfo/bpel-dev</u></font></tt></a><font size=3><br>
<br>
</font>
<br>
<br>
<br>]]></content:encoded>
		<pubDate>Tue, 20 Oct 2009 06:00:05 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01015.html</guid>
		<author>MILLIGER@xxxxxxx (Michael Illiger2)</author>
	</item>


	<item>
		<title>Re: [bpel-dev] How to change the default behavior of 	LeafBorder.paint()</title>
		<link>http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01014.html</link>
		<description>Hello, Michael,thank you for your answer.I still have a question about creating an extension point in bpel.ui.I have defined an extension point with name &amp;quot;customvisual&amp;quot; in plugin.xml of bpel.ui I have added following codes in org.eclipse.bpel.ui.editpart.b...</description>
		<content:encoded><![CDATA[Hello, Michael,<br><br>thank you for your answer.<br>I still have a question about creating an extension point in bpel.ui.<br><br>I have defined an extension point with name &quot;customvisual&quot; in plugin.xml of bpel.ui<br>
<br>I have added following codes in org.eclipse.bpel.ui.editpart.border.LeafBorder to create an instance of the extension. <br>&#xC2;&#xC2;&#xC2; protected void getExtensionLeafBorder() {<br>&#xC2;&#xC2;&#xC2; &#xC2;&#xC2;&#xC2; <br>&#xC2;&#xC2;&#xC2; &#xC2;&#xC2;&#xC2; instance = null;<br>&#xC2;&#xC2;&#xC2; &#xC2;&#xC2;&#xC2; <br>
&#xC2;&#xC2;&#xC2; &#xC2;&#xC2;&#xC2; instance =&#xC2; (LeafBorder) BPELUIRegistry.readCustomvisual(&quot;extension.leafborder&quot;);<br>&#xC2;&#xC2;&#xC2; &#xC2;&#xC2;&#xC2; if (instance == null) {<br>&#xC2;&#xC2;&#xC2; &#xC2;&#xC2;&#xC2; &#xC2;&#xC2;&#xC2; return ;<br>&#xC2;&#xC2;&#xC2; &#xC2;&#xC2;&#xC2; }<br>&#xC2;&#xC2;&#xC2; }<br><br>This instance is used in paint(IFigure figure, Graphics graphics, Insets insets) <font face="sans-serif" size="2">to adjust the visualization of the activity nodes</font>.<br>
My question is: is there a way to avoid modifying the source code of org.eclipse.bpel.ui.editpart.border.LeafBorder? Because the hardcoding is always bad.<br><br>thanks!<br><br>Zhen and Ting<br><br><br><div class="gmail_quote">
2009/10/12 Michael Illiger2 <span dir="ltr">&lt;<a href="mailto:MILLIGER@xxxxxxxxxx">MILLIGER@xxxxxxxxxx</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<font face="sans-serif" size="2">Hello Ting,</font>
<br>
<br><font face="sans-serif" size="2">as of today we don&#39;t have the possibility
to adjust the visualization of the activity nodes using extension points.</font>
<br><font face="sans-serif" size="2">So the answer is, yes - you would have
to define an extension point in bpel.ui.<br>
</font>
<br><font face="Arial" size="1">Mit freundlichen Gr&#xC3;&#xC3;en / Kind regards</font>
<br>
<br><font face="Arial" size="2"><b>Michael Illiger</b></font>
<br>
<br><font color="#0060a0" face="Arial" size="1">Software Developer - BPEL Editor
/ WID</font>
<br><font color="#0060a0" face="Arial" size="1">IBM Software Group, Application
and Integration Middleware Software</font>
<br><font color="#0060a0" face="Arial" size="1">WSS Business Process Solutions
Development 1</font>
<table>
<tbody><tr>
<td colspan="4">
<hr>
</td></tr><tr>
<td colspan="4">
</td></tr><tr>
<td><font color="#0060a0" face="Arial" size="1">Phone:</font>
</td><td><font color="#0060a0" face="Arial" size="1">+49-7031-16-1273</font>
</td><td><font color="#0060a0" face="Arial" size="1">&#xC2;IBM Deutschland</font>
</td><td rowspan="4">
<div align="right"><img src="gifQ1fkwfBV6H.gif"></div>
</td></tr><tr>
<td><font color="#0060a0" face="Arial" size="1">E-Mail:</font>
</td><td><font color="#0060a0" face="Arial" size="1"><a href="mailto:milliger@xxxxxxxxxx" target="_blank">milliger@xxxxxxxxxx</a></font>
</td><td><font color="#0060a0" face="Arial" size="1">&#xC2;Schoenaicher Str. 220</font>
</td></tr><tr>
<td>
</td><td>
</td><td><font color="#0060a0" face="Arial" size="1">&#xC2;71032 Boeblingen</font>
</td></tr><tr>
<td>
</td><td>
</td><td><font color="#0060a0" face="Arial" size="1">&#xC2;Germany</font>
</td></tr><tr>
<td colspan="4">
<hr>
</td></tr><tr>
<td colspan="4">
</td></tr><tr>
<td colspan="4"><font color="#a2a2a2" face="Arial" size="1">IBM Deutschland Research
&amp; Development GmbH / Vorsitzender des Aufsichtsrats: Martin Jetter
<br>
Gesch&#xC3;ftsf&#xC3;hrung: Erich Baier<br>
Sitz der Gesellschaft: B&#xC3;blingen / Registergericht: Amtsgericht Stuttgart,
HRB 243294 </font></td></tr></tbody></table>
<br>
<br>
<br>
<br>
<table width="100%">
<tbody><tr valign="top">
<td><font color="#5f5f5f" face="sans-serif" size="1">From:</font>
</td><td><font face="sans-serif" size="1">ting wang &lt;<a href="mailto:tting.wang@xxxxxxxxx" target="_blank">tting.wang@xxxxxxxxx</a>&gt;</font>
</td></tr><tr valign="top">
<td><font color="#5f5f5f" face="sans-serif" size="1">To:</font>
</td><td><font face="sans-serif" size="1"><a href="mailto:bpel-dev@xxxxxxxxxxx" target="_blank">bpel-dev@xxxxxxxxxxx</a></font>
</td></tr><tr>
<td valign="top"><font color="#5f5f5f" face="sans-serif" size="1">Cc:</font>
</td><td><font face="sans-serif" size="1">zhen zeng &lt;<a href="mailto:zengzn@xxxxxxxxx" target="_blank">zengzn@xxxxxxxxx</a>&gt;</font>
</td></tr><tr valign="top">
<td><font color="#5f5f5f" face="sans-serif" size="1">Date:</font>
</td><td><font face="sans-serif" size="1">10/12/2009 04:14 PM</font>
</td></tr><tr valign="top">
<td><font color="#5f5f5f" face="sans-serif" size="1">Subject:</font>
</td><td><font face="sans-serif" size="1">[bpel-dev] How to change the default
behavior of LeafBorder.paint()</font>
</td></tr><tr valign="top">
<td><font color="#5f5f5f" face="sans-serif" size="1">Sent by:</font>
</td><td><font face="sans-serif" size="1"><a href="mailto:bpel-dev-bounces@xxxxxxxxxxx" target="_blank">bpel-dev-bounces@xxxxxxxxxxx</a></font></td></tr></tbody></table>
<br>
<hr noshade>
<br>
<br>
<br><font size="3"><div><div></div><div class="h5">Hallo,<br>
<br>
I am trying to wirte an extension to change the default behavior of org.eclipse.bpel.ui.editparts.borders.LeafBorder,
for example, the shape of the elements border. By default it is Rectangle
and I want to change it into circle.<br>
<br>
Is there an extension point, which i can use to implement it?<br>
Or I have to define an extension point in org.eclipse.bpel.ui?<br>
<br>
any answer is appreciate <br>
<br>
-- <br>
<br>
Best Regards<br>
<br>
<br>
Mit Freundlichen Gr&#xC3;&#xC3;en<br>
<br>
&#xE7;<br>
&#xC2; &#xC2; &#xE5;&#xE7;<br>
<br>
Ting Wang<br>
<br>
<br>
<br>
<br>
&quot;The bane of my existence is doing things<br>
that I know the computer could do for me&quot;<br></div></div>
&#xC2; &#xC2; &#xC2; &#xC2; &#xC2; &#xC2; &#xC2; &#xC2; &#xC2; &#xC2; &#xC2;
&#xC2;-- Dan Connolly</font><tt><font size="2">_______________________________________________<br>
bpel-dev mailing list<br>
<a href="mailto:bpel-dev@xxxxxxxxxxx" target="_blank">bpel-dev@xxxxxxxxxxx</a><br>
</font></tt><a href="https://dev.eclipse.org/mailman/listinfo/bpel-dev" target="_blank"><tt><font size="2">https://dev.eclipse.org/mailman/listinfo/bpel-dev</font></tt></a><tt><font size="2"><br>
</font></tt>
<br>
<br></blockquote></div><br>
]]></content:encoded>
		<pubDate>Mon, 19 Oct 2009 16:00:52 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/bpel-dev/msg01014.html</guid>
		<author>zengzn@xxxxxxx (zeng zhen)</author>
	</item>

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