Re: Alternatives To Remedy For Consuming A Web Service

2006-09-13 Thread Jarl Grøneng
I got this information from one of the script plugin developers a couple of years ago: --- During ARPluginInitialization() we create and initialize the JVM, which is a one time thing. I.e., there is only one embedded JVM - not one for each thread. Creating a native thread handle

Re: Alternatives To Remedy For Consuming A Web Service

2006-09-12 Thread Carey Matthew Black
Alvaro, Turn to the Filter Plug in model. They are instantiated with the Plugin server and destroyed with it too. You should be able to do some tuning from there. But that is C. Unless you use the Java Filter Plug in and that might ( I have never got a straight answer on it) start a new JVM for

Re: Alternatives To Remedy For Consuming A Web Service

2006-09-11 Thread Munoz, Alvaro
Hi All, Just wondering if is it possible to run a Java code within the Remedy JVM when executing it from an Active Link Run Process (The code is run in the server @@:)? Regards, Alvaro -Original Message- From: Action Request System discussion list(ARSList) [mailto:[EMAIL PROTECTED]

Re: Alternatives To Remedy For Consuming A Web Service

2006-09-11 Thread Jarl Grøneng
What is a Remedy JVM? -- Jarl On 9/11/06, Munoz, Alvaro [EMAIL PROTECTED] wrote: Hi All, Just wondering if is it possible to run a Java code within the Remedy JVM when executing it from an Active Link Run Process (The code is run in the server @@:)? Regards, Alvaro -Original

Re: Alternatives To Remedy For Consuming A Web Service

2006-09-11 Thread Steinberg, Bruce W
Title: Re: Alternatives To Remedy For Consuming A Web Service ** Jarl, Java Virtual Machine. Bruce From: Action Request System discussion list(ARSList) on behalf of Jarl GrønengSent: Mon 9/11/2006 7:27 AMTo: arslist@ARSLIST.ORGSubject: Re: Alternatives To Remedy For Consuming A Web

Re: Alternatives To Remedy For Consuming A Web Service

2006-09-11 Thread Russell Wurth
I do not think this is possible. Each run process command opens a shell on the server. If you are calling a Java process, it will start it's own JVM (Java Virtual Machine). I should clarify that Remedy only launches a JVM if you have installed and are using the web services plugin, a

Re: Alternatives To Remedy For Consuming A Web Service

2006-09-11 Thread Jarl Grøneng
I know, but I wonder was a Remedy JVM was. -- Jarl On 9/11/06, Steinberg, Bruce W [EMAIL PROTECTED] wrote: ** Jarl, Java Virtual Machine. Bruce From: Action Request System discussion list(ARSList) on behalf of Jarl Grøneng Sent: Mon 9/11/2006 7:27 AM To:

Alternatives To Remedy For Consuming A Web Service

2006-09-08 Thread Clements, Paul
Title: Alternatives To Remedy For Consuming A Web Service ** Hi, I am currently having problems getting a WSDL to parse in Remedy. The feeling I get from speaking to people off list is that Remedy is simply incapable of working with WSDL files of a certain complexity. Personally I find this

Re: Alternatives To Remedy For Consuming A Web Service

2006-09-08 Thread Jarl Grøneng
Community Downloads has an example using a filter plugin. Search for rugwebservice.cpp Or of you familiar with Perl, you may get it running with the Perl ARFilter plugin, and using a SOAP module in Perl -- Jarl On 9/8/06, Clements, Paul [EMAIL PROTECTED] wrote: ** Hi, I am currently

Re: Alternatives To Remedy For Consuming A Web Service

2006-09-08 Thread Russell Wurth
Paul, One method I have had success with is using Java to call the web service For the Java piece, get the Java Web Services Developer pack (v1.6 for JDK 1.5; v2.0 for JDK 1.5) and use wscompile to generate Java stubs from your WSDL. Then you can use Remedy's Java Scripting Filter Plugin,