definitely not a phone call..http request
Main Topics
Browse All TopicsI have to design a system which should accept calls from a system A( mostly this is not coded in PERL ) and should be able to take corresponding action based on the call. Once i capture the call/signal i can write perl module that does the work based on the signal. How could i implement his ? some says i could use SOAP but say that i should code a web server that listens to a port. I would appreciate if you can provide some references(code snippet,web link) as well. Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
If you are using apache:
1) Write a script that you want executed when system A calls
Use the CGI module to get the signals system A sends
http://search.cpan.org/~ld
2) Save the script on the machine with Apache
3) Edit your apache configuration (httpd.conf or apahce2.conf, depending on dist and ver) so the directory used in step 2 is accesible,
and has permission to execute scripts. Do this with either the ScriptAlias directive, or use Options +ExecCGI in the directory section
4) Have system A make the call (http request) using the appropriate directory and name
Business Accounts
Answer for Membership
by: Adam314Posted on 2009-10-02 at 12:59:41ID: 25481520
What do you mean by "call"? Is this a function call? A phone call? An http request?