[rt-users] calling bin/rt from apache / getting 2 rt instances talking to each other
Raed El-Hames
rfh at vialtus.com
Wed Jan 6 07:35:27 EST 2010
Hi;
Have anyone tried using the rt client (rt3/bin/rt) from within the web
interface (apache2/mod_perl2) ?
Or have anyone tried to get 2 RT instances talking to each other (in a
method other than email)?
We have 2 sites each with its own RT and sometimes there will be shared
issues that both sites need to deal with, the process I thought of is :
- have a ticket in RT.com1 , within the ticket display page a button
that will create a ticket in RT.com2 (via REST), and another button
that allow updating a ticket in RT.com2 from the current ticket (in
RT.com1).
I am trying to use Apache2::RequestUtil->request to spawn sub process to
call the rt client :
my $r = Apache2::RequestUtil->request;
$r->spawn_proc_prog($com, \@com_args);
where $com is rt3/bin/rt
and @com_args being ("create", "-t", "ticket", "set",
"subject=$subject", "queue=$queue", "requestor=\"user.name at email.com\"")
to create a ticket
and
("correspond", "-m", "$text", "$ticket_number") to update a ticket
Creating seem to work fine , however updating is randomly dying with
Segmentation fault?
Any help or pointers is appreciated, I am not fussed about using
Apache2::RequestUtil any alternative is fine for me ?
Regards;
Roy
More information about the rt-users
mailing list