Re: modify apache ode source code

2011-03-17 Thread Milinda Pathirage
I think best option is to deploy EJB in a container which expose EJB as a web service and invoke it via Web Service. Thanks Milinda On Thu, Mar 17, 2011 at 8:05 PM, Shivaraj Tenginakai wrote: > > https://github.com/sarithi/indus/blob/master/examples/services/workflow/HelloWorldWorkflowService/ma

Re: modify apache ode source code

2011-03-17 Thread Shivaraj Tenginakai
https://github.com/sarithi/indus/blob/master/examples/services/workflow/HelloWorldWorkflowService/mainline/src/main/process/SayHello.bpel See all namespaces with "java:". Thanks, Shivaraj On Thu, Mar 17, 2011 at 7:58 PM, meri wrote: > > Could you explain me how could i call java functions dir

Re: modify apache ode source code

2011-03-17 Thread meri
Could you explain me how could i call java functions directly from BPEL ? -- View this message in context: http://old.nabble.com/modify-apache-ode-source-code-tp31170831p31172983.html Sent from the Apache Ode Dev mailing list archive at Nabble.com.

Re: modify apache ode source code

2011-03-17 Thread Shivaraj Tenginakai
You can call java functions directly from BPEL. That should work, right? Shivaraj On Thu, Mar 17, 2011 at 3:10 PM, meri wrote: > > My manager asked me to search if there is a way to call directly EJB without > using Web Services. I  download source code of Apache ODE and i began > reading about

Re: modify apache ode source code

2011-03-17 Thread meri
Please could you explain me in detail how can i call EJB's from Apache? -- View this message in context: http://old.nabble.com/modify-apache-ode-source-code-tp31170831p31171221.html Sent from the Apache Ode Dev mailing list archive at Nabble.com.

Re: modify apache ode source code

2011-03-17 Thread meri
My manager asked me to search if there is a way to call directly EJB without using Web Services. I download source code of Apache ODE and i began reading about its architecture but i didn't understand how it calls Web Services( which package and class responsible for that) -- View this message i

Re: modify apache ode source code

2011-03-17 Thread Sanka Samaranayake
Following is the class which invokes external Web services if you use Axis2 integration. [1] http://svn.apache.org/viewvc/ode/trunk/axis2/src/main/java/org/apache/ode/axis2/SoapExternalService.java?view=markup HTH Sanka On Thu, Mar 17, 2011 at 9:44 AM, meri wrote: > > Hello, > > > I am a compu

Re: modify apache ode source code

2011-03-17 Thread Jeff Yu
I am a bit confused here, why not publish that EJB as web service? Regards Jeff On Thu, Mar 17, 2011 at 7:44 PM, meri wrote: > > Hello, > > > I am a computer engineer student. > I have download the source code of apache ode. I am looking for the > class that contains the method that invokes the

Re: modify apache ode source code

2011-03-16 Thread Mariem Mlouka
Please Can u help me to find which part of Apache ODE responsible for invoking web services? (Class or method )