Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-30 Thread Michiel Beijen
If you're looking into Joarse I guess you should also consider ExpertDesk Plus; http://code.google.com/p/edplus/ Kind regards, Michiel On 6/29/07, Mike Wallick <[EMAIL PROTECTED]> wrote: That's what I get for writing an email in a hurry :) I wasn't all that clear on what I was asking. What

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-29 Thread Jeff Murphy
Mike Wallick wrote: > Right now I'm just fishing for options/feedback and researching how I > might accomplish something like this. CGI and/or mod_perl is one > method I am considering, along with a Java API/JSP/Servlet method. > >>> I tried several ways of serializing the control record in Perl

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-29 Thread Mike Wallick
Right now I'm just fishing for options/feedback and researching how I might accomplish something like this. CGI and/or mod_perl is one method I am considering, along with a Java API/JSP/Servlet method. Mike On 6/29/07, Clayton Scott <[EMAIL PROTECTED]> wrote: > Mark, > I take it that you're doing

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-29 Thread Clayton Scott
Mark, I take it that you're doing CGI and not mod_perl? You could persist the username and password in the session and call ars_Login on each part of the request, or build a separate daemon process that does your communications to ARS. The overhead on setting up a new control record was pretty l

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-29 Thread Mike Wallick
I tried several ways of serializing the control record in Perl with no luck and using CGI::Session, Apache::Session, .etc.. I've given up going down that avenue. It looks like Java is the way I want to go. When is 7.1 slated for release? This summer (July maybe?) IIRC. Thanks, everyone. Again, th

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-29 Thread Axton W Grams/NYLIC
Sounds like what you are trying to do is emulate the session pool/proxy that the java api provides, using arsperl. I am not sure how you would approach this. Most interpreted languages have a problem with persistence with things like this, unless there is a way to serialize the data. I'm not

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-29 Thread Clayton Scott
Mike, You should be able to stuff the control into a session variable and hang onto it for the duration of the session if you are using mod_perl and CGI::Session or Apache::Session. One thing that the API is missing (I'm pretty sure that this is a problem with the ARS API and not perl or a misun

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-29 Thread Paizo
i started with joarse and found it very easy to use for learn basic things... but its incomplete and with very poor documentation so i swap to perl very soon. 2007/6/29, Mike Wallick <[EMAIL PROTECTED]>: Oh, one more thing...my apologies for drifting off topic. I suppose I should have posted th

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-29 Thread Mike Wallick
Oh, one more thing...my apologies for drifting off topic. I suppose I should have posted this reply to the ARSList (since now this thread has little to do with ARSPerl). Mike On 6/29/07, Mike Wallick <[EMAIL PROTECTED]> wrote: > That's what I get for writing an email in a hurry :) I wasn't all th

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-29 Thread Mike Wallick
That's what I get for writing an email in a hurry :) I wasn't all that clear on what I was asking. What I was asking originally was not how to maintain state (that I knew), what I was wondering was if/how I could use references to a server-side control record by way of tying it to an http session,

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-27 Thread Carey Matthew Black
Mike, Ref: http://www.webopedia.com/TERM/S/session_cookie.html http://www.allaboutcookies.org/cookies/session-cookies-used-for.html http://searchwebservices.techtarget.com/sDefinition/0,,sid26_gci752450,00.html IMHO... this is a bad way to keep state for a web site. It is client side and could

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-26 Thread Mike Wallick
gt;* Sent by: [EMAIL PROTECTED] 06/26/2007 12:15 PM Please respond to ARSperl User Discussion To [email protected] cc Subject [Arsperl-users] Using ARSPerl to Build a Web Interface Hey all. So I'm working on a proof of concept idea for myself. I want to look into rolling my o

Re: [Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-26 Thread Axton W Grams/NYLIC
. Axton Grams "Mike Wallick" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 06/26/2007 12:15 PM Please respond to ARSperl User Discussion To [email protected] cc Subject [Arsperl-users] Using ARSPerl to Build a Web Interface Hey all. So I'm working on a proo

[Arsperl-users] Using ARSPerl to Build a Web Interface

2007-06-26 Thread Mike Wallick
Hey all. So I'm working on a proof of concept idea for myself. I want to look into rolling my own web interface to Remedy using ARSPerl, and before I go too far down that road, I wanted to ask everyone to share any and all experiences (if any) they may have had. I'm fairly familiar with Perl devel