VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
switchserver at gmail.com Guest
|
Posted: Mon Mar 09, 2009 5:38 pm Post subject: [Freeswitch-users] RPC and web admin panel for conference? |
|
|
Hi all,
I'm looking to implement an admin panel much like the one used at http://conference.freeswitch.org. Now I obviously cannot login and see the "admin" part of the panel but I'm pretty sure whats in there.
I have xml_rpc running and can connect via http and issue commands. I've searched the forum here and went through the wiki, found nothing that looked like a panel. I was hoping to find a panel I can just configure and implement. Does anyone have a php (I guess, seeing as I have a php server) panel they can share with me? I'm sure I can get it working for my system. The thought of attempting one on my own at THIS point seems daunting at best.
Any help would be greatly appreciated!
Thanks |
|
Back to top |
|
|
krice at suspicious.org Guest
|
Posted: Tue Mar 10, 2009 5:39 pm Post subject: [Freeswitch-users] RPC and web admin panel for conference? |
|
|
Hey, I just implemented something like this and commited it to my contrib directory (scripts/contrib/swk ) its a mixture of amf-php, ESL, and Flex... Its not complete by anymeans and you need Flex3 to compile the UI... Anyone wanting to throw some patches at it for other functionality are welcome to do so... One thing is severly lacks at this time is ANY sort of authentication...so you wouldn’t want it publically open to the world K From: Harry FSwitch <switchserver@gmail.com> Reply-To: <freeswitch-users@lists.freeswitch.org> Date: Mon, 9 Mar 2009 18:17:41 -0400 To: <freeswitch-users@lists.freeswitch.org> Subject: [Freeswitch-users] RPC and web admin panel for conference? Hi all, I'm looking to implement an admin panel much like the one used at http://conference.freeswitch.org. Now I obviously cannot login and see the "admin" part of the panel but I'm pretty sure whats in there. I have xml_rpc running and can connect via http and issue commands. I've searched the forum here and went through the wiki, found nothing that looked like a panel. I was hoping to find a panel I can just configure and implement. Does anyone have a php (I guess, seeing as I have a php server) panel they can share with me? I'm sure I can get it working for my system. The thought of attempting one on my own at THIS point seems daunting at best. Any help would be greatly appreciated! Thanks _______________________________________________ Freeswitch-users mailing list Freeswitch-users@lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users http://www.freeswitch.org |
|
Back to top |
|
|
e.schmidbauer at gmail... Guest
|
Posted: Thu Mar 12, 2009 1:57 pm Post subject: [Freeswitch-users] RPC and web admin panel for conference? |
|
|
I would like to try out and possibly contribute to your web admin
panel. I was wondering if i need flash 8 or Flash MX 2004 for this to
work though. Please let me know because I do not have a copy of that
software and I am not sure if I can run it on linux (which I am
running freeswitch on).
On Tue, Mar 10, 2009 at 6:32 PM, Ken Rice <krice@suspicious.org> wrote:
Quote: | Hey, I just implemented something like this and commited it to my contrib
directory (scripts/contrib/swk ) its a mixture of amf-php, ESL, and Flex...
Its not complete by anymeans and you need Flex3 to compile the UI...
Anyone wanting to throw some patches at it for other functionality are
welcome to do so... One thing is severly lacks at this time is ANY sort of
authentication...so you wouldn’t want it publically open to the world
K
________________________________
From: Harry FSwitch <switchserver@gmail.com>
Reply-To: <freeswitch-users@lists.freeswitch.org>
Date: Mon, 9 Mar 2009 18:17:41 -0400
To: <freeswitch-users@lists.freeswitch.org>
Subject: [Freeswitch-users] RPC and web admin panel for conference?
Hi all,
I'm looking to implement an admin panel much like the one used at
http://conference.freeswitch.org. Now I obviously cannot login and see the
"admin" part of the panel but I'm pretty sure whats in there.
I have xml_rpc running and can connect via http and issue commands. I've
searched the forum here and went through the wiki, found nothing that looked
like a panel. I was hoping to find a panel I can just configure and
implement. Does anyone have a php (I guess, seeing as I have a php server)
panel they can share with me? I'm sure I can get it working for my system.
The thought of attempting one on my own at THIS point seems daunting at
best.
Any help would be greatly appreciated!
Thanks
________________________________
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
krice at suspicious.org Guest
|
Posted: Thu Mar 12, 2009 2:30 pm Post subject: [Freeswitch-users] RPC and web admin panel for conference? |
|
|
Its a 2 part solution
Part 1 is PHP + AMF-PHP + ESL
AMF-PHP is a class for PHP to do the Flash/Flex Serialized Binary Data
format for communication to the back end
ESL is FS's Event Socket Library that has been wrapped for use in FreeSwitch
The Flex Client requires at least Flash 9 runtime to run...
To compile it, you'll need either the Flex IDE, the Eclipse Flex plugin
(both from adobe) or the opensource flex compiler
In its current form its not meant to be a 'user facing' controller, but it
can be used as a starting point. I have tried to be generic as possible
about what I am implementing.
K
Quote: | From: e schmidbauer <e.schmidbauer@gmail.com>
Reply-To: <freeswitch-users@lists.freeswitch.org>
Date: Thu, 12 Mar 2009 14:38:33 -0400
To: <freeswitch-users@lists.freeswitch.org>
Subject: Re: [Freeswitch-users] RPC and web admin panel for conference?
I would like to try out and possibly contribute to your web admin
panel. I was wondering if i need flash 8 or Flash MX 2004 for this to
work though. Please let me know because I do not have a copy of that
software and I am not sure if I can run it on linux (which I am
running freeswitch on).
On Tue, Mar 10, 2009 at 6:32 PM, Ken Rice <krice@suspicious.org> wrote:
Quote: | Hey, I just implemented something like this and commited it to my contrib
directory (scripts/contrib/swk ) its a mixture of amf-php, ESL, and Flex...
Its not complete by anymeans and you need Flex3 to compile the UI...
Anyone wanting to throw some patches at it for other functionality are
welcome to do so... One thing is severly lacks at this time is ANY sort of
authentication...so you wouldnąt want it publically open to the world
K
________________________________
From: Harry FSwitch <switchserver@gmail.com>
Reply-To: <freeswitch-users@lists.freeswitch.org>
Date: Mon, 9 Mar 2009 18:17:41 -0400
To: <freeswitch-users@lists.freeswitch.org>
Subject: [Freeswitch-users] RPC and web admin panel for conference?
Hi all,
I'm looking to implement an admin panel much like the one used at
http://conference.freeswitch.org. Now I obviously cannot login and see the
"admin" part of the panel but I'm pretty sure whats in there.
I have xml_rpc running and can connect via http and issue commands. I've
searched the forum here and went through the wiki, found nothing that looked
like a panel. I was hoping to find a panel I can just configure and
implement. Does anyone have a php (I guess, seeing as I have a php server)
panel they can share with me? I'm sure I can get it working for my system.
The thought of attempting one on my own at THIS point seems daunting at
best.
Any help would be greatly appreciated!
Thanks
________________________________
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|