Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response.

2012-05-09 Thread Kulkarni, Vikrant
09, 2012 6:23 AM To: arslist@ARSLIST.ORG Subject: Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response. ** I try to keep things on the server side when I can. Too many variables on the client side to dream of dealing with. wget is another program you can use

PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response.

2012-05-08 Thread Vikram
Hi, I am in search of something I have not done before. We are trying to implement sms functionality for one of our customer. In short the requirement is such that we have a sms gateway URL which has destination number, and 2 text fields embedded into the URL. Once when we hit the URL with

Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response.

2012-05-08 Thread Misi Mladoniczky
Hi, The best way would probably be to write a small filter-plugin that can do the call from the server. Or you might be able to write some small javascript-code for Mid-Tier that does the call. If you create a small View-field, and assign the URL to that field. The returned value should be

Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response.

2012-05-08 Thread Kulkarni, Vikrant
) [mailto:arslist@ARSLIST.ORG] On Behalf Of Misi Mladoniczky Sent: Tuesday, May 08, 2012 4:01 PM To: arslist@ARSLIST.ORG Subject: Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response. Hi, The best way would probably be to write a small filter-plugin that can do the call from

Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response.

2012-05-08 Thread Sabyson Fernandes
questions. Saby From: Kulkarni, Vikrant vkulka...@columnit.com To: arslist@ARSLIST.ORG Sent: Tuesday, May 8, 2012 6:35 AM Subject: Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response. Thx Misi, One confusion still. I liked

Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response.

2012-05-08 Thread John Sundberg
Vikram, If this company is a Kinetic customer - use a Task Handler in the Task Engine. (sort of like curl comment by Saby) FYI - I am in NYC - if you want - I can stop by the Column Office. -John On Tue, May 8, 2012 at 4:22 AM, Vikram vkulka...@columnit.com wrote: Hi, I am in search of

Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response.

2012-05-08 Thread Chuck
I agree call the URL from the AR Server. View fields are inherently limited by whatever version of IE dll, ocx whatever. I use perl's http libs to get data via urls. Active Link - Service Call - Filter - Set Fields Run Process (Blocking process) - Perl On Tuesday, May 8, 2012 4:22:16 AM

Re: PROBLEM :Invoking 3rd party sms gateway URL via remedy and capturing the response.

2012-05-08 Thread Axton
I try to keep things on the server side when I can. Too many variables on the client side to dream of dealing with. wget is another program you can use. A filter plugin would not be hard to write. I think it could be done in 100 lines of code. On Tue, May 8, 2012 at 7:01 PM, Chuck