How to send call to isdn phone by web based php application? - php

I am looking for a solution for a web based application written in PHP where the users are able to control their isdn phones, primarily sending calls to their phone. I know there is something like Asterik / freepbx but i am not sure wether it's the answer to the task, neither do i know how the setup would be.
Would the client have to install a virtual server with pbx running on their machine? Or can this be achived by some sort of socket interface (TAPI) ?
Any useful hints are appreciated

after Farkie gave me the right direction i finally found a useful post that solved my question.
http://www.linux-magazin.de/Ausgaben/2008/01/Zeit-fuer-was-Neues

Related

Not able to connect Php application with SharePoint

I am a php developer have no experience with Share Point. I have follow these two links to get Data from Share Point into my Php application.
stackoverflow question here.
A Library for Share Point here.
Share Point team give me 2 IP address. What they said is, I have to login at Forti Client with first IP then second IP is used to access application in browser which is also prompted for Credentials. If I not login in Forti Client with first IP, Web Application will not work at all. One more thing is, this process is working well in windows system but not working on ubuntu (Linux).
So, My Php applications are running on AWS linux ( ec-tier ). I have to get data from Share Point.
I just want to know is it possible to get data from Share Point into my application.
If it is possible then what is the process that I should follow in order to get data.
Kindly help me with your suggestions/answers. Thank you.
Hope these links help you out.
Forti Client CLI for Linux click here.
Shell Script To Use CLI click here.
Is it a SharePoint List or Document library?
If it's a list, use web API to call for the required info.
Refer to my answer in this post:
how to add a connection to a sharepoint list to a word addin

Remote Desktop Access using Laravel

In my project I am thinking of adding a technical support where a user will enter his/her queries .and my tech support will access the computer remotely and help to solve the problem. Its a web application and I am using laravel( php framework). I only have a little idea on how to do it. I have tried searching it . but it didn't gave me any proper result.
According to me it can be done by using Socket programming in which I have to get user's Public Ip and his/her MAC address .because public ip can be same if two or pc are connected to same router(I think so).
I need some guidance on how to accomplish it. I have heard that laravel has a package for socket programming named as socket.io.
Please give me a proper path to walk on. I need guidance on what I will be needed in doing this. please help me.

is it possible to test a USSD application local machine before you deploy?

I want to start on developing an application ussd.mais I 'd like to know if there is a way to test it on my local machine in the same way for web site with WampServer before deployement .
I know this answer is coming a year late but it could help someone else so i will still post it. you can use http://africastalking.com they have a very easy to use platform. Just discovered them and am using them for my project.
You can use Restcomm USSD Gateway as it contains a simulator. See Documentation at http://documentation.telestax.com/core/tutorials/running-USSD-push-example.html#ussd
Yes, it is possible to test your USSD application on your local machine, but it largely depends on the gateway you're using. While some aggregators offer USSD simulators, others don't. A few Simulators out there are:
http://www.ideamart.lk/idea-pro/start-up-the-simulator
https://github.com/smsgh/ussd-mocker

Advice regarding either a web based FTP or a File Sending service

I could use some advice.
I'm building a website in which the general user needs to be able to transfer files to the site administrator. It could be done one of two ways:
1] Some kind of web based interface - PHP perhaps - to send files to the FTP. I've done some Googling but have yet to come up with anything concrete that works. I've considered using an Applet but I need something free. Also, it seems to me that people are hesitant to give Applets permission to run in their browser.
2] Some kind of file transfer service. I've looked at services like Megaupload but using a free account, the files are public and that will not work. I need something that a user could use to send a file to the administrator who could pick it up later.
If anyone has some suggestions, it would be appreciated.
Thanks in advance.
You can do file upload via http if you have enough space (which I assume since you also have access to a ftp server). See here for more information.

Is there a way to implement an XMPP client or message reciever that can recieve all the messages from an XMPP server?

Basically im trying to build a bot that can send a message using one of many accounts out to a user and be able to receive messages to that account it originally used process and do whatever I need it to do. So far I found the JAXL library (http://code.google.com/p/jaxl/) but based on examples it is only able to handle one user at a time. Any suggestions or ideas?
thank you in advanced.
btw if there is anyway to make the server automatically forward those messages to another program or whatever that works just as well.
I think you are looking for a external component.... Jaxl v 2.0 does allow you having component bots written in PHP http://github.com/abhinavsingh/JAXL
I think what you're asking is: "Can I send a copy of all the 'outgoing' messages on a server to an XMPP client?" The answer to that question is "sort of."
You're looking at two pieces, server configuration and client/component configuration. You probably don't want a client. because it needs to log in as a particular user. You're describing a component, which is a trusted application running on the XMPP server or nearby, and acts as part of the server.
The server configuration part depends on which server you're using. I know XCP can do this kind of thing, such as with a message archive component. With ma you'd make a component to write the messages to a log or database. You'd be making a similar component that grepped strings for street addresses and sent out flowers, or something -- whatever action you needed to happen.
The big assumption I'm making is that you are in complete control of the server here. If you don't then the answer is "no."
I recently used the smack library to host dozens of 'Xmpp bots'. There was no such limitation that you could only connect as a single user. Just spawned a thread for each bot, made him connect as an individual xmpp user on a server (and even on different servers) and do its job. In my case the bots simply sent test messages to test chat rooms, but a proxy service (as I understood it from your question) is possible as well.
The threads were even designed to create the user and delete it after stopping.

Categories