Search found 8 matches

by ossys
18 Dec 2014, 00:50
Forum: Help
Topic: [SOLVED] Setting Invoker URL
Replies: 2
Views: 1695

Re: [SOLVED] Setting Invoker URL

Yes, I guess I missed that button! oops! Thanks!
by ossys
18 Dec 2014, 00:04
Forum: Help
Topic: [SOLVED] Setting Invoker URL
Replies: 2
Views: 1695

[SOLVED] Setting Invoker URL

Hello, I created an Invoker in Kernel/GenericInterface/Invoker/Test and it works great! However, I can not find out how to set the IP address used by the invoking service? I have looked in Admin under SysConfig, I have looked at the settings for the WebService and the Invoker in the admin panel... I...
by ossys
17 Dec 2014, 03:38
Forum: Help
Topic: [SOLVED] Kernel::System::Ticket->TicketGet() Fields
Replies: 2
Views: 1979

Re: Kernel::System::Ticket->TicketGet() Fields

Yes that's exactly what I needed, thank you very much for the assistance!!
by ossys
16 Dec 2014, 20:26
Forum: Help
Topic: [SOLVED] Kernel::System::Ticket->TicketGet() Fields
Replies: 2
Views: 1979

[SOLVED] Kernel::System::Ticket->TicketGet() Fields

I'm working with the Kernel::System::Ticket API as defined here: http://otrs.github.io/doc/api/otrs/3.3/Kernel/System/Ticket.pm.html I'm getting the ticket as follows: $Self->{TicketObject} = Kernel::System::Ticket->new( %Param ); my %TicketInfo = $Self->{TicketObject}->TicketGet( TicketID => $Param...
by ossys
16 Dec 2014, 17:15
Forum: Help
Topic: [SOLVED] GenericInterface::Invoker
Replies: 3
Views: 7705

Re: GenericInterface::Invoker

Awesome! That worked perfectly! I did notice several StackOverflow and Forum questions regarding this where the common answer seemed to be to create and invoke a TicketGet web service with the TicketID rather than just instantiating a Ticket object. This would be very helpful information to provide ...
by ossys
16 Dec 2014, 00:19
Forum: Help
Topic: [SOLVED] GenericInterface::Invoker
Replies: 3
Views: 7705

[SOLVED] GenericInterface::Invoker

I created an invoker module such as Kernel::GenericInterface::Invoker::Test:MyModule that is trigged on CreateTicket. The module is registered, everything seems to be working very well. However, in the PrepareRequest() method, I only receive the TicketID in my $Param{Data} object: $Param{Data}->{Tic...
by ossys
12 Dec 2014, 19:19
Forum: Help
Topic: [SOLVED] Apache2::Reload Problems
Replies: 1
Views: 2552

Re: Apache2::Reload Problems

I figured it out, I needed to su as www-data and restart the OTRS scheduler in the bin/ directory:

Code: Select all

$ ./bin/otrs.Scheduler.pl -a stop
$ ./bin/otrs.Scheduler.pl -a start
And just for good measure I restart the Apache2 web server:

Code: Select all

$ sudo service apache2 restart
by ossys
11 Dec 2014, 20:33
Forum: Help
Topic: [SOLVED] Apache2::Reload Problems
Replies: 1
Views: 2552

[SOLVED] Apache2::Reload Problems

Hello: I'm working to implement a Kernel::GenericInterface::Invoker::Test::MyModule module in order to send XML request to a remote server on ticket creation. Everything is working and we are indeed sending the data to the correct server. However, when attempting to update the module perl code, it d...