[PHP] soft Phone

2009-03-10 Thread shahrzad khorrami
Hi all :-)

I want to use of *soft phone* application in my php codes..First is it
possible? has php a module for this purpose?
if it hasn't... By the way I think I must use of something else such as a
java application in my php codes...
now how can I embed this application to my program? and do you know where I
can find this application source code?


Thanks in advance,
shahrzad khorrami


Re: [PHP] soft Phone

2009-03-10 Thread Michael A. Peters

shahrzad khorrami wrote:

Hi all :-)

I want to use of *soft phone* application in my php codes..First is it
possible? has php a module for this purpose?
if it hasn't... By the way I think I must use of something else such as a
java application in my php codes...
now how can I embed this application to my program? and do you know where I
can find this application source code?


Thanks in advance,
shahrzad khorrami



http://www.voip-info.org/wiki-Open+Source+VOIP+Software

You should be able to obtain the source code to anything listed there 
and legally use it (so long as abide by the terms of the open source 
license for the project you use)


I don't know of any existing php modules for software phones, I suspect 
that's really beyond the scope of php (unless you are writing client 
side scripting, ala php-gtk).


I can't speak to integrating php with java. You can embed java applet in 
a web page, but I personally haven't a clue about how to make them talk 
to each other.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] soft Phone

2009-03-10 Thread haliphax
On Tue, Mar 10, 2009 at 8:25 AM, Michael A. Peters mpet...@mac.com wrote:
 shahrzad khorrami wrote:

 Hi all :-)

 I want to use of *soft phone* application in my php codes..First is it
 possible? has php a module for this purpose?
 if it hasn't... By the way I think I must use of something else such as a
 java application in my php codes...
 now how can I embed this application to my program? and do you know where
 I
 can find this application source code?


 Thanks in advance,
 shahrzad khorrami


 http://www.voip-info.org/wiki-Open+Source+VOIP+Software

 You should be able to obtain the source code to anything listed there and
 legally use it (so long as abide by the terms of the open source license for
 the project you use)

 I don't know of any existing php modules for software phones, I suspect
 that's really beyond the scope of php (unless you are writing client side
 scripting, ala php-gtk).

 I can't speak to integrating php with java. You can embed java applet in a
 web page, but I personally haven't a clue about how to make them talk to
 each other.

http://php-java-bridge.sourceforge.net/

Still a bit shaky, but maybe worth looking at.


-- 
// Todd

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] soft Phone

2009-03-10 Thread Nathan Nobbe
On Tue, Mar 10, 2009 at 5:54 AM, shahrzad khorrami 
shahrzad.khorr...@gmail.com wrote:

 Hi all :-)

 I want to use of *soft phone* application in my php codes..First is it
 possible? has php a module for this purpose?
 if it hasn't... By the way I think I must use of something else such as a
 java application in my php codes...


i used to work at smoothstone ip communictations where i wrote a simple php
wrapper to a java client which communicated w/ a T6000 backend.  it was
pretty sweet, and once a php api was exposed, we started setting up cool
interfaces on the browser, like click to answer, etc.  so, there may not be
a native interface, but you can cetainly connect php one way or another.  in
the worst case, youd have to reverse engineer the protocol for w/e the pbx
system is you intend to interface w/.


 now how can I embed this application to my program? and do you know where I
 can find this application source code?


what sort of pbx do you intend to interface w/ ?

-nathan