<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3880624469588463196</id><updated>2011-07-07T23:24:56.215-07:00</updated><category term='aq'/><title type='text'>Oracle SOA</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>45</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-2204680703822321969</id><published>2009-07-08T02:05:00.001-07:00</published><updated>2009-07-08T02:05:26.804-07:00</updated><title type='text'>bpel_synch</title><content type='html'>&lt;a href="http://www.oracle.com/technology/obe/obe_as_1012/integration/bpel/synch_services/bpel_synch.htm"&gt;bpel_synch&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Shared via &lt;a href="http://addthis.com"&gt;AddThis&lt;/a&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-2204680703822321969?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/2204680703822321969/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=2204680703822321969' title='41 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2204680703822321969'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2204680703822321969'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2009/07/bpelsynch.html' title='bpel_synch'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>41</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-1433482253491100740</id><published>2009-07-08T01:53:00.000-07:00</published><updated>2009-07-08T02:03:10.032-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='aq'/><title type='text'>enqueue dequeue sql script</title><content type='html'>&lt;strong&gt;Enqueue Message&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;DECLARE&lt;br /&gt;enqueue_options DBMS_AQ.enqueue_options_t;&lt;br /&gt;message_properties DBMS_AQ.message_properties_t;&lt;br /&gt;msg_handle RAW (16);&lt;br /&gt;ipmsg ip_message_type;&lt;br /&gt;xml_clob CLOB;&lt;br /&gt;msg_id NUMBER (10);&lt;br /&gt;subscribers DBMS_AQ.aq$_recipient_list_t;&lt;br /&gt;BEGIN&lt;br /&gt;xml_clob := '';&lt;br /&gt;subscribers (1) :=&lt;br /&gt;SYS.aq$_agent ('&lt;subscriber&gt;'&lt;br /&gt;, NULL&lt;br /&gt;, NULL);&lt;br /&gt;message_properties.recipient_list := subscribers;&lt;br /&gt;DBMS_AQ.enqueue (queue_name =&gt; '&lt;queue&gt;'&lt;br /&gt;, enqueue_options =&gt; enqueue_options&lt;br /&gt;, message_properties =&gt; message_properties&lt;br /&gt;, payload =&gt; xml_clob&lt;br /&gt;, msgid =&gt; msg_handle);&lt;br /&gt;COMMIT;&lt;br /&gt;END;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Dequeue Message&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;DECLARE&lt;br /&gt;dequeue_options DBMS_AQ.dequeue_options_t;&lt;br /&gt;message_properties DBMS_AQ.message_properties_t;&lt;br /&gt;message_handle RAW (16);&lt;br /&gt;xml_clob CLOB;&lt;br /&gt;BEGIN&lt;br /&gt;dequeue_options.consumer_name := '&lt;consumer&gt;';&lt;br /&gt;dequeue_options.dequeue_mode := DBMS_AQ.remove;&lt;br /&gt;-- Only if you want to remove message&lt;br /&gt;dequeue_options.navigation := DBMS_AQ.next_message;&lt;br /&gt;dequeue_options.WAIT := DBMS_AQ.forever;&lt;br /&gt;DBMS_AQ.dequeue (queue_name =&gt; '&lt;queue&gt;'&lt;br /&gt;, dequeue_options =&gt; dequeue_options&lt;br /&gt;, message_properties =&gt; message_properties&lt;br /&gt;, payload =&gt; xml_clob&lt;br /&gt;, msgid =&gt; message_handle);&lt;br /&gt;DBMS_OUTPUT.PUT_LINE ('Message ID : ' xml_clob);&lt;br /&gt;COMMIT;&lt;br /&gt;END;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-1433482253491100740?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/1433482253491100740/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=1433482253491100740' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/1433482253491100740'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/1433482253491100740'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2009/07/enqueuedequeue-sql-script.html' title='enqueue dequeue sql script'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-7194981413030082830</id><published>2009-07-05T11:38:00.000-07:00</published><updated>2009-07-05T11:39:48.287-07:00</updated><title type='text'>Examples of Date and Time Formatting</title><content type='html'>&lt;p&gt;&lt;a name="11a0021f405bfbd5_d5e24888"&gt;&lt;/a&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;Example: Gregorian &lt;span&gt;Calendar&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;The following examples show a selection of dates and times and the way they might be formatted. These examples assume the use of the Gregorian calendar as the default calendar.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;table border="1" cellpadding="0"&gt;  &lt;thead&gt;   &lt;tr&gt;    &lt;td style="padding: 3.75pt;"&gt;    &lt;p&gt;&lt;b&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt; font-weight: bold;"&gt;Required Output&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;    &lt;/td&gt;    &lt;td style="padding: 3.75pt;"&gt;    &lt;p&gt;&lt;b&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt; font-weight: bold;"&gt;Expression&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;    &lt;/td&gt;   &lt;/tr&gt;  &lt;/thead&gt;  &lt;tbody&gt;&lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;2002-12-31&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[Y0001]-[M01]-[D01]")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;12-31-2002&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[M]-[D]-[Y]")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;31-12-2002&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[D]-[M]-[Y]")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;31 XII 2002&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;" lang="DE"&gt;format-date($d, "[D1] [MI]   [Y]")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;span lang="DE"&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;31st December, 2002&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[D1o] [&lt;span&gt;MNn&lt;/span&gt;],   [Y]", "en", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;31 DEC 2002&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[D01] [MN,*-3] [Y0001]",   "en", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;December 31, 2002&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;" lang="DE"&gt;format-date($d, "[MNn]   [D], [Y]", "en", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;span lang="DE"&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;31 &lt;span&gt;Dezember&lt;/span&gt;, 2002&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[D] [&lt;span&gt;MNn&lt;/span&gt;],   [Y]", "de", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;span&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;Tisdag&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt; 31 December 2002&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[&lt;span&gt;FNn&lt;/span&gt;]   [D] [&lt;span&gt;MNn&lt;/span&gt;] [Y]", "&lt;span&gt;sv&lt;/span&gt;",   (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;[2002-12-31]&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[[[Y0001]-[M01]-[D01]]]")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;Two Thousand and Three&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[&lt;span&gt;YWw&lt;/span&gt;]",   "en", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;span&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;einunddreißigste&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt; &lt;span&gt;Dezember&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[&lt;span&gt;Dwo&lt;/span&gt;]   [&lt;span&gt;MNn&lt;/span&gt;]", "de", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;3:58 PM&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;" lang="DE"&gt;format-time($t, "[h]:[m01]   [PN]", "en", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;span lang="DE"&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;3:58:45 pm&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-time($t, "[h]:[m01]:[s01] [&lt;span&gt;Pn&lt;/span&gt;]", "en", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;3:58:45 PM PDT&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-time($t, "[h]:[m01]:[s01] [PN]   [ZN,*-3]", "en", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;3:58:45 o'clock PM PDT&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-time($t, "[h]:[m01]:[s01] o'clock [PN]   [ZN,*-3]", "en")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;15:58&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-time($t,"[H01]:[m01]")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;15:58:45.762&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-time($t,"[H01]:[m01]:[&lt;wbr&gt;s01].[f001]")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;15:58:45 GMT+02:00&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-time($t,"[H01]:[m01]:[&lt;wbr&gt;s01] [z]",   "en", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;15.58 &lt;span&gt;Uhr&lt;/span&gt; GMT+02:00&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-time($t,"[H01]:[m01] &lt;span&gt;Uhr&lt;/span&gt;   [z]", "de", (), ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;3.58pm on Tuesday, 31st December&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-&lt;span&gt;dateTime&lt;/span&gt;($&lt;span&gt;dt&lt;/span&gt;, "[h].[m01][&lt;span&gt;Pn&lt;/span&gt;] on [&lt;span&gt;FNn&lt;/span&gt;], [D1o] [&lt;span&gt;MNn&lt;/span&gt;]")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;12/31/2002 at 15:58:45&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-&lt;span&gt;dateTime&lt;/span&gt;($&lt;span&gt;dt&lt;/span&gt;, "[M01]/[D01]/[Y0001] at [H01]:[m01]:[s01]")&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;Example: Non-Gregorian Calendars &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;The following examples use calendars other than the Gregorian calendar.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;These examples use non-Latin characters which might not display correctly in all browsers, depending on the system configuration.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;    &lt;table border="1" cellpadding="0"&gt;&lt;thead&gt;   &lt;tr&gt;    &lt;td style="padding: 3.75pt;"&gt;    &lt;p&gt;&lt;b&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt; font-weight: bold;"&gt;Description&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;    &lt;/td&gt;    &lt;td style="padding: 3.75pt;"&gt;    &lt;p&gt;&lt;b&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt; font-weight: bold;"&gt;Request&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;    &lt;/td&gt;    &lt;td style="padding: 3.75pt;"&gt;    &lt;p&gt;&lt;b&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt; font-weight: bold;"&gt;Result&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;    &lt;/td&gt;   &lt;/tr&gt;  &lt;/thead&gt;  &lt;tbody&gt;&lt;tr&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;Islamic&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[D&amp;#x0661;] [&lt;span&gt;Mn&lt;/span&gt;] [Y&amp;#x0661;]", "Islamic", "&lt;span&gt;ar&lt;/span&gt;", "AH", ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;٢٦ &lt;span&gt;ﺸﻭّﺍﻝ&lt;/span&gt;   ١٤٢٣&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;Jewish (with Western numbering)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[D] [&lt;span&gt;Mn&lt;/span&gt;]   [Y]", "he", "AM", ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;‏26 &lt;span&gt;טבת&lt;/span&gt;   5763&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;Jewish (with traditional numbering)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;" lang="DE"&gt;format-date($d,   "[D&amp;#x05D0;t] [Mn] [Y&amp;#x05D0;t]", "he",   "AM", ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;span lang="DE"&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;כ״ו&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;span&gt;טבת&lt;/span&gt; &lt;span&gt;תשס״ג&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;Julian (Old Style)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;" lang="DE"&gt;format-date($d, "[D] [MNn]   [Y]", "en", "OS", ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;span lang="DE"&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;18 December 2002&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-size: 12pt;"&gt;Thai&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;code&gt;&lt;span style="font-family:Courier New;font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;format-date($d, "[D&amp;#x0E51;] [&lt;span&gt;Mn&lt;/span&gt;] [Y&amp;#x0E51;]", "&lt;span&gt;th&lt;/span&gt;",   "BE", ())&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 3.75pt;" valign="top"&gt;   &lt;p&gt;&lt;span style="font-family:Tahoma;font-size:100%;"&gt;&lt;span style="font-size: 12pt; font-family: Tahoma;"&gt;๓๑&lt;/span&gt;&lt;/span&gt; &lt;span&gt;&lt;span style="font-family:Tahoma;"&gt;&lt;span style="font-family: Tahoma;"&gt;ธันวาคม&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;   &lt;span style="font-family:Tahoma;"&gt;&lt;span style="font-family: Tahoma;"&gt;๒๕๔๕&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-7194981413030082830?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/7194981413030082830/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=7194981413030082830' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7194981413030082830'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7194981413030082830'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2009/07/examples-of-date-and-time-formatting.html' title='Examples of Date and Time Formatting'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-2632325497072205371</id><published>2009-07-05T11:34:00.001-07:00</published><updated>2009-07-05T11:35:02.999-07:00</updated><title type='text'>How to enable debugging in Oracle ESB</title><content type='html'>1. Login into the Application Server Control at http://Server.Client.com:7777/em&lt;br /&gt;2. Click on the oc4j_soa instance and Administration tab.&lt;br /&gt;3. Click on Logger Configuration.&lt;br /&gt;4. Now expand Root Logger / oracle to display the logger classes and the Log Level settings.&lt;br /&gt;5. In the Log Level list, select the level FINE for the following classes&lt;br /&gt;. oracle.tip.esb.server.common&lt;br /&gt;. oracle.tip.esb.server.service&lt;br /&gt;6. Restart the SOA suite to apply the changes and the logs can be found at&lt;br /&gt;&lt;br /&gt;\\SERVER\\j2ee\oc4j_soa\application-deployments\esb-dt\oc4j_soa_default_group_1\application.log&lt;br /&gt;\\SERVER\\j2ee\oc4j_soa\application-deployments\esb-rt\oc4j_soa_default_group_1\application.log&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-2632325497072205371?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/2632325497072205371/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=2632325497072205371' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2632325497072205371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2632325497072205371'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2009/07/how-to-enable-debugging-in-oracle-esb.html' title='How to enable debugging in Oracle ESB'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-2000457622829685440</id><published>2009-07-05T11:25:00.000-07:00</published><updated>2009-07-05T11:30:56.645-07:00</updated><title type='text'>Oracle BPEL process manager rollback</title><content type='html'>Question:&lt;br /&gt;I have a empty BPEL process that polls for AQJMS messages using a JMS adapter and then insert the received messages to the DB.  Now the problem is, if there is any error w.r.t the DB insert, then it should rollback the message to the source destination i.e., my AQJMS Queue.  But it is not happening.  using the bpelx:rollback explicitly doesn't seem to help.&lt;br /&gt;&lt;br /&gt;Answer:&lt;br /&gt;You need to make it as one transaction. Use JCA-XA transaction. Just like in PL/SQL to make a transaction block we write it inside BEGIN ... END; in BPEL we create a JNDI of XA type (global-transaction handler) and then configure the property name 'transaction' to 'participate' for all partner links which are part of the transaction.&lt;br /&gt;&lt;br /&gt;&lt;property name="transaction"&gt;participate&lt; /property&gt;&lt;br /&gt;&lt;br /&gt;However you need to take care of one thing, if the process is syncronous and you call rollback then it will not show up in BPEL console, since it posting to dehydration db will also be rollbacked.&lt;br /&gt;&lt;br /&gt;Read the soa_best_practices_1013x&lt;br /&gt;http://download.oracle.com/technology/tech/soa/soa_best_practices_1013x_drop3.pdf&lt;br /&gt;&lt;br /&gt;Check the blog below for example on how to do this.&lt;br /&gt;http://soab2bsahil.blogspot.com/2009/04/rollbacking-ebs-apis-using-bpel.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-2000457622829685440?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/2000457622829685440/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=2000457622829685440' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2000457622829685440'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2000457622829685440'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2009/07/oracle-bpel-process-manager-rollback.html' title='Oracle BPEL process manager rollback'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-1047471088377876289</id><published>2009-07-05T10:51:00.000-07:00</published><updated>2009-07-05T10:55:54.888-07:00</updated><title type='text'>Tables to be monitered in ORABPEL schema</title><content type='html'>select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PC_TASKPAYLOAD';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFCOMMENTS';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'DLV_SUBSCRIPTION';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'ATTACHMENT_REF';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'TASK';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PROCESS_DEFAULT';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'ACTIVITY_SENSOR_VALUES';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PC_TASK';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFMESSAGEATTRIBUTE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFATTACHMENT';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'CUBE_INSTANCE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'SCOPE_ACTIVATION';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'SYNC_STORE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'SUITCASE_BIN';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'ATTACHMENT';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFTASK';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PC_TASKATTACHMENT';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'VERSION_SERVER';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFROUTINGSLIP';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFUSERVACATION';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFUSERTASKVIEWGRANT';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFUSERPREFERENCE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFTASKTIMER';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFNOTIFICATIONMESSAGES';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'DOCUMENT_CI_REF';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'LOAN_CUSTOMER';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFNOTIFICATION';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WI_EXCEPTION';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'NATIVE_CORRELATION';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'FAULT_SENSOR_VALUES';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PC_OWF';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PC_TASKASSIGNEE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFATTRIBUTELABELMAP';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFUSERTASKVIEW';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'CI_INDEXES';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'SYNC_TRAIL';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'INVOKE_MESSAGE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'VARIABLE_SENSOR_VALUES';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'BPELPM_ERRORS';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'CUBE_SCOPE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'XML_DOCUMENT';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'BPELNOTIFICATION';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'ID_RANGE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'DOMAIN_PROPERTIES';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PC_TASKHISTORY';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFNOTIFICATIONSTATUS';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFTASKMETADATA';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'VERSION';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'AUDIT_TRAIL';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PROCESS';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'TEST_DEFINITIONS';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'DOMAIN';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PC_TASKASSIGNEEHISTORY';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WORK_ITEM';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'DLV_MESSAGE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'DOCUMENT_DLV_MSG_REF';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PROCESS_DESCRIPTOR';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'PROCESS_LOG';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'SENSOR_SEQUENCE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFTASKHISTORY';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFASSIGNEE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFATTRIBUTELABELUSAGE';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'WFTASKDISPLAY';&lt;br /&gt;&lt;br /&gt;select sum(bytes) from dba_extents where segment_type = 'TABLE' and segment_name = 'AUDIT_DETAILS';&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-1047471088377876289?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/1047471088377876289/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=1047471088377876289' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/1047471088377876289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/1047471088377876289'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2009/07/tables-to-be-monitered-in-orabpel.html' title='Tables to be monitered in ORABPEL schema'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-7334476623741442666</id><published>2007-08-12T10:33:00.000-07:00</published><updated>2007-08-12T10:35:43.779-07:00</updated><title type='text'>How to limit the performance of the BPEL File Adapter</title><content type='html'>Applies to:&lt;br /&gt;Oracle(R) BPEL Process Manager - Version: 10.1.2 to 10.1.3&lt;br /&gt;Information in this document applies to any platform.&lt;br /&gt;Goal&lt;br /&gt;How can you limit the number of files a file adapter processes at a time?&lt;br /&gt;Can you process one file after another?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;&lt;br /&gt;For async processes, the number of BPEL worker threads will limit the number of concurrent&lt;br /&gt;instances.  For example, if there are 2000 files in a directory to be processed by the file / ftp adapter then&lt;br /&gt;no more than &lt;max-threads&gt; instances will be executing concurrently.&lt;br /&gt;&lt;br /&gt;As you can limit the number of threads available to all processes in a BPEL domain with the&lt;br /&gt;dspMaxThreads parameter, should you wish to therefore only process a low number of files at a time&lt;br /&gt;you can deploy that file adapter process to it's own domain and limit the number of threads within&lt;br /&gt;that domain. By using multiple domains, the sum of the dspMaxThreads settings for all domains&lt;br /&gt;must not exceed the MDB J2EE listener threads setting.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;These are further settings are discussed at length within the Performance Tuning chapter of the&lt;br /&gt;Guide below;&lt;br /&gt;&lt;br /&gt;Oracle® BPEL Process Manager&lt;br /&gt;Administrator’s Guide&lt;br /&gt;Release 10.1.2&lt;br /&gt;Part No. B25015-01&lt;br /&gt;Chapter 3, Performance Tuning&lt;br /&gt;http://www.oracle.com/technology/products/ias/bpel/documents/bpel_admin_10.1.3.1.0.pdf&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-7334476623741442666?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/7334476623741442666/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=7334476623741442666' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7334476623741442666'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7334476623741442666'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/how-to-limit-performance-of-bpel-file.html' title='How to limit the performance of the BPEL File Adapter'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-5815045572247384518</id><published>2007-08-12T10:00:00.000-07:00</published><updated>2007-08-12T10:33:10.866-07:00</updated><title type='text'>How to purge BPEL process instances manually?</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.2.0.2&lt;br /&gt;Information in this document applies to any platform.&lt;br /&gt;Goal&lt;br /&gt;How to purge BPEL process instances manually?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;Please follow the steps below to purge BPEL instances.&lt;br /&gt;&lt;br /&gt;1. Make a back up of your dehydration store.&lt;br /&gt;&lt;br /&gt;2. Create the script purge_instances.sql :&lt;br /&gt;&lt;br /&gt;    Create or Replace procedure&lt;br /&gt;    purge_instances( p_older_than in timestamp)&lt;br /&gt;    as&lt;br /&gt;    cursor c_cube_instance(p_date timestamp) is&lt;br /&gt;    select cikey&lt;br /&gt;    from cube_instance&lt;br /&gt;    where state &amp;gt;= 5 and modify_date &amp;lt; p_date;&lt;br /&gt;&lt;br /&gt;    cursor c_invoke_message(p_date timestamp) is&lt;br /&gt;    select message_guid&lt;br /&gt;    from invoke_message&lt;br /&gt;    where state &amp;gt; 1 and receive_date &amp;lt; p_date;&lt;br /&gt;&lt;br /&gt;    cursor c_dlv_message(p_date timestamp) is&lt;br /&gt;    select message_guid&lt;br /&gt;    from dlv_message&lt;br /&gt;    where state &amp;gt; 1 and receive_date &amp;lt; p_date;&lt;br /&gt;    begin&lt;br /&gt;    -- Delete all closed instances older than specified date&lt;br /&gt;    --&lt;br /&gt;    for r_cube_instance in c_cube_instance(p_older_than)&lt;br /&gt;    loop&lt;br /&gt;    collaxa.delete_ci( r_cube_instance.cikey );&lt;br /&gt;    end loop;&lt;br /&gt;&lt;br /&gt;    -- Purge all handled invoke_messages older than specified date&lt;br /&gt;    --&lt;br /&gt;    for r_invoke_message in c_invoke_message(p_older_than)&lt;br /&gt;    loop&lt;br /&gt;    delete from invoke_message_bin&lt;br /&gt;    where message_guid = r_invoke_message.message_guid;&lt;br /&gt;&lt;br /&gt;    delete from invoke_message&lt;br /&gt;    where message_guid = r_invoke_message.message_guid;&lt;br /&gt;    end loop;&lt;br /&gt;&lt;br /&gt;    -- Purge all handled callback messages older than specified date&lt;br /&gt;    --&lt;br /&gt;    for r_dlv_message in c_dlv_message(p_older_than)&lt;br /&gt;    loop&lt;br /&gt;    delete from dlv_message_bin&lt;br /&gt;    where message_guid = r_dlv_message.message_guid;&lt;br /&gt;&lt;br /&gt;    delete from dlv_message&lt;br /&gt;    where message_guid = r_dlv_message.message_guid;&lt;br /&gt;    end loop;&lt;br /&gt;&lt;br /&gt;    end purge_instances;&lt;br /&gt;    /&lt;br /&gt;&lt;br /&gt;3. Connect to SQLPlus as user orabpel and run the script.&lt;br /&gt;    For Example:&lt;br /&gt;    Declare&lt;br /&gt;    P_OLDER_THAN Timestamp;&lt;br /&gt;    Begin&lt;br /&gt;    P_OLDER_THAN := '05/SEP/06 09:05:00 PM';&lt;br /&gt;&lt;br /&gt;    PURGE_INSTANCES(P_OLDER_THAN =&gt; P_OLDER_THAN);&lt;br /&gt;    End;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-5815045572247384518?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/5815045572247384518/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=5815045572247384518' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/5815045572247384518'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/5815045572247384518'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/how-to-purge-bpel-process-instances.html' title='How to purge BPEL process instances manually?'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-2735101932313908356</id><published>2007-08-12T09:45:00.000-07:00</published><updated>2007-08-12T09:53:44.753-07:00</updated><title type='text'>Process Instances Do Not Appear In The BPEL Console - Timeout Errors</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.2 to 10.1.3&lt;br /&gt;This problem can occur on any platform.&lt;br /&gt;&lt;br /&gt;Symptoms&lt;br /&gt;New BPEL process instances are not visible in the BPELConsole.&lt;br /&gt;However, Instance activity can be seen in the domain.log.&lt;br /&gt;Additionally you may see transaction timeout errors in the Domain.log&lt;br /&gt;&lt;br /&gt;Cause&lt;br /&gt;At the application server J2EE layer, the JTA transaction timeout is less than the time it takes to perform an activity.&lt;br /&gt;The recommended JTA transaction timeout value should be increased to the total time of the sync activity or exec activity, then add 2-3 minutes.&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;To implement the solution, please execute the following steps:&lt;br /&gt;&lt;br /&gt;1. Within the J2EE application container level, increase the JTA transaction timeout value to the&lt;br /&gt;expected total time of a sync activity or exec activity, then add 2-3 minutes.&lt;br /&gt;2. Restart the container and retest.&lt;br /&gt;&lt;br /&gt;If using OAS, this is configured via the iasconsole &amp;gt; midtier:instance &amp;gt; OC4J:instance &amp;gt; config &amp;gt; server.xml &amp;gt; transaction-config timeout parameter that by default is set to 30000. &lt;br /&gt;&lt;br /&gt;Info on this parameter:&lt;br /&gt;Oracle® Application Server Containers for J2EE, User’s Guide, 10g Release 2 (10.1.2)&lt;br /&gt;Part No. B14011-01&lt;br /&gt;Page 116/144&lt;br /&gt;http://download-west.oracle.com/docs/cd/B14099_09/web.1012/b14011.pdf&lt;br /&gt;&lt;br /&gt;&amp;lt;transaction-config&amp;gt;&lt;br /&gt;Transaction configuration for the server.&lt;br /&gt;Attribute:&lt;br /&gt;¦ timeout="30000" — Specifies the maximum amount of time (in milliseconds) that a transaction can take to finish before it is rolled back due to a timeout. The default value is 30000. This timeout will be a default timeout for all transactions&lt;br /&gt;that are started in OC4J. You can change it by using the dynamic API—UserTransaction.setTransactionTimeout(milliseconds).&lt;br /&gt;&lt;br /&gt;In OAS / OC4J / SOA Suite 10.1.3 this parameter is no longer supported.  Instead this is defined through the Application Server Control url, and then: oc4j_soa instance &amp;gt; administration &amp;gt; under SERVICES / Transaction Manager (JTA) &amp;gt; administration &amp;gt; under GENERAL, modify 'Transaction Timeout'. Apply and restart the container.  For more details see: Oracle® Containers for J2EE Services Guide, 10g (10.1.3.1.0), Part Number B28958-01 -  http://download-west.oracle.com/docs/cd/B31017_01/web.1013/b28958/jta.htm&lt;br /&gt;&lt;br /&gt;Additionally, Appendix A1.1 of the BPEL Developer Guide goes into detail for each of the timeout settings, at http://download-west.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/app_trblshoot.htm#sthref3957&lt;br /&gt;&lt;br /&gt;NOTES: The 'syncMaxWaitTime' parameter in the Manage / BPEL Domain link of the BPELConsole can also be modified to alter the maximum time the process result receiver will wait for a result before returning. Results from asynchronous BPEL processes are retrieved synchronously via a receiver that will wait for a result from the container.  This can useful when debugging transaction timeout errors that can sometimes accompany the main subject of this Note.&lt;br /&gt;&lt;br /&gt;Additionallty: The level of logging can be modified to improve performance of a system via the 'Manage BPEL Domain' link within the BPEL console.  From there you can alter the audit level based on your desired preferences;&lt;br /&gt;&lt;br /&gt;auditLevel: Audit trail logging level Controls the amount of audit events logged by a process; currently supported logging levels are:&lt;br /&gt;&lt;br /&gt;* off - absolutely no logging performed whatsoever; may result in a slight performance boost for processing instances.&lt;br /&gt;* minimal - all events are logged; however, no audit details are logged.&lt;br /&gt;* production - all events are logged. The audit details for assign activities are not logged; the details for all other nodes are logged.&lt;br /&gt;* development - all events are logged; all audit details for all activities are logged.&lt;br /&gt;&lt;br /&gt;The default value is "development".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-2735101932313908356?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/2735101932313908356/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=2735101932313908356' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2735101932313908356'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2735101932313908356'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/process-instances-do-not-appear-in-bpel.html' title='Process Instances Do Not Appear In The BPEL Console - Timeout Errors'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-2885234095165202650</id><published>2007-08-12T09:42:00.000-07:00</published><updated>2007-08-12T09:45:07.190-07:00</updated><title type='text'>Database Adapter and Bpel Process Manager run out of Database Connections</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.2.0.2&lt;br /&gt;&lt;br /&gt;Symptoms&lt;br /&gt;The problem manifests itself by the database adapter and BPEL running out of database connections. New connections cannot be established.&lt;br /&gt;&lt;br /&gt;The following error might occur as a side effect: &lt;br /&gt;&lt;br /&gt;Database Adapter::Inbound oracle.tip.adapter.db.InboundWork runOnce Exception during &lt;br /&gt;polling of the database ORABPEL-11624 DBActivationSpec Polling Exception. &lt;br /&gt;Query name: [ClarifyPollingProdService], Descriptor name: &lt;br /&gt;[ServiceRequestAutomation.TableCase].&lt;br /&gt;Polling the database for events failed on this iteration. &lt;br /&gt;If the cause is something like a database being down successful polling will resume once conditions change. &lt;br /&gt;Caused by Exception [TOPLINK-4002]&lt;br /&gt;&lt;br /&gt;(OracleAS TopLink - 10g (9.0.4.5) (Build 040930)): &lt;br /&gt;oracle.toplink.exceptions.DatabaseException &lt;br /&gt;Exception Description:&lt;br /&gt;java.sql.SQLException: Io exception: Connection timed out &lt;br /&gt;Internal Exception: java.sql.SQLException: Io exception: Connection timed out &lt;br /&gt;Error Code: 17002.&lt;br /&gt;&lt;br /&gt;Cause&lt;br /&gt;&lt;br /&gt;Both OC4J running BPEL and the database adapter reached the maximum number of connections and were unable to establish new ones.&lt;br /&gt;&lt;br /&gt;The reason for the problem is a database adapter Bug 5595347.&lt;br /&gt;&lt;br /&gt;According to Bug 5595347, the database adapter might leave open connections behind.&lt;br /&gt;The fix for Bug 5595347 is included in Patch 5638122.&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;To implement the solution, please execute the following steps:&lt;br /&gt;&lt;br /&gt;Apply Patch 5638122.&lt;br /&gt;&lt;br /&gt;References&lt;br /&gt;Bug 5595347 - ORIONCMTCONNECTION NOT CLOSED IN ORABPEL~OC4J_BPEL~DEFAULT_ISLAND~1&lt;br /&gt;Note 314422.1 - Remote Diagnostic Agent (RDA) 4 - Getting Started&lt;br /&gt;Patch 5638122 - MERGE LABEL REQUEST ON TOP OF 10.1.2.0.2 FOR BUGS 5149866 5595347 5205630&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-2885234095165202650?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/2885234095165202650/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=2885234095165202650' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2885234095165202650'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2885234095165202650'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/database-adapter-and-bpel-process.html' title='Database Adapter and Bpel Process Manager run out of Database Connections'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-1250214206144176905</id><published>2007-08-12T09:36:00.000-07:00</published><updated>2007-08-12T09:39:33.210-07:00</updated><title type='text'>How To Read From A File in Mid-Process</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.2&lt;br /&gt;&lt;br /&gt;Goal&lt;br /&gt;How to read from a file in the middle of a process?&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;The proper way to read from a file in the middle of a BPEL process is to use the built-in XPath function, ora:readfile. Avoid using the file adapter to read a file. The file adapter (Read) is not designed for reading a file in the middle of a process. It is used to trigger the BPEL process in most cases. So in this scenario, the file adapter is not a good choice. Also it needs to use correlation sets to read files in the middle of a process.&lt;br /&gt;    &lt;br /&gt;Embedded Java code can solve the problem, but it is hard to maintain, and also not recommended.&lt;br /&gt;  &lt;br /&gt;How to use the ora:readfile function: &lt;br /&gt;&lt;br /&gt;1. Drag an Assign activity and place it in the correct position in the BPEL process&lt;br /&gt;2. Create a new Assign rule using the ora:readfile("file path", "xml schema path") XPath function&lt;br /&gt;3. Assign the result to a variable.&lt;br /&gt;    &lt;br /&gt;A Code Example:&lt;br /&gt;&lt;br /&gt;&amp;lt;assign name="Assign_1"&amp;gt;&lt;br /&gt;&amp;lt;copy&amp;gt;&lt;br /&gt;&amp;lt;from expression="ora:readFile("file:///D:\\tmp\\PO.xml",&lt;br /&gt;    "file:///D:\\tmp\\OrderBookingPO.xsd")"/&amp;gt;&lt;br /&gt;&amp;lt;to variable="var1" query="/ns1:PurchaseOrder"/&amp;gt;&lt;br /&gt;&amp;lt;/copy&gt;&amp;lt;/assign&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-1250214206144176905?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/1250214206144176905/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=1250214206144176905' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/1250214206144176905'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/1250214206144176905'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/how-to-read-from-file-in-mid-process.html' title='How To Read From A File in Mid-Process'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-5000069822901101826</id><published>2007-08-12T09:31:00.000-07:00</published><updated>2007-08-12T09:34:46.250-07:00</updated><title type='text'>Switching The Process Status From Retired To Active Doesn't Properly Start A Process</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.3.1&lt;br /&gt;This problem can occur on any platform.&lt;br /&gt;&lt;br /&gt;Symptoms&lt;br /&gt;A BPEL process containing an AQ adapter which dequeues from a queue is deployed and its process lifecycle status is turned to "Retired". Later, the process lifecycle status is turned to "Active" so that dequeue of messages takes place. No instances of the BPEL process get initiated and messages remain in AQ Queue.&lt;br /&gt;&lt;br /&gt;When the same BPEL process is deployed with process state as 'Off', keeping process lifecycle status 'Active' and later turning process state to 'On' the BPEL process is instantiated.&lt;br /&gt;&lt;br /&gt;Cause&lt;br /&gt;Bug 5879997 - ACTIVATION AGENT DOES NOT GET ACTIVATED BY MODIFYING THE PROCESS LIFECYCLE&lt;br /&gt;Bug 5567281 - WHEN PROCESS IS RETIRED, CANT CONTINUE DUE TO EP DEACTIVATION&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;Apply  Patch 6028270 which includes the fix for the above two bugs&lt;br /&gt;&lt;br /&gt;References&lt;br /&gt;Bug 5879997 - ACTIVATION AGENT DOES NOT GET ACTIVATED BY MODYFING THE PROCESS LIFECYCLE&lt;br /&gt;Patch 6028270 - MERGE LABEL REQUEST ON TOP OF 10.1.3.1 FOR BUGS 5956917 5964097 5990976 5987760&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-5000069822901101826?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/5000069822901101826/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=5000069822901101826' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/5000069822901101826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/5000069822901101826'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/switching-process-status-from-retired.html' title='Switching The Process Status From Retired To Active Doesn&apos;t Properly Start A Process'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-8968116528273867184</id><published>2007-08-12T05:58:00.000-07:00</published><updated>2007-08-12T09:31:31.722-07:00</updated><title type='text'>BPEL Server hangs due to "java.lang.OutOfMemoryError"</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.2.0.2&lt;br /&gt;Linux x86&lt;br /&gt;Symptoms&lt;br /&gt;The BPEL server  hangs and a java.lang.OutOfMemoryError is displayed in the domain.log file.&lt;br /&gt;&lt;br /&gt;You will see the following stack trace in the domain.log&lt;br /&gt;&lt;br /&gt;&amp;lt;ERROR&amp;gt; &amp;lt;default.collaxa.cube.engine.dispatch&amp;gt;&lt;br /&gt;&amp;lt;DispatchHelper::handleMessage&amp;gt; failed to handle message&lt;br /&gt;javax.ejb.EJBException: Transaction was rolled back: java.lang.OutOfMemoryError; nested&lt;br /&gt;exception&lt;br /&gt;is: java.rmi.RemoteException: ; nested exception is:&lt;br /&gt;java.lang.OutOfMemoryError&lt;br /&gt;java.rmi.RemoteException: ; nested exception is:&lt;br /&gt;java.lang.OutOfMemoryError&lt;br /&gt;at com.evermind.server.ejb.EJBUtils.makeException(EJBUtils.java:886)&lt;br /&gt;at&lt;br /&gt;&lt;br /&gt;ICubeDeliveryLocalBean_StatelessSessionBeanWrapper16.handleInvoke(ICubeDeliveryLocalBean_StatelessSe&lt;br /&gt;ssionBeanWrapper16.java:1846)&lt;br /&gt;at&lt;br /&gt;&lt;br /&gt;com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(InvokeInstanceMe&lt;br /&gt;ssageHandler.java:37)&lt;br /&gt;...&lt;br /&gt;.....&lt;br /&gt;Message handle error.&lt;br /&gt;An exception occurred while attempting to process the message&lt;br /&gt;"com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the exception is:&lt;br /&gt;Transaction was rolled back: java.lang.OutOfMemoryError; nested exception is:&lt;br /&gt;java.rmi.RemoteException: ; nested exception is:&lt;br /&gt;java.lang.OutOfMemoryError&lt;br /&gt;&lt;br /&gt;ORABPEL-05002&lt;br /&gt;&lt;br /&gt;Message handle error.&lt;br /&gt;An exception occurred while attempting to process the message&lt;br /&gt;"com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the exception is:&lt;br /&gt;Transaction was rolled back: java.lang.OutOfMemoryError; nested exception is:&lt;br /&gt;java.rmi.RemoteException: ; nested exception is:&lt;br /&gt;java.lang.OutOfMemoryError&lt;br /&gt;Cause&lt;br /&gt;The BPEL OC4J container uses 512 MB of memory by default  512MB, which is not enough if you are running BPEL in a high load environment.&lt;br /&gt;&lt;br /&gt;You need to increase the JVM settings. Here is are some recommendations for a Linux Box with 4GB of memory and 2 CPUs. (If you are using a different platform from Linux, these parameters may not apply.)&lt;br /&gt;&lt;br /&gt;-Xmn1228m -XX:+AggressiveHeap -Xms2048m -Xmx2048m&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-Xmn1228m&lt;br /&gt;Garbage collector (Oracle recommends sizing the Eden space to be 60 to 70 percent of the total&lt;br /&gt;heap size.)&lt;br /&gt;&lt;br /&gt;-XX:+AggressiveHeap&lt;br /&gt;Recommended if you are using two or more CPUs.&lt;br /&gt;The -XX:+AggressiveHeap option inspects the system resources (size of memory and number of processors) and attempts to set variousparameters to be optimal for long-running, memory allocation-intensive jobs.&lt;br /&gt;&lt;br /&gt;-Xms2048m&lt;br /&gt;Iniatial heapsize. The heap size controls the amount of memory the JVM uses&lt;br /&gt;&lt;br /&gt;-Xmx2048m&lt;br /&gt;Maximum heapsize&lt;br /&gt;&lt;br /&gt;It is also neccesary to apply some patches related to the memory usage in BPEL:&lt;br /&gt;&lt;br /&gt;5638122 --&amp;gt;MERGE LABEL REQUEST ON TOP OF 10.1.2.0.2 BUGS 5149866 5595347 5205630&lt;br /&gt;5499891 --&amp;gt;CHANGES MADE FOR BETTER MEMORY USE TO AVOID OUTOFMEMORY&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;To implement the solution, please execute the following steps:&lt;br /&gt;&lt;br /&gt;1. Shut down your application server&lt;br /&gt;2. Backup the &amp;lt;integration_home&amp;gt;\opmn\conf\opmn.xml&lt;br /&gt;3. Increase the BPEL JVM settings. Edit the file &amp;lt;integration_home&amp;gt;\opmn\conf\opmn.xml :&lt;br /&gt;&lt;br /&gt;3.1 Look for the OC4J_BPEL process type section&lt;br /&gt;&lt;br /&gt;Your original opmn.xml should look like the example below (just the OC4J_BPEL section)&lt;br /&gt;&lt;br /&gt;&amp;lt;process-type id="OC4J_BPEL" module-id="OC4J"&amp;gt;&lt;br /&gt;&amp;lt;module-data&amp;gt;&lt;br /&gt;&amp;lt;category id="start-parameters"&amp;gt;&lt;br /&gt;&amp;lt;data id="java-options" value="-server-Xrs-Djava.security.policy=D:\Oracle\OAS\portal\MT\j2ee\OC4J_BPEL\config\java2.policy-Djava.awt.headless=true&lt;br /&gt;-Xbootclasspath^/p:D:\Oracle\OAS\portal\MT\integration\orabpel/lib/orabpel-boot.jar;D:\Oracle\OAS\portal\MT\integration\orabpel/lib/connector15.jar &lt;br /&gt;-Doc4j.userThreads=true &lt;br /&gt;-Dorabpel.home=D:\Oracle\OAS\portal\MT\integration\orabpel&lt;br /&gt;-Dhttp.proxySet=true&lt;br /&gt;-Dhttp.proxyHost=www-proxy.us.oracle.com -Dhttp.proxyPort=80&lt;br /&gt;-Dhttp.nonProxyHosts=aalvarad-pc.us.oracle.com|localhost|*.us.oracle.com|aalvarad-pc&lt;br /&gt;-Djava.net.preferIPv4Stack=true -server -Xms256M -Xmx512M -Doracle.mdb.fastUndeploy=60 "/&amp;gt;&lt;br /&gt;&amp;lt;data id="oc4j-options" value="-properties"/&amp;gt;&lt;br /&gt;&amp;lt;/category&amp;gt;&lt;br /&gt;&amp;lt;category id="stop-parameters"&amp;gt;&lt;br /&gt;&amp;lt;data id="java-options" value="-Djava.security.policy=D:\Oracle\OAS\portal\MT\j2ee\OC4J_BPEL\config\java2.policy-Djava.awt.headless=true"/&amp;gt;&lt;br /&gt;&amp;lt;data id="oc4j-options" value="force "/&amp;gt;&lt;br /&gt;&amp;lt;/category&amp;gt;&lt;br /&gt;&amp;lt;/module-data&amp;gt;&lt;br /&gt;&amp;lt;start timeout="900" retry="2"/&amp;gt;&lt;br /&gt;&amp;lt;stop timeout="120"/&amp;gt;&lt;br /&gt;&amp;lt;restart timeout="720" retry="2"/&amp;gt;&lt;br /&gt;&amp;lt;port id="ajp" range="12501-12600"/&amp;gt;&lt;br /&gt;&amp;lt;port id="rmi" range="12401-12500"/&amp;gt;&lt;br /&gt;&amp;lt;port id="jms" range="12601-12700"/&amp;gt;&lt;br /&gt;&amp;lt;process-set id="default_island" numprocs="1"/&amp;gt;&lt;br /&gt;&amp;lt;/process-type&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Look for the entry&lt;br /&gt;-server -Xms256M -Xmx512M&lt;br /&gt;and replace it with&lt;br /&gt;-server -Xmn1228m -XX:+AggressiveHeap -Xms2048m -Xmx2048m&lt;br /&gt;&lt;br /&gt;3.2. After the modifications, your opmn.xml file should look like this&lt;br /&gt;&lt;br /&gt;New opmn.xml file (just the OC4J_BPEL section):&lt;br /&gt;&lt;br /&gt;     &amp;lt;process-type id="OC4J_BPEL" module-id="OC4J"&amp;gt;&lt;br /&gt;        &amp;lt;module-data&amp;gt;&lt;br /&gt;&lt;br /&gt;         &amp;lt;category id="start-parameters"&amp;gt;&lt;br /&gt;            &amp;lt;data id="java-options" value="-server&lt;br /&gt;-Xrs -Ddatasource.verbose=true&lt;br /&gt;                   -Djava.security.policy=D:\Oracle\OAS\portal\MT\j2ee\OC4J_BPEL\config\java2.policy&lt;br /&gt;&lt;br /&gt;                  -Djava.awt.headless=true&lt;br /&gt;                   -Xbootclasspath^/p:D:\Oracle\OAS\portal\MT\integration\orabpel/lib/orabpel-boot.jar;D:\Oracle\OAS\po&lt;br /&gt;&lt;br /&gt;                   rtal\MT\integration\orabpel/lib/connector15.jar -Doc4j.userThreads=true&lt;br /&gt;                   -Dorabpel.home=D:\Oracle\OAS\portal\MT\integration\orabpel&lt;br /&gt;-Dhttp.proxySet=true&lt;br /&gt;                   -Dhttp.proxyHost=www-proxy.us.oracle.com -Dhttp.proxyPort=80&lt;br /&gt;                   -Dhttp.nonProxyHosts=aalvarad-pc.us.oracle.com|localhost|*.us.oracle.com|aalvarad-pc&lt;br /&gt;&lt;br /&gt;                  -Djava.net.preferIPv4Stack=true -server -Xmn1228m -XX:+AggressiveHeap -Xms2048m -Xmx2048m&lt;br /&gt;                &lt;br /&gt;  -Doracle.mdb.fastUndeploy=60 "/&amp;gt;&lt;br /&gt;            &amp;lt;data id="oc4j-options" value="-properties"/&amp;gt;&lt;br /&gt;&lt;br /&gt;         &amp;lt;/category&amp;gt;&lt;br /&gt;          &amp;lt;category id="stop-parameters"&amp;gt;&lt;br /&gt;            &amp;lt;data id="java-options"&lt;br /&gt;&lt;br /&gt;                   value="-Djava.security.policy=D:\Oracle\OAS\portal\MT\j2ee\OC4J_BPEL\config\java2.policy&lt;br /&gt;           &lt;br /&gt;        -Djava.awt.headless=true"/&amp;gt;&lt;br /&gt;            &amp;lt;data id="oc4j-options" value="force "/&amp;gt;&lt;br /&gt;&lt;br /&gt;         &amp;lt;/category&amp;gt;&lt;br /&gt;        &amp;lt;/module-data&amp;gt;&lt;br /&gt;        &amp;lt;start timeout="900" retry="2"/&amp;gt;&lt;br /&gt;&lt;br /&gt;       &amp;lt;stop timeout="120"/&amp;gt;&lt;br /&gt;        &amp;lt;restart timeout="720" retry="2"/&amp;gt;&lt;br /&gt;       &lt;br /&gt;&amp;lt;port id="ajp" range="12501-12600"/&amp;gt;&lt;br /&gt;        &amp;lt;port id="rmi" range="12401-12500"/&amp;gt;&lt;br /&gt;&lt;br /&gt;       &amp;lt;port id="jms" range="12601-12700"/&amp;gt;&lt;br /&gt;        &amp;lt;process-set id="default_island" numprocs="1"/&amp;gt;&lt;br /&gt;    &amp;lt;/process-type&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Apply the following patches:&lt;br /&gt;&lt;br /&gt;Bug 5638122 MERGE LABEL REQUEST ON TOP OF 10.1.2.0.2 BUGS 5149866 5595347 5205630&lt;br /&gt;Bug 5499891 CHANGES MADE FOR BETTER MEMORY USE TO AVOID OUTOFMEMORY&lt;br /&gt;&lt;br /&gt;4) Restart your application server.&lt;br /&gt;&lt;br /&gt;References&lt;br /&gt;Patch 5499891 - CHANGES MADE FOR BETTER MEMORY USE TO AVOID OUTOFMEMORY&lt;br /&gt;Patch 5638122 - MERGE LABEL REQUEST ON TOP OF 10.1.2.0.2 FOR BUGS 5149866 5595347 5205630&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-8968116528273867184?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/8968116528273867184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=8968116528273867184' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/8968116528273867184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/8968116528273867184'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-server-hangs-due-to.html' title='BPEL Server hangs due to &quot;java.lang.OutOfMemoryError&quot;'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-4596381841549512018</id><published>2007-08-12T05:49:00.000-07:00</published><updated>2007-08-12T05:50:37.722-07:00</updated><title type='text'>One Possible Cause For Orabpel-11017</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.3.1&lt;br /&gt;&lt;br /&gt;Symptoms&lt;br /&gt;Use of file adapter that references transformation that uses a schema that includes a xsd:date type.&lt;br /&gt;&lt;br /&gt;recieving the following error at runtime:&lt;br /&gt;&lt;br /&gt;ORABPEL-11017&lt;br /&gt;Translation Error.&lt;br /&gt;Error while translating message to native format.&lt;br /&gt;Cause&lt;br /&gt;Incorrect xml default date format is causing the problem.&lt;br /&gt;&lt;br /&gt;The write processThe xsd:date element is expecting&lt;br /&gt;the value for the date type ojbect to be represented in the default&lt;br /&gt;schema date representation format (a text representation like "2000-03-21" or&lt;br /&gt;format "YYYY-MM-DD").&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;Change the format date values as follows:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;From "MM-DD-YYYY" to "YYYY-MM-DD"&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;&lt;br /&gt;From sampleoutput.txt:&lt;br /&gt;&lt;br /&gt;RH, 1647, 11-07-2006, Test6 Desc DAVE, Test6 Blah DAVE&lt;br /&gt;RL, 1647, 1234, Line Desc, Line Blah, 10, 123.34, 1324.32&lt;br /&gt;RH, 1648, 11-07-2006, Test Desc2, Test Blah &lt;br /&gt;RL, 1648, 1235, Line Desc2, Line Blah , 11, 123.35, 1324.33&lt;br /&gt;&lt;br /&gt;to: (From sampleoutput.txt)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;RH, 1647,2006-03-21, Test6 Desc DAVE, Test6 Blah DAVE&lt;br /&gt;RL, 1647, 1234, Line Desc, Line Blah, 10, 123.34, 1324.32&lt;br /&gt;RH, 1648,2006-03-21, Test Desc2, Test Blah&lt;br /&gt;RL, 1648, 1235, Line Desc2, Line Blah, 11, 123.35, 1324.33&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here are some options:&lt;br /&gt;&lt;br /&gt;1) Change the format of the date values in the source or&lt;br /&gt;db select statement, if applicable.&lt;br /&gt;&lt;br /&gt;2) Read/write the values as string types and do any date transformations/arithmetic via other extraneous variables.&lt;br /&gt;&lt;br /&gt;3) Research xml schema/transformation functions that could be integrated to&lt;br /&gt;do the string-&gt;date conversion for you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-4596381841549512018?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/4596381841549512018/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=4596381841549512018' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4596381841549512018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4596381841549512018'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/one-possible-cause-for-orabpel-11017.html' title='One Possible Cause For Orabpel-11017'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-8541056365340013544</id><published>2007-08-12T05:46:00.000-07:00</published><updated>2007-08-12T05:49:00.078-07:00</updated><title type='text'>Database Adapter does not recognize Timestamp column</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.2.0.2&lt;br /&gt;&lt;br /&gt;Symptoms&lt;br /&gt;BPEL database wizard shows an error at the Select Table view:&lt;br /&gt;&lt;br /&gt;Some tables contain columns that are not recognized by the Database Adapter,&lt;br /&gt;so they will be captured as Strings: &lt;br /&gt;&lt;br /&gt;My_timestamp (TIMESTAMP(9))&lt;br /&gt;&lt;br /&gt;To fix this problem, cancel this wizard, edit the Offline Table definition to&lt;br /&gt;change the type of the above columns to that of the closest supported type, and&lt;br /&gt;run the Database Adapter wizard again. Please consult the Database Adapter&lt;br /&gt;documentation for detailed instructions on how to fix this problem.&lt;br /&gt;&lt;br /&gt;Cause&lt;br /&gt;Database adapter does not recognize column of Timestamp type&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;In the toplink_mappings.xml manually change attribute-classification&lt;br /&gt;&lt;br /&gt;from 'java.lang.String'&lt;br /&gt;&lt;br /&gt;to 'java.sql.Timestamp'&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-8541056365340013544?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/8541056365340013544/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=8541056365340013544' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/8541056365340013544'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/8541056365340013544'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/database-adapter-does-not-recognize.html' title='Database Adapter does not recognize Timestamp column'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-6311895684567077058</id><published>2007-08-12T05:45:00.000-07:00</published><updated>2007-08-12T05:46:02.068-07:00</updated><title type='text'>Description of Logger Name Parameters in the BPEL Console</title><content type='html'>&lt;h2 class="awiz"&gt;Description of Logger Name Parameters in the BPEL Console&lt;/h2&gt; &lt;table style="width: 100%;" border="1" cellpadding="1" cellspacing="1"&gt;     &lt;tbody&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;&lt;strong&gt;&lt;u&gt;Parameter&lt;/u&gt;&lt;/strong&gt;&lt;/td&gt;         &lt;td style="width: 50%;"&gt;&lt;strong&gt;&lt;u&gt;Description&lt;/u&gt;&lt;/strong&gt;&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;general logger for BPEL platform&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.activation&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;activation agents (i.e. inbound adapters)&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.bpeltest&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;BPEL unit testing&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.compiler&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;BPEL compiler responsible for the server-side compilation of BPEL processes on deployment&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.console.reports&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;-&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.engine&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;general logger for the BPEL engine, mainly for functionality that is cross-module&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.engine.agents&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;internal agent framework, e.g. expiration agents&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.engine.archive&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;           &lt;p&gt;archiving in pre-10.1.3 versions&lt;br /&gt;(Archiving is not supported in 10.1.3)&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.engine.bpel&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;logging for BPEL processes. If enabled, each executed BPEL activity will log messages&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.engine.data&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;persistence/dehydration layer&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.engine.delivery&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;invocation/callback handling layer&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.engine.deployment&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;deployment of BPEL suitcases&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.engine.dispatch&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;asynchronous message processing&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.engine.transaction&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;not used in 10.1.3&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.messaging&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;mail processing activities&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.security&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;message header authentication layer&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.sensor&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;sensor publishing layer&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.services&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;workflow service component&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.translation&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;adapter translation layer. The transformation between adapter protocol and inbound XML documents&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.ws&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;web-service layer, inbound and outbound&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.collaxa.cube.xml&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;XML processing, XPath and XML documents (BPEL&lt;br /&gt;variables)&lt;/td&gt;       &lt;/tr&gt;       &lt;tr&gt;         &lt;td style="width: 50%;"&gt;           &lt;pre&gt;default.oracle.bpel.security&lt;/pre&gt;         &lt;/td&gt;         &lt;td style="width: 50%;"&gt;-&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-6311895684567077058?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/6311895684567077058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=6311895684567077058' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6311895684567077058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6311895684567077058'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/description-of-logger-name-parameters.html' title='Description of Logger Name Parameters in the BPEL Console'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-7396672397949333578</id><published>2007-08-12T05:42:00.000-07:00</published><updated>2007-08-12T05:43:13.614-07:00</updated><title type='text'>FILES TO UPLOAD FOR ISSUES RELATED TO BPEL PROCESS DEPLOYMENT</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.2.0.0 to 10.13.1&lt;br /&gt;&lt;br /&gt;Goal&lt;br /&gt;This document guides the customer in uploading all the files and information required to troubleshoot an issue related to BPEL Process Deployment.&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;   1.  Turn the log level to debug from BPEL console by referring Note 373930.1&lt;br /&gt;   2.  Stop the server &amp; clear the directory:&lt;br /&gt;   3.  BPEL versions 10.1.2.0.2  or 10.1.2.0.0&lt;br /&gt;          *   ORACLE_HOME/integration/orabpel/domains/&lt;DOMAIN_NAME&gt;/logs&lt;br /&gt;   4.   BPEL version is 10.1.3.x :&lt;br /&gt;          *   ORACLE_HOME/bpel/domains/&lt;DOMAIN_NAME&gt;/logs&lt;br /&gt;   5.  Restart the server &amp; reproduce the issue.&lt;br /&gt;   6.  Please run RDA with option (on the instance where the BPEL is running)&lt;br /&gt;         1. Is Oracle Web Applications (OAS, WAS, iAS, AS) information requested? Yes&lt;br /&gt;         2. Is J2EE/OC4J in use? Yes &lt;br /&gt;   7. Upload the RDA outputs to the SR.&lt;br /&gt;   8. If Deploying manually using ANT, upload build.xml and build.properties&lt;br /&gt;   9. The BPEL Process(JDeveloper Project) which causes this issue.&lt;br /&gt;&lt;br /&gt;RDA NOTES&lt;br /&gt;Note 314422.1 - Remote Diagnostic Agent (RDA) 4 - Overview and User Guide&lt;br /&gt;Note 359395.1 - Remote Diagnostic Agent (RDA) 4 - RAC Cluster Guide&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-7396672397949333578?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/7396672397949333578/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=7396672397949333578' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7396672397949333578'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7396672397949333578'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/files-to-upload-for-issues-related-to.html' title='FILES TO UPLOAD FOR ISSUES RELATED TO BPEL PROCESS DEPLOYMENT'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-5717841120241943673</id><published>2007-08-12T05:38:00.000-07:00</published><updated>2007-08-12T05:40:58.404-07:00</updated><title type='text'>BPEL Application Spawns Numerous Database Connections Causing It To Crash</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.2.0.2&lt;br /&gt;&lt;br /&gt;Symptoms&lt;br /&gt;You are running Oracle BPEL application connected to Oracle Databases. There is a poller, which poll the DB for requests inserted by your request engine, these pollers then fire the relevant BPEL process for each request.&lt;br /&gt;&lt;br /&gt;During runtime, your application started spawning database connections within minutes, causing it to crash. There are no error messages written into any log file.&lt;br /&gt;&lt;br /&gt;Cause&lt;br /&gt;All the concurrent active sessions and the sessions being spawned are waiting on the same resource and throwing the same DB error : ORA-04021: Timeout Occurred While Waiting To Lock Object.&lt;br /&gt;&lt;br /&gt;This is a known BPEL PM bug&lt;br /&gt;&lt;br /&gt;Bug 5001394 - BYTE OFF MAKES BPEL HANG ON AUDIT_TRAIL, AUD TABLE LOCK &amp; CALLBACK MESG LOST&lt;br /&gt;.&lt;br /&gt;Bug 5001394 - BYTE OFF MAKES BPEL HANG ON AUDIT_TRAIL, AUD TABLE LOCK &amp; CALLBACK MESG LOST&lt;br /&gt;.&lt;br /&gt;Solution&lt;br /&gt;To implement the solution, please execute the following steps:&lt;br /&gt;&lt;br /&gt;Apply patch for Bug 5001394. Run the test again&lt;br /&gt;&lt;br /&gt;References&lt;br /&gt;Bug 5001394 - 1- BYTE OFF MAKES BPEL HANG ON AUDIT_TRAIL, AUD TABLE LOCK &amp; CALLBACK MESG LOST&lt;br /&gt;Errors&lt;br /&gt;ORA-4021 time-out occurred while waiting to lock object &lt;name&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-5717841120241943673?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/5717841120241943673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=5717841120241943673' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/5717841120241943673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/5717841120241943673'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-application-spawns-numerous.html' title='BPEL Application Spawns Numerous Database Connections Causing It To Crash'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-4426342231181306949</id><published>2007-08-12T05:36:00.000-07:00</published><updated>2007-08-12T05:38:46.147-07:00</updated><title type='text'>BPEL Process Version 1.0 Is Set As Default Prior To Latest Versions Deployed</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.3.1&lt;br /&gt;&lt;br /&gt;Symptoms&lt;br /&gt;You are deploying version 2.0 of a BPEL Process, and marking this version as default in the BPEL Console. When you call the application version 1.0 of the application is called by default despite your default setting. If you put the old version to Retired and Off to make sure it will not be called, then neither version 1.0 nor version 2.0 is called.&lt;br /&gt;&lt;br /&gt;Cause&lt;br /&gt;The latest loaded revision of a process was set as default instead of setting the default version, based on the information from the database&lt;br /&gt;&lt;br /&gt;Bug 5837566 SUB PROCESS VERSION ONE GETS FAULTED PRIOR TO VERSION TWO&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;&lt;br /&gt;To implement the solution, please execute the following steps:&lt;br /&gt;&lt;br /&gt;1. If no other patch is installed on the system, apply patch for Bug 5837566&lt;br /&gt;2. If there are any other patches applied either&lt;br /&gt;- Apply the fix for Bug 5837566 if it does not conflict with any other patches already applied&lt;br /&gt;OR&lt;br /&gt;- Apply 10.1.3.3 patch when it becomes available&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-4426342231181306949?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/4426342231181306949/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=4426342231181306949' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4426342231181306949'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4426342231181306949'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-process-version-10-is-set-as.html' title='BPEL Process Version 1.0 Is Set As Default Prior To Latest Versions Deployed'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-6120527638979344122</id><published>2007-08-12T05:32:00.000-07:00</published><updated>2007-08-12T05:35:19.900-07:00</updated><title type='text'>Why BPEL process instances may appear on the Manual Recovery List</title><content type='html'>Applies to:&lt;br /&gt;Oracle(R) BPEL Process Manager - Version: 10.1.2 to 10.1.3.1&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;Messages appearing on the Recovery Console happen for a number of reasons, namely;&lt;br /&gt;&lt;br /&gt;BPEL has a Delivery Service that intercepts the incoming messages. Once it intercepts an incoming message, the delivery service does two things: 1) Put a very short JMS message to the in-memory queue . The small JMS message will trigger work further downstream of the process. 2) Save the BPEL message to tables at the dehydration store.&lt;br /&gt;&lt;br /&gt;In the same thread the BPEL engine instantiate or continue the BPEL instance. By the time the engine finishes processing this message (i.e. hits the end of the process, or hits the first dehydration point) the engine will update the message tables to mark the message as "HANDLED".&lt;br /&gt;&lt;br /&gt;The Recovery page shows those invoke or callback messages that are NOT in the HANDLED state. If you click fast enough, you will see messages come and go on the Recovery page. So seeing messages at the Recovery page does not necessarily mean there are problems, unless ...&lt;br /&gt;&lt;br /&gt;Unless they stay there permanently. They stay there permanently because there are no more JMS messages to trigger the WorkerBean to process those un-handled BPEL messages in invoke_message or dlv_message tables. Derived from this, these are the scenarios that could cause the BPEL messages stay at UNRESOLVED states:&lt;br /&gt;&lt;br /&gt;* The server shuts down or crash before it finish processing the BPEL message. When the server re-started again, the in-memory JMS message associated with the invoke or call back message is already is already gone.&lt;br /&gt;* The engine could not finish processing the message before reaching the time-out as dictated by the transaction-time out specified in the server.xml. In such case it rolls back the message to the message table. But the JMS message associated with the invoke messages are already consumed.&lt;br /&gt;&lt;br /&gt;In these cases, no more events (i.e. JMS messages) to trigger the engine to process the BPEL messages in invoke_message or dlv_message tables. Therefore a manual recovery is performed.&lt;br /&gt;&lt;br /&gt;References&lt;br /&gt;Bug 4859293 - REQUEST AN AUTOMATED RECOVERY ACTIVITY INTO BPEL CODE FOR FAILED PROCESSES&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-6120527638979344122?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/6120527638979344122/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=6120527638979344122' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6120527638979344122'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6120527638979344122'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/why-bpel-process-instances-may-appear.html' title='Why BPEL process instances may appear on the Manual Recovery List'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-4781068557105600559</id><published>2007-08-12T05:31:00.000-07:00</published><updated>2007-08-12T05:32:15.395-07:00</updated><title type='text'>BPEL Workflow:Notification does not send message in e-mail body, instead sends as attachments</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.3.1.0&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Symptoms&lt;/span&gt;&lt;br /&gt;when configuring the Notification Settings in an Oracle BPEL Workflow to notify participants by email, the message content appears in the email attachment leaving the email body blank. This is in contrary to the expected behavior where the message content will appear in the email body.&lt;br /&gt;&lt;br /&gt;Cause&lt;br /&gt;Bug 5898695&lt;br /&gt;&lt;br /&gt;When an Oracle Workflow notification email is viewed via Microsoft Outlook, only the email header is seen and not the body. This situation usually occurs when the using Microsoft Exchange as the email server and Microsoft Outlook as the email client.&lt;br /&gt;&lt;br /&gt;Solution&lt;br /&gt;1. Download and review the readme and pre-requisites for Patch 5898695&lt;br /&gt;&lt;br /&gt;2. Ensure that a backup of the system is made before applying the patch.&lt;br /&gt;&lt;br /&gt;3. Apply the patch in a test environment.&lt;br /&gt;&lt;br /&gt;4. Retest the issue.&lt;br /&gt;&lt;br /&gt;5. Migrate the solution as appropriate to other environments.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-4781068557105600559?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/4781068557105600559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=4781068557105600559' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4781068557105600559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4781068557105600559'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-workflownotification-does-not-send.html' title='BPEL Workflow:Notification does not send message in e-mail body, instead sends as attachments'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-7388441745163251873</id><published>2007-08-12T05:29:00.000-07:00</published><updated>2007-08-12T05:30:38.269-07:00</updated><title type='text'>BPEL Engine Exceptions ORABPEL 02000 - 02179</title><content type='html'>BPEL Engine Exceptions ORABPEL 02000 - 02179&lt;br /&gt;Engine Exceptions 02000 - 02179&lt;br /&gt;&lt;br /&gt;ORABPEL-02000   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Block element class not valid&lt;br /&gt;description:  The class \"{0}\" for the block element \"{1}\" does not implement the ICubeBlock interface. All block elements contained within the process domain must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-02001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating block element&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{1}\" for the block element \"{0}\". The exception reported was: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-02002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown block element classname&lt;br /&gt;description:  The block element \"{0}\" is missing its classname; this element cannot be created without its classname.&lt;br /&gt;&lt;br /&gt;ORABPEL-02003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cube element missing id property&lt;br /&gt;description:  A Cube element is missing its \"id\" property. Every Cube element in the process domain is uniquely identified by its \"id\" property.&lt;br /&gt;&lt;br /&gt;ORABPEL-02004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  SOAP router URL not specified&lt;br /&gt;description:  The SOAP server URL for the process domain has not been specified. This URL is used to construct the callback URL that remote web-services will use to callback the domain. This property is expected to be specified in the process domain descriptor file.&lt;br /&gt;fix:  Please ensure that the \"soap-server-url\" property is specified in the process domain descriptor file.&lt;br /&gt;&lt;br /&gt;ORABPEL-02005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Parent block element not found&lt;br /&gt;description:  The parent block element \"{0}\" specified by node/block element \"{1}\" has not been defined in the service class map. All nodes/blocks contained in the map must be bound to a valid parent block element.&lt;br /&gt;&lt;br /&gt;ORABPEL-02006   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Map element missing parent block&lt;br /&gt;description:  The node/block element \"{0}\" is missing a parent block identifier. All nodes/blocks contained in the service class map must be bound to a parent block element.&lt;br /&gt;&lt;br /&gt;ORABPEL-02007   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Multiple method blocks specified&lt;br /&gt;description:  Multiple method block elements have been specified in the service class map. A valid map can only contain one method block element.&lt;br /&gt;&lt;br /&gt;ORABPEL-02008   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No block elements specified in map&lt;br /&gt;description:  No block elements have been specified in the service class map. All valid maps must contain at least one block element (the root block).&lt;br /&gt;&lt;br /&gt;ORABPEL-02009   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No node elements specified in map&lt;br /&gt;description:  No node elements have been specified in the service class map. All valid maps must contain at least one node element.&lt;br /&gt;fix:  Please add a node element to the map using the studio tool. Once this has been done, please redeploy the service class.&lt;br /&gt;&lt;br /&gt;ORABPEL-02010   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No method block specified in map&lt;br /&gt;description:  No method block element has been specified for the service class map. All valid maps must contain one method block element.&lt;br /&gt;&lt;br /&gt;ORABPEL-02011   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Node element class not valid&lt;br /&gt;description:  The class \"{0}\" for the node element \"{1}\" does not implement the ICubeNode interface. All node elements contained within the process domain must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-02012   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating node element&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{1}\" for the node element \"{0}\". The exception reported was: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-02013   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Class not found&lt;br /&gt;description:  The class \"{0}\" cannot be found in the current classpath.&lt;br /&gt;fix:  If \"{0}\" is a business document, please try to recompile the class using the schemac tool and restart the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-02014   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown node element classname&lt;br /&gt;description:  The node element \"{0}\" is missing its classname; this element cannot be created without its classname.&lt;br /&gt;&lt;br /&gt;ORABPEL-02015   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Incompatible process version&lt;br /&gt;description:  The BPEL process \"{0}\" (revision \"{1}\") has been compiled with an older version of BPELC; the BPEL process domain you have deployed the process to cannot execute this process.&lt;br /&gt;fix:  Please recompile your BPEL process using the BPELC tool bundled with the current process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-02016   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to initialize process&lt;br /&gt;description:  The process \"{0}\" has failed to initialize because of the error: \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-02017   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot compress data stream&lt;br /&gt;description:  Cannot compress data stream with GZIP algorithm; exception is {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-02018   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot uncompress data stream&lt;br /&gt;description:  Cannot uncompress data stream with GZIP algorithm; exception is {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-02019   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot compute md5 checksum&lt;br /&gt;description:  Cannot compute md5 checksum; exception is {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-02020   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot serialize audit trail&lt;br /&gt;description:  An attempt to serialize the audit trail for instance \"{0}\" to its binary representation has failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02021   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot marshall transaction trail&lt;br /&gt;description:  An attempt to marshall the audit trail for instance \"{0}\" to its XML representation has failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02022   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Audit trail element format error&lt;br /&gt;description:  The value \"{0}\" for the tag \"{1}\" in the XML serialized text for the audit trail for instance \"{2}\" is not a parseable integral value.&lt;br /&gt;fix:  Please ensure that the value for tag \"{1}\" conforms to the expected format.&lt;br /&gt;&lt;br /&gt;ORABPEL-02023   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot activate block&lt;br /&gt;description:  An attempt to activate the block \"{0}\" for the instance \"{1}\" has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this block has been custom coded for this process, please check the implementation.&lt;br /&gt;&lt;br /&gt;ORABPEL-02024   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot finalize block&lt;br /&gt;description:  An attempt to invoke the method \"until\" on the block \"{0}\" for the instance \"{1}\" has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this block has been custom coded for this process, please check the implementation.&lt;br /&gt;&lt;br /&gt;ORABPEL-02025   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Block cannot handle exception&lt;br /&gt;description:  An attempt by the block \"{0}\" to handle a business exception for the instance \"{1}\" has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this block has been custom coded for this process, please check the implementation.&lt;br /&gt;&lt;br /&gt;ORABPEL-02026   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot pre-activate block&lt;br /&gt;description:  An attempt to invoke the method \"canActivate\" on the block \"{0}\" for the instance \"{1}\" has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this block has been custom coded for this process, please check the implementation.&lt;br /&gt;&lt;br /&gt;ORABPEL-02027   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance binary deserialization failed&lt;br /&gt;description:  An attempt to deserialize the instance \"{0}\" from binary format failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02028   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance binary serialization failed&lt;br /&gt;description:  An attempt to serialize the instance \"{0}\" to binary format failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02029   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot create key generator bean&lt;br /&gt;description:  The process domain cannot create the bean \"{0}\"; this bean is responsible for generating a unique key for a new instance. The exception reported is: \"{1}\".&lt;br /&gt;fix:  Please check that the instance key generator bean has been properly deployed to the server and can be properly mounted from a java class.&lt;br /&gt;&lt;br /&gt;ORABPEL-02030   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot marshall instance&lt;br /&gt;description:  An attempt to marshall the instance \"{0}\" to XML format has failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02031   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Wrong domain id&lt;br /&gt;description:  The instance \"{0}\" was created from the domain \"{1}\"; the current domain is \"{2}\". A process can only be loaded from the domain it was created from.&lt;br /&gt;fix:  If you are accessing this instance from the API, please try looking up the instance \"{0}\" from the \"{1}\" domain (change the domain id parameter to the Locator initializer).&lt;br /&gt;&lt;br /&gt;ORABPEL-02032   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Inconsistent process guid&lt;br /&gt;description:  The instance \"{0}\" was created with process guid \"{1}\"; the current guid for the process \"{2}\" (revision \"{3}\") is \"{4}\". Whenever a process is deployed on top of an existing process with the same process id and revision tag, all instances created from the previous process are marked as stale.&lt;br /&gt;fix:  If you are accessing this instance from the console, your browser may be referring to an out-of-date page; please click on the Instances tab to get the current list of active instances.&lt;br /&gt;&lt;br /&gt;ORABPEL-02033   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid instance key format&lt;br /&gt;description:  An attempt to construct a valid instance key from the string \"{0}\" has failed. The key consists of a single integer value. The exception reported is: {2}&lt;br /&gt;fix:  If the instance key string has not been constructed by the process domain, please ensure that the key format is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-02034   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance missing XML entry&lt;br /&gt;description:  The tag \"{0}\" is missing from the XML serialized text for instance \"{1}\".&lt;br /&gt;fix:  Please ensure that the XML document for this instance contains a value for the tag \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-02035   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance missing process id&lt;br /&gt;description:  The instance \"{0}\" is missing its process id; this id specifies the process class that the instance was generated from.&lt;br /&gt;&lt;br /&gt;ORABPEL-02036   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance element format error&lt;br /&gt;description:  The value \"{0}\" for the tag \"{1}\" in the XML serialized text for instance \"{2}\" is not a parseable integral value.&lt;br /&gt;fix:  Please ensure that the value for tag \"{1}\" conforms to the expected format.&lt;br /&gt;&lt;br /&gt;ORABPEL-02037   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot create context object&lt;br /&gt;description:  An exception occurred while trying to create a context object; the exception reported is: {0}&lt;br /&gt;fix:  Please verify that the directory service on the application server has been configured correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-02038   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot lookup context object&lt;br /&gt;description:  The process domain was unable to lookup the context object using the bind name \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please verify the JNDI identifier is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-02039   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delegate lookup to process&lt;br /&gt;description:  The process domain was unable to delegate the lookup call for \"{0}\" to the process descriptor. The descriptor cannot be found for this process.&lt;br /&gt;&lt;br /&gt;ORABPEL-02040   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot destroy context object&lt;br /&gt;description:  An exception occurred while trying to destroy a context object; the exception reported is: {0}&lt;br /&gt;fix:  Please verify that the directory service on the application server has been configured correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-02041   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot access instance&lt;br /&gt;description:  The action \"{0}\" cannot be performed on the instance \"{1}\" because of its current state (\"{2}\"). Please consult the documentation for a list of all the permissible actions that can be performed on a instance when it is in the \"{2}\" state.&lt;br /&gt;&lt;br /&gt;ORABPEL-02042   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot access work item&lt;br /&gt;description:  The action \"{0}\" cannot be performed on the work item \"{1}\" because of its current state (\"{2}\"). Please consult the documentation for a list of all the permissible actions that can be performed on a work item when it in the \"{2}\" state.&lt;br /&gt;&lt;br /&gt;ORABPEL-02043   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot access Scope&lt;br /&gt;description:  The action \"{0}\" cannot be performed on the scope \"{1}\" because of its current state (\"{2}\"). Please consult the documentation for a list of all the permissible actions that can be performed on a scope when it in the \"{2}\" state.&lt;br /&gt;&lt;br /&gt;ORABPEL-02044   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot write audit trail&lt;br /&gt;description:  The process domain failed to write the audit trail for instance \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02045   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read debug trace&lt;br /&gt;description:  The process domain failed to read the debug trace for instance \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02046   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot write debug trace&lt;br /&gt;description:  The process domain failed to write the debug trace for instance \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02047   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot write instance trace&lt;br /&gt;description:  The process domain failed to write the instance trace for instance \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02048   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot handle work item&lt;br /&gt;description:  The process domain was unable to handle the work item \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02049   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot begin a transaction&lt;br /&gt;description:  The OraBPEL system was unable to start a new transaction for method \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02050   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Request cancelled&lt;br /&gt;description:  The invocation for method \"{0}\" on the business transaction \"{1}\", process bean \"{2}\" (revision \"{3}\") has been cancelled. The return value for this method cannot be determined in this case.&lt;br /&gt;&lt;br /&gt;ORABPEL-02051   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Request not finished&lt;br /&gt;description:  The invocation for method \"{0}\" on the business transaction \"{1}\", process bean \"{2}\" (revision \"{3}\") is not complete. The return value for this method cannot be fetched until the method has completed.&lt;br /&gt;fix:  Please resubmit this request after several minutes. Please note that the method may contain some asynchronous conversations that could take an indeterminate amount of time to complete.&lt;br /&gt;&lt;br /&gt;ORABPEL-02052   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot lookup BPEL domain&lt;br /&gt;description:  The BPEL domain \"{0}\" cannot be found; the domain may not have initialized properly.&lt;br /&gt;fix:  Please verify that the BPEL domain loader has a valid set of initialization properties in the application properties file.&lt;br /&gt;&lt;br /&gt;ORABPEL-02053   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  BPEL domain not initialized&lt;br /&gt;description:  The BPEL domain \"{0}\" has not finished initializing yet; the initialization process may be complete in a few moments.&lt;br /&gt;&lt;br /&gt;ORABPEL-02054   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  BPEL domain uninitializing&lt;br /&gt;description:  The BPEL domain \"{0}\" is currently uninitializing; the domain may not be accessed anymore.&lt;br /&gt;&lt;br /&gt;ORABPEL-02055   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Exception not handled&lt;br /&gt;description:  An exception thrown from a scope was not handled by any blocks up the scope chain.&lt;br /&gt;&lt;br /&gt;ORABPEL-02056   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Could not initialize JMS resources&lt;br /&gt;description:  An exception thrown while initializing JMS destination \"{0}\", the reason is {1}&lt;br /&gt;fix:  Please check your jms server configuration and make sure that you have configured the \"{0}\" destination and make sure that your JMS server is up and running.&lt;br /&gt;&lt;br /&gt;ORABPEL-02057   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Block element not found in map&lt;br /&gt;description:  The block element \"{0}\" has not been defined in the service class map.&lt;br /&gt;fix:  If any user specified code is attempting to access the block element \"{0}\", please check the name of the requested element.&lt;br /&gt;&lt;br /&gt;ORABPEL-02058   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Node element not found in map&lt;br /&gt;description:  The node element \"{0}\" has not been defined in the service class map.&lt;br /&gt;fix:  If any user specified code is attempting to access the node element \"{0}\", please check the name of the requested element.&lt;br /&gt;&lt;br /&gt;ORABPEL-02059   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Work item not found in memory repository&lt;br /&gt;description:  The process domain was unable to fetch the work item \"{0}\" from the memory repository.&lt;br /&gt;fix:  Please check that the work item key \"{0}\" refers to a valid work item that has been started and not removed from the process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-02060   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot activate node&lt;br /&gt;description:  An attempt to activate the node \"{0}\" for the instance \"{1}\" has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this node has been custom coded for this process, please check the implementation.&lt;br /&gt;&lt;br /&gt;ORABPEL-02061   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot finalize node&lt;br /&gt;description:  An attempt to finalize the node \"{0}\" for the work item \"{1}\" has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this node has been custom coded for this process, please check the implementation.&lt;br /&gt;&lt;br /&gt;ORABPEL-02062   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot pre-activate node&lt;br /&gt;description:  An attempt to invoke the method \"canActivate\" on the node \"{0}\" for the instance \"{1}\" has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this node has been custom coded for this process, please check the implementation.&lt;br /&gt;&lt;br /&gt;ORABPEL-02063   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Delivery callback message deserialization failed&lt;br /&gt;description:  An attempt to deserialize the delivery callback messages for conversation \"{0}\", message \"{1}\" from binary format has failed. The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-02064   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Delivery callback message serialization failed&lt;br /&gt;description:  An attempt to serialize the delivery callback messages for conversation \"{0}\", message \"{1}\" to binary format has failed. The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-02065   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Delivery property serialization failed&lt;br /&gt;description:  An attempt to serialize the delivery properties for conversation \"{0}\" to binary format has failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02066   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Delivery property deserialization failed&lt;br /&gt;description:  An attempt to deserialize the delivery properties for conversation \"{0}\" to binary format has failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02067   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Delivery callback message XML marshalling failed&lt;br /&gt;description:  An attempt to marshall the delivery callback messages for conversation \"{0}\", message \"{1}\" to XML has failed. The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-02068   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Operation not supported&lt;br /&gt;description:  The method call to \"{0}\" of delivery system persistence service has failed. The object passed in is \"{1}\". This operation is not supported.&lt;br /&gt;fix:  Delivery service persistence service does not support advanced persistence features like lazy-loading. The persistence manager should not use those related operations. Check the persistence manager of the object.&lt;br /&gt;&lt;br /&gt;ORABPEL-02069   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot load message from object store&lt;br /&gt;description:  The delivery service can not load the message contents from the datastore. The exception reported is: {0}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the load() method is working properly. The load() call is the object''s opportunity to recreate itself from external storage. Otherwise, the delivery message contents may have been edited manually in the datastore.&lt;br /&gt;&lt;br /&gt;ORABPEL-02070   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot save message to object store&lt;br /&gt;description:  The delivery service cannot store the object \"{0}\" (type \"{1}\") to the datastore. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the save() method is working properly. The save() call is the object''s opportunity to persist itself in some form of external storage.&lt;br /&gt;&lt;br /&gt;ORABPEL-02071   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot copy object&lt;br /&gt;description:  An attempt to copy the object \"{0}\" (class {1}) has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the copy() method of this object''s PersistenceManager is working properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-02072   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot release moniker&lt;br /&gt;description:  An attempt to release the moniker \"{0}\" has failed. The exception reported is: {1}&lt;br /&gt;fix:  If the last reference to a moniker is being removed, the object referred to by the moniker must be loaded first. Please check that the load() method in the object''s persistence manager is working correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-02073   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete object&lt;br /&gt;description:  An attempt to delete the object \"{0}\" (class {1}) has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the delete() method is working properly. The delete() call is the object''s opportunity to remove any external persisted version of itself.&lt;br /&gt;&lt;br /&gt;ORABPEL-02074   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find target element&lt;br /&gt;description:  The target element with id \"{0}\" cannot be located in the current XML document. The node \"{1}\" has a reference link to this element.&lt;br /&gt;fix:  The document is corrupt; it may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02075   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find element type&lt;br /&gt;description:  The element \"{0}\" does not have an \"xsi:type\" attribute specifying schema type of the underlying java object. An XML fragment cannot be properly unmarshalled to its java representation without this information.&lt;br /&gt;fix:  The document is corrupt; it may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02076   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot load object from moniker&lt;br /&gt;description:  An attempt to deserialize an object from its moniker format has failed. The exception reported is: {0}&lt;br /&gt;fix:  The object moniker is corrupt; the moniker may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02077   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Negative reference count&lt;br /&gt;description:  Assertion failed: object \"{0}\" has negative reference count \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-02078   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot marshall object&lt;br /&gt;description:  An attempt to marshall the object \"{0}\" (class \"{1}\") to XML has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the marshall() method is working properly. Otherwise, the document may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02079   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot prepare to marshall object&lt;br /&gt;description:  An attempt to prepare the object \"{0}\" (class \"{1}\") for marshalling has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the prepareToMarshall() method is working properly. Otherwise, the document may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02080   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot prepare to save object&lt;br /&gt;description:  An attempt to \"prepare to save\" the object \"{0}\" (class {1}) has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the prepareToSave() method is working properly. The prepareToSave() call is meant for compound objects to prepare their inner objects for saving.&lt;br /&gt;&lt;br /&gt;ORABPEL-02081   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read moniker&lt;br /&gt;description:  An attempt to read an object''s moniker from the deserializer stream has failed. The exception reported is: {0}&lt;br /&gt;fix:  The object moniker is corrupt; the moniker may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02082   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot save object&lt;br /&gt;description:  An attempt to save the object \"{0}\" (class {1}) has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the save() method is working properly. The save() call is the object''s opportunity to persist itself in some form of external storage.&lt;br /&gt;&lt;br /&gt;ORABPEL-02083   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot unmarshall object&lt;br /&gt;description:  An attempt to unmarshall the object \"{0}\" (element type \"{1}\") from XML has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the unmarshall() method is working properly. Otherwise, the document may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02084   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot write moniker&lt;br /&gt;description:  An attempt to write an object''s moniker into the serializer stream has failed. The exception reported is: {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-02085   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Metadata for object not found&lt;br /&gt;description:  The metadata for object \"{0}\" has not been registered with the persistence service. Every java object type in the scope must be registered.&lt;br /&gt;&lt;br /&gt;ORABPEL-02086   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing embedded moniker&lt;br /&gt;description:  The metadata for object \"{0}\" does not contain an embedded moniker. All linked variants in the scope must contain an embedded moniker that contains the actual bytes defining the object.&lt;br /&gt;&lt;br /&gt;ORABPEL-02087   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing reference identifier&lt;br /&gt;description:  The node \"{0}\" is missing its reference identifier. Any element with an \"href\" attribute must contain a non-empty reference id that can be resolved to another element in the document.&lt;br /&gt;fix:  The document is corrupt; it may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02088   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot route root scope&lt;br /&gt;description:  A instance''s root scope cannot be routed.&lt;br /&gt;&lt;br /&gt;ORABPEL-02089   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid scope activation key format&lt;br /&gt;description:  An attempt to construct a valid scope activation key from the string \"{0}\" has failed. The expected format is: \"parm1-parm2\", where the parameters are: instance id (integer) and scope id (string) respectively.&lt;br /&gt;fix:  If the scope activation key string has not been constructed by the process domain, please ensure that the key format is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-02090   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot unmarshall meta data&lt;br /&gt;description:  An error occurred while attempting to unmarshall the meta data for the scope tree for instance \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  A variant''s meta data should contain a \"guid\", \"classname\" and \"ref-count\" attributes; the \"ref-count\" attribute should be an integral value.&lt;br /&gt;&lt;br /&gt;ORABPEL-02091   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot release root scope&lt;br /&gt;description:  A instance''s root scope cannot be released from the scope tree.&lt;br /&gt;&lt;br /&gt;ORABPEL-02092   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot unmarshall scope&lt;br /&gt;description:  An attempt to unmarshall a scope for instance \"{0}\" from an XML document has failed. The exception reported is: {1}&lt;br /&gt;fix:  The XML document for the scope may have been modified by hand.&lt;br /&gt;&lt;br /&gt;ORABPEL-02093   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Scope context missing XML entry&lt;br /&gt;description:  The tag \"{0}\" is missing from the XML serialized text for the scope data for instance \"{1}\".&lt;br /&gt;fix:  Please ensure that the XML document for this instance contains a value for the tag \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-02094   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Scope not found&lt;br /&gt;description:  The scope \"{0}\" has not been defined in the current instance.&lt;br /&gt;&lt;br /&gt;ORABPEL-02095   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot resolve scope&lt;br /&gt;description:  The scope associated with block element \"{0}\" has not been defined in the current instance.&lt;br /&gt;&lt;br /&gt;ORABPEL-02096   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance element format error&lt;br /&gt;description:  The value \"{0}\" for the tag/attribute \"{1}\" in the XML serialized text for instance \"{2}\" is not a parseable integral value.&lt;br /&gt;fix:  Please ensure that the value for tag \"{1}\" conforms to the expected format.&lt;br /&gt;&lt;br /&gt;ORABPEL-02097   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read process XML model file&lt;br /&gt;description:  Cannot read the XML model file for process \"{0}\" (revision \"{1}\"); the exception reported is: {2}&lt;br /&gt;fix:  Please check that the BPEL archive for process \"{0}\" (revision \"{1}\") has been deployed correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-02098   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Process WSDL not found&lt;br /&gt;description:  Cannot find the WSDL file \"{0}\" for process \"{1}\" (revision \"{2}\").&lt;br /&gt;fix:  Please check that the BPEL archive for process \"{1}\" (revision \"{2}\") has been deployed correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-02099   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read process WSDL file&lt;br /&gt;description:  Cannot read the WSDL file \"{0}\" for process \"{1}\" (revision \"{2}\"); the exception reported is: {3}&lt;br /&gt;fix:  Please check that the BPEL archive for process \"{1}\" (revision \"{2}\") has been deployed correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-02100   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find process content file&lt;br /&gt;description:  Cannot find the content file \"{0}\" for process \"{1}\" (revision \"{2}\").&lt;br /&gt;fix:  Please check that the path \"{0}\" is correct and refers to a file that has been included as a part of the deployment archive.&lt;br /&gt;&lt;br /&gt;ORABPEL-02101   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read process content file&lt;br /&gt;description:  Cannot read the content file \"{0}\" for process \"{1}\" (revision \"{2}\"); the exception reported is: {3}&lt;br /&gt;fix:  Please check that the path \"{0}\" is correct and refers to a file that has been included as a part of the deployment archive.&lt;br /&gt;&lt;br /&gt;ORABPEL-02102   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid Method Name.&lt;br /&gt;description:  Method \"{0}\" not found.&lt;br /&gt;&lt;br /&gt;ORABPEL-02103   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Process method map not found&lt;br /&gt;description:  The map for node element \"{0}\" has not been defined in the process class.&lt;br /&gt;&lt;br /&gt;ORABPEL-02104   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Process mode closed&lt;br /&gt;description:  The process class \"{0}\" (revision \"{1}\") is not in an open mode. New instances may not be created when the process is not open; existing instances are permitted to complete normally.&lt;br /&gt;fix:  Only the active revision of a process class (that is, the most recently deployed) may be open; all other revisions are automatically closed.&lt;br /&gt;&lt;br /&gt;ORABPEL-02105   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  No process id found&lt;br /&gt;description:  A process class has not been assigned a unique identifier. This situation can occur if the process info class has not been properly bound to the process class.&lt;br /&gt;&lt;br /&gt;ORABPEL-02106   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Process state off&lt;br /&gt;description:  The process class \"{0}\" (revision \"{1}\" ) has not been turned on. No operations on the process or any instances belonging to the process may be performed if the process is off.&lt;br /&gt;fix:  Please consult your administrator if this process has been turned off inadvertently.&lt;br /&gt;&lt;br /&gt;ORABPEL-02107   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Scope activation message not found&lt;br /&gt;description:  The process domain was unable to fetch the scope activation message with key \"{0}\" from the datasource.&lt;br /&gt;fix:  This row may have been manually removed from the datasource; in which case the instance should be aborted.&lt;br /&gt;&lt;br /&gt;ORABPEL-02108   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot copy scope&lt;br /&gt;description:  An attempt was made to create a copy of the scope \"{0}\". Scopes are not cloneable.&lt;br /&gt;&lt;br /&gt;ORABPEL-02109   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot deserialize scope data&lt;br /&gt;description:  The process domain was unable to deserialize the scope data for instance \"{0}\" from its binary byte representation. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02110   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot marshall scope data&lt;br /&gt;description:  An attempt to marshall the scope data for instance \"{0}\" into XML has failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02111   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot serialize scope data&lt;br /&gt;description:  The process domain was unable to serialize the scope data for instance \"{0}\" into a binary byte stream. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02112   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid absolute scope id&lt;br /&gt;description:  The absolute scope id \"{0}\" does not conform to the expected format for a scope identifier (block id + relative scope id).&lt;br /&gt;&lt;br /&gt;ORABPEL-02113   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Scope not method scope&lt;br /&gt;description:  An attempt was made to fetch a return/header value from the root scope.&lt;br /&gt;&lt;br /&gt;ORABPEL-02114   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Primitive variant cast error&lt;br /&gt;description:  The requested variant \"{0}\" is not a primitive variant type. Reference variants cannot be cast to a primitive type.&lt;br /&gt;fix:  Please check that the code accessing variant \"{0}\" assumes that \"{0}\" is a reference variant.&lt;br /&gt;&lt;br /&gt;ORABPEL-02115   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Reference variant cast error&lt;br /&gt;description:  The requested variant \"{0}\" is not a reference variant type. Primitive variants cannot be cast to a reference type.&lt;br /&gt;fix:  Please check that the code accessing variant \"{0}\" assumes that \"{0}\" is a primitive variant.&lt;br /&gt;&lt;br /&gt;ORABPEL-02116   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown variant type&lt;br /&gt;description:  The variant object associated with key \"{0}\" in the scope tree is neither a primitive nor a reference variant. The only variant types permissible in the scope tree are primitive (all Java primitive types) and reference (java.lang.String, java.util.Date, OraBPEL documents, EJB entity beans and one-dimensional arrays of any primitive or reference type).&lt;br /&gt;fix:  Please check that the type for the declared variant \"{0}\" is contained in this list of supported, (de)serializable types.&lt;br /&gt;&lt;br /&gt;ORABPEL-02117   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Variable already declared&lt;br /&gt;description:  A variable with key \"{0}\" has already been declared in the current scope.&lt;br /&gt;fix:  Please remove the variable declaration statement from your code.&lt;br /&gt;&lt;br /&gt;ORABPEL-02118   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Variant not found&lt;br /&gt;description:  The variant \"{0}\" has not been declared in the current scope. All variants must be declared in the scope before being accessed.&lt;br /&gt;fix:  Please check that the variant \"{0}\" is properly declared; otherwise there may be a misspelling in the name of the variant.&lt;br /&gt;&lt;br /&gt;ORABPEL-02119   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Transaction view binary deserialization failed&lt;br /&gt;description:  An attempt to deserialize the transaction view for instance \"{0}\" from binary format failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02120   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Transaction view binary serialization failed&lt;br /&gt;description:  An attempt to serialize the transaction view for instance \"{0}\" to binary format failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02121   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot marshall type to XML&lt;br /&gt;description:  An attempt to marshall the object \"{0}\" (class \"{1}\") to XML has failed. The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-02122   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Type missing XML element&lt;br /&gt;description:  The type class \"{0}\" is missing a \"{1}\" tag.&lt;br /&gt;fix:  Please ensure that the XML fragment for this type contains the necessary tag; this type of error usually occurs when the XML document has been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02123   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Element contains wrong format&lt;br /&gt;description:  The value \"{0}\" for the tag \"{1}\" in the XML serialized text for the type class \"{2}\" is not a parseable integral value.&lt;br /&gt;fix:  Please ensure that the value for tag \"{1}\" conforms to the expected format.&lt;br /&gt;&lt;br /&gt;ORABPEL-02124   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Workitem binary deserialization failed&lt;br /&gt;description:  An attempt to deserialize the workitem \"{0}\" from binary format failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02125   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Workitem binary serialization failed&lt;br /&gt;description:  An attempt to serialize the workitem \"{0}\" to binary format failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02126   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Workitem binary deserialization failed&lt;br /&gt;description:  An attempt to deserialize the workitems for instance \"{0}\" to binary format failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02127   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Workitem binary serialization failed&lt;br /&gt;description:  An attempt to serialize the workitems for instance \"{0}\" to binary format failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02128   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot marshall work item&lt;br /&gt;description:  An attempt to marshall the work item \"{0}\" to XML format has failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02129   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid work item key format&lt;br /&gt;description:  An attempt to construct a valid work item key from the string \"{0}\" has failed. The expected format is: \"parm1-parm2-parm3-parm4\", where the parameters are: instance id (integer), node id (string), scope id (string) and count id (integer) respectively.&lt;br /&gt;fix:  If the work item key string has not been constructed by the process domain, please ensure that the key format is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-02130   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Work item missing XML entry&lt;br /&gt;description:  The tag \"{0}\" is missing from the XML serialized text for work item \"{1} \".&lt;br /&gt;fix:  Please ensure that the XML document for this instance contains a value for the tag \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-02131   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Null exception thrown&lt;br /&gt;description:  A null exception has been thrown from the activity \"{0}\". Exceptions may not be null.&lt;br /&gt;&lt;br /&gt;ORABPEL-02132   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Work item element format error&lt;br /&gt;description:  The value \"{0}\" for the tag \"{1}\" in the XML serialized text for work item \"{2}\" is not a parseable integral value.&lt;br /&gt;fix:  Please ensure that the value for tag \"{1}\" conforms to the expected format.&lt;br /&gt;&lt;br /&gt;ORABPEL-02133   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while expiring work item&lt;br /&gt;description:  An error has occurred while attempting to expire the work item \"{0}\" (located at node \"{1}\"). The exception reported was: \"{2}\".&lt;br /&gt;fix:  Please check the implementation of the work manager class for any errors in the expiration logic. Otherwise, if this is a system or resource problem, please contact your system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-02134   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while extending work item&lt;br /&gt;description:  An error has occurred while attempting to extend the work item \"{0}\" (located at node \"{1}\"). The exception reported was: \"{2}\".&lt;br /&gt;fix:  Please check the implementation of the work manager class for any errors in the extend logic. Otherwise, if this is a system or resource problem, please contact your system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-02135   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while executing manage&lt;br /&gt;description:  An error has occurred while attempting to execute the method \"manage\" on the work manager for node \"{0}\". The exception reported was: \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-02136   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while resuming work item&lt;br /&gt;description:  An error has occurred while attempting to resume the work item \"{0}\" (located at node \"{1}\"). The exception reported was: \"{2}\".&lt;br /&gt;fix:  Please check the implementation of the work manager class for any errors in the resume logic. Otherwise, if this is a system or resource problem, please contact your system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-02137   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while suspending work item&lt;br /&gt;description:  An error has occurred while attempting to suspend the work item \"{0}\" (located at node \"{1}\"). The exception reported was: \"{2}\".&lt;br /&gt;fix:  Please check the implementation of the work manager class for any errors in the suspend logic. Otherwise, if this is a system or resource problem, please contact your system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-02138   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid callback arguments&lt;br /&gt;description:  The method invocation \"{0}\" has returned a invalid number of callback arguments. Currently, a maximum of one return value is permitted from a method invocation; the actual number returned for this invocation was \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-02139   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid exception object&lt;br /&gt;description:  The method invocation \"{0}\" has thrown an invalid exception object. All thrown exceptions must be objects that extend the class \"Throwable\". The object thrown is of class \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-02140   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Callback invocation failed&lt;br /&gt;description:  An attempt to invoke the method \"{0}\" on the performer \"{1}\" failed. The reported exception is: \"{2}\".&lt;br /&gt;fix:  Please ensure that the signature of the method \"{0}\" is: ( IWorkItem, ICubeContext ).&lt;br /&gt;&lt;br /&gt;ORABPEL-02141   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while cancelling perform&lt;br /&gt;description:  An error has occurred while attempting to execute the method \"cancelPerform\" on the work performer for node \"{0}\". The exception reported was: \"{1}\".&lt;br /&gt;fix:  Please check the implementation of the work performer class for any errors in the performer logic. Otherwise, if this is a system or resource problem, please contact your system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-02142   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while executing perform&lt;br /&gt;description:  An error has occurred while attempting to execute the method \"perform\" on the work performer for node \"{0}\". The exception reported was: \"{1}\".&lt;br /&gt;fix:  Please check the implementation of the work performer class for any errors in the performer logic. Otherwise, if this is a system or resource problem, please contact your system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-02143   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while throwing exception&lt;br /&gt;description:  An error has occurred while attempting to throw the exception \"{0}\" from the activity \"{1}\". The exception reported was: \"{2}\".&lt;br /&gt;fix:  Please check the implementation of the work performer class for any errors in the performer logic. Otherwise, if this is a system or resource problem, please contact your system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-02144   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot unmarshall array&lt;br /&gt;description:  An error occurred while attempting to unmarshall the array element \"{0}\"; an invalid array length was found (\"{1}\") when a valid integer was expected.&lt;br /&gt;&lt;br /&gt;ORABPEL-02145   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot unrecognized date format&lt;br /&gt;description:  An attempt to unmarshall a valid java date from the value \"{0}\" has failed. The accepted formats for valid dates are: {1} or {2}.&lt;br /&gt;fix:  Dates that are marshalled by the process domain should conform to the expected format; the document may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-02146   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot unmarshall array&lt;br /&gt;description:  An error occurred while attempting to unmarshall the array element \"{0}\"; the array type value \"{1}\" was malformed.&lt;br /&gt;&lt;br /&gt;ORABPEL-02147   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot unmarshall array&lt;br /&gt;description:  An error occurred while attempting to unmarshall the array element \"{0}\"; the array length for type \"{1}\" is missing. The expected type format is: type[ length ] (multi- dimensional assymetric arrays can have format type[][][ length ]).&lt;br /&gt;&lt;br /&gt;ORABPEL-02148   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot unmarshall array&lt;br /&gt;description:  An error occurred while attempting to unmarshall the array element \"{0}\"; multi -dimensional symmetric arrays are not supported.&lt;br /&gt;&lt;br /&gt;ORABPEL-02149   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance missing domain id&lt;br /&gt;description:  The instance \"{0}\" is missing its domain id; this id specifies the BPEL domain that the instance was generated from.&lt;br /&gt;&lt;br /&gt;ORABPEL-02150   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Workitem not found in datasource&lt;br /&gt;description:  The process domain was unable to fetch the work item \"{0}\" from the datasource.&lt;br /&gt;fix:  Please check that the work item key \"{0}\" refers to a valid work item that has been started and not removed from the process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-02151   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Multiple activities found&lt;br /&gt;description:  Multiple activities were found with the key \"{0}\" from domain \"{1}\". Only one activity should be returned per key.&lt;br /&gt;fix:  If the key is a user-specified custom key, please ensure that the key is unique.&lt;br /&gt;&lt;br /&gt;ORABPEL-02152   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance not found in datasource&lt;br /&gt;description:  The process domain was unable to fetch the instance with key \"{0}\" from the datasource.&lt;br /&gt;fix:  Please check that the instance key \"{0}\" refers to a valid instance that has been started and not removed from the process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-02153   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Synchronous work items not found in datastore&lt;br /&gt;description:  The process domain was unable to fetch the work items for the synchronous instance with key \"{0}\" from the datasource.&lt;br /&gt;fix:  Please check that the instance key \"{0}\" refers to a valid instance that has been started and not removed from the process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-02154   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Multiple instances found&lt;br /&gt;description:  Multiple instances were found with the key \"{0}\". Only one instance should be returned per key.&lt;br /&gt;fix:  If the key is a user-specified custom key, please ensure that the key is unique.&lt;br /&gt;&lt;br /&gt;ORABPEL-02155   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Document not found in datasource&lt;br /&gt;description:  The process domain was unable to fetch the bytes for the business document \"{0}\" from the datasource.&lt;br /&gt;fix:  Please check that the business document identifier \"{0}\" refers to a valid entry in the document table; this row may have been manually removed from the table.&lt;br /&gt;&lt;br /&gt;ORABPEL-02156   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance scope not found in datasource&lt;br /&gt;description:  The process domain was unable to fetch the scope context data for the instance with key \"{0}\" from the datasource.&lt;br /&gt;fix:  Please check that the instance key \"{0}\" refers to a valid instance that has been started and not removed from the process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-02157   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read audit trail&lt;br /&gt;description:  The process domain failed to read the audit trail for instance \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02158   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot create scope deserializer&lt;br /&gt;description:  Failed to create the scope deserializer object for instance \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-02159   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find invoke message&lt;br /&gt;description:  The process domain was unable to fetch the invocation content for the message \"{0}\" from the datastore.&lt;br /&gt;fix:  Please check that the message key \"{0}\" refers to a valid invocation message that has been delivered to and not removed from the process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-02160   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find callback message&lt;br /&gt;description:  The process domain was unable to fetch the callback content for the message \"{0} \" from the datastore.&lt;br /&gt;fix:  Please check that the message key \"{0}\" refers to a valid callback message that has been delivered to and not removed from the process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-02161   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Audit details not found in datasource&lt;br /&gt;description:  The process domain was unable to fetch the audit detail bytes for the instance \"{0}\", detail id \"{1}\" from the datastore.&lt;br /&gt;fix:  Please check that the instance identifier \"{0}\" and/or detail identifier \"{1}\" refers to a valid entry in the audit_details table; this row may have been manually removed from the table.&lt;br /&gt;&lt;br /&gt;ORABPEL-02162   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance index out of range&lt;br /&gt;description:  The index \"{0}\" for instance \"{1}\" is out of range; please try a value between 1 and \"{2}\" (inclusive).&lt;br /&gt;&lt;br /&gt;ORABPEL-02163   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Scope released&lt;br /&gt;description:  Cannot access scope \"{0}\"; scope has already been released.&lt;br /&gt;&lt;br /&gt;ORABPEL-02164   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown cache policy&lt;br /&gt;description:  Unknown cache policy \"{0}\" specified for property \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-02165   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Could not initialize jms connection pool&lt;br /&gt;description:  Could not initialize connection pool for connection factory \"{0}\"; the reason is {1}.&lt;br /&gt;&lt;br /&gt;ORABPEL-02166   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot finalize compensation node&lt;br /&gt;description:  Failed when attempt to finalize the compensation node \"{0}\" for the second time. The exception reported is: {1}&lt;br /&gt;fix:  If this node has been custom coded for this process, please check the implementation.&lt;br /&gt;&lt;br /&gt;ORABPEL-02167   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing process for instance&lt;br /&gt;description:  The process (\"{1}\", revision \"{2}\") for instance \"{0}\" was not loaded by the domain; the instance will now be marked as stale.&lt;br /&gt;fix:  The archive for process \"{1}\", revision \"{2}\" may have been deleted from the domain manually; in this case the domain would not have been able to mark all instances belonging to the process as stale.&lt;br /&gt;&lt;br /&gt;ORABPEL-02168   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read sensor file.&lt;br /&gt;description:  A problem occurred while reading the sensor file \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please ensure the file exists. If it has been manually deleted, please redeploy the process.&lt;br /&gt;&lt;br /&gt;ORABPEL-02169   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read sensor action file.&lt;br /&gt;description:  A problem occurred while reading the sensor action file \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please ensure the file exists. If it has been manually deleted, please redeploy the process.&lt;br /&gt;&lt;br /&gt;ORABPEL-02170   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance missing test information.&lt;br /&gt;description:  The BPELTest instance \"{0}\" is missing test information.&lt;br /&gt;fix:  If this instance has been modified manually, it may be corrupt. Please launch a new test run.&lt;br /&gt;&lt;br /&gt;ORABPEL-02171   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Problem updating label status.&lt;br /&gt;description:  A problem occurred while updating the label status \"{0}\" in instance \"{1} \".&lt;br /&gt;fix:  This label was not detected during process compilation. Please re-deploy the process and try again.&lt;br /&gt;&lt;br /&gt;ORABPEL-02172   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Message handler element class not valid&lt;br /&gt;description:  The class \"{0}\" for the message handler element \"{1}\" does not implement the IMessageHandler interface. All message handlers contained within the process domain must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-02173   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Message handler class not found&lt;br /&gt;description:  The class \"{0}\" cannot be found in the current classpath.&lt;br /&gt;&lt;br /&gt;ORABPEL-02174   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating message handler element&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{1}\" for the message handler \"{0}\". The exception reported was: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-02175   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while invoking inbound message handler&lt;br /&gt;description:  An error has occurred while attempting to invoke the inbound message handler class \"{0}\" for the message \"{1}\". The exception reported was: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-02176   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while invoking outbound message handler&lt;br /&gt;description:  An error has occurred while attempting to invoke the outbound message handler class \"{0}\" for the message \"{1}\". The exception reported was: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-02177   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to create datasource&lt;br /&gt;description:  Failed to create the datasource \"{0}\". The exception reported was: {1}&lt;br /&gt;fix:  Please consult your administrator regarding this error. The application server logs may provide more information regarding this error.&lt;br /&gt;&lt;br /&gt;ORABPEL-02178   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Process not found&lt;br /&gt;description:  The BPEL process \"{0}\", revision \"{1}\" has not been loaded. Either the process was not initialized properly or the process has been disabled.&lt;br /&gt;fix:  Please consult your administrator regarding this error. The application server logs may provide more information regarding this error.&lt;br /&gt;&lt;br /&gt;ORABPEL-02179   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Suitcase not found&lt;br /&gt;description:  The process domain was unable to find the BPEL suitcase \"{0}\" in the datasource. Either the suitcase was not saved properly or the suitcase table has been altered manually.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-7388441745163251873?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/7388441745163251873/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=7388441745163251873' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7388441745163251873'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7388441745163251873'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-engine-exceptions-orabpel-02000.html' title='BPEL Engine Exceptions ORABPEL 02000 - 02179'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-2839081733846384957</id><published>2007-08-12T05:28:00.002-07:00</published><updated>2007-08-12T05:29:34.384-07:00</updated><title type='text'>BPEL Data Source Exceptions ORABPEL 04000 - 04142</title><content type='html'>BPEL Data Source Exceptions ORABPEL 04000 - 04142&lt;br /&gt;Data Source Exceptions 04000 - 04142&lt;br /&gt;&lt;br /&gt;ORABPEL-04000   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot count instances&lt;br /&gt;description:  The process domain was unable to count the number of instances. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot count instances&lt;br /&gt;description:  The process domain was unable to count the number of instances for the process \"{0}\" (revision \"{1}\"). The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find instances&lt;br /&gt;description:  An attempt to fetch the instances using the where condition \"{0}\" from the datastore has failed. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find work items&lt;br /&gt;description:  An attempt to fetch the work items using the where condition \"{0}\" from the datastore has failed. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert audit trail&lt;br /&gt;description:  The process domain was unable to insert the current log entries for the instance \"{0}\" to the audit trail table. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert audit details&lt;br /&gt;description:  The process domain was unable to insert the current audit trail detail entries for the instance \"{0}\" to the audit details table. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04006   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert sync work items&lt;br /&gt;description:  The process domain was unable to store the work items for the synchronous instance \"{0}\" to the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04007   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert sync audit trail&lt;br /&gt;description:  The process domain was unable to store the audit trail for the synchronous instance \"{0}\" to the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04008   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot set auto commit&lt;br /&gt;description:  Unable to set the auto commit level for the current datastore connection. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04009   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot commit transaction&lt;br /&gt;description:  Unable to commit the current datastore transaction. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04010   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete instances&lt;br /&gt;description:  The process domain was unable to purge the instances from the datastore. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04011   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete document&lt;br /&gt;description:  The process domain was unable to delete the document \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04012   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete process instances&lt;br /&gt;description:  The process domain was unable to delete all the instances for the process \"{0}\" (revision \"{1}\") from the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04013   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find expired work items&lt;br /&gt;description:  The process domain was unable to fetch a list of the expired work items in the datastore. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04014   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot lookup instance type&lt;br /&gt;description:  The process domain was unable to lookup the type for instance \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04015   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find stranded scope activation messages&lt;br /&gt;description:  The process domain was unable to fetch a list of the stranded scope activation messages from the datastore. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04016   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find stranded work items&lt;br /&gt;description:  The process domain was unable to fetch a list of the stranded work items in the datastore. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04017   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find work items&lt;br /&gt;description:  The process domain was unable to find the work items for instance \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04018   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find audit trail&lt;br /&gt;description:  The process domain was unable to find the audit trail entry for instance \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04019   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find sync work items&lt;br /&gt;description:  The process domain was unable to find the work items for the synchronous instance \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04020   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find sync audit trail&lt;br /&gt;description:  The process domain was unable to find the audit trail for the synchronous instance \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04021   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find stranded transaction messages&lt;br /&gt;description:  The process domain was unable to fetch a list of stranded transaction messages from the datastore. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04022   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete transaction data&lt;br /&gt;description:  The process domain was unable to delete the data for transaction \"{0}\" from the datasource. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04023   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot load transaction data&lt;br /&gt;description:  The process domain was unable to load the data for transaction \"{0}\" from the datasource. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04024   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot store transaction data&lt;br /&gt;description:  The process domain was unable to insert/update the data for transaction \"{0}\" in the datasource. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04025   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot decode properties&lt;br /&gt;description:  The process domain was unable to decode the properties for message guid {0}, which are stored in column {1}; the exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-04026   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find pending callback messages&lt;br /&gt;description:  The process domain was unable to find any pending callback messages in the datasource. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04027   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find pending invoke messages&lt;br /&gt;description:  The process domain was unable to find any pending invoke messages in the datasource. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04028   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find pending subscriptions&lt;br /&gt;description:  The process domain was unable to find any pending subscriptions in the datasource. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04029   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot mark process as stale&lt;br /&gt;description:  The process domain was unable to mark all instances (and activites) with process GUID \"{0}\" as stale. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04030   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find audit details&lt;br /&gt;description:  An attempt to fetch the audit details for instance \"{0}\" (detail id \"{1}\") from datastore has failed. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04031   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find audit details&lt;br /&gt;description:  An attempt to fetch the audit details for instance \"{0}\" from datastore has failed. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04032   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read lob column&lt;br /&gt;description:  The process domain was unable to read the lob column \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04033   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot fetch document&lt;br /&gt;description:  The process domain was unable to fetch the document \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04034   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find closed instance&lt;br /&gt;description:  The process domain was unable to find the closed instances for the domain \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04035   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot fetch instance&lt;br /&gt;description:  The process domain was unable to fetch the instance \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04036   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot fetch scope activation message&lt;br /&gt;description:  The process domain was unable to fetch the scope activation message with key \"{0}\" from the datasource. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04037   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot fetch work item&lt;br /&gt;description:  The process domain was unable to fetch the work item \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04038   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update document&lt;br /&gt;description:  The process domain was unable to update/insert the document \"{0}\" into the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04039   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update key range&lt;br /&gt;description:  The process domain was unable to update the key table \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04040   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update lob column&lt;br /&gt;description:  The process domain was unable to update the lob column \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04041   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update instance&lt;br /&gt;description:  The process domain was unable to update/insert the instance \"{0}\" into the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04042   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update scope&lt;br /&gt;description:  The process domain was unable to update/insert the serialized scope for instance \"{0}\" into the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04043   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete/insert scope activation message&lt;br /&gt;description:  The process domain was unable to delete/insert the scope activation message with key \"{0}\" from the datasource. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04044   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update work item&lt;br /&gt;description:  The process domain was unable to update/insert the work item \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04045   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot batch update work items&lt;br /&gt;description:  The process domain was unable to batch update/insert the work items for instance \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04046   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot batch insert sync work items&lt;br /&gt;description:  The process domain was unable to batch insert a series of synchronous work items in the datastore. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04047   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select delivery subscription&lt;br /&gt;description:  The process domain was unable to select the delivery data for processId \"{0}\" and operationName \"{1}\" from the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04048   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert delivery subscription&lt;br /&gt;description:  The process domain was unable to insert the delivery data for conversation \"{0} \", subscriber \"{1}\" in the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04049   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select delivery subscription&lt;br /&gt;description:  The process domain was unable to select the delivery data for conversation \"{0}\" (subscriber \"{1}\") from the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04050   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select delivery subscription&lt;br /&gt;description:  The process domain was unable to select the delivery data for conversation \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04051   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select delivery subscription&lt;br /&gt;description:  The process domain was unable to select the delivery data for conversation type \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04052   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select delivery subscription&lt;br /&gt;description:  The process domain was unable to select the delivery data for subscriber \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04053   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update delivery subscription&lt;br /&gt;description:  The process domain was unable to update the state of the delivery subscription \"{1}\" for conversation \"{0}\". The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04054   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update delivery subscription&lt;br /&gt;description:  The process domain was unable to update the state of the delivery subscription \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04055   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete handled subscriptions&lt;br /&gt;description:  The process domain \"{0}\" was unable to delete handled delivery subscriptions. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04056   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert delivery message&lt;br /&gt;description:  The process domain was unable to insert the delivery data for message \"{0}\", operation \"{1}\" in the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04057   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete delivery message&lt;br /&gt;description:  The process domain was unable to delete the delivery data for message \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04058   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete handled messages&lt;br /&gt;description:  The process domain \"{0}\" was unable to delete the handled delivery data from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04059   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select delivery message&lt;br /&gt;description:  The process domain was unable to select the delivery data for message \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04060   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select delivery message&lt;br /&gt;description:  The process domain was unable to select the delivery data for message \"{0}\", operation \"{1}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04061   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update delivery message&lt;br /&gt;description:  The process domain was unable to update the state of the delivery message \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04062   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete invoke message&lt;br /&gt;description:  The process domain was unable to delete the invocation data for message \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04063   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete handled messages&lt;br /&gt;description:  The process domain \"{0}\" was unable to delete the handled invocation data from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04064   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select invoke message&lt;br /&gt;description:  The process domain was unable to select the invocation data for message \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04065   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select invoke message&lt;br /&gt;description:  The process domain was unable to select the invocation data for process \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04066   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert invoke message&lt;br /&gt;description:  The process domain was unable to insert the invocation data for message \"{0}\", operation \"{1}\" in the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04067   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update invoke message&lt;br /&gt;description:  The process domain was unable to update the state of the invocation message \"{0} \". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04069   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find stale instances&lt;br /&gt;description:  The process domain was unable to fetch a list of the stale instances belonging to process \"{0}\" (revision \"{1}\"). The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-04075   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update task&lt;br /&gt;description:  The process domain was unable to update the data for task \"{0}\" in the datasource. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04076   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot lookup jdbc datasource&lt;br /&gt;description:  The process domain was unable to lookup the TX datasource \"{0}\".&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Additionally check that the connection pool properties as defined in the application server startup properties are valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04077   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot fetch a datasource connection&lt;br /&gt;description:  The process domain was unable to establish a connection with the datasource with the connection URL \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04078   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot close datasource connection&lt;br /&gt;description:  The process domain was unable to release its datasource connection. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04079   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read blob stream&lt;br /&gt;description:  Cannot read blob stream from datastore with key \"{0}\"; exception is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-04080   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Data stream not found&lt;br /&gt;description:  The data stream for the instance/activity object \"{0}\" was not found in the datastore.&lt;br /&gt;fix:  Please check that the instance/activity key \"{0}\" refers to a valid instance/activity that has been started and not removed from the process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-04081   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot write stream length&lt;br /&gt;description:  Cannot write binary stream length to serializer for instance \"{0}\"; exception is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-04082   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete instance&lt;br /&gt;description:  The process domain was unable to delete the instance \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04083   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update work item exception&lt;br /&gt;description:  The process domain was unable to insert/update the exception entry for the activity \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04084   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete work item exception&lt;br /&gt;description:  The process domain was unable to delete the exception entry for the activity \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04085   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find work item exception&lt;br /&gt;description:  The process domain was unable to find the activity in the domain \"{0}\" with custom key \"{1}\"; the exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04087   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find schedulable activities&lt;br /&gt;description:  Failed to find schedulable activities for domain \"{0}\"; exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04088   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find tasks&lt;br /&gt;description:  Failed to find the tasks for domain \"{0}\" with the where condition \"{1}\"; the exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04089   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update task&lt;br /&gt;description:  The process domain was unable to insert the data for task \"{0}\" in the datasource. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04090   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select scope&lt;br /&gt;description:  The process domain was unable to read the serialized scope for instance \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04091   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select instance indexes&lt;br /&gt;description:  The process domain was unable to read the indexes for instance \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04092   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update instance indexes&lt;br /&gt;description:  The process domain was unable to update/insert the indexes for instance \"{0}\" into the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04093   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select process metadata&lt;br /&gt;description:  The process domain was unable to select the metadata for process \"{0}\" with revision tag \"{1}\" from the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04095   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete process metadata&lt;br /&gt;description:  The process domain was unable to delete the metadata for process \"{0}\" with revision tag \"{1}\" from the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04096   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update process metadata&lt;br /&gt;description:  The process domain was unable to insert/update the process metadata for process \"{0}\" with revision tag \"{1}\" in the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04097   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find process revision&lt;br /&gt;description:  The process domain was unable to find the process revision record for process \"{0}\" with revision tag \"{1}\" in the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04098   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot flush jboss datasource&lt;br /&gt;description:  The process domain was unable to flush the datasource \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please try manually flushing the datasource from the jboss jmx-console.&lt;br /&gt;&lt;br /&gt;ORABPEL-04099   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find instances&lt;br /&gt;description:  The process domain was unable to find instances with root id \"{0}\" in the datasource. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04100   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find invoke metadata&lt;br /&gt;description:  The process domain was unable to find any invoke messages with the specified where condition in the datasource. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04101   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find callback metadata&lt;br /&gt;description:  The process domain was unable to find any callback messages with the specified where condition in the datasource. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04102   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert process event&lt;br /&gt;description:  The process domain was unable to insert the process event for process \"{0}\" (revision \"{1}\") in the datasource. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04103   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find process events&lt;br /&gt;description:  The process domain was unable to find any process events with the specified where condition in the datasource. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04104   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find default revisions&lt;br /&gt;description:  The process domain was unable to find the default process revisions in the datasource. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04105   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update default revision&lt;br /&gt;description:  The process domain was unable to set the default revision for process \"{0}\", revision tag \"{1}\" in the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04106   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete default revision&lt;br /&gt;description:  The process domain was unable to delete the default revision for process \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04107   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update lob column&lt;br /&gt;description:  The process domain was unable to update the lob column \"{0}\" in the datastore, for cube instance \"{1}\". The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04108   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select attachment&lt;br /&gt;description:  The process domain was unable to select the attachent by the key \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04109   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete attachment&lt;br /&gt;description:  The process domain was unable to delete the attachent by the key \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04110   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert attachment&lt;br /&gt;description:  The process domain was unable to insert attachent into the datastore. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04111   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot fetch attachment reference&lt;br /&gt;description:  The process domain was unable to seelct the attachment reference \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04112   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert attachment reference&lt;br /&gt;description:  The process domain was unable to insert attachent reference into the datastore. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04113   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete attachment reference&lt;br /&gt;description:  The process domain was unable to remove attachent reference of instance \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04121   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find test details&lt;br /&gt;description:  An attempt to fetch the test details using the where condition \"{0}\" from the datastore has failed. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04122   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update test details&lt;br /&gt;description:  The process domain was unable to insert/update test details for instance \"{0}\" in the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04123   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update delivery message batch&lt;br /&gt;description:  The process domain was unable to update the state of the following delivery messages \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04124   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot update delivery subscription batch&lt;br /&gt;description:  The process domain was unable to update the state of the following delivery subscriptions \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04125   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select detail instances&lt;br /&gt;description:  The process domain was unable to select the number of detail instances for master instance specified by the conversation id \"{0}\".&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04126   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select document reference key&lt;br /&gt;description:  The process domain was unable to select document references for instance id \"{0} \". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04127   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select insert reference key&lt;br /&gt;description:  The process domain was unable to insert document references for instance id \"{0} \". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04128   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select document reference key&lt;br /&gt;description:  The process domain was unable to select document references for delivery message guid \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04129   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select insert reference key&lt;br /&gt;description:  The process domain was unable to insert document references for delivery message guid \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04130   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select process descriptor&lt;br /&gt;description:  The process domain was unable to select the descriptor for process \"{0}\", revision \"{1}\" from the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04131   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert/update process descriptor&lt;br /&gt;description:  The process domain was unable to insert/update the descriptor for process \"{0}\", revision \"{1}\" into the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04132   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read clob stream&lt;br /&gt;description:  Cannot read clob stream from datastore with key \"{0}\"; exception is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-04133   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot select process suitcase&lt;br /&gt;description:  The process domain was unable to select the bytes for suitcase \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04134   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot insert/update process suitcase&lt;br /&gt;description:  The process domain was unable to insert/update the process suitcase \"{0}\" into the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04135   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete process suitcase&lt;br /&gt;description:  The process domain was unable to delete the process suitcase \"{0}\" from the datastore. The exception reported is: {1}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04136   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot count suitcase processes&lt;br /&gt;description:  The process domain was unable to count the number of deployed suitcase processes. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04137   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find test definition&lt;br /&gt;description:  An attempt to fetch the test definition for process \"{0}\", revision \"{1}\", test suite \"{2}\", location \"{3}\" from the datastore has failed. The exception reported is: {4}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04138   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot store test definition&lt;br /&gt;description:  The process domain was unable to store the test definition for process \"{0}\", revision \"{1}\", test suite \"{2}\", location \"{3}\" in the datastore. The exception reported is: {4}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04139   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete test definition&lt;br /&gt;description:  The process domain was unable to delete the test definition for process \"{0}\", revision \"{1}\", test suite \"{2}\", location \"{3}\" in the datastore. The exception reported is: {4}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04140   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete test definitions&lt;br /&gt;description:  The process domain was unable to delete test definitions for process \"{0}\", revision \"{1}\" in the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04141   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete process events&lt;br /&gt;description:  The process domain was unable to delete the events logged for process \"{0}\", revision \"{1}\" from the datastore. The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-04142   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot delete process events&lt;br /&gt;description:  The process domain was unable to delete the events logged for in the domain. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Otherwise, check that the datasource connection parameters (user/password) is currently valid.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-2839081733846384957?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/2839081733846384957/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=2839081733846384957' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2839081733846384957'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2839081733846384957'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-data-source-exceptions-orabpel.html' title='BPEL Data Source Exceptions ORABPEL 04000 - 04142'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-6959136517988607699</id><published>2007-08-12T05:28:00.001-07:00</published><updated>2007-08-12T05:28:42.652-07:00</updated><title type='text'>BPEL Generic Exceptions ORABPEL 00000 - 00031</title><content type='html'>BPEL Generic Exceptions ORABPEL 00000 - 00031&lt;br /&gt;Generic Exceptions 00000 - 00031&lt;br /&gt;&lt;br /&gt;ORABPEL-00000   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Exception not handled by the Collaxa Cube system.&lt;br /&gt;description:  An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to write auth file&lt;br /&gt;description:  Failed to write auth property file \"{0}\"; exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-00002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Domain authentication change failed&lt;br /&gt;description:  Failed to write authentication file \"{1}\" for domain \"{0}\"; exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-00003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to read auth file&lt;br /&gt;description:  Failed to read auth property file \"{0}\"; exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-00004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Authentication failed&lt;br /&gt;description:  Failed to authenticate credentials.&lt;br /&gt;&lt;br /&gt;ORABPEL-00005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Collaxa lib directory not found&lt;br /&gt;description:  The specified BPM library directory \"{0}\" cannot be found.&lt;br /&gt;&lt;br /&gt;ORABPEL-00006   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cipher creation error&lt;br /&gt;description:  Failed to load the JCE cipher \"{0}\". Your environment may not be set correctly.&lt;br /&gt;fix:  You must have the JCE library files installed in your JRE installation as an extension. Copy the jar files from \"{1}\\install\\java\\jce1.2.2\" to the \"(jdk_path) \\jre\\lib\\ext\" directory (where jdk_path is your jdk installation directory).&lt;br /&gt;&lt;br /&gt;ORABPEL-00007   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cipher decryption error&lt;br /&gt;description:  Failed to decrypt cipher text with transformation \"{0}\"; exception reported is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-00008   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cipher encryption error&lt;br /&gt;description:  Failed to encrypt plain text with transformation \"{0}\"; exception reported is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-00009   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Data conversion failed&lt;br /&gt;description:  Failed to convert \"{0}\" to a \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00010   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Guid generation failed&lt;br /&gt;description:  Failed to generate GUID. Please check the domain log whether the GUID generator native library \"cxguid\" was loaded properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-00011   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Guid Library Load Failed&lt;br /&gt;description:  Failed to load the native library \"cxguid\" for the GUID generator. Your environment may not be set correctly. The current PATH is: \"{0}\".&lt;br /&gt;fix:  On Windows systems, your PATH must include \"{1}\\bin\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00012   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Guid Library Load Failed&lt;br /&gt;description:  Failed to load the native library \"cxguid\" for the GUID generator. Your environment may not be set correctly. The current java library path is: \"{0}\".&lt;br /&gt;fix:  On Linux and Solaris systems, your LD_LIBRARY_PATH must include \"{1}/lib/linux\" and \"{1}/lib/solaris\" respectively.&lt;br /&gt;&lt;br /&gt;ORABPEL-00013   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to lookup localhost IP&lt;br /&gt;description:  Failed to lookup the localhost IP address. Please check that your machine''s network configuration is correct.&lt;br /&gt;&lt;br /&gt;ORABPEL-00014   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to lookup IP&lt;br /&gt;description:  Failed to lookup the IP address for host \"{0}\". Please check that your machine''s network configuration (particularly the DNS settings) is correct.&lt;br /&gt;&lt;br /&gt;ORABPEL-00015   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Jar Creation Failed&lt;br /&gt;description:  Failed to create jar file {0}.&lt;br /&gt;fix:  Please verify that jar is installed on this machine and is included in machine system path. Also verify if tools.jar file is included in OBDK_CLASSPATH.&lt;br /&gt;&lt;br /&gt;ORABPEL-00016   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Javac compiler configuration error&lt;br /&gt;description:  Failed to execute javac compiler on file(s) \"{0}\". Exception reported is: {1}&lt;br /&gt;fix:  Please verify that javac compiler is installed on this machine and is included in the classpath (check that \"tools.jar\" in particular is in the classpath).&lt;br /&gt;&lt;br /&gt;ORABPEL-00017   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Java compilation failed&lt;br /&gt;description:  Failed to compile file(s) \"{0}\".\nException reported is: {1}&lt;br /&gt;fix:  Please verify that file {0} is valid java file or if all required libraries are included in your classpath.&lt;br /&gt;&lt;br /&gt;ORABPEL-00018   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Java source directory not found&lt;br /&gt;description:  Cannot find the java source directory \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00019   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Java destination directory not found&lt;br /&gt;description:  Cannot create the java destination directory \"{0}\".&lt;br /&gt;fix:  Please check that the directory \"{0}\" exists and is writable.&lt;br /&gt;&lt;br /&gt;ORABPEL-00020   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  JavaDoc Processing Failed&lt;br /&gt;description:  Failed to write the JavaDoc argument file \"{0}\". The exception reported is: \"{2}\".&lt;br /&gt;fix:  Please check that the directory \"{1}\" is writable.&lt;br /&gt;&lt;br /&gt;ORABPEL-00021   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  JavaDoc Processing Failed&lt;br /&gt;description:  Failed to execute JavaDoc with the argument file \"{0}\".&lt;br /&gt;fix:  Please verify that JavaDoc is installed on this machine in \\bin directory and this directory is included in machine system path.&lt;br /&gt;&lt;br /&gt;ORABPEL-00022   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to backup log configuration&lt;br /&gt;description:  Failed to backup log configuration file \"{0}\" for domain \"{1}\". The following exception was thrown: {3}&lt;br /&gt;fix:  Please ensure that the directory \"{2}\" is writeable by the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00023   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to update log configuration&lt;br /&gt;description:  Failed to update log configuration file \"{0}\" for domain \"{1}\". The following exception was thrown: {3}&lt;br /&gt;fix:  Please ensure that the directory \"{2}\" is writeable by the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00024   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot schedule agent&lt;br /&gt;description:  An attempt to schedule the \"{0}\" agent with the scheduler has failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-00025   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot unschedule agent&lt;br /&gt;description:  An attempt to unschedule the \"{0}\" agent with the scheduler has failed. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-00026   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while executing agent&lt;br /&gt;description:  An error occurred while attempting to execute the job \"{0}\" for agent \"{1}\". The exception reported was : {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-00027   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to backup log configuration&lt;br /&gt;description:  Failed to backup log configuration file \"{0}\" for the Collaxa server. The following exception was thrown: {1}&lt;br /&gt;fix:  Please ensure that the directory \"{2}\" is writable by the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00028   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to update log configuration&lt;br /&gt;description:  Failed to update log configuration file \"{0}\" for the Collaxa server. The following exception was thrown: {2}&lt;br /&gt;fix:  Please ensure that the directory \"{1}\" is writable by the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00029   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot access log file directory&lt;br /&gt;description:  Failed to access log file directory \"{0}\" for the Collaxa server; the server can only access files contained in the logs directory.&lt;br /&gt;&lt;br /&gt;ORABPEL-00030   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot access log file&lt;br /&gt;description:  Failed to access log file \"{0}\" for the Collaxa server; the file cannot be read or is not a plain text file.&lt;br /&gt;&lt;br /&gt;ORABPEL-00031   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read log file&lt;br /&gt;description:  Failed to read contents for log file \"{0}\" for the Collaxa server; the following exception was thrown: {1}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-6959136517988607699?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/6959136517988607699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=6959136517988607699' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6959136517988607699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6959136517988607699'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-generic-exceptions-orabpel-00000.html' title='BPEL Generic Exceptions ORABPEL 00000 - 00031'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-6817250162393272370</id><published>2007-08-12T05:27:00.000-07:00</published><updated>2007-08-12T05:28:08.993-07:00</updated><title type='text'></title><content type='html'>BPEL Deployment Exceptions ORABPEL 05200 - 05251&lt;br /&gt;Deployment Exceptions 05200 - 05251&lt;br /&gt;&lt;br /&gt;ORABPEL-05200   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read timestamp file&lt;br /&gt;description:  An exception occured while attempting to read the timestamp file \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05201   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot write timestamp file&lt;br /&gt;description:  An exception occured while attempting to write the timestamp file \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05202   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error opening BPEL archive&lt;br /&gt;description:  An exception occured while attempting to open the BPEL archive \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05203   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error unpacking BPEL archive&lt;br /&gt;description:  An exception occured while attempting to unpack the BPEL archive \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05204   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Inconsistent process id/revision.&lt;br /&gt;description:  The process identifier \"{0}\" and revision tag \"{1}\" do not match the identifier \"{2}\" and revision tag \"{3}\" specified in the process descriptor.&lt;br /&gt;fix:  Please generate the BPEL archive again using the \"bpelc\" tool and redeploy the process.&lt;br /&gt;&lt;br /&gt;ORABPEL-05205   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing BPEL archive file&lt;br /&gt;description:  The process domain cannot locate the BPEL archive for process \"{0}\", revision \"{1}\".&lt;br /&gt;fix:  If you have deployed the process please check that it is located in the directory \"{2}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-05206   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing BPEL archive file name&lt;br /&gt;description:  The name for the BPEL archive file is empty.&lt;br /&gt;&lt;br /&gt;ORABPEL-05207   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error deploying BPEL archive&lt;br /&gt;description:  An error occurred while attempting to deploy the BPEL archive file \"{0}\"; the exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05208   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing process descriptor file&lt;br /&gt;description:  The process deployment descriptor file \"bpel.xml\" has not been packaged in the BPEL archive \"{0}\".&lt;br /&gt;fix:  Please generate the BPEL archive again using the \"bpelc\" tool and redeploy the process. The BPEL archive \"{0}\" may have been generated with an older version of \"bpelc\".&lt;br /&gt;&lt;br /&gt;ORABPEL-05209   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing BPEL manifest attribute&lt;br /&gt;description:  The manifest for BPEL archive \"{0}\" does not contain the required attribute \"{1}\".&lt;br /&gt;fix:  Please generate the BPEL archive again using the \"bpelc\" tool and redeploy the process.&lt;br /&gt;&lt;br /&gt;ORABPEL-05210   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No BPEL archive files&lt;br /&gt;description:  The process domain cannot locate any BPEL archives for process \"{0}\".&lt;br /&gt;fix:  If you have deployed a process please check that it is located in the directory \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-05211   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Null BPEL manifest&lt;br /&gt;description:  The BPEL archive \"{0}\" does not contain a manifest. All deployed BPEL archives must contain a manifest.&lt;br /&gt;fix:  Please generate the BPEL archive again using the \"bpelc\" tool and redeploy the process.&lt;br /&gt;&lt;br /&gt;ORABPEL-05212   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Deployment directory not found&lt;br /&gt;description:  The directory \"{0}\" is expected to be present in the domain directory \"{1}\". The deployed processes for this domain are expected to reside in this directory.&lt;br /&gt;fix:  Please ensure that the directory \"{0}\" exists under the domain directory \"{1} \".&lt;br /&gt;&lt;br /&gt;ORABPEL-05213   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid process id&lt;br /&gt;description:  The process identifier \"{0}\" for the BPEL Process archive \"{1}\" is not valid. Process identifiers may start with a letter, a \"$\" or \"_\" character; process characters (other than the first character) include a letter, a digit, a \"$\", a \"_\" or \"-\" character.&lt;br /&gt;fix:  Please make sure that the deployment descriptor contained in the BPEL Process archive \"{1}\" has a valid process id.&lt;br /&gt;&lt;br /&gt;ORABPEL-05214   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid process revision tag&lt;br /&gt;description:  The process revision tag \"{0}\" for the BPEL Process archive \"{1}\" is not valid. Valid revision tags may contain the following characters: a letter, a digit or any of [\"$\", \"_\", \"-\", \".\"].&lt;br /&gt;fix:  Please make sure that the deployment descriptor contained in the BPEL Process archive \"{1}\" has a valid revision tag.&lt;br /&gt;&lt;br /&gt;ORABPEL-05215   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while loading process&lt;br /&gt;description:  The process domain encountered the following errors while loading the process \"{0}\" (revision \"{1}\"): {2}.&lt;br /&gt;fix:  If you have installed a patch to the server, please check that the bpelcClasspath domain property includes the patch classes.&lt;br /&gt;&lt;br /&gt;ORABPEL-05216   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Process class not valid&lt;br /&gt;description:  The class \"{0}\" for the process \"{1}\" (revision \"{2}\") does not implement the ICubeProcess interface. All process classes contained within the process domain must implement this interface.&lt;br /&gt;fix:  Please try recompiling your BPEL process again. The current BPEL process archive \"{1}\" may have been compiled with an older version of \"bpelc\".&lt;br /&gt;&lt;br /&gt;ORABPEL-05217   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating process&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{0}\" for the process \"{1}\" (revision \"{2}\"). The exception reported was: {3}&lt;br /&gt;fix:  Please try recompiling your BPEL process again. The current BPEL process archive \"{1}\" may have been compiled with an older version of \"bpelc\".&lt;br /&gt;&lt;br /&gt;ORABPEL-05220   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown process classname&lt;br /&gt;description:  The process \"{0}\" (revision \"{1}\") is missing its classname; this element cannot be created without its classname.&lt;br /&gt;&lt;br /&gt;ORABPEL-05221   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while updating process&lt;br /&gt;description:  An error has occurred while attempting to update the process descriptor for the BPEL process \"{0}\" (revision \"{1}\"). The exception reported was: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-05222   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Type class not found&lt;br /&gt;description:  Cannot find class for type \"{0}\". Please check that the class is located in the classpath.&lt;br /&gt;&lt;br /&gt;ORABPEL-05223   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Type excluded&lt;br /&gt;description:  Cannot generate type helpers for the class \"{0}\". This class cannot be persisted by the BPEL process domain. Objects which maintain system level handles cannot be persisted and recreated reliably.&lt;br /&gt;&lt;br /&gt;ORABPEL-05224   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Insufficient security priviledges&lt;br /&gt;description:  Failed to generate persistence manager \"{0}\" for class \"{1}\". The application server reflection access check must be disabled in order for the persistence manager to be created. If you cannot disable this check, you must implement your own persistence manager for the class \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-05225   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid persistence manager class&lt;br /&gt;description:  The persistence manager class \"{0}\" for type \"{1}\" does not implement the IPersistenceManager interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-05226   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating persistence manager&lt;br /&gt;description:  An error occurred while attempting to instantiate the persistence manager class \"{0}\" for type \"{1}\". The exception reported was: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-05227   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid deserializer class&lt;br /&gt;description:  The Axis deserializer class \"{0}\" for type \"{1}\" does not implement the Deserializer interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-05228   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid serializer class&lt;br /&gt;description:  The Axis serializer class \"{0}\" for type \"{1}\" does not implement the Serializer interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-05229   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating serializers&lt;br /&gt;description:  An error occurred while attempting to instantiate the Axis serializer class \"{0} \" for type \"{1}\". The exception reported was: {2}.&lt;br /&gt;&lt;br /&gt;ORABPEL-05230   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error accessing working directory&lt;br /&gt;description:  Cannot access type working directory \"{0}\". This directory is used by the BPEL process domain to generate helper classes for types used in a process.&lt;br /&gt;fix:  Please check that the directory \"{0}\" is readable and writable by the BPEL process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-05231   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating working directory&lt;br /&gt;description:  Cannot create type working directory \"{0}\". This directory is used by the BPEL process domain to generate helper classes for types used in a process.&lt;br /&gt;fix:  Please check that the directory \"{0}\" exists and is readable and writable by the BPEL process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-05232   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating working directory&lt;br /&gt;description:  Cannot create type working directory \"{0}\". This directory is used by the BPEL process domain to generate helper classes for types used in a process. The exception reported is: \"{1}\".&lt;br /&gt;fix:  Please check that the directory \"{0}\" exists and is readable and writable by the BPEL process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-05233   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Mail account not found&lt;br /&gt;description:  The mail account \"{0}\" cannot be found in the metadata directory.&lt;br /&gt;&lt;br /&gt;ORABPEL-05234   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error creating mail account&lt;br /&gt;description:  An exception occured while attempting to parse the mail account from the XML file \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05235   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error unpacking task template archive&lt;br /&gt;description:  An exception occured while attempting to unpack the task template archive \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05236   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating task template&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{0}\" for the task template \"{1}\" (archive \"{2}\"). The exception reported was: {3}&lt;br /&gt;&lt;br /&gt;ORABPEL-05237   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Task template not found&lt;br /&gt;description:  The task template \"{0}\" cannot be found in the metadata directory.&lt;br /&gt;&lt;br /&gt;ORABPEL-05238   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Tasklet class not valid&lt;br /&gt;description:  The class \"{0}\" for the task template \"{1}\" does not implement the ITasklet interface. All tasklet classes contained within the process domain must implement this interface.&lt;br /&gt;fix:  Please try regenerating your task template archive again.&lt;br /&gt;&lt;br /&gt;ORABPEL-05239   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  JMS connector not found&lt;br /&gt;description:  The jms connector \"{0}\" cannot be found in the metadata directory.&lt;br /&gt;&lt;br /&gt;ORABPEL-05240   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error creating jms connector&lt;br /&gt;description:  An exception occured while attempting to parse the jms connector from the XML file \"{0}\". The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05241   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing task descriptor&lt;br /&gt;description:  The task descriptor file \"task.xml\" for the task template \"{0}\" has not been packaged in the task archive file \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-05242   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid suitcase deployment descriptor&lt;br /&gt;description:  The suitcase descriptor of bpel archive \"{0}\" is not valid.&lt;br /&gt;fix:  Rebuild your suitcase and redeploy it using the current BPEL build environment.&lt;br /&gt;&lt;br /&gt;ORABPEL-05243   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot obtain lock for process&lt;br /&gt;description:  Failed to obtain load lock for process \"{0}\"; exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05244   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Timed out waiting for process load lock&lt;br /&gt;description:  Failed to obtain load lock for process \"{0}\"; timed out after {1} seconds.&lt;br /&gt;&lt;br /&gt;ORABPEL-05245   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot extract process descriptor&lt;br /&gt;description:  Failed to write descriptor file for process \"{0}\", revision \"{1}\"; exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-05246   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot marshall process descriptor&lt;br /&gt;description:  Failed to marshall descriptor for process \"{0}\", revision \"{1}\"; exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-05247   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Process not found&lt;br /&gt;description:  The BPEL process with GUID \"{0}\" has not been loaded. Either the process was not initialized properly or the process has been disabled.&lt;br /&gt;fix:  Please consult your administrator regarding this error. The application server logs may provide more information regarding this error.&lt;br /&gt;&lt;br /&gt;ORABPEL-05248   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read process bytes&lt;br /&gt;description:  An exception occured while attempting to read the bytes from BPEL archive \"{0}\". The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-05249   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot compute process guid&lt;br /&gt;description:  Failed to compute guid for process \"{0}\", revision \"{1}\"; exception is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-05250   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error deploying BPEL suitcase&lt;br /&gt;description:  An error occurred while attempting to deploy the BPEL suitcase file \"{0}\"; the exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05251   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot compute suitcase checksum&lt;br /&gt;description:  Failed to compute suitcase id; exception is: {0}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-6817250162393272370?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/6817250162393272370/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=6817250162393272370' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6817250162393272370'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6817250162393272370'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-deployment-exceptions-orabpel.html' title=''/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-4474511221656722116</id><published>2007-08-11T08:19:00.002-07:00</published><updated>2007-08-11T08:20:34.226-07:00</updated><title type='text'>BPEL Activation Agent Exceptions ORABPEL 09900 - 09911</title><content type='html'>BPEL Activation Agent Exceptions ORABPEL 09900 - 09911&lt;br /&gt;Activation Agent Exceptions 09900 - 09911&lt;br /&gt;&lt;br /&gt;ORABPEL-09900   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating activation job&lt;br /&gt;description:  An error occurred while attempting to instantiate the activation agent class \"{0}\". The exception reported was: \"{1}\".&lt;br /&gt;fix:  Please fix the error and redeploy the class to the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-09901   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown activation job classname&lt;br /&gt;description:  No activation agent classname has been associated with \"{0}\".&lt;br /&gt;fix:  Please check the \"className\" activation agent''s property for your jms process.&lt;br /&gt;&lt;br /&gt;ORABPEL-09902   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Activation agent class not valid&lt;br /&gt;description:  The activation agent class \"{0}\" does not implement the IActivationAgent interface. All activation agents must implement this interface.&lt;br /&gt;fix:  Please ensure that the class \"{0}\" implements the IActivationAgent interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-09903   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Could not initialize activation agent&lt;br /&gt;description:  An error occured while initializing an activation agent for process \"{0}\", revision \"{1}\".&lt;br /&gt;fix:  Please ensure that the activation agents are configured correctly in the bpel deployment descriptor (bpel.xml).&lt;br /&gt;&lt;br /&gt;ORABPEL-09904   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Could not uninitialize activation agent&lt;br /&gt;description:  An error occured while uninitializing an activation agent for process \"{0}\", revision \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-09905   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error in onStateChanged callback method&lt;br /&gt;description:  An error occured while invoking the onStateChanged() method in one of the activation agents for process \"{0}\", revision \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-09906   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error in onLifecycleChanged callback method&lt;br /&gt;description:  An error occured while invoking the onLifecycleChanged() method in one of the activation agents for process \"{0}\", revision \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-09907   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error in onUndeploy callback method&lt;br /&gt;description:  An error occured while invoking the onUndeploy() method in one of the activation agents for process \"{0}\", revision \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-09908   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while reading file content from activation agent&lt;br /&gt;description:  Activation agent \"{0}\" couldn''t read file content. The reason is {1}.&lt;br /&gt;fix:  Please ensure that the file name or path for the file is correct and should be relative path to the BPEL Suite.&lt;br /&gt;&lt;br /&gt;ORABPEL-09909   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error in onHeartBeat callback method&lt;br /&gt;description:  Error occured while invoking onHeartBeat() method on \"{0}\". The reason is {1}.&lt;br /&gt;fix:  Please ensure that the activation class \"{0}\" implements IHeartBeatAware interface and implements onHeartBeat() method correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-09910   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Activation agent is not heart beat aware&lt;br /&gt;description:  Activation agent \"{0}\" is not heart beat aware. Please implement IHeartBeatAware interface for your activation agent.&lt;br /&gt;&lt;br /&gt;ORABPEL-09911   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error getting partner wsdl&lt;br /&gt;description:  Error occured while getting partner \"{0}\" wsdl for process \"{1}\". The reason is {2}.&lt;br /&gt;fix:  Please ensure that the partner link name is correct.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-4474511221656722116?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/4474511221656722116/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=4474511221656722116' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4474511221656722116'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4474511221656722116'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-activation-agent-exceptions.html' title='BPEL Activation Agent Exceptions ORABPEL 09900 - 09911'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-6333090598797975117</id><published>2007-08-11T08:19:00.001-07:00</published><updated>2007-08-11T08:19:45.883-07:00</updated><title type='text'>BPEL XPath Exceptions ORABPEL 09500 - 09504</title><content type='html'>BPEL XPath Exceptions ORABPEL 09500 - 09504&lt;br /&gt;XPath Exceptions 09500 - 09504&lt;br /&gt;&lt;br /&gt;ORABPEL-09500   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  XPath expression failed to execute&lt;br /&gt;description:  Error while processing xpath expression, the expression is \"{0}\", the reason is {1}.&lt;br /&gt;fix:  Please verify the xpath query.&lt;br /&gt;&lt;br /&gt;ORABPEL-09501   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to register xpath function&lt;br /&gt;description:  Error while registering xpath function \"{0}\", the reason is {1}.&lt;br /&gt;fix:  Please verify the xpath function \"{0}\" is defined in the domain property file.&lt;br /&gt;&lt;br /&gt;ORABPEL-09502   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  XPath query syntax error&lt;br /&gt;description:  Syntax error while parsing xpath expression \"{0}\", at position \"{1}\" the exception is {2}.&lt;br /&gt;fix:  Please verify the xpath query \"{0}\" which is defined in BPEL process.&lt;br /&gt;&lt;br /&gt;ORABPEL-09503   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid xpath expression&lt;br /&gt;description:  Error while parsing xpath expression \"{0}\", the reason is {1}.&lt;br /&gt;fix:  Please verify the xpath query \"{0}\" which is defined in BPEL process.&lt;br /&gt;&lt;br /&gt;ORABPEL-09504   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  empty variable/expression result&lt;br /&gt;description:  xpath variable/expression expression \"{0}\" is empty at line {1}, when attempting reading/copying it.&lt;br /&gt;fix:  Please make sure the variable/expression result \"{0}\" is not empty.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-6333090598797975117?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/6333090598797975117/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=6333090598797975117' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6333090598797975117'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6333090598797975117'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-xpath-exceptions-orabpel-09500.html' title='BPEL XPath Exceptions ORABPEL 09500 - 09504'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-7100640153908158987</id><published>2007-08-11T08:18:00.002-07:00</published><updated>2007-08-11T08:19:17.979-07:00</updated><title type='text'>BPEL Web Service Exceptions ORABPEL 08000 - 08033</title><content type='html'>BPEL Web Service Exceptions ORABPEL 08000 - 08033&lt;br /&gt;Web Service Exceptions 08000 - 08033&lt;br /&gt;&lt;br /&gt;&lt;&gt;Parameters: 0: SOAPHeaderElement's QName 1: operation Name 2: SOAPException message&lt;br /&gt;ORABPEL-08000   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to set soap header&lt;br /&gt;description:  Failed to set SOAPHeaderElement \"{0}\" when invoking operation \"{1}\". Reason is \"{2}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-08001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to set soap header&lt;br /&gt;description:  Failed to set soap header \"{0}\" for operation \"{1}\", because \"{2}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-08002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to read wsdl&lt;br /&gt;description:  Error happened when reading wsdl at \"{0}\", because \"{1}\".&lt;br /&gt;fix:  Make sure wsdl exists at that URL and is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-08003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to read wsdl&lt;br /&gt;description:  Failed to read wsdl at \"{0}\", because \"{1}\".&lt;br /&gt;fix:  Make sure wsdl is valid. You may need to start the OraBPEL server, or make sure the related bpel process is deployed correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-08004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  WSDL type map not registered&lt;br /&gt;description:  Cannot find registered typeMap for WSDL definition \"{0}\".&lt;br /&gt;fix:  TypeMapping should be registered before it can be used by the WebService layer. This is a system exception, please report to admin.&lt;br /&gt;&lt;br /&gt;ORABPEL-08005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to get type for wrapper&lt;br /&gt;description:  Failed to get type for elment \"{1}\" of wrapper type \"{0}\".&lt;br /&gt;fix:  Please verify that element \"{1}\" of wrapper type \"{0}\" is defined with the valid XML type.&lt;br /&gt;&lt;br /&gt;ORABPEL-08006   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to read WSDL&lt;br /&gt;description:  Failed to read wsdl at \"{0}\" because \"{1}\".&lt;br /&gt;fix:  Please verify that WSDL at location \"{0}\" is valid.&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.08007 .fix", "Please verify that there is a port that implements portType \"{0}\" in the WSDL service \"{1}\"." },&lt;br /&gt;ORABPEL-08007   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed get wsdl port&lt;br /&gt;description:  Failed to get WSDL port that implements portType \"{0}\" from WSDL service \"{1} \".&lt;br /&gt;&lt;br /&gt;ORABPEL-08008   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed get wsdl service definition&lt;br /&gt;description:  Failed to get WSDL service \"{0}\" from WSDL definition \"{1}\".&lt;br /&gt;fix:  Please verify that WSDL service \"{0}\" is correctly defined in the WSDL file.&lt;br /&gt;&lt;br /&gt;ORABPEL-08009   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed get wsdl service definition&lt;br /&gt;description:  Failed to get a WSDL service that support the portType \"{0}\" in WSDL definition \"{1}\".&lt;br /&gt;fix:  Please verify that WSDL portType \"{0}\" is supported by a service in WSDL file.&lt;br /&gt;&lt;br /&gt;ORABPEL-08010   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed get operation definition&lt;br /&gt;description:  Failed to get the WSDL operation definition of \"{0}\" in portType \"{1}\".&lt;br /&gt;fix:  Please verify that operation \"{0}\" is defined in portType \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-08011   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find parterRole&lt;br /&gt;description:  Failed to get partnerRole \"{0}\" of partnerLink \"{1}\" in partnerLinkType \"{2} \".&lt;br /&gt;fix:  Please verify that partnerRole \"{0}\" is defined in partnerLinkType \"{2}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-08012   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find parterRole&lt;br /&gt;description:  Failed to resolve the java class for type \"{2}\" of part \"{1}\" of messageType \"{0}\".&lt;br /&gt;fix:  Please make sure the XML type \"{2}\" is defined in WSDL or XSD.&lt;br /&gt;&lt;br /&gt;ORABPEL-08013   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find partnerLinkType&lt;br /&gt;description:  PartnerLinkType \"{1}\" of partnerLink \"{0}\" is not found in either partner WSDL at \"{2}\" and process WSDL at \"{3}\".&lt;br /&gt;fix:  Please make sure the partnerLinkType is defined in the WSDL.&lt;br /&gt;&lt;br /&gt;ORABPEL-08014   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No such operation&lt;br /&gt;description:  Cannot find operation.&lt;br /&gt;fix:  The WSDL might have been changed and you might need to recompile your process.&lt;br /&gt;&lt;br /&gt;ORABPEL-08015   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No such operation&lt;br /&gt;description:  Cannot find operation \"{0}\" of portType \"{1}\" in WSDL at \"{2}\".&lt;br /&gt;fix:  The WSDL at \"{2}\" might have been changed and you might need to recompile and deploy the caller process.&lt;br /&gt;&lt;br /&gt;ORABPEL-08016   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find partnerLinkType 2&lt;br /&gt;description:  PartnerLinkType \"{0}\" is not found in WSDL at \"{1}\".&lt;br /&gt;fix:  Please make sure the partnerLinkType is defined in the WSDL.&lt;br /&gt;&lt;br /&gt;ORABPEL-08017   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find partnerLink&lt;br /&gt;description:  PartnerLink \"{0}\" has not been defined in the process \"{1}\" (revision \"{2} \").&lt;br /&gt;&lt;br /&gt;ORABPEL-08018   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot send jms message&lt;br /&gt;description:  The process \"{0}\" (revision \"{1}\") was unable to send a message to jms partner \"{2}\"; the exception is: {3}&lt;br /&gt;fix:  Please check that the messaging service for the application server has been configured properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-08019   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot create subscriber&lt;br /&gt;description:  The process \"{0}\" (revision \"{1}\") was unable to create a subscriber for jms partner \"{2}\"; the exception is: {3}&lt;br /&gt;&lt;br /&gt;ORABPEL-08020   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot shutdown subscriber&lt;br /&gt;description:  The process \"{0}\" (revision \"{1}\") was unable to close the subscriber for jms partner \"{2}\"; the exception is: {3}&lt;br /&gt;fix:  Please check the MOM Server for the connector has been running properly or not.&lt;br /&gt;&lt;br /&gt;ORABPEL-08021   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find partner wsdl&lt;br /&gt;description:  parnterLink \"{0}\" is not found in process \"{1}\" (revision \"{2}\")&lt;br /&gt;fix:  Please check the deployment descriptor of the process to find the correct partnerLink name&lt;br /&gt;&lt;br /&gt;ORABPEL-08022   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find binding operation&lt;br /&gt;description:  in WSDL located at \"{0}\", cannot find a binding operation of \"{2}\", portType \"{1}\"&lt;br /&gt;fix:  Please make sure the WSDL is valid&lt;br /&gt;&lt;br /&gt;ORABPEL-08032   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed get wsdl portType definition&lt;br /&gt;description:  Failed to get WSDL portType \"{0}\" from WSDL definition \"{1}\".&lt;br /&gt;fix:  Please verify that WSDL portType \"{0}\" is correctly defined in the WSDL file.&lt;br /&gt;&lt;br /&gt;ORABPEL-08033   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  EJB Transaction Error&lt;br /&gt;description:  EJB exception happened while invoking the partner&lt;br /&gt;fix:  Please verify partner service.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-7100640153908158987?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/7100640153908158987/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=7100640153908158987' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7100640153908158987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7100640153908158987'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-web-service-exceptions-orabpel.html' title='BPEL Web Service Exceptions ORABPEL 08000 - 08033'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-647938564363243707</id><published>2007-08-11T08:18:00.001-07:00</published><updated>2007-08-11T08:18:51.528-07:00</updated><title type='text'>BPEL License Exceptions ORABPEL 00800 - 00824</title><content type='html'>BPEL License Exceptions ORABPEL 00800 - 00824&lt;br /&gt;License Exceptions 00800 - 00824&lt;br /&gt;&lt;br /&gt;ORABPEL-00800   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No license error&lt;br /&gt;description:  A valid license for the \"{0}\" component (product \"{1}\", release \"{2}\") has not been found in the license file \"{3}\". This product is unable to continue without a valid license.&lt;br /&gt;fix:  If you have not obtained a license for your OraBPEL installation please contact Oracle for assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00801   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No license group error&lt;br /&gt;description:  A valid license group for the \"{0}\" product (release \"{1}\") has not been found in the license file \"{2}\". This product is unable to continue without a valid license.&lt;br /&gt;fix:  If you have not obtained a license for your OraBPEL installation please contact Oracle for assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00802   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  License file not found&lt;br /&gt;description:  Could not find licensing file \"{0}\". Your OraBPEL license file, named \"orabpel-license.xml\" must be located in the \"license\" directory in your OraBPEL installation directory.&lt;br /&gt;fix:  If this is the first time you are running OraBPEL, please start the server and then the console and a wizard will drive you through the generation of a 30-day evaluation license.\n If you have not obtained a license for your OraBPEL installation please contact Oracle for assistance (support@collaxa.com).&lt;br /&gt;&lt;br /&gt;ORABPEL-00803   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot create license key&lt;br /&gt;description:  Cannot create the license for key for component \"{0}\" due to exception: \"{1} \".&lt;br /&gt;&lt;br /&gt;ORABPEL-00804   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read license file&lt;br /&gt;description:  Cannot read the license file \"{0}\" due to exception: \"{1}\".&lt;br /&gt;fix:  Check that the license file \"{0}\" can be read by the server process.&lt;br /&gt;&lt;br /&gt;ORABPEL-00805   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot parse license file&lt;br /&gt;description:  Cannot parse the license file \"{0}\" due to exception: \"{1}\".&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00806   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot parse license key&lt;br /&gt;description:  Cannot parse the license key due to exception: \"{0}\".&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00807   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot write license file&lt;br /&gt;description:  Cannot write the licenses to XML due to exception: \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00808   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid component name&lt;br /&gt;description:  The component name \"{0}\" cannot be found in the license key. This OraBPEL license has been generated for another component.&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00809   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid product info&lt;br /&gt;description:  The product name \"{0}\" or the release \"{1}\" cannot be found in the license key. This OraBPEL license has been generated for another product.&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00810   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing product info&lt;br /&gt;description:  The product \"{0}\" or the release \"{1}\" cannot be found in the license key.&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00811   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing component name&lt;br /&gt;description:  The license component name cannot be found in the license key for component \"{0} \".&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00812   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid IP address&lt;br /&gt;description:  The localhost IP address \"{0}\" cannot be found in the license key for component \"{1}\". This OraBPEL license has been generated for another IP address.&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00813   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot lookup local IP&lt;br /&gt;description:  Cannot lookup the localhost IP address due to exception: \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00814   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Corrupt IP address&lt;br /&gt;description:  The license IP address cannot be parsed into the format: \"xxx.xxx.xxx.xxx\".&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00815   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing IP address&lt;br /&gt;description:  The license IP address cannot be found in the license key for component \"{0} \".&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00816   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid license owner&lt;br /&gt;description:  This \"{0}\" license has been issued to \"{1}\"; however, the owner specified in the license file is \"{2}\". This OraBPEL license has been generated for another user.&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00817   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing license owner&lt;br /&gt;description:  The license owner cannot be found in the license key for component \"{0}\".&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00818   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid start time&lt;br /&gt;description:  The OraBPEL license for component \"{0}\" is only valid after \"{1}\".&lt;br /&gt;fix:  The date and time settings for this machine have been set to an earlier date than the license creation date.&lt;br /&gt;&lt;br /&gt;ORABPEL-00819   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Corrupt start time&lt;br /&gt;description:  The license creation date cannot be parsed into a java date.&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00820   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing start time&lt;br /&gt;description:  The license creation date cannot be found in the license key for component \"{0} \".&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00821   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  License has expired&lt;br /&gt;description:  The OraBPEL license for component \"{0}\" expired on \"{1}\" and is no longer valid.&lt;br /&gt;fix:  Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00822   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Corrupt expiration date&lt;br /&gt;description:  The license expiration date cannot be parsed into a java date.&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00823   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Corrupt license units&lt;br /&gt;description:  The license units value cannot be parsed into an integral value.&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;br /&gt;&lt;br /&gt;ORABPEL-00824   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing expiration date&lt;br /&gt;description:  The license expiration date cannot be found in the license key for product \"{0} \".&lt;br /&gt;fix:  The license file may have been edited manually. Please contact Oracle for licensing assistance.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-647938564363243707?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/647938564363243707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=647938564363243707' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/647938564363243707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/647938564363243707'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-license-exceptions-orabpel-00800.html' title='BPEL License Exceptions ORABPEL 00800 - 00824'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-6848544787031724112</id><published>2007-08-11T08:17:00.002-07:00</published><updated>2007-08-11T08:18:17.814-07:00</updated><title type='text'>BPEL Sensor ExceptionsORABPEL 20300 - 20330</title><content type='html'>BPEL Sensor ExceptionsORABPEL 20300 - 20330&lt;br /&gt;Sensor Exceptions 20300 - 20330&lt;br /&gt;&lt;br /&gt;ORABPEL-20300   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Reports Error.&lt;br /&gt;description:  A problem occurred while processing reports data. {0}&lt;br /&gt;fix:  Please examine the log file to determine the problem.&lt;br /&gt;&lt;br /&gt;ORABPEL-20301   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Data Publisher failed.&lt;br /&gt;description:  The Reporting Data Publisher {0} failed.&lt;br /&gt;fix:  Please examine the log file for more details.&lt;br /&gt;&lt;br /&gt;ORABPEL-20302   &lt;br /&gt;severity:  2&lt;br /&gt;type:  warning&lt;br /&gt;name:  JMS connection setup failed&lt;br /&gt;description:  A problem occurred while setting up a connection to the JMS Destination {0} using the connection factory {1}.&lt;br /&gt;fix:  Please verify the JMS configuration as well as the error to determine the problem.&lt;br /&gt;&lt;br /&gt;ORABPEL-20303   &lt;br /&gt;severity:  8&lt;br /&gt;type:  error&lt;br /&gt;name:  JMS publish failed&lt;br /&gt;description:  An error occurred while publishing reporting data to the JMS destination \"{0} \".&lt;br /&gt;fix:  Please verify the JMS destination is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-20304   &lt;br /&gt;severity:  8&lt;br /&gt;type:  error&lt;br /&gt;name:  JMS destination lookup failed&lt;br /&gt;description:  The JMS destination lookup failed. The related reporting data will not be published Please ensure the JNDI name {0) is valid.&lt;br /&gt;fix:  Please configure the JMS Destination or correct its JNDI name.&lt;br /&gt;&lt;br /&gt;ORABPEL-20305   &lt;br /&gt;severity:  8&lt;br /&gt;type:  error&lt;br /&gt;name:  JMS connection factory lookup failed&lt;br /&gt;description:  The JMS connection factory lookup failed. The related reporting data will not be published Please ensure the JNDI name {0) is valid.&lt;br /&gt;fix:  Please verify the JMS configuration.&lt;br /&gt;&lt;br /&gt;ORABPEL-20306   &lt;br /&gt;severity:  2&lt;br /&gt;type:  warning&lt;br /&gt;name:  JMS connection cleanup failed&lt;br /&gt;description:  A problem occurred while releasing the JNDI resources used to publish to the destination {0}.&lt;br /&gt;fix:  Please verify the JMS configuration as well as the error to determine the problem.&lt;br /&gt;&lt;br /&gt;ORABPEL-20307   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Custom data publisher could not be located&lt;br /&gt;description:  The custom data publisher class {0} could not be loaded.&lt;br /&gt;fix:  Please verify the class file and all dependencies can be loaded from the suitcase or the application classpath.&lt;br /&gt;&lt;br /&gt;ORABPEL-20308   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Custom data publisher initialization error&lt;br /&gt;description:  The custom data publisher class {0} could not be initialized properly.&lt;br /&gt;fix:  Please examine the log file for details.&lt;br /&gt;&lt;br /&gt;ORABPEL-20309   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Sensor name not defined&lt;br /&gt;description:  The sensor could not be registered because it has no name.&lt;br /&gt;fix:  Please specify the sensor name&lt;br /&gt;&lt;br /&gt;ORABPEL-20310   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Sensor name already in use.&lt;br /&gt;description:  The sensor \"{0}\" could not be registered because a sensor with the same name is already registered.&lt;br /&gt;fix:  Please specify a unique sensor name.&lt;br /&gt;&lt;br /&gt;ORABPEL-20311   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid sensor specified in sensor-sensor action association.&lt;br /&gt;description:  The sensor-sensor action association for sensor \"{0}\", action \"{1}\" could not be created because no sensor named \"{2}\" exists in the registry.&lt;br /&gt;fix:  Please specify a valid sensor name in the association.&lt;br /&gt;&lt;br /&gt;ORABPEL-20312   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid sensor action specified in sensor-sensor action association.&lt;br /&gt;description:  The sensor-sensor action association for sensor \"{0}\", action \"{1}\" could not be created because no sensor action named \"{2}\" exists in the registry.&lt;br /&gt;fix:  Please register the sensor action before specifying an assocation.&lt;br /&gt;&lt;br /&gt;ORABPEL-20313   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Sensor action name not defined&lt;br /&gt;description:  The sensor action could not be registered because it has no name.&lt;br /&gt;fix:  Please specify the sensor action name.&lt;br /&gt;&lt;br /&gt;ORABPEL-20314   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Sensor action name already in use.&lt;br /&gt;description:  The sensor action \"{0}\" could not be registered because a sensor action with the same name is already registered.&lt;br /&gt;fix:  Please specify a unique sensor action name.&lt;br /&gt;&lt;br /&gt;ORABPEL-20315   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Sensor registry error.&lt;br /&gt;description:  An error occurred while loading sensors and sensor actions for process {1), revision {2} in domain {0}.&lt;br /&gt;fix:  Please examine the log file for more details.&lt;br /&gt;&lt;br /&gt;ORABPEL-20316   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing sensor target.&lt;br /&gt;description:  No target was specified for sensor {0}.&lt;br /&gt;fix:  Please specify a target.&lt;br /&gt;&lt;br /&gt;ORABPEL-20317   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid variable sensor target.&lt;br /&gt;description:  The target {1) for sensor {0} is invalid.&lt;br /&gt;fix:  Please specify a $ before the variable name and make sure the variable exists.&lt;br /&gt;&lt;br /&gt;ORABPEL-20318   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid variable sensor.&lt;br /&gt;description:  The configuration for sensor {0} is missing.&lt;br /&gt;fix:  The element must be specified for variable sensors. Please complete the variable sensor definition.&lt;br /&gt;&lt;br /&gt;ORABPEL-20319   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid variable sensor configuration.&lt;br /&gt;description:  Sensor {0} is a variable sensor but has activity or fault configurations defined.&lt;br /&gt;fix:  Please remove the unnecessary configuration elements.&lt;br /&gt;&lt;br /&gt;ORABPEL-20320   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid fault sensor configuration.&lt;br /&gt;description:  Sensor {0} is a fault sensor but has activity or variable configurations defined.&lt;br /&gt;fix:  Please remove the unnecessary configuration elements.&lt;br /&gt;&lt;br /&gt;ORABPEL-20321   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid activity sensor.&lt;br /&gt;description:  The configuration for sensor {0} is missing.&lt;br /&gt;fix:  The element must be specified for activity sensors. Please complete the activity sensor definition.&lt;br /&gt;&lt;br /&gt;ORABPEL-20322   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid activity sensor configuration.&lt;br /&gt;description:  Sensor {0} is an activity sensor but has variable or fault configurations defined.&lt;br /&gt;fix:  Please remove the unnecessary configuration elements.&lt;br /&gt;&lt;br /&gt;ORABPEL-20323   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid sensor kind.&lt;br /&gt;description:  Sensor {0} is invalid because {1} is an unrecognized sensor kind.&lt;br /&gt;fix:  Please specify a valid sensor kind.&lt;br /&gt;&lt;br /&gt;ORABPEL-20324   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid sensor action.&lt;br /&gt;description:  Sensor action {0} is invalid because it publishes to a JMS destination but no destination has been specified.&lt;br /&gt;fix:  Please specify the JMS destination property in the sensor action.&lt;br /&gt;&lt;br /&gt;ORABPEL-20325   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid sensor action.&lt;br /&gt;description:  Sensor action {0} is invalid because it publishes to a JMS destination but no connection factory has been specified.&lt;br /&gt;fix:  Please specify the JMS connection factory.&lt;br /&gt;&lt;br /&gt;ORABPEL-20326   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid sensor action.&lt;br /&gt;description:  Sensor action {0} is invalid because it publishes to a custom publisher but no publisher class has been specified.&lt;br /&gt;fix:  Please specify the fully qualified class name of the custom data publisher.&lt;br /&gt;&lt;br /&gt;ORABPEL-20327   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid publish type.&lt;br /&gt;description:  Sensor action {0} is invalid because {1} is an unrecognized publish type.&lt;br /&gt;fix:  Please specify a valid publish type.&lt;br /&gt;&lt;br /&gt;ORABPEL-20328   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid sensor association.&lt;br /&gt;description:  Sensor action {0} is invalid because the associated sensor {1} cannot be found.&lt;br /&gt;fix:  Please ensure sensor names used in the sensor action file match those defined in the sensor file.&lt;br /&gt;&lt;br /&gt;ORABPEL-20329   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid sensor action.&lt;br /&gt;description:  Sensor action {0} is invalid because the connection name is not specified.&lt;br /&gt;fix:  Please specify the connection name property in the sensor action.&lt;br /&gt;&lt;br /&gt;ORABPEL-20330   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  JMS Adapter Sensor Action Publisher error.&lt;br /&gt;description:  The Sensor.xsd schema could not be loaded from the classpath.&lt;br /&gt;fix:  Please ensure the Sensor.xsd file has not been modified in any way.&lt;br /&gt;&lt;br /&gt;ORABPEL-20330   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  JMS Adapter Sensor Action Publisher error.&lt;br /&gt;description:  The JMS Adapter could not be loaded from the classpath.&lt;br /&gt;fix:  Please ensure the JMS adapter has been properly deployed in the application server.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-6848544787031724112?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/6848544787031724112/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=6848544787031724112' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6848544787031724112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6848544787031724112'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-sensor-exceptionsorabpel-20300.html' title='BPEL Sensor ExceptionsORABPEL 20300 - 20330'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-1693211376581162097</id><published>2007-08-11T08:17:00.001-07:00</published><updated>2007-08-11T08:17:46.632-07:00</updated><title type='text'>BPEL Dispatch Exceptions ORABPEL 05000 - 05006</title><content type='html'>BPEL Dispatch Exceptions ORABPEL 05000 - 05006&lt;br /&gt;Dispatch Exceptions 05000 - 05006&lt;br /&gt;&lt;br /&gt;ORABPEL-05000   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot get dispatcher trace&lt;br /&gt;description:  Failed to fetch the dispatcher trace for engine \"{0}\"; the exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Message handler not registered&lt;br /&gt;description:  The message handler for class \"{0}\" has not been registered.&lt;br /&gt;&lt;br /&gt;ORABPEL-05002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Message handle error&lt;br /&gt;description:  An exception occurred while attempting to process the message \"{0}\"; the exception is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-05003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No message local handler&lt;br /&gt;description:  No message local handler has been implemented for the message \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-05004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Dispatcher send error&lt;br /&gt;description:  An error occurred while sending a batch message to the dispatch queue. The exception is: {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-05005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot send JMS message&lt;br /&gt;description:  The process domain was unable to send a message to the JMS queue \"{0}\". The exception reported is: {1}&lt;br /&gt;fix:  Please check that the JMS service for the application server has been configured properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-05006   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Dispatcher schedule error&lt;br /&gt;description:  An error occurred while scheduling a batch message with the dispatcher. The exception is: {0}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-1693211376581162097?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/1693211376581162097/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=1693211376581162097' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/1693211376581162097'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/1693211376581162097'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-dispatch-exceptions-orabpel-05000.html' title='BPEL Dispatch Exceptions ORABPEL 05000 - 05006'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-4472519748540229221</id><published>2007-08-11T08:16:00.002-07:00</published><updated>2007-08-11T08:17:17.385-07:00</updated><title type='text'>BPEL Descriptor Exceptions ORABPEL 00500 - 00534</title><content type='html'>BPEL Descriptor Exceptions ORABPEL 00500 - 00534&lt;br /&gt;Descriptor Exceptions 00500 - 00534&lt;br /&gt;&lt;br /&gt;ORABPEL-00500   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing activation attribute&lt;br /&gt;description:  Missing activation attribute \"{0}\"; this attribute must contain a value in order for the process to initialize properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-00501   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Archive descriptor not found&lt;br /&gt;description:  The archive descriptor file \"{0}\" was not found in the directory \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00502   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Empty archive property&lt;br /&gt;description:  The property \"{0}\" for archive manager \"{1}\" cannot be null or empty.&lt;br /&gt;fix:  Please check that all the properties defined for the archive manager \"{0}\" in the \"[CX_HOME]/server-default/system/config_archive.xml\" configuration file have a value.&lt;br /&gt;&lt;br /&gt;ORABPEL-00503   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing xpath function property&lt;br /&gt;description:  The property \"{0}\" for xpath function \"{1}\" cannot be null or empty.&lt;br /&gt;fix:  Please check that all the properties defined for the function \"{1}\" in the \"xpath-functions.xml\" configuration file have a value.&lt;br /&gt;&lt;br /&gt;ORABPEL-00504   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Domain descriptor not found&lt;br /&gt;description:  The process domain descriptor file \"{0}\" was not found in the directory \"{1} \".&lt;br /&gt;&lt;br /&gt;ORABPEL-00505   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing domain property&lt;br /&gt;description:  The property \"{0}\" has not been specified for this process domain.&lt;br /&gt;fix:  Please check the \"default.xml\" configuration file for the process domain. The property \"{0}\" should be specified therein.&lt;br /&gt;&lt;br /&gt;ORABPEL-00506   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot backup domain descriptor&lt;br /&gt;description:  An attempt to backup the descriptor for domain \"{0}\" to the file \"{1}\" has failed. The exception reported is: \"{3}\".&lt;br /&gt;fix:  Please ensure that the directory \"{2}\" exists and is writable by the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00507   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot save domain descriptor&lt;br /&gt;description:  An attempt to save the descriptor for domain \"{0}\" to the file \"{1}\" has failed. The exception reported is: \"{3}\".&lt;br /&gt;fix:  Please ensure that the directory \"{2}\" exists and is writable by the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00508   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing server property&lt;br /&gt;description:  The property \"{0}\" has not been specified in the server descriptor.&lt;br /&gt;fix:  Please check the configuration file \"{1}\" for the property \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00509   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Incompatible archive descriptor version&lt;br /&gt;description:  The version of the archive descriptor at \"{0}\" is incompatible with the current version of the process domain; the expected version is \"{1}\".&lt;br /&gt;fix:  Your archive descriptor has probably been configured for a previous release.&lt;br /&gt;&lt;br /&gt;ORABPEL-00510   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Incompatible domain descriptor version&lt;br /&gt;description:  The version of the domain descriptor at \"{0}\" is incompatible with the current version of the process domain; the expected version is \"{1}\".&lt;br /&gt;fix:  Your domain descriptor has probably been configured for a previous release.&lt;br /&gt;&lt;br /&gt;ORABPEL-00511   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Incompatible server descriptor version&lt;br /&gt;description:  The version of the server descriptor at \"{0}\" is incompatible with the current version of the process server; the expected version is \"{1}\".&lt;br /&gt;fix:  Your server descriptor has probably been configured for a previous release.&lt;br /&gt;&lt;br /&gt;ORABPEL-00512   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Incompatible xpath descriptor version&lt;br /&gt;description:  The version of the xpath descriptor at \"{0}\" is incompatible with the current version of the process domain; the expected version is \"{1}\".&lt;br /&gt;fix:  Your xpath descriptor has probably been configured for a previous release.&lt;br /&gt;&lt;br /&gt;ORABPEL-00513   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  OraBPEL loader error&lt;br /&gt;description:  An error occurred while attempting to initialize the OraBPEL run-time system from file \"{0}\". The exception reported is: \"{1}\".&lt;br /&gt;fix:  Please check that the OraBPEL server descriptor file \"{0}\" exists.&lt;br /&gt;&lt;br /&gt;ORABPEL-00514   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid domain descriptor&lt;br /&gt;description:  The file \"{0}\" is not a valid process domain descriptor file. The exception reported is: \"{1}\".&lt;br /&gt;fix:  Please make sure that the format of the process domain descriptor file is valid and restart the application server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00515   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid archive descriptor&lt;br /&gt;description:  The file \"{0}\" is not a valid archive descriptor file. The exception reported is: \"{1}\"&lt;br /&gt;fix:  Please make sure that the format of the archive descriptor file is valid and restart the application server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00516   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid xpath descriptor&lt;br /&gt;description:  The file \"{0}\" is not a valid xpath function descriptor file. The exception reported is: \"{1}\".&lt;br /&gt;fix:  Please make sure that the format of the xpath function descriptor file is valid and restart the application server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00517   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid Process Descriptor&lt;br /&gt;description:  The file \"{0}\" is not a valid process descriptor. The following exception occurred while loading the descriptor: \"{1}\".&lt;br /&gt;fix:  Please make sure that the process descriptor has specified all the necessary information in the specified format.&lt;br /&gt;&lt;br /&gt;ORABPEL-00518   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating property content handler&lt;br /&gt;description:  An error occurred while attempting to instantiate the property content handler class \"{0}\" for property name \"{1}\". The exception reported was: \"{2}\".&lt;br /&gt;fix:  Please check the implementation of your property content handler and deploy the class to the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00519   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Property content handler class not valid&lt;br /&gt;description:  The property content handler class \"{0}\" for property name \"{1}\" does not implement the IPropertyContentHandler interface. All content handlers must implement this interface.&lt;br /&gt;fix:  Please ensure that the class \"{0}\" implements the IPropertyContentHandler interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-00520   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find property file&lt;br /&gt;description:  An error occurred while attempting to find the OraBPEL property file \"{0}\".&lt;br /&gt;fix:  Please check that the OraBPEL property file \"{0}\" exists.&lt;br /&gt;&lt;br /&gt;ORABPEL-00521   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot lookup process object&lt;br /&gt;description:  The object bound to the name \"{0}\" has not been defined for the process \"{1} \".&lt;br /&gt;fix:  Please ensure that the name \"{0}\" refers to a set of properties in the process descriptor.&lt;br /&gt;&lt;br /&gt;ORABPEL-00522   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot save suitcase descriptor&lt;br /&gt;description:  An attempt to save a suitcase descriptor to the file \"{0}\" has failed. The exception reported is: \"{2}\".&lt;br /&gt;fix:  Please ensure that the directory \"{1}\" exists and is writable by the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00523   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing process attribute&lt;br /&gt;description:  The process descriptor file \"{0}\" is missing the attribute \"{1}\". This attribute must contain a value in order for the process to initialize properly.&lt;br /&gt;fix:  Please ensure that the process descriptor file \"{0}\" has specified the necessary information in the specified format.&lt;br /&gt;&lt;br /&gt;ORABPEL-00524   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Process properties not found&lt;br /&gt;description:  The process properties \"{0}\" have not been defined for the process \"{1}\".&lt;br /&gt;fix:  Please ensure that the process properties \"{0}\" are defined in your process descriptor.&lt;br /&gt;&lt;br /&gt;ORABPEL-00525   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing task template attribute&lt;br /&gt;description:  The task template descriptor file \"{0}\" is missing the attribute \"{1}\". This attribute must contain a value in order for the process to initialize properly.&lt;br /&gt;fix:  Please ensure that the task template descriptor file \"{0}\" has specified the necessary information in the specified format.&lt;br /&gt;&lt;br /&gt;ORABPEL-00526   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Task template properties not found&lt;br /&gt;description:  The task properties \"{0}\" have not been defined for the task template \"{1} \".&lt;br /&gt;&lt;br /&gt;ORABPEL-00527   &lt;br /&gt;severity:  5&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid task descriptor&lt;br /&gt;description:  The descriptor for the task template \"{0}\" is invalid; the exception is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-00528   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot backup server descriptor&lt;br /&gt;description:  An attempt to backup the descriptor for the OraBPEL server to the file \"{0}\" has failed. The exception reported is: \"{2}\".&lt;br /&gt;fix:  Please ensure that the directory \"{1}\" exists and is writable by the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00529   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot save server descriptor&lt;br /&gt;description:  An attempt to save the descriptor for the OraBPEL server to the file \"{0}\" has failed. The exception reported is: \"{2}\".&lt;br /&gt;fix:  Please ensure that the directory \"{1}\" exists and is writable by the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00530   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Incompatible message handler descriptor version&lt;br /&gt;description:  The version of the message handler descriptor at \"{0}\" is incompatible with the current version of the process domain; the expected version is \"{1}\".&lt;br /&gt;fix:  Your message handler descriptor has probably been configured for a previous release.&lt;br /&gt;&lt;br /&gt;ORABPEL-00531   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing message handler property&lt;br /&gt;description:  The property \"{0}\" for message handler \"{1}\" cannot be null or empty.&lt;br /&gt;fix:  Please check that all the properties defined for the handler \"{1}\" in the \"message-handlers.xml\" configuration file have a value.&lt;br /&gt;&lt;br /&gt;ORABPEL-00532   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing message handler attribute&lt;br /&gt;description:  The message handler element \"{0}\" is missing the attribute \"{1}\". This attribute must contain a value in order for the message handler to initialize properly.&lt;br /&gt;fix:  Please ensure that the message handler element \"{0}\" has specified the necessary information in the specified format.&lt;br /&gt;&lt;br /&gt;ORABPEL-00533   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing message handler reference&lt;br /&gt;description:  The message handler reference \"{1}\" cannot be found in the descriptor file \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00534   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid message handler descriptor&lt;br /&gt;description:  The file \"{0}\" does not contain a valid message handler descriptor. The exception reported is: \"{1}\".&lt;br /&gt;fix:  Please check the format of the message handler descriptor file and restart the application server.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-4472519748540229221?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/4472519748540229221/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=4472519748540229221' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4472519748540229221'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4472519748540229221'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-descriptor-exceptions-orabpel.html' title='BPEL Descriptor Exceptions ORABPEL 00500 - 00534'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-2084953206782164566</id><published>2007-08-11T08:16:00.001-07:00</published><updated>2007-08-11T08:16:14.028-07:00</updated><title type='text'>BPEL Compiler Exceptions ORABPEL 01000 - 01036</title><content type='html'>BPEL Compiler Exceptions ORABPEL 01000 - 01036&lt;br /&gt;Compiler Exceptions 01000 - 01036&lt;br /&gt;&lt;br /&gt;ORABPEL-01000   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Internal compiler error&lt;br /&gt;description:  An internal error has occurred while attempting to process the BPEL process file \"{0}\"; the exception is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-01001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Process descriptor not found&lt;br /&gt;description:  The BPEL process descriptor file \"{0}\" cannot be found.&lt;br /&gt;&lt;br /&gt;ORABPEL-01002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Domain directory not found&lt;br /&gt;description:  The process cannot be deployed to domain \"{0}\" because the domain directory \"{1}\" cannot be found or cannot be written to.&lt;br /&gt;fix:  Please check your -deploy option value; \"{0}\" must refer to a domain that has been installed locally on your machine.&lt;br /&gt;&lt;br /&gt;ORABPEL-01003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to create build directory&lt;br /&gt;description:  Failed to create a build directory for the BPEL archive in \"{0}\"; exception reported is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-01004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to create classes directory&lt;br /&gt;description:  Failed to create the classes output directory for the BPEL archive in \"{0}\"; exception reported is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-01005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to compile classes&lt;br /&gt;description:  Failed to compile the generated BPEL classes for \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-01006   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing build directory&lt;br /&gt;description:  The build directory for the BPEL process has not been specified.&lt;br /&gt;&lt;br /&gt;ORABPEL-01007   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot access build directory&lt;br /&gt;description:  The build directory \"{0}\" for the BPEL process cannot be found or accessed.&lt;br /&gt;&lt;br /&gt;ORABPEL-01008   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to include file&lt;br /&gt;description:  Failed to include the file \"{0}\" with the BPEL archive due to exception: {1}&lt;br /&gt;fix:  Please check that the file \"{0}\" exists and is readable.&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.01009.type", "internal-error" },&lt;br /&gt;ORABPEL-01009   &lt;br /&gt;severity:  10&lt;br /&gt;name:  Class Not Found&lt;br /&gt;description:  Cannot find class {0}&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.01010.type", "internal-error" },&lt;br /&gt;ORABPEL-01010   &lt;br /&gt;severity:  10&lt;br /&gt;name:  Process Generation Failed&lt;br /&gt;description:  {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-01011   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid Revision Tag&lt;br /&gt;description:  The specified revision tag \"{0}\" is invalid. Valid revision tags may contain the following characters: a letter, a digit or any of [\"$\", \"_\", \"-\", \".\"]. And its max length is 50.&lt;br /&gt;&lt;br /&gt;ORABPEL-01012   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  file not found in suitcase&lt;br /&gt;description:  File \"{0}\" cannot be found in the current suitcase. File path must to be relative to the project directory.&lt;br /&gt;&lt;br /&gt;ORABPEL-01013   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  BPEL process source not found&lt;br /&gt;description:  The \".bpel\" file for BPEL Process \"{0}\" cannot be found in the current directory or the specified sourcepath.&lt;br /&gt;&lt;br /&gt;ORABPEL-01014   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  JBPEL process source not supported&lt;br /&gt;description:  JBPEL processes are not supported as of the RC-1 release; JBPEL functionality is now accessible via standard BPEL processes. For more information regarding JBPEL or assistance in porting your JBPEL flows to BPEL, contact \"support@collaxa.com\"&lt;br /&gt;&lt;br /&gt;ORABPEL-01015   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Multiple operations&lt;br /&gt;description:  For synchronous BPEL process, only one operation is supported in this version.&lt;br /&gt;&lt;br /&gt;ORABPEL-01016   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  WSDL source not found&lt;br /&gt;description:  The \".wsdl\" file for BPEL Process \"{0}\" cannot be found in the current directory or the specified sourcepath.&lt;br /&gt;&lt;br /&gt;ORABPEL-01017   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to get WSDL directory&lt;br /&gt;description:  Failed to get the directory which contains WSDL file \"{0}\", because \"{1}\". The WSDL file needs to be accessible from the file system.&lt;br /&gt;&lt;br /&gt;ORABPEL-01018   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to copy file&lt;br /&gt;description:  Failed to copy file from \"{0}\" to \"{1}\", because \"{2}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-01019   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  WSDL reference error&lt;br /&gt;description:  If not referenced via HTTP, WSDL or XSD can only be referenced in the project directory or the subdirectory of the project directory. The file being imported \"{0}\", is not in project directory \"{1}\" or its subdirectory.&lt;br /&gt;&lt;br /&gt;ORABPEL-01020   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to parse bpel source&lt;br /&gt;description:  Failed to parse bpel source \"{0}\", the error is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-01021   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  BPEL validation failed&lt;br /&gt;description:  BPEL source validation failed, the errors are: \n {0}.&lt;br /&gt;&lt;br /&gt;ORABPEL-01022   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  BPEL syntax validation failed&lt;br /&gt;description:  BPEL syntax validation failed to validate \"{0}\", the error is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-01023   &lt;br /&gt;severity:  0&lt;br /&gt;type:  warning&lt;br /&gt;name:  BPEL validation has warnings&lt;br /&gt;description:  The following warnings were reported during validation: \n {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-01024   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find operation in portType&lt;br /&gt;description:  The operation \"{0}\" is not found in portType \"{1}\".&lt;br /&gt;fix:  Please make sure that operation \"{0}\" exists.&lt;br /&gt;&lt;br /&gt;ORABPEL-01025   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find input message&lt;br /&gt;description:  The input message of operation \"{0}\" is not found in portType \"{1}\".&lt;br /&gt;fix:  Please make sure that \"message=\" is defined for the input of the operation.&lt;br /&gt;&lt;br /&gt;ORABPEL-01026   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to create bpel validator&lt;br /&gt;description:  Failed to create bpel validator using schemas: \"{0}\". Error is \"{1}\".&lt;br /&gt;fix:  Please make sure schemas \"{0}\" are valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-01027   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find part in message&lt;br /&gt;description:  Cannot find part \"{1}\" in messageType \"{0}\". Make sure the assign def is correct.&lt;br /&gt;&lt;br /&gt;ORABPEL-01028   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing propertyAlias&lt;br /&gt;description:  Cannot find propertyAlias definition which associates the correlation \"{0}\" of correlationSet \"{1}\" to messageType \"{2}\".&lt;br /&gt;fix:  Please define the mentioned propertyAlias in the WSDL file.&lt;br /&gt;&lt;br /&gt;ORABPEL-01029   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing bpel property definition in WSDL&lt;br /&gt;description:  Cannot find property definition for \"{0}\" in any of the WSDLs.&lt;br /&gt;fix:  Please define the mentioned bpel property in the WSDL file.&lt;br /&gt;&lt;br /&gt;ORABPEL-01030   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing bpel property definition in WSDL&lt;br /&gt;description:  Cannot generate debug model file \"{1}\" from input \"{0}\". Because \"{2}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-01031   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  WSDL generator cannot handle the number portTypes&lt;br /&gt;description:  WSDLGenerator cannot support \"{0}\"&lt;br /&gt;&lt;br /&gt;ORABPEL-01032   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid process identifier&lt;br /&gt;description:  The specified process id \"{0}\" is invalid. Valid process identifiers may start with a letter, a \"$\" or \"_\" character; process characters (other than the first character) include a letter, a digit, a \"$\", a \"_\" or \"-\" character. And the max length is 100.&lt;br /&gt;fix:  Please make sure that the process identifier specified in the deployment descriptor conforms to the specified format.&lt;br /&gt;&lt;br /&gt;ORABPEL-01033   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  deployment descriptor format error&lt;br /&gt;description:  Error when parsing the deployment descriptor \"{0}\", because \"{1}\"&lt;br /&gt;fix:  Fix the deployment descriptor&lt;br /&gt;&lt;br /&gt;ORABPEL-01034   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  deployment descriptor validation error&lt;br /&gt;description:  Deployment descriptor is invalid. The errors are: {0}&lt;br /&gt;fix:  Please make the suggested fixes and recompile the BPEL project.&lt;br /&gt;&lt;br /&gt;ORABPEL-01035   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  deployment descriptor validation warning&lt;br /&gt;description:  Validation of deployment descriptor genereated warnings: {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-01036   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot compute process guid&lt;br /&gt;description:  Failed to compute process guid using suitcase contents \"{0}\"; exception is: {1}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-2084953206782164566?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/2084953206782164566/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=2084953206782164566' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2084953206782164566'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2084953206782164566'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-compiler-exceptions-orabpel-01000.html' title='BPEL Compiler Exceptions ORABPEL 01000 - 01036'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-8129509628218902804</id><published>2007-08-11T08:15:00.001-07:00</published><updated>2007-08-11T08:15:48.825-07:00</updated><title type='text'>BPEL Admin Exceptions ORABPEL 00200 - 00234</title><content type='html'>BPEL Admin Exceptions ORABPEL 00200 - 00234&lt;br /&gt;Admin Exceptions 00200 - 00234&lt;br /&gt;&lt;br /&gt;ORABPEL-00200   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  SOAP server URL not specified&lt;br /&gt;description:  The SOAP server URL for the OraBPEL server has not been specified in the configuration file \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00201   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Caller not permitted&lt;br /&gt;description:  Cannot return system authentication token for caller \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00202   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid domain id&lt;br /&gt;description:  The domain identifier \"{0}\" is not valid. Domain identifiers may start with a letter, a \"$\" or \"_\" character; domain characters (other than the first character) include a letter, a digit, a \"$\", a \"_\" or \"-\" character. Additionally, the domain identifier \"xmllib\" may not be used; this identifier is reserved.&lt;br /&gt;&lt;br /&gt;ORABPEL-00203   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid domain directory&lt;br /&gt;description:  The domain directory \"{0}\" does not match the domain identifier \"{1}\" retrieved from the configuration files. The domain directory name must match the domain identifier.&lt;br /&gt;&lt;br /&gt;ORABPEL-00204   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing domain id&lt;br /&gt;description:  The domain descriptor at \"{0}\" does not contain a domain identifier (attribute \"id\"). The domain derives its id from the descriptor, not the directory name.&lt;br /&gt;&lt;br /&gt;ORABPEL-00205   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Domain already exists&lt;br /&gt;description:  A domain with identifier \"{0}\" already exists at \"{1}\". Please specify another domain identifier.&lt;br /&gt;&lt;br /&gt;ORABPEL-00206   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Domain creation error&lt;br /&gt;description:  An exception occurred while attempting to create the domain \"{0}\" at path \"{1} \". The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-00207   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Domain create directory error&lt;br /&gt;description:  An exception occurred while attempting to create the domain directory \"{1}\" for domain \"{0}\". Please check that the directory does not already exist.&lt;br /&gt;&lt;br /&gt;ORABPEL-00208   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Maximum number of domains exceeded&lt;br /&gt;description:  Failed to create the domain \"{0}\"; the maximum number of domains ({1}) has been reached.&lt;br /&gt;&lt;br /&gt;ORABPEL-00209   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Domain id not found&lt;br /&gt;description:  The domain identifier \"{0}\" has not been registered with the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00210   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Domain ref not found&lt;br /&gt;description:  The domain ref \"{0}\" has not been registered with the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00211   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error reading domain index&lt;br /&gt;description:  An exception occurred while reading the domain index from the datastore; the exception reported is: {0}&lt;br /&gt;fix:  Please check that: the machine hosting the datasource is physically connected to the network, and the connection pool properties as defined in the application server startup properties are valid. and the database schema for the OraBPEL server has been installed in the datasource.&lt;br /&gt;&lt;br /&gt;ORABPEL-00212   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error updating domain index&lt;br /&gt;description:  An exception occurred while writing the domain index (id\"{0}\", ref \"{1}\") to the datastore; the exception reported is: {2}&lt;br /&gt;fix:  Please check that:&lt;br /&gt; + the machine hosting the datasource is physically connected to the network.&lt;br /&gt; + the connection pool properties as defined in the application server startup properties are valid.&lt;br /&gt; + the database schema for the OraBPEL server has been installed in the datasource.&lt;br /&gt;&lt;br /&gt;ORABPEL-00213   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error writing domain index&lt;br /&gt;description:  An exception occurred while removing the domain index (id \"{0}\", ref \"{1}\") from the datastore; the exception reported is: {2}&lt;br /&gt;fix:  Please check that:&lt;br /&gt; + the machine hosting the datasource is physically connected to the network.&lt;br /&gt; + the connection pool properties as defined in the application server startup properties are valid.&lt;br /&gt; + the database schema for the OraBPEL server has been installed in the datasource.&lt;br /&gt;&lt;br /&gt;ORABPEL-00214   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  OraBPEL server not initialized&lt;br /&gt;description:  The OraBPEL server has not finished initializing yet; the initialization process may be complete in a few moments.&lt;br /&gt;&lt;br /&gt;ORABPEL-00215   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating JDK adaptor&lt;br /&gt;description:  An error occurred while attempting to instantiate the JDK adaptor class \"{0}\" for runtime version \"{1}\". The exception reported was: {2}.&lt;br /&gt;fix:  Please check the implementation of your JDK adaptor and redeploy the class to the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-00216   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  JDK adaptor class incorrect interface&lt;br /&gt;description:  The JDK adaptor class \"{0}\" for runtime version \"{1}\" does not implement the IJDKAdaptor interface. All JDK adaptors must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-00217   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  JDK version not supported&lt;br /&gt;description:  The JDK version \"{0}\" is not supported by the OraBPEL domain runtime. Currently only JDK version 1.4 is supported.&lt;br /&gt;&lt;br /&gt;ORABPEL-00218   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Wrong Xalan version&lt;br /&gt;description:  An unsupported version of the Xalan library was detected in your classpath. The JDK 1.4.1 rt.jar currently bundles the 2.2D11 beta version of Xalan; OraBPEL requires the 2.5.0 release version.&lt;br /&gt;fix:  There are several ways to use a later version of Xalan-Java and override the one packaged with the JDK: For the SUN JDK 1.4, use the Endorsed Standards Override Mechanism. Place the xalan.jar, xercesImpl.jar, and xml-apis.jar in the JAVA_HOME/lib/endorsed directory, where JAVA_HOME is where the runtime software is installed. Use the -Xbootclasspath java commandline option to prepend the new xalan.jar, xercesImpl.jar, and xml-apis.jar to the boot class path. When running Xalan-Java: java -Xbootclasspath/p:PATH org.apache.xalan.xslt.Process where PATH is a colon seperated lists of the paths to the files xalan.jar, xercesImpl.jar, and xml-apis.jar (e.g. bin/xalan.jar:bin/xercesImpl.jar:bin/xml-apis.jar) containing the new-version of Xalan- Java.&lt;br /&gt;&lt;br /&gt;ORABPEL-00219   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot instantiate class&lt;br /&gt;description:  Cannot instantiate an instance for the class \"{0}\". Please check that the OraBPEL runtime class \"{1}\" has been granted the necessary security permissions to access the specified class.&lt;br /&gt;&lt;br /&gt;ORABPEL-00220   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Wrong platform adaptor interface&lt;br /&gt;description:  The class \"{0}\" (for the platform adaptor for platform \"{1}\") does not implement the IPlatformAdaptor interface. All platform adaptors used by the OraBPEL server must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-00221   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating platform adaptor&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{0}\" as the adaptor for platform \"{1}\". The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-00222   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Platform adaptor class not found&lt;br /&gt;description:  The class for platform adaptor \"{0}\" (platform \"{1}\") cannot be found.&lt;br /&gt;&lt;br /&gt;ORABPEL-00223   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Maximum number of namespaces exceeded&lt;br /&gt;description:  Failed to create the namespace \"{0}\"; the maximum number of namespaces ({1}) has been reached.&lt;br /&gt;&lt;br /&gt;ORABPEL-00224   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Could not find namespace index&lt;br /&gt;description:  Invalid namespace index \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-00225   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Could not read namespace index from db&lt;br /&gt;description:  Could not get the namespace index, the reason is {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-00226   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Could not write namespace index&lt;br /&gt;description:  Could not insert the namespace \"{0}\", index \"{1}\", the reason is {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-00227   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Wrong database adaptor interface&lt;br /&gt;description:  The class \"{0}\" (for the database adaptor for \"{1}\", datasource \"{2}\") does not implement the IDatabaseAdaptor interface. All database adaptors used by the OraBPEL server must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-00228   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating database adaptor&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{0}\" as the database adaptor for \"{1}\", datasource \"{2}\". The exception reported is: {3}&lt;br /&gt;&lt;br /&gt;ORABPEL-00229   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown database adaptor classname&lt;br /&gt;description:  The database adaptor classname for \"{0}\", datasource \"{1}\" has not been specified.&lt;br /&gt;&lt;br /&gt;ORABPEL-00230   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing adaptor resource configuration&lt;br /&gt;description:  The adaptor resource file \"{0}\" for the application server \"{1}\" cannot be found in the current classpath. This resource file contains all the JNDI mappings required for the BPEL process domain to initialize. The application server \"{1}\" may not be currently supported by OraBPEL.&lt;br /&gt;&lt;br /&gt;ORABPEL-00231   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating adaptor manifest&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{0}\" as the adaptor manifest for \"{1}\", datasource \"{2}\". The exception reported is: {3}&lt;br /&gt;&lt;br /&gt;ORABPEL-00232   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Wrong adaptor manifest interface&lt;br /&gt;description:  The class \"{0}\" (for the adaptor manifest for \"{1}\", datasource \"{2}\") does not implement the IServerAdaptorManifest interface. All adaptor manifests used by the OraBPEL server must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-00233   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown adaptor manifest classname&lt;br /&gt;description:  The adaptor manifest classname for \"{0}\", datasource \"{1}\" has not been specified.&lt;br /&gt;&lt;br /&gt;ORABPEL-00234   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Malformed server url&lt;br /&gt;description:  The SOAP server url \"{0}\" for the BPEL engine is malformed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-8129509628218902804?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/8129509628218902804/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=8129509628218902804' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/8129509628218902804'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/8129509628218902804'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-admin-exceptions-orabpel-00200.html' title='BPEL Admin Exceptions ORABPEL 00200 - 00234'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-2741109705933513481</id><published>2007-08-11T08:14:00.002-07:00</published><updated>2007-08-11T08:15:05.847-07:00</updated><title type='text'>BPEL WSDL Validation Exceptions ORABPEL 01500 - 01507</title><content type='html'>BPEL WSDL Validation Exceptions ORABPEL 01500 - 01507&lt;br /&gt;WSDL Validation Exceptions 01500 - 01507&lt;br /&gt;&lt;br /&gt;ORABPEL-01500   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  undefined WSDL message&lt;br /&gt;description:  Message \"{1}\" is not defined in WSDL at \"{0}\".&lt;br /&gt;fix:  Please make sure the spelling of the message name is correct and the WSDL import is complete.&lt;br /&gt;&lt;br /&gt;ORABPEL-01501   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  undefined part element&lt;br /&gt;description:  In WSDL at \"{0}\", message part element \"{1}\" is not defined in any of the schemas.&lt;br /&gt;fix:  Please make sure the spelling of the element QName is correct and the WSDL import is complete.&lt;br /&gt;&lt;br /&gt;ORABPEL-01502   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  undefined part type&lt;br /&gt;description:  In WSDL at \"{0}\", message part type \"{1}\" is not defined in any of the schemas.&lt;br /&gt;fix:  Please make sure the spelling of the type QName is correct and the WSDL import is complete.&lt;br /&gt;&lt;br /&gt;ORABPEL-01503   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  unknown wsdl extension&lt;br /&gt;description:  In WSDL at \"{0}\", extension element \"{1}\" is not known. Ignore this element.&lt;br /&gt;fix:  Please make sure the spelling of the element is correct and the WSDL import is complete.&lt;br /&gt;&lt;br /&gt;ORABPEL-01504   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Schema validation error&lt;br /&gt;description:  In WSDL at \"{0}\", schema validation error {1}.&lt;br /&gt;fix:  Please make sure the defined schemas are correct.&lt;br /&gt;&lt;br /&gt;ORABPEL-01505   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  notification operation not supported&lt;br /&gt;description:  In WSDL at \"{0}\", operation \"{2}\" of portType \"{1}\" is a notification operation (The endpoint sends a message), which is not supported in this version. See chapter 2.4 of WSDL spec 1.1.&lt;br /&gt;fix:  Make sure the operation is \"one-way\" type or \"request-response\" type.&lt;br /&gt;&lt;br /&gt;ORABPEL-01506   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  solicit-response operation not supported&lt;br /&gt;description:  In WSDL at \"{0}\", operation \"{2}\" of portType \"{1}\" is a Solicit-response operation (The endpoint sends a message, and receives a correlated message), which is not supported in this version. See chapter 2.4 of WSDL spec 1.1.&lt;br /&gt;fix:  Make sure the operation is \"one-way\" type or \"request-response\" type.&lt;br /&gt;&lt;br /&gt;ORABPEL-01507   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  invalid wsdl root element&lt;br /&gt;description:  In WSDL at \"{0}\", the root element is \"{1}\".&lt;br /&gt;fix:  Make sure the document is a valid wsdl document.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-2741109705933513481?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/2741109705933513481/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=2741109705933513481' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2741109705933513481'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2741109705933513481'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-wsdl-validation-exceptions-orabpel.html' title='BPEL WSDL Validation Exceptions ORABPEL 01500 - 01507'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-3468602103818556401</id><published>2007-08-11T08:14:00.001-07:00</published><updated>2007-08-11T08:14:20.575-07:00</updated><title type='text'>BPEL Adapter Exceptions ORABPEL 03000 - 03015</title><content type='html'>BPEL Adapter Exceptions ORABPEL 03000 - 03015&lt;br /&gt;Adapter Exceptions 03000 - 03015&lt;br /&gt;&lt;br /&gt;ORABPEL-03000   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot bind adaptors&lt;br /&gt;description:  The process domain was unable to bind the connection/database adaptors for \"{0} \", datasource \"{1}\". The exception reported is: {2}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Additionally check that the connection pool properties as defined in the application server startup properties are valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-03001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot lookup datasource type&lt;br /&gt;description:  The process domain was unable to determine the database type. The version table contains the vendor type for the current datasource. The exception reported is: {0}&lt;br /&gt;fix:  Please check that:&lt;br /&gt; + the machine hosting the datasource is physically connected to the network.&lt;br /&gt; + the connection pool properties as defined in the application server startup properties are valid.&lt;br /&gt; + the database schema for OraBPEL has been installed in the datasource.&lt;br /&gt;&lt;br /&gt;ORABPEL-03002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot lookup db schema version&lt;br /&gt;description:  The server was unable to lookup the database schema version. The version table is used to verify that the proper database schema has been installed for use with the server. The exception reported is: {0}&lt;br /&gt;fix:  Please check that:&lt;br /&gt; + the machine hosting the datasource is physically connected to the network.&lt;br /&gt; + the connection pool properties as defined in the application server startup properties are valid.&lt;br /&gt; + the database schema for OraBPEL has been installed in the datasource.&lt;br /&gt;&lt;br /&gt;ORABPEL-03003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Incorrect db schema version&lt;br /&gt;description:  The database schema version \"{0}\" from the database does not match the version \"{1}\" expected by the server.&lt;br /&gt;fix:  The database schema currently in place has probably been configured for a previous release; please re-install the database schema and try to start the server again.&lt;br /&gt;&lt;br /&gt;ORABPEL-03004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing datasource type&lt;br /&gt;description:  The database table \"version\" does not contain a datasource vendor type. This value is used by the process domain to initialize resources used to connect to the JDBC datasource.&lt;br /&gt;fix:  The database schema may have been modified by hand. Please re-install the database schema and try to start the process domain again.&lt;br /&gt;&lt;br /&gt;ORABPEL-03005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing db schema version&lt;br /&gt;description:  The database table \"version\" does not contain a version guid. This guid is used by the server to verify that the correct database schema is currently installed.&lt;br /&gt;fix:  The database schema may have been modified by hand. Please re-install the database schema and try to start the server again.&lt;br /&gt;&lt;br /&gt;ORABPEL-03010   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating adaptor manifest&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{0}\" as the adaptor manifest for \"{1}\", datasource \"{2}\". The exception reported is: {3}&lt;br /&gt;&lt;br /&gt;ORABPEL-03011   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Wrong adaptor manifest interface&lt;br /&gt;description:  The class \"{0}\" (for the adaptor manifest for \"{1}\", datasource \"{2}\") does not implement the IAdaptorManifest interface. All adaptor manifests used by the OraBPEL server must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-03012   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown adaptor manifest classname&lt;br /&gt;description:  The adaptor manifest classname for \"{0}\", datasource \"{1}\" has not been specified.&lt;br /&gt;&lt;br /&gt;ORABPEL-03013   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot instantiate class&lt;br /&gt;description:  Cannot instantiate an instance for the class \"{0}\". Java classes that need to be dehydrated/rehydrated within the OraBPEL server must implement the java.io.Serializable interface. These classes must implement a default constructor.&lt;br /&gt;&lt;br /&gt;ORABPEL-03014   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot install PointBase schema&lt;br /&gt;description:  The process domain was unable to create the schema for PointBase. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Additionally check that the connection pool properties as defined in the application server startup properties are valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-03015   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot install Oracle Lite schema&lt;br /&gt;description:  The process domain was unable to create the schema for Oracle Lite. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the machine hosting the datasource is physically connected to the network. Additionally check that the connection pool properties as defined in the application server startup properties are valid.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-3468602103818556401?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/3468602103818556401/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=3468602103818556401' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/3468602103818556401'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/3468602103818556401'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-adapter-exceptions-orabpel-03000.html' title='BPEL Adapter Exceptions ORABPEL 03000 - 03015'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-7367998765914106689</id><published>2007-08-11T08:13:00.001-07:00</published><updated>2007-08-11T08:13:41.015-07:00</updated><title type='text'>BPEL Test Exceptions ORABPEL 20000 - 20299</title><content type='html'>BPEL Test Exceptions ORABPEL 20000 - 20299&lt;br /&gt;Test Exceptions 20000 - 20299&lt;br /&gt;&lt;br /&gt;ORABPEL-20000   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assertion execution error.&lt;br /&gt;description:  The variable assertion xpath \"{0}\" at activity \"{1}\" failed to execute.&lt;br /&gt;fix:  Please ensure the xpath query is valid and namespace qualified.&lt;br /&gt;&lt;br /&gt;ORABPEL-20001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assertion execution error.&lt;br /&gt;description:  A problem occurred while converting the assertion value \"{0}\" to a number at activity \"{1}\".&lt;br /&gt;fix:  Please change the value to be a number or do a string comparison.&lt;br /&gt;&lt;br /&gt;ORABPEL-20002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assertion execution error.&lt;br /&gt;description:  The variable assertion xpath \"{0}\" at activity \"{1}\" failed to select a value.&lt;br /&gt;fix:  Please ensure the xpath query is valid and namespace qualified.&lt;br /&gt;&lt;br /&gt;ORABPEL-20003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Test results missing.&lt;br /&gt;description:  The test results for this process instance could not be located.&lt;br /&gt;fix:  Please try to re-run the test case or contact your system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-20004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assertion execution error.&lt;br /&gt;description:  The specified comparison type \"{0}\" at activity \"{1}\" is not valid.&lt;br /&gt;fix  Please specify a valid comparison type&lt;br /&gt;&lt;br /&gt;ORABPEL-20005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  An external call failed.&lt;br /&gt;description:  An error occurred attempting to notify call \"{0}\" at activity \"{1}\".&lt;br /&gt;fix  Please examine the log file and make the necessary changes or contact your system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-20006   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The test driver could not be located.&lt;br /&gt;description:  An error occurred while reading the test case for suite \"{0}\", test \"{1} \".&lt;br /&gt;fix  Please ensure the test was deployed successfully. If the problem persists, please try to re-deploy the test case.&lt;br /&gt;&lt;br /&gt;ORABPEL-20007   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The test driver could not be parsed.&lt;br /&gt;description:  An error occurred while trying to parse the test driver for suite \"{0}\", test \"{1}\". {2}&lt;br /&gt;fix  Please ensure the file is valid. Please attempt to redeploy the test case to view any errors.&lt;br /&gt;&lt;br /&gt;ORABPEL-20008   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  An included message could not be parsed.&lt;br /&gt;description:  An error occurred while trying create the initiation payload for test \"{0}\" in suite \"{1}\". {2}&lt;br /&gt;fix  Please ensure the test is valid and has been deployed correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-20009   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  An error occurred while generating the initiation message.&lt;br /&gt;description:  An error occurred while trying to parse an included message \"{0}\" in suite \"{1}\".&lt;br /&gt;fix  Please ensure the test is valid and has been deployed correctly. If you are using message updates, please make sure they have been defined correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-20010   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid operation.&lt;br /&gt;description:  The operation \"{0}\" is not valid for process \"{1}\", revision \"{2}\".&lt;br /&gt;fix  Please ensure the operation exists and corresponds to a createInstance receive activity in the BPEL process.&lt;br /&gt;&lt;br /&gt;ORABPEL-20011   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Instance initiation error.&lt;br /&gt;description:  An error occurred while launching an instance for suite \"{0}\", test \"{1} \".&lt;br /&gt;fix  Please examine the log file for details or contact the system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-20012   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Test run data retrieval error.&lt;br /&gt;description:  An error occurred while retrieving data for the test run.&lt;br /&gt;fix  Please examine the log file for details or contact the system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-20013   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid results document.&lt;br /&gt;description:  An error occurred while parsing the results document.&lt;br /&gt;fix  Please examine the log file for details or contact the system administrator.&lt;br /&gt;&lt;br /&gt;ORABPEL-20014   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Partner Emulation Failed.&lt;br /&gt;description:  An error occurred while emulating partner \"{0}\", role \"{1}\", operation \"{2} \".&lt;br /&gt;fix  Please ensure the partner details are correct in the test driver specified in test suite \"{2}\", location \"{3}\" and examine the log file for details.,&lt;br /&gt;&lt;br /&gt;ORABPEL-20015   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Partner Emulation Failed.&lt;br /&gt;description:  An error occurred while construcing the partner emulation for activity \"{0}\". Message part \"{1}\" could not be created&lt;br /&gt;Fix  Please examine the test case driver specified in test suite \"{2} \", location \"{3}\" for errors.&lt;br /&gt;&lt;br /&gt;ORABPEL-20016   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The test run timed out.&lt;br /&gt;description:  This happens when test instances do not complete within the allotted time.&lt;br /&gt;fix  Please go to the BPEL Console to determine why some tests have not completed.&lt;br /&gt;&lt;br /&gt;ORABPEL-20017   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The specified duration is invalid.&lt;br /&gt;description:  The duration \"{0}\" is invalid. {1}&lt;br /&gt;fix  Please correct the test driver specified in test suite \"{2}\", location \"{3}\" and redeploy the test case,&lt;br /&gt;&lt;br /&gt;ORABPEL-20018   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The specified message content is invalid.&lt;br /&gt;description:  At activity \"{0}\", the emulated message content is invalid.&lt;br /&gt;fix  Please redeploy the test case specifid in test suite \"{1}\", location \"{2}\" to view driver errors.&lt;br /&gt;&lt;br /&gt;ORABPEL-20019   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The expected xml content file was not found.&lt;br /&gt;description:  At activity \"{0}\", the expected xml file \"{1}\" could not be found.&lt;br /&gt;fix  Please ensure this file has been deployed under the \"messages\" directory.&lt;br /&gt;&lt;br /&gt;ORABPEL-20020   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  XML comparison error.&lt;br /&gt;description:  At activity \"{0}\", an unexpected error occurred while executing an XML assertion.&lt;br /&gt;fix  Please ensure your test driver file is specified correctly.&lt;br /&gt;&lt;br /&gt;ORABPEL-20021   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid XPath.&lt;br /&gt;description:  At activity \"{0}\", the xpath expression \"{1}\" did not select an element.&lt;br /&gt;fix  When doing XML comparsions, please ensure the specified xpath selects an element, or the entire document.&lt;br /&gt;&lt;br /&gt;ORABPEL-20022   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Driver Generation Error.&lt;br /&gt;description:  An unexpected error occurred while generating the test driver.&lt;br /&gt;fix  Please ensure the process instance has completed and is valid. Also ensure that the audit trail logging level is set to \"development\".&lt;br /&gt;&lt;br /&gt;ORABPEL-20023   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Driver Generation Error. Instance still in progress.&lt;br /&gt;description:  An error occurred while generating the test driver. Test drivers may only be generated when the instance has completed.&lt;br /&gt;fix  Please wait for the instance to complete and then try again.&lt;br /&gt;&lt;br /&gt;ORABPEL-20024   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Remote deployment failed due to validation errors.&lt;br /&gt;description:  Test suite \"{0}\" failed to deploy:\n{1}&lt;br /&gt;&lt;br /&gt;ORABPEL-20025   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid partner emulation settings.&lt;br /&gt;description  Error occurred in test suite \"{0}\", location \"{1}\". While emulating\n" + "activity \"{2}\", the \"testSuite\" or \"testLocation\" parameter was not set.&lt;br /&gt;fix  Please set both the testSuite and testLocation attributes of the \"emulate\" element in the test case.&lt;br /&gt;&lt;br /&gt;ORABPEL-20026   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Test Details not found.&lt;br /&gt;description  No test information was found for instance {0}&lt;br /&gt;fix  Please ensure the instance is a test case before trying to retrieve test case information.&lt;br /&gt;&lt;br /&gt;ORABPEL-20027   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Expected XML content not found.&lt;br /&gt;description  At activity \"{0}\", no XML content was found while performing an XML assertion.&lt;br /&gt;fix  Please ensure that the expected XML content is provided inline or the assertion points to a valid file.&lt;br /&gt;&lt;br /&gt;ORABPEL-20028   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  An error occurred while loading test details.&lt;br /&gt;description  An I/O error occurred while loading test details using the where condition {0}. The reported error is {1}.&lt;br /&gt;fix  Please examine the error and ensure the data-source is operating properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-20029   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  An error occurred while loading test details.&lt;br /&gt;description  An XML parsing error occurred while loading test details for instance {0}. The reported error is {1}.&lt;br /&gt;fix  Please do not modify the test_results table manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-20030   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No initiation operation.&lt;br /&gt;description  No initiation section could be found for test defined in suite \"{0}\", file \"{1)\".&lt;br /&gt;fix  An initiation section must be provided in a test case or included test driver.&lt;br /&gt;&lt;br /&gt;ORABPEL-20200   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Deployment failed.&lt;br /&gt;description  The attribute \"{0}\" is mandatory.\n Please set this attribute in the task.&lt;br /&gt;fix  Please provide this attribute.&lt;br /&gt;&lt;br /&gt;ORABPEL-20201   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Deployment failed.&lt;br /&gt;description  No process deployment could be found for \"{0}\", revision \"{1}\" in domain \"{2}\".&lt;br /&gt;fix  Please deploy the process and then try to deploy the tests again. /* { "DEPLOYTEST_suitedir_creation_error", "Deployment failed. The deployment directory \n{0}\n could not be created. { "DEPLOYTEST_suitedir_writable_error", "Deployment failed. The deployment directory \n{0}\n is not a directory or is not writable. */&lt;br /&gt;&lt;br /&gt;ORABPEL-20202   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Deployment failed.&lt;br /&gt;description  Deployment directory \"{0}\" could not be created.&lt;br /&gt;fix  Please ensure the parent directory is writable.&lt;br /&gt;&lt;br /&gt;ORABPEL-20203   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Deployment failed.&lt;br /&gt;description  The test files could not be copied to directory \"{0} \".&lt;br /&gt;fix  Error message: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-20296   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Message update error.&lt;br /&gt;description  An error occurred while applying message updates. The XPath \"{0}\" did not select at least one element or attribute.&lt;br /&gt;fix  lease check the message namespace and structure to be sure the XPath will select a node.&lt;br /&gt;&lt;br /&gt;ORABPEL-20297   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  An error occurred while deploying the test suite.&lt;br /&gt;description  An XML parsing error occurred while storing the test definition for process \"{0}\", revision \"{1}\", test suite \"{2}\". The reported error is {3}.&lt;br /&gt;fix  Please ensure the data source is configured correctly. Examine the error message for more details.&lt;br /&gt;&lt;br /&gt;ORABPEL-20298   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  An error occurred while loading test definition.&lt;br /&gt;description  An XML parsing error occurred while loading the testdefinition for process \"{0}\", revision \"{1}\", test suite \"{2}\", location \"{3}\". The reported error is {4}."},&lt;br /&gt;   Please do not modify the test_results table manually."&lt;br /&gt;&lt;br /&gt;ORABPEL-20299   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The test suite could not be located.&lt;br /&gt;description:  An error occurred while locating the test suite \"{2}\" for process \"{0}\", revision \"{1}\".&lt;br /&gt;fix  Please ensure the test suite has been deployed to the server for this process.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-7367998765914106689?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/7367998765914106689/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=7367998765914106689' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7367998765914106689'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7367998765914106689'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-test-exceptions-orabpel-20000.html' title='BPEL Test Exceptions ORABPEL 20000 - 20299'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-4452243915088295498</id><published>2007-08-11T08:12:00.001-07:00</published><updated>2007-08-11T08:12:57.472-07:00</updated><title type='text'>BPEL XML Exceptions ORABPEL 09000 - 09021</title><content type='html'>BPEL XML Exceptions ORABPEL 09000 - 09021&lt;br /&gt;XML Exceptions 09000 - 09021&lt;br /&gt;&lt;br /&gt;ORABPEL-09000   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot copy class files&lt;br /&gt;description:  Cannot copy generated XML schema classes from \"{0}\" to \"{1}\". The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-09001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot copy source files&lt;br /&gt;description:  Cannot copy generated XML schema java source files from \"{0}\" to \"{1}\". The exception reported is: {2}&lt;br /&gt;&lt;br /&gt;ORABPEL-09002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  File process error&lt;br /&gt;description:  Error processing file \"{0}\", because \"{1}\".&lt;br /&gt;fix:  Please ensure that the input \"{0}\" is available and valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-09003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to normalize name&lt;br /&gt;description:  Failed to normalize the name \"{0}\".&lt;br /&gt;fix:  Please ensure that the name \"{0}\" is available and valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-09004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to marshall object&lt;br /&gt;description:  Failed to marshall the class \"{0}\" to XML. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-09005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to unmarshall object&lt;br /&gt;description:  Failed to unmarshall the class \"{0}\" from XML. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-09006   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Incompatible schema object version&lt;br /&gt;description:  The XML schema class \"{0}\" has been compiled with an older version of SCHEMAC; the BPEL process domain you have deployed the class to cannot use the helper classes generated for this class.&lt;br /&gt;fix:  Please recompile your XML schema using the SCHEMAC tool bundled with the current process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-09007   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while instantiating marshaller&lt;br /&gt;description:  An error has occurred while attempting to instantiate the XML marshaller/unmarshaller class \"{0}\"; the exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-09008   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Wrong marshaller interface&lt;br /&gt;description:  The class \"{0}\" does not implement the com.collaxa.cube.engine.xml.IMarshaller interface. All XML marshallers used in the BPEL domain must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-09009   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Wrong schema registry interface&lt;br /&gt;description:  The class \"{0}\" (for the runtime schema registry) does not implement the ISchemaRegistry interface. All schema registries used by the runtime must implement this interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-09010   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating schema registry&lt;br /&gt;description:  An error has occurred while attempting to instantiate the class \"{0}\" as the runtime schema registry. The exception reported is: {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-09011   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown schema registry classname&lt;br /&gt;description:  The classname for the runtime schema registry has not been specified.&lt;br /&gt;&lt;br /&gt;ORABPEL-09012   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unmarshaller not found&lt;br /&gt;description:  The XML unmarshaller for class \"{0}\" cannot be found. Every scope type used in a process must provide an XML unmarshaller.&lt;br /&gt;fix:  Please check that an unmarshaller for the class \"{0}\" has been registered properly with the process domain during process initialization.&lt;br /&gt;&lt;br /&gt;ORABPEL-09013   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  SAX exception&lt;br /&gt;description:  SAX exception occurred when parsing \"{0}\", because \"{1}\".&lt;br /&gt;fix:  Please ensure that the input \"{0}\" is available and valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-09014   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot resolve type&lt;br /&gt;description:  Type \"{1}\" of \"{0}\" cannot be resolved.&lt;br /&gt;fix:  Please ensure that the input XML file is syntactically correct.&lt;br /&gt;&lt;br /&gt;ORABPEL-09015   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Class to QName mapping failure&lt;br /&gt;description:  TypeManager could not map the class name \"{0}\" to QName because \"{1}\"&lt;br /&gt;fix:  Please ensure the XML schema type \"{0}\" is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-09016   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Class name to QName mapping failure&lt;br /&gt;description:  TypeManager could not map the class name \"{0}\" to QName because \"{1}\"&lt;br /&gt;fix:  Please ensure the XML schema type \"{0}\" is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-09017   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  QName to java class mapping failure&lt;br /&gt;description:  TypeManager could not map the QName \"{0}\" to java class because \"{1}\"&lt;br /&gt;fix:  Please ensure the XML schema type \"{0}\" is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-09018   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to create XML parser&lt;br /&gt;description:  Failed to create XML parser.&lt;br /&gt;fix:  This error might be related to CLASSPATH configuration.&lt;br /&gt;&lt;br /&gt;ORABPEL-09019   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  WSDL or jbpel file not valid&lt;br /&gt;description:  Error processing file \"{0}\", because {1}.&lt;br /&gt;fix:  Please ensure that the input WSDL or jbpel file \"{0}\" is available and valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-09020   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing argument&lt;br /&gt;description:  Missing expected filename/classname argument.&lt;br /&gt;fix:  Please type \"{0} -help\" for more information.&lt;br /&gt;&lt;br /&gt;ORABPEL-09021   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  XML Schema \"include\" is not currently supported&lt;br /&gt;description:  XSD file \"{0}\" is trying to include XSD file \"{1}\". Schemac does not currently support \"include\".&lt;br /&gt;fix:  Schemac does support \"import\". You can change \"{0}\" to use \"import\", or you can physically include \"{1}\" in \"{0}\".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-4452243915088295498?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/4452243915088295498/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=4452243915088295498' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4452243915088295498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4452243915088295498'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-xml-exceptions-orabpel-09000-09021.html' title='BPEL XML Exceptions ORABPEL 09000 - 09021'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-4675713860578964582</id><published>2007-08-11T08:11:00.000-07:00</published><updated>2007-08-11T08:12:14.235-07:00</updated><title type='text'>BPEL Messaging Exceptions ORABPEL 08500 - 08512</title><content type='html'>BPEL Messaging Exceptions ORABPEL 08500 - 08512&lt;br /&gt;Messaging Exceptions 08500 - 08512&lt;br /&gt;&lt;br /&gt;ORABPEL-08500   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid jms message type&lt;br /&gt;description:  The JMS message type \"{0}\" is invalid, the BPEL server supports only \"text\" and \"bytes\" message types.&lt;br /&gt;fix:  Please verify the OraBPEL JMS Service documentation for valid JMS message types.&lt;br /&gt;&lt;br /&gt;ORABPEL-08501   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  MOM Destination not found.&lt;br /&gt;description:  The process domain was unable to lookup the destination \"{0}\". The exception reported is: \"{1}\".&lt;br /&gt;fix:  Please ensure that the MOM destination has been registered properly with the JNDI context of the application server.&lt;br /&gt;&lt;br /&gt;ORABPEL-08502   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  MOM Connector not found.&lt;br /&gt;description:  The process domain was unable to lookup the messaging connector \"{0}\".&lt;br /&gt;fix:  Please check that the messaging connector has been configured properly in the process domain descriptor file.&lt;br /&gt;&lt;br /&gt;ORABPEL-08503   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  MOM Connector shutdown not found.&lt;br /&gt;description:  The process domain was unable to close the messaging connector \"{0}\". The exception reported is : \"{1}\".&lt;br /&gt;fix:  Please check the MOM Server for the connector has been running properly or not.&lt;br /&gt;&lt;br /&gt;ORABPEL-08504   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Empty MOM destination&lt;br /&gt;description:  The destination configuration \"{0}\" for the MOM connector \"{1}\" has not been specified.&lt;br /&gt;&lt;br /&gt;ORABPEL-08505   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot create subscriber.&lt;br /&gt;description:  The process domain was unable to create a subscriber object for the destination \"{0}\". The exception reported is: {1}.&lt;br /&gt;fix:  Please check that the MOM service for the application server has been configured properly - the MOM and EJB connection pools must be the same.&lt;br /&gt;&lt;br /&gt;ORABPEL-08506   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot create durable subscriber.&lt;br /&gt;description:  The process domain was unable to create a durable subscriber for the destination \"{0}\". The exception reported is: \"{1}\".&lt;br /&gt;fix:  In order to use durable subscriber, you might need to configure persistence store for the destination. Please check the messaging vendor''s user manual on how to configure persistence store for the destination.&lt;br /&gt;&lt;br /&gt;ORABPEL-08507   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to convert process domain message to MOM message&lt;br /&gt;description:  The process domain is unable to convert the OraBPEL message to the vendor specific MOM Message \"{0}\". The exception reported is: \"{1}\".&lt;br /&gt;fix:  Please verify the Process Domain Connector documentation for valid MOM types.&lt;br /&gt;&lt;br /&gt;ORABPEL-08508   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to convert standard MOM message to process domain message.&lt;br /&gt;description:  The process domain is unable to convert the standard MOM Message \"{0}\" to the corresponding process domain message. The reported exception is: \"{1}\".&lt;br /&gt;fix:  Please verify the Process domain Connector documentation for valid MOM types.&lt;br /&gt;&lt;br /&gt;ORABPEL-08509   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  MOM connector invalid property.&lt;br /&gt;description:  The process domain was unable to interpret value of the MOM connector property \"{0}\". The value of this \"{0}\" property is \"{1}\". The exception reported is \"{2}\".&lt;br /&gt;fix:  Please verify the JNDI identfier is valid in the MOM provider''s JNDI registry.&lt;br /&gt;&lt;br /&gt;ORABPEL-08510   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot send message to message broker&lt;br /&gt;description:  The process domain was unable to send a message to the messaging destination \"{0}\". The exception reported is: \"{1}\".&lt;br /&gt;fix:  Please check that the messaging service for the application server has been configured properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-08511   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Empty MOM destination&lt;br /&gt;description:  The destination JNDI name or destination type has not been specified for destination \"{0}\", connector \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-08512   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Empty MOM connector name&lt;br /&gt;description:  The connector name for MOM destination \"{0}\" has not been specified.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-4675713860578964582?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/4675713860578964582/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=4675713860578964582' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4675713860578964582'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4675713860578964582'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-messaging-exceptions-orabpel-08500.html' title='BPEL Messaging Exceptions ORABPEL 08500 - 08512'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-4518088623557805221</id><published>2007-08-11T07:57:00.000-07:00</published><updated>2007-08-11T08:11:30.994-07:00</updated><title type='text'>BPEL XSD Exceptions ORABPEL 09700 - 09716</title><content type='html'>BPEL XSD Exceptions ORABPEL 09700 - 09716&lt;br /&gt;XSD Exceptions 09700 - 09716&lt;br /&gt;&lt;br /&gt;ORABPEL-09700   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error loading xsd&lt;br /&gt;description:  Error while loading xsd file from location \"{0}\". The reason is {1}.&lt;br /&gt;fix:  Please verify the xsd location.&lt;br /&gt;&lt;br /&gt;ORABPEL-09701   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error loading schemas from wsdl&lt;br /&gt;description:  Error while loading schemas from wsdl file at location \"{0}\". The reason is {1}.&lt;br /&gt;fix:  Please verify the schemas defined in wsdl.&lt;br /&gt;&lt;br /&gt;ORABPEL-09702   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error creating url for wsdl/xsd&lt;br /&gt;description:  Error while creating url for a wsdl/xsd location path, the base url is \"{0}\", the import location URI is \"{1}\". The exception is {2}.&lt;br /&gt;fix:  Please verify the base url and the import location URI path.&lt;br /&gt;&lt;br /&gt;ORABPEL-09703   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot resolve type&lt;br /&gt;description:  Cannot resolve type \"{0}:{1}\" from the following schemas {2}&lt;br /&gt;fix:  Please make sure that the type \"{0}:{1}\" is correct and defined in one of the schemas.&lt;br /&gt;&lt;br /&gt;ORABPEL-09704   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid xpath query&lt;br /&gt;description:  According to BPEL4WS spec 1.1, section 14.3, the xpath query \"{0}\" is invalid, path expressions must start from the root element prefixed with \"/\".&lt;br /&gt;fix:  Please make sure that your xpath query starts with \"/{1}\" which is the root.&lt;br /&gt;&lt;br /&gt;ORABPEL-09705   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Couldn't initialize variable&lt;br /&gt;description:  Error occurred while initializing BPEL variable \"{0}\" the schema processor could not find element \"{1}\", in the following schemas: {2}&lt;br /&gt;fix:  Please make sure that the element \"{1}\" is valid in your wsdl.&lt;br /&gt;&lt;br /&gt;ORABPEL-09706   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Couldn't initialize variable&lt;br /&gt;description:  Error occurred while initializing BPEL variable \"{0}\" at line {1}, the schema processor could not find type \"{2}\" for part \"{3}\", in the following schemas: {4}&lt;br /&gt;fix:  Please make sure that the type \"{2}\" is valid in your wsdl.&lt;br /&gt;&lt;br /&gt;ORABPEL-09707   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to initialize bpel variable&lt;br /&gt;description:  Could not initialize variable \"{0}\", {1} at line {2}.&lt;br /&gt;fix:  Please make sure that the step is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-09708   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid schema&lt;br /&gt;description:  Schema defined in location \"{0}\" is invalid. The targetNamespace of this schema is {1}, there are some unresolved types/elements in this schema.&lt;br /&gt;fix:  Please make sure that these unresolved schema components are defined and imported/included correctly for this schema.&lt;br /&gt;&lt;br /&gt;ORABPEL-09709   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error adding schema to the grammar pool&lt;br /&gt;description:  Couldn't add schema \"{0}\" to the schema grammar pool. The reason is {1}&lt;br /&gt;fix:  Please make sure that this schema is valid.&lt;br /&gt;&lt;br /&gt;ORABPEL-09710   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invalid xml document.&lt;br /&gt;description:  According to the xml schemas, the xml document is invalid. The reason is: {0}&lt;br /&gt;fix:  Please make sure that the xml document is valid against your schemas.&lt;br /&gt;&lt;br /&gt;ORABPEL-09711   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error getting xml schemas for a BPEL process&lt;br /&gt;description:  Error while loading xml schemas for BPEL process \"{0}\". The reason is {1}.&lt;br /&gt;fix:  Please verify the schemas defined for this process.&lt;br /&gt;&lt;br /&gt;ORABPEL-09713   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  IO Error in generating or parsing xml schemas for a BPEL process&lt;br /&gt;description:  IO Error in generating or parsing xml schemas for a BPEL process. The reason is {0}.&lt;br /&gt;fix:  Please verify the file reading/writing permission.&lt;br /&gt;&lt;br /&gt;ORABPEL-09714   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Name attribute in XSD is not defined&lt;br /&gt;description:  Name attribute of {0} of {1} at {2} is not defined.&lt;br /&gt;fix:  Please verify the XSD.&lt;br /&gt;&lt;br /&gt;ORABPEL-09715   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Global declaration/definition duplicated&lt;br /&gt;description:  Global {0} declaration/definition of name {1} are duplicated at the following locations:{2}&lt;br /&gt;fix:  Please verify the related XSD and WSDL files.&lt;br /&gt;&lt;br /&gt;ORABPEL-09716   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Oracle XDK XSD validation error found&lt;br /&gt;description:  Oracle XDK XSD validation error found: {0}&lt;br /&gt;fix:  "Please verify the related XSD and WSDL files. Users can turn this feature off by adding a System Property of name +"oracle.bpel."+DescriptorDefs.CFG_xdk_xsd_validation + or adding a property entry of name +DescriptorDefs.CFG_xdk_xsd_validation + to 'bpel.xml' file&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-4518088623557805221?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/4518088623557805221/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=4518088623557805221' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4518088623557805221'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/4518088623557805221'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-xsd-exceptions-orabpel-09700-09716.html' title='BPEL XSD Exceptions ORABPEL 09700 - 09716'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-6776046693827086617</id><published>2007-08-11T07:56:00.002-07:00</published><updated>2007-08-11T07:57:55.305-07:00</updated><title type='text'>BPEL Agent Exceptions ORABPEL 03400 - 03411</title><content type='html'>BPEL Agent Exceptions ORABPEL 03400 - 03411&lt;br /&gt;Agent Exceptions 03400 - 03411&lt;br /&gt;&lt;br /&gt;ORABPEL-03400   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating activation job&lt;br /&gt;description:  An error occurred while attempting to instantiate the activation job class \"{0}\" for protocol \"{1}\". The exception reported was: \"{2}\".&lt;br /&gt;fix:  Please fix the error and redeploy the class to the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-03401   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown activation job classname&lt;br /&gt;description:  No activation job classname has been associated with protocol \"{0}\".&lt;br /&gt;fix:  Please check the \"mail.store.protocol\" property for your mail service.&lt;br /&gt;&lt;br /&gt;ORABPEL-03402   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating activation scheduler&lt;br /&gt;description:  An error occurred while attempting to instantiate the activation scheduler class \"{0}\" for type \"{1}\". The exception reported was: \"{2}\".&lt;br /&gt;fix:  Please fix the error and redeploy the class to the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-03403   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Unknown activation scheduler classname&lt;br /&gt;description:  No activation scheduler classname has been associated with activation type \"{0} \".&lt;br /&gt;fix:  Please check the type attribute of the activation property in your process descriptor.&lt;br /&gt;&lt;br /&gt;ORABPEL-03404   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Activation scheduler filter class not valid&lt;br /&gt;description:  The activation scheduler class \"{0}\" for type \"{1}\" does not implement the IActivationScheduler interface. All schedulers must implement this interface.&lt;br /&gt;fix:  Please ensure that the class \"{0}\" implements the IActivationScheduler interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-03405   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot lookup scheduler&lt;br /&gt;description:  Cannot lookup the scheduler for agent \"{0}\", group \"{1}\". The exception reported is: \"{2}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-03406   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing mail driven process property&lt;br /&gt;description:  The Mail Driven BPEL Process receiver has not been passed all the necessary parameters required for successful initialization. The missing property is \"{0}\".&lt;br /&gt;fix:  Please ensure that property values are supplied for the \"mail.user\", \"mail.password\" and \"mail.host\" properties.&lt;br /&gt;&lt;br /&gt;ORABPEL-03407   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating mail filter&lt;br /&gt;description:  An error occurred while attempting to instantiate the mail filter class \"{0}\". The exception reported was: \"{1}\".&lt;br /&gt;fix:  Please fix the error and redeploy the class to the server.&lt;br /&gt;&lt;br /&gt;ORABPEL-03408   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Mail filter class not valid&lt;br /&gt;description:  The mail filter class \"{0}\" does not implement the IMailFilter interface. All mail filter must implement this interface.&lt;br /&gt;fix:  Please ensure that the class \"{0}\" implements the IMailFilter interface.&lt;br /&gt;&lt;br /&gt;ORABPEL-03409   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Engine agent not found&lt;br /&gt;description:  The engine agent \"{0}\" has not been registered with the domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-03410   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Error while creating agent&lt;br /&gt;description:  An error occurred while attempting to instantiate the agent class \"{0}\". The exception reported was: \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-03411   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Agent class not valid&lt;br /&gt;description:  The agent class \"{0}\" does not implement the IAgent interface. All agents managed by the system must implement this interface.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-6776046693827086617?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/6776046693827086617/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=6776046693827086617' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6776046693827086617'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/6776046693827086617'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-agent-exceptions-orabpel-03400.html' title='BPEL Agent Exceptions ORABPEL 03400 - 03411'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-2991441183379918404</id><published>2007-08-11T07:56:00.001-07:00</published><updated>2007-08-11T07:56:39.764-07:00</updated><title type='text'>BPEL WSIL Exceptions ORABPEL 13000 - 13008</title><content type='html'>BPEL WSIL Exceptions ORABPEL 13000 - 13008&lt;br /&gt;WSIL Exceptions 13000 - 13008&lt;br /&gt;&lt;br /&gt;ORABPEL-13000   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  WSIL Resource bundles not found&lt;br /&gt;description:  The resource bundles for WSIL browser cannot be found.&lt;br /&gt;&lt;br /&gt;ORABPEL-13001   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Directory read failure&lt;br /&gt;description:  The directory \"{0}\" cannot be found or is not readable.&lt;br /&gt;&lt;br /&gt;ORABPEL-13002   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Generic WSIL generation failure&lt;br /&gt;description:  WSIL Generation failed. Please make sure that the adapters are correctly deployed. Please also check that the adapter specific jar files are avaialable to runtime (applications.xml). Also pl check the server logs&lt;br /&gt;&lt;br /&gt;ORABPEL-13003   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Adapter has not been deployed&lt;br /&gt;description:  The adapters are not correctly deployed.&lt;br /&gt;&lt;br /&gt;ORABPEL-13004   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Channel corresponding to event cannot be found.&lt;br /&gt;description:  Channel corresponding to event cannot be found. Please make sure that channel has been created using Application Explorer.&lt;br /&gt;&lt;br /&gt;ORABPEL-13005   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Incorrect WSDL Fiel name specified.&lt;br /&gt;description:  The WSDL file name or directory is incorrect. There has been an underlying transformation exception, please check logs.&lt;br /&gt;&lt;br /&gt;ORABPEL-13006   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  WSDL Generation failure.&lt;br /&gt;description:  WSDL Generation failure. There has been an underlying error, please check logs.&lt;br /&gt;&lt;br /&gt;ORABPEL-13007   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Resource exception from legacy adapter.&lt;br /&gt;description:  Resource exception from legacy adapter. There has been an underlying error, please check logs.&lt;br /&gt;&lt;br /&gt;ORABPEL-13008   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Resource exception from applications adapter.&lt;br /&gt;description:  Resource exception from applications adapter. There has been an underlying error, please check logs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-2991441183379918404?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/2991441183379918404/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=2991441183379918404' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2991441183379918404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/2991441183379918404'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-wsil-exceptions-orabpel-13000.html' title='BPEL WSIL Exceptions ORABPEL 13000 - 13008'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-7614029308004706540</id><published>2007-08-11T07:54:00.000-07:00</published><updated>2007-08-11T07:55:32.761-07:00</updated><title type='text'>BPEL DOM Exceptions ORABPEL 09200 - 09250</title><content type='html'>BPEL DOM Exceptions ORABPEL 09200 - 09250&lt;br /&gt;DOM Exceptions 09200 - 09250&lt;br /&gt;&lt;br /&gt;ORABPEL-09200   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Invaild to part type.&lt;br /&gt;description:  The \"\" assign part \"{0}\" is invalid, the part should not be null and it should be an instance of org.w3c.Element. Please verify the BPEL source at line number \"{1}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-09201   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The value is invalid.&lt;br /&gt;description:  Error in expression: value is empty at line \"{1}\". The variable : \"{0}\" is null, when applied to document shown below:\n{2}&lt;br /&gt;fix:  Please check the BPEL source at line number \"{1}\" and verify the \"from\" variable.&lt;br /&gt;&lt;br /&gt;ORABPEL-09202   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The value is invalid.&lt;br /&gt;description:  Error in expression: value is empty at line \"{1}\". The part : \"{0}\" is null, when applied to document shown below:\n{2}&lt;br /&gt;fix:  Please check the BPEL source at line number \"{1}\" and verify the \"from\" part.&lt;br /&gt;&lt;br /&gt;ORABPEL-09203   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The value is invalid.&lt;br /&gt;description:  Error in expression: value is empty at line \"{1}\". The XPath expression : \"{0}\" returns zero node, when applied to document shown below:\n{2}&lt;br /&gt;fix:  Please check the BPEL source at line number \"{1}\" and verify the \"from\" part xpath query.&lt;br /&gt;&lt;br /&gt;ORABPEL-09204   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The from value is invalid.&lt;br /&gt;description:  According to BPEL4WS spec 1.1 section 14.3, the &lt;from&gt; value should not be empty.&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\" and verify the &lt;from&gt;.&lt;br /&gt;&lt;br /&gt;ORABPEL-09205   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  XPath query string returns zero node.&lt;br /&gt;description:  According to BPEL4WS spec 1.1 section 14.3, The assign activity &lt;to&gt; part query should not return zero node.&lt;br /&gt;fix:  Please check the BPEL source at line number \"{1}\" and verify the &lt;to&gt; part xpath query.&lt;br /&gt;&lt;br /&gt;ORABPEL-09206   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  DOM Element creation failed&lt;br /&gt;description:  Error occured while creating DOM element, the reason is {0}.&lt;br /&gt;&lt;br /&gt;ORABPEL-09207   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The XML data is invalid&lt;br /&gt;description:  The XML data is invalid; the reason is \"{0}\".&lt;br /&gt;fix:  Please verify xml data.&lt;br /&gt;&lt;br /&gt;ORABPEL-09208   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot copy object&lt;br /&gt;description:  An attempt to copy the object \"{0}\" (class {1}) has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the copy() method of this object''s PersistenceManager is working properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-09209   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot expand shadow object&lt;br /&gt;description:  An attempt to resolve the shadow object \"{0}\" (class {1}) has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the copy() method of this object''s PersistenceManager is working properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-09210   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot deep copy object&lt;br /&gt;description:  An attempt to deep copy the object \"{0}\" (class {1}) has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the copy() method of this object''s PersistenceManager is working properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-09211   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot do binary deep copy element&lt;br /&gt;description:  An attempt to binary deep copy the element \"{0}\" has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the copy() method of this object''s PersistenceManager is working properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-09212   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot copy object&lt;br /&gt;description:  An attempt to copy the moniker \"{0}\" (class {1}) has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the copy() method of this object''s PersistenceManager is working properly.&lt;br /&gt;&lt;br /&gt;ORABPEL-09213   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot load object from moniker&lt;br /&gt;description:  An attempt to deserialize an object from its moniker format has failed. The exception reported is: {0}&lt;br /&gt;fix:  The object moniker is corrupt; the moniker may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-09214   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot marshall object&lt;br /&gt;description:  An attempt to marshall the object \"{0}\" (class \"{1}\") to XML has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the marshall() method is working properly. Otherwise, the document may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-09215   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot read moniker&lt;br /&gt;description:  An attempt to read an object''s moniker from the deserializer stream has failed. The exception reported is: {0}&lt;br /&gt;fix:  The object moniker is corrupt; the moniker may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-09216   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot save object&lt;br /&gt;description:  An attempt to save the object \"{0}\" (class {1}) has failed. The exception reported is: {2}&lt;br /&gt;fix:  If this object type has been imported into the process, please check that the save() method is working properly. The save() call is the object''s opportunity to persist itself in some form of external storage.&lt;br /&gt;&lt;br /&gt;ORABPEL-09217   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot write moniker&lt;br /&gt;description:  An attempt to write an object''s moniker into the serializer stream has failed. The exception reported is: {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-09218   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Couldn''t load the referenced element&lt;br /&gt;description:  The shadow node \"{0}\" couldn''t find its referenced read-only element. The XPath to load the referenced element is \"{1}\"&lt;br /&gt;fix:  The document is corrupt; it may have been edited manually.&lt;br /&gt;&lt;br /&gt;ORABPEL-09219   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot save element&lt;br /&gt;description:  An attempt to save the element \"{0}\" has failed. Because this element is not a root element and for some reason the scope has reference to this element, scope should have references ONLY to root elements.&lt;br /&gt;&lt;br /&gt;ORABPEL-09220   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot load element&lt;br /&gt;description:  An attempt to load the element \"{0}\" has failed. Because this element is not a root element and for some reason the scope has reference to this element, scope should have references ONLY to root elements.&lt;br /&gt;&lt;br /&gt;ORABPEL-09221   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot serialize DOM element&lt;br /&gt;description:  Failed to serialize the DOM element \"{0}\" to binary format. The exception reported is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-09222   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot deserialize DOM element&lt;br /&gt;description:  Failed to deserialize the DOM element from binary format, the document id {0}. The exception reported is {1}&lt;br /&gt;&lt;br /&gt;ORABPEL-09223   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  XPath query string returns multiple nodes.&lt;br /&gt;description:  According to BPEL4WS spec 1.1 section 14.3, The assign activity part and query {0} should not return multipe nodes.&lt;br /&gt;fix:  Please check the BPEL source at line number \"{1}\" and verify the part and xpath query {0}.&lt;br /&gt;&lt;br /&gt;ORABPEL-09224   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Mismatch Assign&lt;br /&gt;description:  Cannot set non-element value to an element based variable&lt;br /&gt;fix:  Please check the BPEL source.&lt;br /&gt;&lt;br /&gt;ORABPEL-09225   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Mismatch Assign&lt;br /&gt;description:  Cannot set non-message value to a message based variable&lt;br /&gt;fix:  Please check the BPEL source.&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09226.description", "Cannot use simple-typed variable in "+ "setVariableData(String name, String partOrQuery, Object value) or "+ "setVariableData(String name, String partOrQuery, Object value, boolean clone)" },&lt;br /&gt;ORABPEL-09226   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Mismatch Assign&lt;br /&gt;fix:  Please check the BPEL source.&lt;br /&gt;&lt;br /&gt;ORABPEL-09227   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;description:  The from-spec for {2} operation must return either an attribute list or an element list.&lt;br /&gt;fix:  Please check the BPEL source at line number \"{1}\" and verify the part and xpath query {0}.&lt;br /&gt;&lt;br /&gt;ORABPEL-09228   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;description:  The message part \"{2}\" of WSDL variable \"{3}\" is not an XML element; {4} operation cannot be performed.&lt;br /&gt;fix:  Please check the BPEL source at line number \"{1}\" and verify the part and xpath query {0}.&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09229.description", "The to-spec does not yield any data; {1} operation cannot be performed." },&lt;br /&gt;ORABPEL-09229   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09230.description", "The parent of the selection result {1} does not exist or is not an XML element; {2} operation cannot be performed." },&lt;br /&gt;ORABPEL-09230   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09231.description", "The selection result at list entry # {1} does not have a parent node; {2} operation cannot be performed." },&lt;br /&gt;ORABPEL-09231   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09232.description", "The selection result at list entry # {1} is not an XML node; {2} operation cannot be performed." },&lt;br /&gt;ORABPEL-09232   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09233.description", "The selection result at list entry # {1} is not an XML element; {2} operation cannot be performed." },&lt;br /&gt;ORABPEL-09233   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09234.description", "The selection result of {1} is not an XML element; {2} operation cannot be performed." },&lt;br /&gt;ORABPEL-09234   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09240.description", "The element list specified by to-spec used in is NOT contiguous. "},&lt;br /&gt;ORABPEL-09240   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09241.description", "The from-list of is element-based, while the to-list is not element-based."},&lt;br /&gt;ORABPEL-09241   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09242.description", "The from-list of is attribute-based, while the to-list is not attribute-based."},&lt;br /&gt;ORABPEL-09242   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09243.description", "A member of the to-list of does NOT have an element as parent."},&lt;br /&gt;ORABPEL-09243   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09244.description", "A member of the to-list of does NOT have a parent node."},&lt;br /&gt;ORABPEL-09244   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09245.description", "Members of the to-list of do NOT share the same parent node."},&lt;br /&gt;ORABPEL-09245   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Assign Operation Misuse&lt;br /&gt;fix:  Please check the BPEL source at line number \"{0}\"&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09246.description", "Couldn't create the xml stream for document \"{0}\", the reason is: {1}"},&lt;br /&gt;ORABPEL-09246   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to create xml stream&lt;br /&gt;fix:  Please make sure the document \"{0}\" exists in the document table&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09247.description", "Couldn't get the blob for document \"{0}\", the reason is: {1}"},&lt;br /&gt;ORABPEL-09247   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to get Document Blob&lt;br /&gt;fix:  Please make sure the document \"{0}\" exists in the document table&lt;br /&gt;&lt;br /&gt;&lt;&gt;{ "exception.09248.description", "Couldn't create document builder \"{0}\", the reason is: {1}"},&lt;br /&gt;ORABPEL-09248   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Could not create xdk document builder&lt;br /&gt;fix:  Please make sure the document builder \"{0}\" class exists in your classpath&lt;br /&gt;&lt;br /&gt;ORABPEL-09249   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  The XML data is invalid&lt;br /&gt;description:  The XML text is invalid {0}, the reason is \"{1}\".&lt;br /&gt;fix:  Please verify xml text&lt;br /&gt;&lt;br /&gt;ORABPEL-09250   &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  XML Document creation failed&lt;br /&gt;description:  Error occured while creating XML Document, the reason is {0}.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-7614029308004706540?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/7614029308004706540/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=7614029308004706540' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7614029308004706540'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7614029308004706540'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-dom-exceptions-orabpel-09200-09250.html' title='BPEL DOM Exceptions ORABPEL 09200 - 09250'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-5288493721746794636</id><published>2007-08-11T07:45:00.001-07:00</published><updated>2007-08-11T07:48:04.269-07:00</updated><title type='text'>BPEL Delivery Exceptions ORABPEL 03800 - 03813</title><content type='html'>Delivey Exceptions 03800 - 03813&lt;br /&gt;&lt;br /&gt;ORABPEL-03800  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot resolve correlation set definition&lt;br /&gt;description:  The process domain was not able to resolve which correlation set definition to apply to the received callback message for operation \"{0}\".&lt;br /&gt;fix:  Correlation set definitions are registered with the process domain using operation name and process id. The callback message is most likely missing the process id.&lt;br /&gt;&lt;br /&gt;ORABPEL-03801  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Missing operation name&lt;br /&gt;description:  The received callback message is missing the operation name parameter. The process domain cannot resolve which correlation set definition to apply to the message without this parameter.&lt;br /&gt;&lt;br /&gt;ORABPEL-03802  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Correlation definition not registered&lt;br /&gt;description:  The correlation set definition for operation \"{0}\", process \"{1}\", has not been registered with the process domain.&lt;br /&gt;fix:  Please try to redeploy your process to the process domain.&lt;br /&gt;&lt;br /&gt;ORABPEL-03803  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot create engine bean&lt;br /&gt;description:  The process domain cannot lookup the engine bean; this bean is responsible for processing the callback of a received message. The exception reported is: {0}&lt;br /&gt;fix:  Please check that the engine bean has been properly deployed to the server and can be properly mounted from a java class.&lt;br /&gt;&lt;br /&gt;ORABPEL-03804  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Synchronous method invocation timeout&lt;br /&gt;description:  The synchronous polling thread has timed out waiting for a result from instance \"{0}\".&lt;br /&gt;fix:  There may be problem completing instance \"{0}\"; please check the process console for more information.&lt;br /&gt;&lt;br /&gt;ORABPEL-03805  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Protocol handler not found&lt;br /&gt;description:  The process domain was unable to find the protocol handler for the conversation type \"{0}\".&lt;br /&gt;fix:  Please check the implementation of the protocol interface for this conversation type.&lt;br /&gt;&lt;br /&gt;ORABPEL-03806  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Callback on delivery service failed&lt;br /&gt;description:  The process domain was unable to process the callback for received message \"{0}\" for conversation \"{1}\", subscriber \"{2}\". The exception reported is: {3}&lt;br /&gt;&lt;br /&gt;ORABPEL-03807  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot resubscribe MOM conversations&lt;br /&gt;description:  An attempt to resubscribe previous MOM conversations has failed. The exception reported is: {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-03808  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot create listener for MOM conversation&lt;br /&gt;description:  An attempt to create MOM listener has failed. The exception reported is: {0}&lt;br /&gt;&lt;br /&gt;ORABPEL-03809  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find message part&lt;br /&gt;description:  Delivery service cannot find message part \"{0}\" when doing message correlation.&lt;br /&gt;fix:  Please check your BPEL source to make sure the correlationSet definition is correct.&lt;br /&gt;&lt;br /&gt;ORABPEL-03810  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Conflicting receive&lt;br /&gt;description:  Another receive activity or equivalent (currently, onMessage branch in a pick activity) has already been enabled with the partnerLink \"{0}\", operation name \"{1}\" and correlation set \"{2}\" (or conversation id). Appendix A - Standard Faults in the BPEL 1.1 specification specifies a fault should be thrown under these conditions.&lt;br /&gt;&lt;br /&gt;ORABPEL-03811  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  No correlation sets defined&lt;br /&gt;description:  No correlation sets have been defined for operation \"{0}\" (process \"{1}\"). All receive operations that do not use WS-Addressing to correlate messages must define at least one correlation set.&lt;br /&gt;fix:  Please check your BPEL source to make sure at least one correlationSet is defined for the operation \"{0}\".&lt;br /&gt;&lt;br /&gt;ORABPEL-03812  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Cannot find property alias&lt;br /&gt;description:  Cannot find the property alias \"{0}\", message type \"{1}\".&lt;br /&gt;fix:  Please check your BPEL/WSDL source to make sure that property alias \"{0}\" has been defined.&lt;br /&gt;&lt;br /&gt;ORABPEL-03813  &lt;br /&gt;severity:  10&lt;br /&gt;type:  error&lt;br /&gt;name:  Failed to evaluate correlation query&lt;br /&gt;description:  Failed to evaluate the correlationAlias query \"{0}\" on the element \"{1}\".&lt;br /&gt;fix:  Please check your BPEL/WSDL source to make sure that proprty alias is defined correctly&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-5288493721746794636?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/5288493721746794636/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=5288493721746794636' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/5288493721746794636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/5288493721746794636'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/bpel-delivery-exceptions-orabpel-03800.html' title='BPEL Delivery Exceptions ORABPEL 03800 - 03813'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3880624469588463196.post-7277079529891138043</id><published>2007-08-11T07:32:00.000-07:00</published><updated>2007-08-11T07:41:49.326-07:00</updated><title type='text'>How To Get The Instance ID of a BPEL Process at Runtime</title><content type='html'>Oracle(R) BPEL Process Manager - Version: 10.1.2&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Goal&lt;/span&gt;&lt;br /&gt;When an instance of a BPEL process/ suitecase is started the instance ID is added to the field CIKEY of cube_instance table. How is  it possible to get the instance ID at runtime?&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution&lt;/span&gt;&lt;br /&gt;To get access to the instance If of a newly started BPEL suitecase/process the build-in method&lt;br /&gt;getInstanceId() has to be used.&lt;br /&gt;This method can be used in the bpel:exec action only.&lt;br /&gt;&amp;lt;bpelx:exec name="Java_Embedding_1" language="java" version="1.3"&amp;gt;&lt;br /&gt;&amp;lt;![CDATA[ setVariableData("instance", new Long(getInstanceId())); ]]&amp;gt;&lt;br /&gt;&amp;lt;/bpelx:exec&amp;gt;&lt;br /&gt;&amp;lt;bpelx:exec name="Java_Embedding_1" language="java" version="1.3"&amp;gt;&amp;lt;!--[CDATA[ setVariableData("instance", new Long(getInstanceId())); ]]--&amp;gt;&amp;lt;/bpelx:exec&amp;gt;&lt;br /&gt; In that case the instance ID is stored in the variable 'instance', which is of type 'long' and has been created in the scope in which the bpel:exec action resides.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3880624469588463196-7277079529891138043?l=shanbpel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shanbpel.blogspot.com/feeds/7277079529891138043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3880624469588463196&amp;postID=7277079529891138043' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7277079529891138043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3880624469588463196/posts/default/7277079529891138043'/><link rel='alternate' type='text/html' href='http://shanbpel.blogspot.com/2007/08/how-to-get-instance-id-of-bpel-process.html' title='How To Get The Instance ID of a BPEL Process at Runtime'/><author><name>SHAN</name><uri>http://www.blogger.com/profile/02025418954686737790</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_g1UfzM4T7f0/Sjy7YJPda_I/AAAAAAAAAWs/YvRW8WHYLNk/S220/DSC04433.JPG'/></author><thr:total>1</thr:total></entry></feed>
