You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(5) |
Aug
(11) |
Sep
(10) |
Oct
(6) |
Nov
(19) |
Dec
(30) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(44) |
Feb
(19) |
Mar
(35) |
Apr
(63) |
May
(38) |
Jun
(8) |
Jul
(1) |
Aug
(1) |
Sep
(8) |
Oct
(14) |
Nov
(1) |
Dec
(7) |
| 2004 |
Jan
(3) |
Feb
(23) |
Mar
(23) |
Apr
(14) |
May
(4) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(5) |
Dec
(2) |
| 2005 |
Jan
(2) |
Feb
|
Mar
(9) |
Apr
|
May
(9) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(7) |
Dec
|
| 2006 |
Jan
(3) |
Feb
|
Mar
|
Apr
(7) |
May
(12) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(20) |
Nov
(21) |
Dec
(5) |
| 2007 |
Jan
(2) |
Feb
(5) |
Mar
(2) |
Apr
(2) |
May
(1) |
Jun
|
Jul
(4) |
Aug
(17) |
Sep
(21) |
Oct
(7) |
Nov
(6) |
Dec
(7) |
| 2008 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(3) |
Aug
(3) |
Sep
(10) |
Oct
(8) |
Nov
(25) |
Dec
(36) |
| 2009 |
Jan
(9) |
Feb
(18) |
Mar
(11) |
Apr
(22) |
May
(34) |
Jun
(17) |
Jul
(36) |
Aug
(10) |
Sep
(3) |
Oct
|
Nov
|
Dec
(11) |
| 2010 |
Jan
(5) |
Feb
(3) |
Mar
(4) |
Apr
(1) |
May
(3) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
(3) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(3) |
Nov
|
Dec
(4) |
| 2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Adrian P. <ad...@bt...> - 2006-05-11 16:30:18
|
Good day, There are currently no plans to implement XPDL 2.0 support in OBE. Some of the issues noted with XPDL 1.0 remain unaddressed and it is my understanding that WfMC intend that XPDL 2.1 will address these. Either way, XPDL 2.x support will be a considerable amount of work and I shan't embark upon it unless/until there is requisite demand. Thanks, Adrian. Adrian Price Architect & Lead The Open Business Engine mailto:adr...@us... "tenax propositi, altiora peto" _____ From: obe...@li... [mailto:obe...@li...] On Behalf Of Laj...@t-... Sent: Thursday, May 11, 2006 12:51 PM To: obe...@li... Subject: [Obe-developer] OBE support for XPDL 2.0 Importance: High Hello! I understand that "OBE 1.0 RC1" supports XPDL 1.0, but doesn't support XPDL 2.0. Is there any new release coming up which supports XPDL 2.0? If yes, could you please inform the probable date of release? Thanks and Regards, Lajwanti Doshi T-Systems India Pvt. Ltd. |
|
From: <Laj...@t-...> - 2006-05-11 11:49:43
|
Hello! I understand that "OBE 1.0 RC1" supports XPDL 1.0, but doesn't support XPDL 2.0. Is there any new release coming up which supports XPDL 2.0? If yes, could you please inform the probable date of release? Thanks and Regards, Lajwanti Doshi T-Systems India Pvt. Ltd. |
|
From: Adrian P. <ad...@bt...> - 2006-05-09 08:31:34
|
Good day Jorge, Your boss's concern about performance is entirely reasonable - it's bound to be faster to search the ProcessInstance table than to join it with AttributeInstance as many times as there are attribute references in your WHERE clause. The reason for the current design is, of course, to provide a generic, extensible design where the set of process attributes is specified in XPDL rather than being hard-coded in the database schema and the persistence POJOs or POJIs. For any given workflow-enabled application it is likely that there will be a small set of business keys that are always required in order to look up the process for a known business context, so clearly it would be advantageous to introduce a mechanism to support this efficiently. I suppose it would be possible to subclass the ProcessInstanceEJB/ProcessInstanceBean to introduce additional attributes, but there's a couple of places in the code where you'd need to enumerate the new attributes to ensure that the correct SQL is generated for a given predicate. Another approach might be to introduce a user-defined association table or 'request object' containing just the business keys and the processInstanceId. This approach would only require a single join. I believe Hibernate may have the ability to create a logical view which merges physical tables. However, both the above approaches would require some degree of change in the OBE runtime. Also, be aware that OBE parses SQL predicates and re-writes them using parameter markers so that all database activity can be performed using prepared statements. In order to do this the SQL parser needs to be aware of which tables various attributes reside in - adding another table would necessitate changes to this part of the runtime. On the subject of metrics, I do not have any information myself. All I can suggest is that you measure it for yourself and decide whether it's fast enough for your present purposes. Perhaps you could introduce performance enhancements at a later date if it proves necessary? Thanks, Adrian. Adrian Price Architect & Lead The Open Business Engine mailto:adr...@us... "tenax propositi, altiora peto" ________________________________ From: obe...@li... [mailto:obe...@li...] On Behalf Of Jorge Middleton Sent: Monday, May 08, 2006 8:48 PM To: obe...@li...; obe...@li... Subject: [Obe-developer] Re: obe Hello, I write because I need your help. The subject is, that my boss's distrust about the performance relative to search process instance based on attributes's filter. We have 2 attributes that always be in all processes (business attributes) and he says that this attributes must be in ProcessInstance table so the search process is faster. I think that this is true but also it less flexible and restrictive to future's enhanced so I need some statistics data about time of search or something like that. Somebody could give me an advice? Thank in advance Jorge |
|
From: Jorge M. <jor...@gm...> - 2006-05-09 00:59:47
|
Hello, I write because I need your help. The subject is, that my boss's distrust about the performance relative to search process instance based on attributes's filter. We have 2 attributes that always be in all processes (business attributes) and he says that this attributes must be in ProcessInstance table so the search process is faster. I think that this is true but also it less flexible and restrictive to future's enhanced so I need some statistics data about time of search or something like that. Somebody could give me an advice? Thank in advance Jorge |
|
From: Adrian P. <ad...@bt...> - 2006-05-08 17:52:59
|
Good day Keshav, I'm not aware of anyone having ported OBE to the Oracle application server, so you're 'blazing the trail' as it were. Porting to another application server consists of adding the app-server-specific XDoclet tags to the various EJB source files and inserting a call to the app.server-specific XDoclet code generation subtask into the obeserver module's build script. It sounds like you're conversant with these aspects though. See http://obe.sourceforge.net/start/building.html. I'm baffled as to where the JBoss-specific dependency came from though - to my knowledge there are no such app.server-specific dependencies in the OBE sources. All system calls are made through generic J2EE APIs. I don't see a stack trace attached - perhaps sourceforge has stripped your posting of its attachments. Can you re-post with the stack trace inline? I'm happy to offer advice and suggestions to help you complete the port but I don't have any personal experience with the Oracle App. Server. The OBE community would be most grateful if you would consider donating the fruits of your porting activities back to the project. A build/porting related question such would be better addressed on the obe-developer list. The obe-user list is more concerned with using OBE than building it. So I've replied to both threads - let's continue this conversation on obe-developer. Thanks, Adrian Price Architect & Lead The Open Business Engine mailto:adr...@us... "tenax propositi, altiora peto" --__--__-- Message: 1 From: "Keshav Shetty" <kes...@eu...> To: obe...@li... Date: Thu, 04 May 2006 13:02:48 +0300 Subject: [Obe-user] OBE deploymemt on Oracle server OC4J Hi I am trying to setup and configure OBE workflow engine on Oracle application Server. I could download the OBE source code from http://obe.sourceforge.net But I couldn't get enough information on migrating to OAS. I tried with my knowledge of xdoclet to modify the same and build the OBE engine. Although build is successfull but it failed to deploy. The stack trace of OC4J console is attached with this mail. The stacktrace indicates that it is still making a build for Jboss and it is trying to access some Jboss classm "org/jboss/mx/util/PropertyAccess" I need your help and suggestion to migrate OBE to OAS. The version of OC4J we are using is 10.1.2.0.2 I request you respond at the earliest. or if possible send some userforums or discussion groups related to OBE. Thanks & regards Keshav K Shetty --__--__-- _______________________________________________ Obe-user mailing list Obe...@li... https://lists.sourceforge.net/lists/listinfo/obe-user End of Obe-user Digest |
|
From: Jorge M. <jor...@gm...> - 2006-05-04 16:08:01
|
Hi, this a response to message "Startas java.lang.LinkageError", I resolved this problem putting the obe app on a particular classloader. I use: <loader-repository-config>java2ParentDelegation=3Dfalse</loader-repository-= config> see this link for more information: http://www.jboss.org/wiki/Wiki.jsp?page=3DClassLoadingConfiguration It is posible that you have another problems with some library that no reside in obe ear, but in my case I can test some workflows successfully. With this, maybe you can test somethings. Jorge |
|
From: Adrian P. <ad...@bt...> - 2006-05-04 08:46:50
|
Jorge, Thank you very much for agreeing to contribute your Hibernate repository! I'm sure the community will be very interested in this development. The example workflows under $OBE_HOME/examples/config/processes contain many examples of simple activity assignment (using the XPDL <Performer> tag), but I'm afraid none of them use the completion or assignment strategy extensions. There is comprehensive documentation on configuring activity completion and assignment strategies (and other XPDL extensions) at http://obe.sourceforge.net/ext/xpdl.html. I deferred the items you mention in order to bring OBE to its 1.0 release for 2006, based on the belief that the community would prefer to see a stable, documented release sooner rather than later. The 'WfMC Sample Workflow Process' is a good example of subflow usage. Thanks, Adrian Price Architect & Lead The Open Business Engine mailto:adr...@us... "tenax propositi, altiora peto" ________________________________ From: Jorge Middleton [mailto:jor...@gm...] Sent: Tuesday, May 02, 2006 6:38 PM To: Adrian Price Subject: Re: obe Adrian, thanks for the quick answer. Yes, I am interested in contributing with you with a Hibernate-based repository. Now I'm reading and understanding the code and for now I belive that it easy to do. With respect to "evaluate Assignment", I would like to see some definition examples about process that configure Assignment, maybe an invocation of a subprocess. In OBE-1.0-TODO.txt, you have pending this issue: D Provide examples of the full range of XPDL & OBE semantics: - Subprocesses - ActivityBlock - Activity Completion Strategies - Workitem Assignment Strategies - Business Calendars - ForEach / While / Until Iterators I'm only interesting in Subprocesses, Activity Completion Strategies and Workitem Assignment Strategies samples if its posible. When I have a stable version, I'll give you the code. It could be posible to do some question when I have doubts? Thanks a lot.. Jorge. On 5/2/06, Adrian Price <ad...@bt...> wrote: Good day Jorge, I am glad to hear that OBE is of interest to you. I don't think you will have any problem with Spring and Hibernate. OBE is designed to allow pluggable repository implementations for both workflow process definitions (the 'process repository') and process instances (the 'instance repository'). At least one OBE user that I know of has done their own Hibernate-based repository implementation; in fact, at their request I made some modifications to the repository SPIs specifically to make a Hibernate version easier to implement. It would have been nice to have had the implementation as an open source contribution to the OBE project but unfortunately I'm told proved too hard to separate it from the rest of their application. So with experience that in mind... perhaps you would like to consider contributing your Spring / Hibernate repositories to the OBE project? They would be very well received - both are popular technologies that are of general interest. You would need to be careful to avoid direct dependencies between your repository implementations and your application, though, so that your code compiles against the OBE API / SPI alone. If you do decide that you'd like to contribute, it would be preferable to use a package like org.obe.server.hibernate or org.obe.server.spring. Please let us know what you think. There are some javabeans that might give you a head start: take a look at $OBE_HOME/obe/obeengine/src/org/obe/engine/persistence/memory/Basic*.java There's an example of sub-process invocation in the WfMC Sample Workflow Process - it's described in some detail in the OBE documentation (http://obe.sourceforge.net/examples/wfmc-sample.html). For an example of activity assignment take a look at the document approval workflow (http://obe.sourceforge.net/examples/document-approval.html). BTW those URLs won't come up in frames just yet. I'm not sure what you mean by "evaluate Assignment", could you be more specific? Best regards, Adrian. Adrian Price Architect & Lead The Open Business Engine mailto:adr...@us... "tenax propositi, altiora peto" ________________________________ From: Jorge Middleton [mailto:jor...@gm...] Sent: Friday, April 28, 2006 9:39 PM To: adr...@us... Subject: obe Sr. Adrian, My name is Jorge Middleton from Argentina and I'm designer of a system that requires to much use of the workflow. I have studied your workflow and I believe that cover all of my requirements but i have some doubts. My arquitecture is based on Spring and Hibernate and my intension is to save all stuff with Hibernate, It's possible to add a Repository that persist all objects with Hibernate?? Also I would like to know if you have more examples to see for evaluate Assignment, Subprocesses, etc... I saw that you have this pending, but maybe you just have something.OBE-1.0-TODO.txt you have this in pending state. If you can help me, I will appreciate you so much.. Thanks in advance and sorry for my english. Jorge L.Middleton |
|
From: Adrian P. <ad...@bt...> - 2006-05-04 08:30:53
|
Andi, To run the examples, you need to ensure that OBE is running with the 'examples' configuration enabled because the 'NewEmployeeHired' event is defined in $OBE_HOME/examples/config/BasicApplicationEventBroker.xml. (The default configuration is 'staging', which does not contain that event definition.) Basically, just execute the 'examples' shellscript in $OBE_HOME/bin before you start the server. The setting is persistent. You can do it from the command line or from an explorer window. Thanks, Adrian Price Architect & Lead The Open Business Engine mailto:adr...@us... "tenax propositi, altiora peto" -----Original Message----- From: obe...@li... [mailto:obe...@li...] On Behalf Of Andi Pangerang Sent: Wednesday, May 03, 2006 4:29 PM To: obe...@li... Subject: [Obe-developer] NewEmployeeHired node Hi all, I tried new employee workflow in the sample using JBOSS. When I tried to import the xpdl using cladmin, I get error saying that the system could not find "NewEmployeeHired" node. Please advise. Thx Andi ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Obe-developer mailing list Obe...@li... https://lists.sourceforge.net/lists/listinfo/obe-developer |
|
From: Andi P. <and...@ya...> - 2006-05-03 15:29:02
|
Hi all, I tried new employee workflow in the sample using JBOSS. When I tried to import the xpdl using cladmin, I get error saying that the system could not find "NewEmployeeHired" node. Please advise. Thx Andi |
|
From: Adrian P. <ad...@bt...> - 2006-05-02 17:14:22
|
Good day Jorge, I am glad to hear that OBE is of interest to you. I don't think you will have any problem with Spring and Hibernate. OBE is designed to allow pluggable repository implementations for both workflow process definitions (the 'process repository') and process instances (the 'instance repository'). At least one OBE user that I know of has done their own Hibernate-based repository implementation; in fact, at their request I made some modifications to the repository SPIs specifically to make a Hibernate version easier to implement. It would have been nice to have had the implementation as an open source contribution to the OBE project but unfortunately I'm told proved too hard to separate it from the rest of their application. So with experience that in mind... perhaps you would like to consider contributing your Spring / Hibernate repositories to the OBE project? They would be very well received - both are popular technologies that are of general interest. You would need to be careful to avoid direct dependencies between your repository implementations and your application, though, so that your code compiles against the OBE API / SPI alone. If you do decide that you'd like to contribute, it would be preferable to use a package like org.obe.server.hibernate or org.obe.server.spring. Please let us know what you think. There are some javabeans that might give you a head start: take a look at $OBE_HOME/obe/obeengine/src/org/obe/engine/persistence/memory/Basic*.java There's an example of sub-process invocation in the WfMC Sample Workflow Process - it's described in some detail in the OBE documentation (http://obe.sourceforge.net/examples/wfmc-sample.html). For an example of activity assignment take a look at the document approval workflow (http://obe.sourceforge.net/examples/document-approval.html). BTW those URLs won't come up in frames just yet. I'm not sure what you mean by "evaluate Assignment", could you be more specific? Best regards, Adrian. Adrian Price Architect & Lead The Open Business Engine mailto:adr...@us... "tenax propositi, altiora peto" ________________________________ From: Jorge Middleton [mailto:jor...@gm...] Sent: Friday, April 28, 2006 9:39 PM To: adr...@us... Subject: obe Sr. Adrian, My name is Jorge Middleton from Argentina and I'm designer of a system that requires to much use of the workflow. I have studied your workflow and I believe that cover all of my requirements but i have some doubts. My arquitecture is based on Spring and Hibernate and my intension is to save all stuff with Hibernate, It's possible to add a Repository that persist all objects with Hibernate?? Also I would like to know if you have more examples to see for evaluate Assignment, Subprocesses, etc... I saw that you have this pending, but maybe you just have something.OBE-1.0-TODO.txt you have this in pending state. If you can help me, I will appreciate you so much.. Thanks in advance and sorry for my english. Jorge L.Middleton |
|
From: Adrian P. <ad...@bt...> - 2006-04-26 12:00:54
|
Since it's an SQLException obviously something went wrong during database access, which is server-side. I presume you were using an RMI protocol to connect to the server? Is there any more information about this exception? You can get a stack trace by pressing 'E' for the menu command 'Print last exception' in CLAdmin and CLWorklist. Thanks, Adrian Price Architect & Lead The Open Business Engine mailto:adr...@us... "tenax propositi, altiora peto" _____ From: Krishnaiah Sriharikota, Noida [mailto:skr...@hc...] Sent: Monday, April 24, 2006 12:57 PM To: Adrian Price Subject: RE: [Obe-developer] Failed to import package Thanks for your help. There is no exception for server-side. Regards, Krishnaiah S. _____ From: Adrian Price [mailto:ad...@bt...] Sent: Monday, April 24, 2006 3:54 PM To: Krishnaiah Sriharikota, Noida Subject: RE: [Obe-developer] Failed to import package Good Day, It's quite possible there is a bug in the Oracle DDL - it was manually translated from the MySQL DDL and has not been tested. It's been my intention to modify the OBE build to use Torque to generate the DDL variants dynamically but I just haven't had the time to do it. Is there a server-side exception? Thanks, Adrian Price Architect & Lead The Open Business Engine mailto:adr...@us... "tenax propositi, altiora peto" _____ From: obe...@li... [mailto:obe...@li...] On Behalf Of Krishnaiah Sriharikota, Noida Sent: Friday, April 21, 2006 1:18 PM To: obe...@li... Subject: [Obe-developer] Failed to import package Hi, I am using JBoss4.0.3SP1 with Oracle9i. When I import xpdl file from cladmin shell it gives some exception which has been given below. *** Failed to import package [ID: null] (org.wfmc.wapi.WMWorkflowException: Coul d not create entity:java.sql.SQLException: Io exception: Connection reset by pee r: socket write error[_error=WMError[mainCode=WM_GENERAL_ERROR, subCode=null]]) Appreciate u r need help. Thanks & Regards, Krishnaiah S. HCL Technologies Ltd E-mail: <mailto:skr...@hc...> skr...@hc... Mobile: 91-9911186060 |
|
From: Adrian P. <ad...@bt...> - 2006-04-24 10:56:22
|
Good Day tecsee,
I haven't managed to deploy OBE on JBoss 4.0.3 successfully as yet, if I =
recall correctly the JBoss 4.0.3 installer did not produce a usable app =
server installation under Linux (the primary OBE development platform is =
JBoss on Fedora Core Linux). The problem you're seeing is lamentably =
common, and it is caused by the fact that the javax.xml.namespace.QName =
class is contained in multiple jar files which tend to get loaded in =
different orders by different ClassLoaders. This results in multiple =
copies of different versions of the class being loaded, which of course =
are incompatible with one another. Whenever I've seen a problem like =
this I've had to identify the jar containing the offending version and =
either remove it or change the JAR order in manifest Class-Path entries.
Are you running under JDK 1.5? You might want to try JDK 1.4 because JRE =
1.5 lib/rt.jar contains the jx.x.ns.QName class as well, but the JBoss =
UnifiedClassLoader3, when EAR-scoped (as OBE's is, to avoid crosstalk =
with other deployed applications), may be finding a different version =
in a JAR or EAR because it does not follow the normal =
parent-classloader-first delegation pattern.
Thanks,
Adrian Price
Architect & Lead
The Open Business Engine
mailto:adr...@us...
"tenax propositi, altiora peto"
-----Original Message-----
From: obe...@li... =
[mailto:obe...@li...] On Behalf Of tecsee
Sent: Wednesday, April 19, 2006 5:53 AM
To: obe-developer
Subject: [Obe-developer] Startas java.lang.LinkageError
Hello,
I am seeing some exceptions being thrown during obe startas .=20
The following is a portion of the log file during startup.=20
I did not include all of the exceptions since there are so many of them.
----------------------------
11:10:00,593 INFO [EJBDeployer] Deployed: =
file:/D:/application/jboss4.0.3/serve
r/default/tmp/deploy/tmp41097obeserver.ear-contents/obeserver-ejb.jar
11:10:00,718 INFO [TomcatDeployer] deploy, ctxPath=3D/obeexamples, =
warUrl=3D.../tmp =
/deploy/tmp41097obeserver.ear-contents/obeexamples-exp.war/
11:10:01,578 ERROR [[/obeexamples]] StandardWrapper.Throwable
java.lang.LinkageError: loader constraints violated when linking =
javax/xml/names pace/QName class
at org.wfmc.sample.CreditInfo.<clinit>(CreditInfo.java:109)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:217)
at org.apache.axis.utils.ClassUtils$2.run(ClassUtils.java:176)
at java.security.AccessController.doPrivileged(Native Method)
at =
org.apache.axis.utils.ClassUtils.loadClass(ClassUtils.java:160)
at org.apache.axis.utils.ClassUtils.forName(ClassUtils.java:100)
at =
org.apache.axis.deployment.wsdd.WSDDTypeMapping.getLanguageSpecificTy
pe(WSDDTypeMapping.java:183)
at =
org.apache.axis.deployment.wsdd.WSDDService.deployTypeMapping(WSDDSer
vice.java:542)
----------------------------
How to resolve this question?
Anyone could help me?
Thanks in advance.
=E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3=
=80=80=E3=80=802006-04-18
N=18=E7=90=80S^=E7=94=B8=E6=AE=9CX=EE=83=8D?=E7=9F=88=E8=BE=B5=E6=80=A5<=E7=
=BA=B6=E5=81=A4.=E6=BE=B2=E9=9B=A3??=1C?m=E5=A6=9C%jx.j =
=E7=93=8D=E7=8E=98=E8=B0=B1=EE=9C=BC=E8=AD=AC=EE=9A=BE=E6=B8=8F=E4=BA=98=E7=
=82=84=D0=A4?m=E2=94=B9=E6=AE=95=E9=88=BA=E9=97=89v&=E2=82=AC=E8=B9=B2=EE=
=9C=BC=E8=B1=9D?=E8=98=96=E5=AD=B3j=E8=96=A2=E6=BE=B5=E9=91=BA{az=E6=B0=A3=
=E6=AC=91^=E4=BB=8Bh=E3=83=AA=E5=96=88=E5=AB=A8n=E7=AA=94?=E9=84=AA{h?=E7=
=91=B5?=E2=88=9D=EE=9D=87=E6=92=B0?h?m=E7=A8=9B=EF=A3=B5=E9=81=8DZ=E6=90=BD=
=1FjY=1A=E5=80=83=EE=85=B7=E9=92=8Erg=E6=9D=AB=E5=A3=B8?
|
|
From: Andi P. <and...@ya...> - 2006-04-22 03:11:18
|
Hi, I am new to OBE and very interested in contributing to this project. I am currently learning the architecture and would like to know if there are any documentation related to the usage and design of the workflow server, workflow runner and asynchronous activity execution that I can read. Thanks in advance for the help. Andi |
|
From: Krishnaiah S. N. <skr...@hc...> - 2006-04-21 12:18:43
|
Hi, =20 I am using JBoss4.0.3SP1 with Oracle9i. When I import xpdl file from cladmin shell it gives some exception which has been given below. =20 *** Failed to import package [ID: null] (org.wfmc.wapi.WMWorkflowException: Coul d not create entity:java.sql.SQLException: Io exception: Connection reset by pee r: socket write error[_error=3DWMError[mainCode=3DWM_GENERAL_ERROR, subCode=3Dnull]]) =20 =20 Appreciate u r need help. =20 =20 =20 Thanks & Regards, Krishnaiah S. HCL Technologies Ltd E-mail: skr...@hc... <mailto:skr...@hc...>=20 Mobile: 91-9911186060 =20 |
|
From: tecsee <te...@12...> - 2006-04-19 04:53:49
|
SGVsbG8sDQoNCkkgYW0gc2VlaW5nIHNvbWUgZXhjZXB0aW9ucyBiZWluZyB0aHJvd24gZHVyaW5n IG9iZSBzdGFydGFzIC4gDQpUaGUgZm9sbG93aW5nIGlzIGEgcG9ydGlvbiBvZiB0aGUgbG9nIGZp bGUgZHVyaW5nIHN0YXJ0dXAuIA0KSSBkaWQgbm90IGluY2x1ZGUgYWxsIG9mIHRoZSBleGNlcHRp b25zIHNpbmNlIHRoZXJlIGFyZSBzbyBtYW55IG9mIHRoZW0uDQoNCi0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0NCjExOjEwOjAwLDU5MyBJTkZPICBbRUpCRGVwbG95ZXJdIERlcGxveWVkOiBm aWxlOi9EOi9hcHBsaWNhdGlvbi9qYm9zczQuMC4zL3NlcnZlDQpyL2RlZmF1bHQvdG1wL2RlcGxv eS90bXA0MTA5N29iZXNlcnZlci5lYXItY29udGVudHMvb2Jlc2VydmVyLWVqYi5qYXINCjExOjEw OjAwLDcxOCBJTkZPICBbVG9tY2F0RGVwbG95ZXJdIGRlcGxveSwgY3R4UGF0aD0vb2JlZXhhbXBs ZXMsIHdhclVybD0uLi4vdG1wDQovZGVwbG95L3RtcDQxMDk3b2Jlc2VydmVyLmVhci1jb250ZW50 cy9vYmVleGFtcGxlcy1leHAud2FyLw0KMTE6MTA6MDEsNTc4IEVSUk9SIFtbL29iZWV4YW1wbGVz XV0gU3RhbmRhcmRXcmFwcGVyLlRocm93YWJsZQ0KamF2YS5sYW5nLkxpbmthZ2VFcnJvcjogbG9h ZGVyIGNvbnN0cmFpbnRzIHZpb2xhdGVkIHdoZW4gbGlua2luZyBqYXZheC94bWwvbmFtZXMNCnBh Y2UvUU5hbWUgY2xhc3MNCiAgICAgICAgYXQgb3JnLndmbWMuc2FtcGxlLkNyZWRpdEluZm8uPGNs aW5pdD4oQ3JlZGl0SW5mby5qYXZhOjEwOSkNCiAgICAgICAgYXQgamF2YS5sYW5nLkNsYXNzLmZv ck5hbWUwKE5hdGl2ZSBNZXRob2QpDQogICAgICAgIGF0IGphdmEubGFuZy5DbGFzcy5mb3JOYW1l KENsYXNzLmphdmE6MjE3KQ0KICAgICAgICBhdCBvcmcuYXBhY2hlLmF4aXMudXRpbHMuQ2xhc3NV dGlscyQyLnJ1bihDbGFzc1V0aWxzLmphdmE6MTc2KQ0KICAgICAgICBhdCBqYXZhLnNlY3VyaXR5 LkFjY2Vzc0NvbnRyb2xsZXIuZG9Qcml2aWxlZ2VkKE5hdGl2ZSBNZXRob2QpDQogICAgICAgIGF0 IG9yZy5hcGFjaGUuYXhpcy51dGlscy5DbGFzc1V0aWxzLmxvYWRDbGFzcyhDbGFzc1V0aWxzLmph dmE6MTYwKQ0KICAgICAgICBhdCBvcmcuYXBhY2hlLmF4aXMudXRpbHMuQ2xhc3NVdGlscy5mb3JO YW1lKENsYXNzVXRpbHMuamF2YToxMDApDQogICAgICAgIGF0IG9yZy5hcGFjaGUuYXhpcy5kZXBs b3ltZW50LndzZGQuV1NERFR5cGVNYXBwaW5nLmdldExhbmd1YWdlU3BlY2lmaWNUeQ0KcGUoV1NE RFR5cGVNYXBwaW5nLmphdmE6MTgzKQ0KICAgICAgICBhdCBvcmcuYXBhY2hlLmF4aXMuZGVwbG95 bWVudC53c2RkLldTRERTZXJ2aWNlLmRlcGxveVR5cGVNYXBwaW5nKFdTRERTZXINCnZpY2UuamF2 YTo1NDIpDQotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQoNCkhvdyB0byByZXNvbHZlIHRo aXMgIHF1ZXN0aW9uPw0KDQpBbnlvbmUgY291bGQgaGVscCBtZT8NClRoYW5rcyBpbiBhZHZhbmNl Lg0KDQqhoaGhoaGhoaGhoaGhoaGhoaGhoTIwMDYtMDQtMTgNCg0K |
|
From: Adrian P. <ad...@bt...> - 2006-04-13 13:21:28
|
Good day, That particular source file is generated by JavaCC during the build = process. The fact that you're encountering difficulties suggests that = perhaps you aren't following the documented build procedure. Once you've = configured your build system according to the instructions at = http://obe.sourceforge.net/ (under 'Getting Started > Configuring and = Getting Started > Building), running the build should simply be a matter = of executing setenv followed by ant from the OBE_HOME directory. Best, Adrian. Adrian Price =20 "tenax propositi, altiora peto" -----Original Message----- From: obe...@li... = [mailto:obe...@li...] On Behalf Of tecsee Sent: Thursday, April 13, 2006 4:46 AM To: obe-developer Subject: [Obe-developer] Build error compiling obe Hello, I am trying to compile the obe-src-1.0RC1 version. but i find a error in org.obe.engine.util.AttributeFilter.java =20 ---------------------------- try { SQLParser parser =3D new SQLParser(new = StringReader(filterString)); SimpleNode root =3D parser.SQLOrExpr(); if (_logger.isDebugEnabled()) { StringWriter out =3D new StringWriter(); root.write(out); _logger.debug("filter parsed to: " + out.toString()); } return root; } catch (Throwable e) { throw new RepositoryException(e); } ---------------------------- in obe-src-1.0RC1 ,i can not find org.obe.sql.SQLParser.java=20 How to resolve this question? Anyone could help me? Thanks in advance. =E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3=80=80=E3= =80=80=E3=80=802006-04-13 N=18HS=E7=94=B8=E5=A5=A8=E7=9F=9A=E7=9F=88u?=E8=81=9C=E7=B0=BC=E8=AC=9E=EE= =9F=BB ?=E5=A6=9Cjxj = =E5=8F=93=E8=B0=B1v=E7=97=9EXj=E8=B2=AB=E6=A6=B7=E5=AE=AE=EE=9F=B7=E5=95=8E= =E9=96=A2&=E8=B9=B2v=E8=B2=A3+=E4=BC=B6j=E8=97=B5=E8=B2=96{z=E6=AE=AD=E7=BC= =83=E6=A5=97=E6=88=A4=E5=AA=99=E7=AA=89)=E5=A6=A0?=E6=BF=8E=E2=88=9D=E5=82= =8B??=E7=A8=9B=E9=81=8D=E6=90=BDjY=E5=80=83=EE=92=8Er |
|
From: tecsee <te...@12...> - 2006-04-13 03:47:20
|
SGVsbG8sDQoNCkkgYW0gdHJ5aW5nIHRvIGNvbXBpbGUgdGhlIG9iZS1zcmMtMS4wUkMxIHZlcnNp b24uDQoNCmJ1dCBpIGZpbmQgYSBlcnJvciBpbiBvcmcub2JlLmVuZ2luZS51dGlsLkF0dHJpYnV0 ZUZpbHRlci5qYXZhDQogDQotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICAgICAgIHRy eSB7DQogICAgICAgICAgICBTUUxQYXJzZXIgcGFyc2VyID0gbmV3IFNRTFBhcnNlcihuZXcgU3Ry aW5nUmVhZGVyKGZpbHRlclN0cmluZykpOw0KICAgICAgICAgICAgU2ltcGxlTm9kZSByb290ID0g cGFyc2VyLlNRTE9yRXhwcigpOw0KICAgICAgICAgICAgaWYgKF9sb2dnZXIuaXNEZWJ1Z0VuYWJs ZWQoKSkgew0KICAgICAgICAgICAgICAgIFN0cmluZ1dyaXRlciBvdXQgPSBuZXcgU3RyaW5nV3Jp dGVyKCk7DQogICAgICAgICAgICAgICAgcm9vdC53cml0ZShvdXQpOw0KICAgICAgICAgICAgICAg IF9sb2dnZXIuZGVidWcoImZpbHRlciBwYXJzZWQgdG86ICIgKyBvdXQudG9TdHJpbmcoKSk7DQog ICAgICAgICAgICB9DQogICAgICAgICAgICByZXR1cm4gcm9vdDsNCiAgICAgICAgfSBjYXRjaCAo VGhyb3dhYmxlIGUpIHsNCiAgICAgICAgICAgIHRocm93IG5ldyBSZXBvc2l0b3J5RXhjZXB0aW9u KGUpOw0KICAgICAgICB9DQotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQoNCmluIG9iZS1z cmMtMS4wUkMxICxpIGNhbiBub3QgZmluZCBvcmcub2JlLnNxbC5TUUxQYXJzZXIuamF2YSANCg0K SG93IHRvIHJlc29sdmUgdGhpcyAgcXVlc3Rpb24/DQoNCkFueW9uZSBjb3VsZCBoZWxwIG1lPw0K VGhhbmtzIGluIGFkdmFuY2UuDQoNCqGhoaGhoaGhoaGhoaGhoaGhoaGhMjAwNi0wNC0xMw0KDQo= |
|
From: Anthony E. <ant...@gm...> - 2006-01-05 23:21:49
|
Congratulations Adrian! I know you've been working your tail off to get thi= s thing out there! -Anthony On 05 Jan 2006 22:04:29 +0000, Adrian Price <ad...@bt...> wrote: > > Good Day OBE Developers and Users, > > It gives me great pleasure to announce that Release 1.0 of the Open > Business Engine occurred on 1st January 2006. Binary and source > distributions are downloadable from > http://sourceforge.net/project/showfiles.php?group_id=3D52553. > > OBE is a Java workflow engine implementing Workflow Management Coalition > Open Standards (WfMC: XPDL, WAPI, Auditing). Modular, configurable and > extensible, OBE suits J2EE or embedded deployment. The emphasis for the > 1.0 release has been on establishing a durable server-side architecture > with quality, standards support, extensibility and demonstrability as > key requirements. OBE 1.0 supports inbound and outbound integration via > scripting languages, XML, JMS, HTTP, Web Services, Java Apps, JavaBeans, > Native Apps,EJBs, WebDAV etc. etc. > > There's a capable web-based worklist handler application built using JSF > technology and and some exhaustively documented examples. > > There's a comprehensive HTML documentation set detailing installation, > configuration, execution, programming, etc., and there are also several > example XPDL workflows. > > Please report any problems to the appropriate OBE list: > > - obe-bugs for bug reports (search first) > - obe-user for 'how-to' questions > - obe-developer for help on writing OBE extensions such as services and > tool agents. > > Please let us know how you get on. > > Oh - and by the way - I'd still be interested to hear from any > organisation (commercial or otherwise) that's using OBE; it would be > helpful if I could include some brief product/usage examples in the > documentation. So far I have only heard back from Chalex Corp (thanks > Gary!). > > Good luck and best regards, > > Adrian Price > > OBE Architect > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log > files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=3D7637&alloc_id=3D16865&op=3Dclick > _______________________________________________ > Obe-developer mailing list > Obe...@li... > https://lists.sourceforge.net/lists/listinfo/obe-developer > |
|
From: Adrian P. <ad...@bt...> - 2006-01-05 22:04:52
|
Good Day OBE Developers and Users, It gives me great pleasure to announce that Release 1.0 of the Open Business Engine occurred on 1st January 2006. Binary and source distributions are downloadable from http://sourceforge.net/project/showfiles.php?group_id=52553. OBE is a Java workflow engine implementing Workflow Management Coalition Open Standards (WfMC: XPDL, WAPI, Auditing). Modular, configurable and extensible, OBE suits J2EE or embedded deployment. The emphasis for the 1.0 release has been on establishing a durable server-side architecture with quality, standards support, extensibility and demonstrability as key requirements. OBE 1.0 supports inbound and outbound integration via scripting languages, XML, JMS, HTTP, Web Services, Java Apps, JavaBeans, Native Apps,EJBs, WebDAV etc. etc. There's a capable web-based worklist handler application built using JSF technology and and some exhaustively documented examples. There's a comprehensive HTML documentation set detailing installation, configuration, execution, programming, etc., and there are also several example XPDL workflows. Please report any problems to the appropriate OBE list: - obe-bugs for bug reports (search first) - obe-user for 'how-to' questions - obe-developer for help on writing OBE extensions such as services and tool agents. Please let us know how you get on. Oh - and by the way - I'd still be interested to hear from any organisation (commercial or otherwise) that's using OBE; it would be helpful if I could include some brief product/usage examples in the documentation. So far I have only heard back from Chalex Corp (thanks Gary!). Good luck and best regards, Adrian Price OBE Architect |
|
From: Adrian P. <ad...@bt...> - 2006-01-05 22:04:44
|
Good Day OBE Developers and Users, It gives me great pleasure to announce that Release 1.0 of the Open Business Engine occurred on 1st January 2006. Binary and source distributions are downloadable from http://sourceforge.net/project/showfiles.php?group_id=52553. OBE is a Java workflow engine implementing Workflow Management Coalition Open Standards (WfMC: XPDL, WAPI, Auditing). Modular, configurable and extensible, OBE suits J2EE or embedded deployment. The emphasis for the 1.0 release has been on establishing a durable server-side architecture with quality, standards support, extensibility and demonstrability as key requirements. OBE 1.0 supports inbound and outbound integration via scripting languages, XML, JMS, HTTP, Web Services, Java Apps, JavaBeans, Native Apps,EJBs, WebDAV etc. etc. There's a capable web-based worklist handler application built using JSF technology and and some exhaustively documented examples. There's a comprehensive HTML documentation set detailing installation, configuration, execution, programming, etc., and there are also several example XPDL workflows. Please report any problems to the appropriate OBE list: - obe-bugs for bug reports (search first) - obe-user for 'how-to' questions - obe-developer for help on writing OBE extensions such as services and tool agents. Please let us know how you get on. Oh - and by the way - I'd still be interested to hear from any organisation (commercial or otherwise) that's using OBE; it would be helpful if I could include some brief product/usage examples in the documentation. So far I have only heard back from Chalex Corp (thanks Gary!). Good luck and best regards, Adrian Price OBE Architect |
|
From: Adrian P. <ad...@bt...> - 2005-11-30 16:47:31
|
There isn't a zip download available as yet, but it's all in CVS under the 'docs' module. If you run an 'ant build javadocs' from $OBE_DEV_HOME it'll build the whole doc set to $OBE_DEV_HOME/build/staging/docs. I'm hoping we'll have OBE-1.0RC1.zip/tgz downloads available by early next week. Adrian. On Mon, 2005-11-28 at 12:15, Gilson Nascimento Del Rei wrote: > Hi, > Is it set documentation available to download ? > > -----Original Message----- > From: obe...@li... > [mailto:obe...@li...] On Behalf Of Adrian Price > Sent: domingo, 27 de novembro de 2005 14:26 > To: Obe-User; Obe-Developer > Subject: [Obe-user] Request for feedback on commercial OBE usage > > > Good day all, > > As you may know I have been engaged for some while in readying OBE for > its formal 1.0 release. Amongst other things I've written a > comprehensive documentation set, in which I'd like to include a section > describing commercial products which are using OBE technology. If your > company is using OBE (either in a commercial product, in-house or as a > consultancy offering) and you would like a mention in the docs, please > respond as soon as possible with the following details: > > Company name > Product name > Product/Service synopsis (very brief: one or two sentences) Company web > site address Contact email address > > I hope very much to hear from as many organisations as possible. > > Thanks and best regards! > > Adrian Price. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log > files for problems? Stop! Download the new AJAX search engine that > makes searching your log files as easy as surfing the web. DOWNLOAD > SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Obe-user mailing list > Obe...@li... > https://lists.sourceforge.net/lists/listinfo/obe-user > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_idv37&alloc_id865&op=click > _______________________________________________ > Obe-developer mailing list > Obe...@li... > https://lists.sourceforge.net/lists/listinfo/obe-developer |
|
From: Gilson N. D. R. <gil...@cp...> - 2005-11-28 12:10:59
|
Hi, Is it set documentation available to download ? -----Original Message----- From: obe...@li... [mailto:obe...@li...] On Behalf Of Adrian Price Sent: domingo, 27 de novembro de 2005 14:26 To: Obe-User; Obe-Developer Subject: [Obe-user] Request for feedback on commercial OBE usage Good day all, As you may know I have been engaged for some while in readying OBE for its formal 1.0 release. Amongst other things I've written a comprehensive documentation set, in which I'd like to include a section describing commercial products which are using OBE technology. If your company is using OBE (either in a commercial product, in-house or as a consultancy offering) and you would like a mention in the docs, please respond as soon as possible with the following details: Company name Product name Product/Service synopsis (very brief: one or two sentences) Company web site address Contact email address I hope very much to hear from as many organisations as possible. Thanks and best regards! Adrian Price. ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=3D7637&alloc_id=3D16865&op=3Dclick _______________________________________________ Obe-user mailing list Obe...@li... https://lists.sourceforge.net/lists/listinfo/obe-user |
|
From: Adrian P. <ad...@bt...> - 2005-11-27 16:26:35
|
Good day all, As you may know I have been engaged for some while in readying OBE for its formal 1.0 release. Amongst other things I've written a comprehensive documentation set, in which I'd like to include a section describing commercial products which are using OBE technology. If your company is using OBE (either in a commercial product, in-house or as a consultancy offering) and you would like a mention in the docs, please respond as soon as possible with the following details: Company name Product name Product/Service synopsis (very brief: one or two sentences) Company web site address Contact email address I hope very much to hear from as many organisations as possible. Thanks and best regards! Adrian Price. |
|
From: Adrian P. <ad...@bt...> - 2005-11-06 21:50:16
|
Good day all, I've just checked in a bunch more changes: - Rationalised JNDI names for resources and EJBs. - Eliminated some app-server-specific build properties. - Fixed some meta-data inheritance and repository life-cycle bugs. - GOT ALL 218 TESTS WORKING AGAIN! Most of the Castor-related problems are now solved, although I'm still seeing occasional weirdness when Castor claims it can't find field descriptors that it had no trouble with on a previous test run, or on a previous deployment cycle. I have no idea what's causing the trouble. Next steps will be: - Rationalise & centralise client configuration. - Complete documentation. best regards, Adrian. On Fri, 2005-11-04 at 22:51, Adrian Price wrote: > Good day Vicente, Mélanie and others, > > I'm sorry about the difficulties you've been experiencing with the > latest OBE sources. There have been some considerable changes in the > run-up to the first formal release which do represent improvements but > have caused some problems which I'm still working on. > > One very significant change was the introduction of an EJB-based > application event broker. The event broker requires EJB 2.1 timer > services which in turn mandates the use of JBoss 4.0.1+. If you really > need to use JBoss 3.x you'll have to revert to the older, non-persistent > basic application event broker implementation. > > There were also considerable changes to the repository schema in order > to make the XML markup more compact and expressive and to use XML > namespaces but I am still wrestling with the latest (buggy) > Castor-0.9.9. Have already had to patch one intractable bug. It would > seem that the same XML files load perfectly when using a local, embedded > OBE engine but fail when loaded in the J2EE environment. Right now I'm > in the middle of a long debugging session trying to figure out why. It's > something to do with the namespaces on attributes. > > Will post again when I have a resolution. In the meantime, be aware that > CVS HEAD is very much 'bleeding edge' while I nail recently introduced > problems. > > Best regards, > > Adrian. > > > On Fri, 2005-11-04 at 19:39, Vicente Grassi Filho wrote: > > Hi Mélanie: > > > > I did the same thing as you did(downloaded the last version, etc...) and I also had problems, I don't remember exactly if it was this one. How to solve this? I've upgrated to JBoss-4.0.1(running on JDK 1.5.0_04) and it works > > fine. If you can upgrade, do it! > > > > Vicente Grassi Filho > > > > > > > > On Fri, 4 Nov 2005 13:39:52 -0500, Mélanie Gauthier <mga...@tr...> escreveu: > > > > > De: Mélanie Gauthier <mga...@tr...> > > > Data: Fri, 4 Nov 2005 13:39:52 -0500 > > > Para: <obe...@li...> > > > Assunto: [Obe-developer] Deployment problem > > > > > > > > > > > > Hi all, > > > > > > I decided to take a fresh and clean version from CVS. I've updated CVS, built a new EAR (it builds properly), built a new data base with OBE user, copied the JBOSS (I'm working with version 3.2.3) configuration files (in conf and in deploy folders) , put the obeserver.ear in it (server/default/deploy). The snmp-adaptor.sar has been deleted. But when I start JBOSS, I received the following error when it tries to deploy the ear : > > > > > > ------------------- > > > 14:18:04,892 WARN [verifier] EJB spec violation: > > > Bean : EventSubscription > > > Section: 22.2 > > > Warning: The Bean Provider must specify the fully-qualified name of the Java cla > > > ss that implements the enterprise bean's business methods in the <ejb-class> ele > > > ment. > > > Info : Class not found on 'org.obe.server.j2ee.ejb.EventSubscriptionEJB': Unex > > > pected error during load of: org.obe.server.j2ee.ejb.EventSubscriptionEJB, msg=j > > > avax/ejb/TimedObject > > > > > > 14:18:04,970 WARN [verifier] EJB spec violation: > > > Bean : ApplicationEvent > > > Section: 22.2 > > > Warning: The Bean Provider must specify the fully-qualified name of the Java cla > > > ss that implements the enterprise bean's business methods in the <ejb-class> ele > > > ment. > > > Info : Class not found on 'org.obe.server.j2ee.ejb.ApplicationEventEJB': Unexp > > > ected error during load of: org.obe.server.j2ee.ejb.ApplicationEventEJB, msg=jav > > > ax/ejb/TimedObject > > > > > > 14:18:05,095 ERROR [MainDeployer] could not create deployment: file:/C:/java/jbo > > > ss-3.2.3/server/default/tmp/deploy/tmp44385obeserver.ear-contents/obeserver-ejb. > > > jar > > > org.jboss.deployment.DeploymentException: Verification of Enterprise Beans faile > > > d, see above for error messages. > > > at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:491) > > > at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786) > > > at org.jboss.deployment.MainDeployer.create(MainDeployer.java:778) > > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641) > > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605) > > > at sun.reflect.GeneratedMethodAccessor21.invoke(Unknown Source) > > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > > > sorImpl.java:25) > > > at java.lang.reflect.Method.invoke(Method.java:324) > > > at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBea > > > nDispatcher.java:284) > > > at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546) > > > at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177) > > > at $Proxy6.deploy(Unknown Source) > > > at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymen > > > tScanner.java:302) > > > at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentS > > > canner.java:476) > > > at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread. > > > doScan(AbstractDeploymentScanner.java:201) > > > at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(A > > > bstractDeploymentScanner.java:274) > > > at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:1 > > > 92) > > > at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source) > > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > > > sorImpl.java:25) > > > at java.lang.reflect.Method.invoke(Method.java:324) > > > at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBea > > > nDispatcher.java:284) > > > at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546) > > > at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl > > > ler.java:976) > > > at $Proxy0.start(Unknown Source) > > > at org.jboss.system.ServiceController.start(ServiceController.java:394) > > > at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source) > > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > > > sorImpl.java:25) > > > at java.lang.reflect.Method.invoke(Method.java:324) > > > at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBea > > > nDispatcher.java:284) > > > at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546) > > > at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177) > > > at $Proxy4.start(Unknown Source) > > > at org.jboss.deployment.SARDeployer.start(SARDeployer.java:226) > > > at org.jboss.deployment.MainDeployer.start(MainDeployer.java:832) > > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:642) > > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605) > > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589) > > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. > > > java:39) > > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > > > sorImpl.java:25) > > > at java.lang.reflect.Method.invoke(Method.java:324) > > > at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBea > > > nDispatcher.java:284) > > > at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546) > > > at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177) > > > at $Proxy5.deploy(Unknown Source) > > > at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:384) > > > at org.jboss.system.server.ServerImpl.start(ServerImpl.java:291) > > > at org.jboss.Main.boot(Main.java:150) > > > at org.jboss.Main$1.run(Main.java:395) > > > at java.lang.Thread.run(Thread.java:534) > > > ------------------- > > > > > > I've checked that the EAR does contain the files mentionned in the error log. If anyone has experienced that problem, I would appreciate your help! > > > > > > Thanks! > > > > > > > > > Mélanie > > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > SF.Net email is sponsored by: > > Tame your development challenges with Apache's Geronimo App Server. Download > > it for free - -and be entered to win a 42" plasma tv or your very own > > Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php > > _______________________________________________ > > Obe-developer mailing list > > Obe...@li... > > https://lists.sourceforge.net/lists/listinfo/obe-developer > > > > ------------------------------------------------------- > SF.Net email is sponsored by: > Tame your development challenges with Apache's Geronimo App Server. Download > it for free - -and be entered to win a 42" plasma tv or your very own > Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php > _______________________________________________ > Obe-developer mailing list > Obe...@li... > https://lists.sourceforge.net/lists/listinfo/obe-developer |
|
From: Adrian P. <ad...@bt...> - 2005-11-04 22:51:52
|
Good day Vicente, Mélanie and others, I'm sorry about the difficulties you've been experiencing with the latest OBE sources. There have been some considerable changes in the run-up to the first formal release which do represent improvements but have caused some problems which I'm still working on. One very significant change was the introduction of an EJB-based application event broker. The event broker requires EJB 2.1 timer services which in turn mandates the use of JBoss 4.0.1+. If you really need to use JBoss 3.x you'll have to revert to the older, non-persistent basic application event broker implementation. There were also considerable changes to the repository schema in order to make the XML markup more compact and expressive and to use XML namespaces but I am still wrestling with the latest (buggy) Castor-0.9.9. Have already had to patch one intractable bug. It would seem that the same XML files load perfectly when using a local, embedded OBE engine but fail when loaded in the J2EE environment. Right now I'm in the middle of a long debugging session trying to figure out why. It's something to do with the namespaces on attributes. Will post again when I have a resolution. In the meantime, be aware that CVS HEAD is very much 'bleeding edge' while I nail recently introduced problems. Best regards, Adrian. On Fri, 2005-11-04 at 19:39, Vicente Grassi Filho wrote: > Hi Mélanie: > > I did the same thing as you did(downloaded the last version, etc...) and I also had problems, I don't remember exactly if it was this one. How to solve this? I've upgrated to JBoss-4.0.1(running on JDK 1.5.0_04) and it works > fine. If you can upgrade, do it! > > Vicente Grassi Filho > > > > On Fri, 4 Nov 2005 13:39:52 -0500, Mélanie Gauthier <mga...@tr...> escreveu: > > > De: Mélanie Gauthier <mga...@tr...> > > Data: Fri, 4 Nov 2005 13:39:52 -0500 > > Para: <obe...@li...> > > Assunto: [Obe-developer] Deployment problem > > > > > > > > Hi all, > > > > I decided to take a fresh and clean version from CVS. I've updated CVS, built a new EAR (it builds properly), built a new data base with OBE user, copied the JBOSS (I'm working with version 3.2.3) configuration files (in conf and in deploy folders) , put the obeserver.ear in it (server/default/deploy). The snmp-adaptor.sar has been deleted. But when I start JBOSS, I received the following error when it tries to deploy the ear : > > > > ------------------- > > 14:18:04,892 WARN [verifier] EJB spec violation: > > Bean : EventSubscription > > Section: 22.2 > > Warning: The Bean Provider must specify the fully-qualified name of the Java cla > > ss that implements the enterprise bean's business methods in the <ejb-class> ele > > ment. > > Info : Class not found on 'org.obe.server.j2ee.ejb.EventSubscriptionEJB': Unex > > pected error during load of: org.obe.server.j2ee.ejb.EventSubscriptionEJB, msg=j > > avax/ejb/TimedObject > > > > 14:18:04,970 WARN [verifier] EJB spec violation: > > Bean : ApplicationEvent > > Section: 22.2 > > Warning: The Bean Provider must specify the fully-qualified name of the Java cla > > ss that implements the enterprise bean's business methods in the <ejb-class> ele > > ment. > > Info : Class not found on 'org.obe.server.j2ee.ejb.ApplicationEventEJB': Unexp > > ected error during load of: org.obe.server.j2ee.ejb.ApplicationEventEJB, msg=jav > > ax/ejb/TimedObject > > > > 14:18:05,095 ERROR [MainDeployer] could not create deployment: file:/C:/java/jbo > > ss-3.2.3/server/default/tmp/deploy/tmp44385obeserver.ear-contents/obeserver-ejb. > > jar > > org.jboss.deployment.DeploymentException: Verification of Enterprise Beans faile > > d, see above for error messages. > > at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:491) > > at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786) > > at org.jboss.deployment.MainDeployer.create(MainDeployer.java:778) > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641) > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605) > > at sun.reflect.GeneratedMethodAccessor21.invoke(Unknown Source) > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > > sorImpl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:324) > > at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBea > > nDispatcher.java:284) > > at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546) > > at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177) > > at $Proxy6.deploy(Unknown Source) > > at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymen > > tScanner.java:302) > > at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentS > > canner.java:476) > > at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread. > > doScan(AbstractDeploymentScanner.java:201) > > at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(A > > bstractDeploymentScanner.java:274) > > at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:1 > > 92) > > at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source) > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > > sorImpl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:324) > > at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBea > > nDispatcher.java:284) > > at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546) > > at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl > > ler.java:976) > > at $Proxy0.start(Unknown Source) > > at org.jboss.system.ServiceController.start(ServiceController.java:394) > > at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source) > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > > sorImpl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:324) > > at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBea > > nDispatcher.java:284) > > at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546) > > at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177) > > at $Proxy4.start(Unknown Source) > > at org.jboss.deployment.SARDeployer.start(SARDeployer.java:226) > > at org.jboss.deployment.MainDeployer.start(MainDeployer.java:832) > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:642) > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605) > > at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589) > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. > > java:39) > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > > sorImpl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:324) > > at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBea > > nDispatcher.java:284) > > at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546) > > at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177) > > at $Proxy5.deploy(Unknown Source) > > at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:384) > > at org.jboss.system.server.ServerImpl.start(ServerImpl.java:291) > > at org.jboss.Main.boot(Main.java:150) > > at org.jboss.Main$1.run(Main.java:395) > > at java.lang.Thread.run(Thread.java:534) > > ------------------- > > > > I've checked that the EAR does contain the files mentionned in the error log. If anyone has experienced that problem, I would appreciate your help! > > > > Thanks! > > > > > > Mélanie > > > > > > > > > > > > > > > > > ------------------------------------------------------- > SF.Net email is sponsored by: > Tame your development challenges with Apache's Geronimo App Server. Download > it for free - -and be entered to win a 42" plasma tv or your very own > Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php > _______________________________________________ > Obe-developer mailing list > Obe...@li... > https://lists.sourceforge.net/lists/listinfo/obe-developer |