<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: What is the best way to call methods of a Stateless EJB? in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18378#M8375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey guys.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I wanted to ping that again. In the current implementation with the DelegateExecution you cannot access enough stuff, so you have to cast for a lot of requirements. We should improve that to avoid the necessity of casting for basic use cases (like seeing in with activity we are at the moment).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Nov 2010 12:49:37 GMT</pubDate>
    <dc:creator>bernd_ruecker</dc:creator>
    <dc:date>2010-11-03T12:49:37Z</dc:date>
    <item>
      <title>What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18370#M8367</link>
      <description>Hey guys,I found four ways to call a method of a Stateless EJB. Which one do you recommend?My environment: Activiti5.beta1; EJB3; JBoss AS 5.1.) In the first listing I have an EJB which is already injected via JBoss AS. I'm setting the EJB as variable when the process is started.…@EJB(name="ejb/frie</description>
      <pubDate>Mon, 13 Sep 2010 22:56:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18370#M8367</guid>
      <dc:creator>mskaesz</dc:creator>
      <dc:date>2010-09-13T22:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18371#M8368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;you should call your ejb just like you would do from a servlet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in the activiti behavior, you should look up the local home in jndi and perform the invocation on that bean.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Sep 2010 05:40:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18371#M8368</guid>
      <dc:creator>tombaeyens</dc:creator>
      <dc:date>2010-09-14T05:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18372#M8369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In my oppinion implementing the Activiti Behavior is just a temporary solution since EventListeners (like in jBPM) are not available. So I think it is best for now.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Having it as a process variable is too risky in sense of lifecycle I think (you have to make sure, the reference is not persisted, and that it is available all the time you need it).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For 3 I cannot say too much, since I don't know the latest status to be honest, 4 may be an option, but I think technically you should avoid the WebService overhead if you can, even if that maybe makes your BPMN 2.0 process better portable to other BPMN 2.0 engines (theoretically ;-)).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bernd&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Sep 2010 07:56:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18372#M8369</guid>
      <dc:creator>bernd_ruecker</dc:creator>
      <dc:date>2010-09-14T07:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18373#M8370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I agree with Bernd in that a Java class attached to a BPMN Service Task should not be forced to call performDefaultOutgoingBehavior(execution) or execution.take(transition).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Essentially, a Java-based BPMN Service Task should work like a jBPM4 Java Activity and must not be able to influence the execution of the Sequence Flow, as that would violate BPMN's execution semantics. As a shortcut, one could have a ServiceTaskBehavior interface, that allows random access to data objects, but only read access to the execution state.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There might be also a need for custom BPMN Flow Node implementations, which do influence the execution of the Sequence Flow. However, such a custom Flow Node should be called neither Service Task nor Activity, when it can really behave like any Flow Node even Gateway or Event.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Sep 2010 10:26:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18373#M8370</guid>
      <dc:creator>falko_menge</dc:creator>
      <dc:date>2010-09-14T10:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18374#M8371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Would it be a solution to split the interface for the 2 different purposes:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) One interface for service task implementations that does not expose control flow operations.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) One interface for advanced use cases that does expose control flow operations.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First I want to hear if this is a good solution.&amp;nbsp;&amp;nbsp; And a subsequent aspect from this is the naming of those interfaces.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For (1) we could leverage the PVM EventListener interface.&amp;nbsp; Is it necessary to create a BPMN duplicate for this?&amp;nbsp; Last time we discussed this we said no i think.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For (2) we could just delegate to ActivityBehavior itself for this in similar manner.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Sep 2010 09:07:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18374#M8371</guid>
      <dc:creator>tombaeyens</dc:creator>
      <dc:date>2010-09-15T09:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18375#M8372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For (1) the PVM EventListener interface does not seem suitable, as it doesn't provide read-only access to the state of the process instance and is too much focused on event handling. I'd suggest something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;public interface ServiceTaskBehavior {&lt;BR /&gt;&amp;nbsp; void execute(ServiceTaskExecution execution) throws Exception;&lt;BR /&gt;}&lt;BR /&gt;&lt;/CODE&gt;&lt;SPAN&gt;with ServiceTaskExecution being the following subset of ActivityExecution:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;public interface ServiceTaskExecution extends DelegateExecution {&lt;BR /&gt;&amp;nbsp; PvmActivity getActivity();&lt;BR /&gt;&amp;nbsp; ActivityExecution getParent();&lt;BR /&gt;&amp;nbsp; List&amp;lt;? extends ActivityExecution&amp;gt; getExecutions();&lt;BR /&gt;&amp;nbsp; boolean isActive();&lt;BR /&gt;&amp;nbsp; boolean isConcurrent();&lt;BR /&gt;&amp;nbsp; boolean isProcessInstance();&lt;BR /&gt;&amp;nbsp; List&amp;lt;ActivityExecution&amp;gt; findInactiveConcurrentExecutions(PvmActivity activity);&lt;BR /&gt;}&lt;BR /&gt;&lt;/CODE&gt;&lt;SPAN&gt;However, one could argue, whether it is good to have Service Tasks the behave differently, based on their location in a process definition and the execution state of the process instance. If not, a DelegateExecution would be enough. Any opinions on that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For (2) the ActivityBehavior interface is fine, although in terms of BPMN it is more a FlowNodeBehavior. But, I agree that it doesn't make sense to introduce another interface just for the sake of using BPMN terminology if the rest of the APIs isn't using it anyway.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As a third option I'd suggest the Service Task being able to call an arbitrary method of some Java class with explicit parameter passing as in the jBPM4 Java Activity.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Sep 2010 11:04:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18375#M8372</guid>
      <dc:creator>falko_menge</dc:creator>
      <dc:date>2010-09-15T11:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18376#M8373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;wever, one could argue, whether it is good to have Service Tasks the behave differently, based on their location in a process definition and the execution state of the process instance. If not, a DelegateExecution would be enough. Any opinions on that?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;I would like to have these information. If you for example just want to log the current node name or something like that, it make sense. The important thing is, that you cannot influence anything.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Sep 2010 07:37:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18376#M8373</guid>
      <dc:creator>bernd_ruecker</dc:creator>
      <dc:date>2010-09-16T07:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18377#M8374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The discussion about Java-based BPMN Service Tasks is continued in &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-156" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-156&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Sep 2010 09:05:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18377#M8374</guid>
      <dc:creator>falko_menge</dc:creator>
      <dc:date>2010-09-25T09:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18378#M8375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey guys.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I wanted to ping that again. In the current implementation with the DelegateExecution you cannot access enough stuff, so you have to cast for a lot of requirements. We should improve that to avoid the necessity of casting for basic use cases (like seeing in with activity we are at the moment).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 12:49:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18378#M8375</guid>
      <dc:creator>bernd_ruecker</dc:creator>
      <dc:date>2010-11-03T12:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18379#M8376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Bernd, could you describe what you are missing ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Currently its basically variables only, which is appropiate I think for the typical delegation use cases.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want the more powerful stuff, you need to implement the ActivityBehavior interface, which gives you access to the more powerful operations.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;From the docs:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;To implement a class that can be called during process execution, this class needs to implement the org.activiti.engine.delegate.JavaDelegation interface and provide the required logic in the execute method. When process execution arrives at this particular step, it will execute this logic defined in that method and leave the activity in the default BPMN 2.0 way.&lt;BR /&gt;&lt;BR /&gt;[EXPERIMENTAL] It is also possible to provide a class that implements the org.activiti.engine.impl.pvm.delegate.ActivityBehavior interface. Implementations have then access to the more powerful ActivityExecution that for example also allows to influence the control flow of the process. Note however that this is not a very good practice, and should be avoided as much as possible. So, it is advised to use the ActivityBehavior interface only for advanced use cases and if you know exactly what you're doing.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 14:05:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18379#M8376</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2010-11-03T14:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18380#M8377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As Bernd said, the most important requirement would be access to the current activity. In case you still hesitate to expose the object graph of the parsed process definition for introspection, we should at least provide its name and ID.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 14:14:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18380#M8377</guid>
      <dc:creator>falko_menge</dc:creator>
      <dc:date>2010-11-08T14:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18381#M8378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Which are available on the ActivityExecution (getActivity()).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What would you do with it in a regular service task invocation?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I still don't see the use case for exposing the current activity in the JavaDelegation.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 16:15:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18381#M8378</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2010-11-09T16:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18382#M8379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does it hurt us so badly, if we just expose a String with id of the current activity through something like &lt;/SPAN&gt;&lt;EM&gt;getCurrentActivityId()&lt;/EM&gt;&lt;SPAN&gt;, so that the &lt;/SPAN&gt;&lt;EM&gt;ActivityBehavior&lt;/EM&gt;&lt;SPAN&gt; interface can "be avoided as much as possible."?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 10:08:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18382#M8379</guid>
      <dc:creator>falko_menge</dc:creator>
      <dc:date>2010-11-10T10:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18383#M8380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The JavaDelegation has as a main purpose to hide as much methods as possible so that users are encouraged to use the stable methods only.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There's always use cases to add more methods of ActivityExecution or ExecutionEntity.&amp;nbsp; The more we add the less stable methods we'll expose.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So in conclusion, we want to limit the constraints we put on ourselves after 5.0. So I don't think it's good to add it.&amp;nbsp; I don't see the problem with the cast or just implementing an ActivityBehavior instead.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 11:03:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18383#M8380</guid>
      <dc:creator>tombaeyens</dc:creator>
      <dc:date>2010-11-10T11:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18384#M8381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi jbarrez, falko.menge, and tombaeyens,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Would you please explain me the downside of the following way to call EJB method (just another thought):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. define a class A, which has method m1() invoking a &lt;/SPAN&gt;&lt;STRONG&gt;stateless&lt;/STRONG&gt;&lt;SPAN&gt; EJB.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. instance an object from the class A and given it as &lt;/SPAN&gt;&lt;STRONG&gt;a process variable&lt;/STRONG&gt;&lt;SPAN&gt; a.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. using expression call a.m1() in process&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it really bad and why?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Waiting for your answer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very very much&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jan 2011 18:09:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18384#M8381</guid>
      <dc:creator>ryu</dc:creator>
      <dc:date>2011-01-27T18:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to call methods of a Stateless EJB?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18385#M8382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Nope, if I read it correctly there is nothing bad about that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jan 2011 11:03:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/what-is-the-best-way-to-call-methods-of-a-stateless-ejb/m-p/18385#M8382</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2011-01-28T11:03:58Z</dc:date>
    </item>
  </channel>
</rss>

