Displaying 9 results from an estimated 9 matches for "managerconnect".
2015 Aug 06
3
Asterisk uses "Anonymous", but why?
...mand line.
> >
> > Richard
>
>
> Hi Richard
> What should I use for extension? Since I am not bridging an extension with
> outbound, but making an outbound call and playing a sound file, what would
> be the extension?
>
> Here is my Asterisk-Java code:
>
> managerConnection.addEventListener(this);
> originateAction = new OriginateAction();
> originateAction.setChannel("SIP/"+ani);
> originateAction.setContext("from-pstn");
> originateAction.setExten(????);
>...
2006 Feb 27
1
Problems dialing to another Asterisk server
...uot;);
originateAction.setCallerId("asterisk");
originateAction.setCallingPres(new Boolean(true));
originateAction.setContext("mariaSIP");
originateAction.setExten("222");
originateAction.setPriority(nPriority);
originateAction.setTimeout(nTimeout);
originateResponse = managerConnection.sendAction(originateAction, 30000);
if(originateResponse.getResponse().equals("Success"))
{
setVarAction.setVariable("STRING3");
setVarAction.setValue("SIP/6020");
originateResponse = managerConnection.sendAction(setVarAction, 30000);
if(originateRespons...
2015 Aug 06
4
Asterisk uses "Anonymous", but why?
On Thu, Aug 6, 2015 at 11:56 AM, Murthy Gandikota <murthy64 at hotmail.com>
wrote:
> Tested with X-Lite and it worked fiine. Is there some way to replace
> "Anonymous" with a config parameter?
>
> Thanks for your kind help
>
> ----------------------------------------
> > From: murthy64 at hotmail.com
> > To: asterisk-users at lists.digium.com
>
2015 Aug 06
2
Asterisk uses "Anonymous", but why?
...> >
> > Hi Richard
> > What should I use for extension? Since I am not bridging an extension
> > with outbound, but making an outbound call and playing a sound file,
> > what would be the extension?
> >
> > Here is my Asterisk-Java code:
> >
> > managerConnection.addEventListener(this);
> > originateAction = new OriginateAction();
> > originateAction.setChannel("SIP/"+ani);
> > originateAction.setContext("from-pstn");
> > originateAction.setExten(????);
> > originateAction.setPriority(new Integer(1));
>...
2005 Aug 04
3
SIPPeersAction class file not found in the Asterisk-java.jar file
Hello Everybody,
I am working on Fastagi and I am making use of
Asterisk-java. But I don't find the class file for SIPPeersAction. Hence I
am getting the error message when compiling my java code.
----------------------------------------------------------------------------
------------------------------------------------
[root@localhost asterisk-java-0.1]#
2011 Jan 10
3
How to check a number online or offline
Hi all,
Now i want to check a number (channel) online, offline or unreachable on
asterisk but i don`t know to do. Can anyone help me to solve this issue.
Thanks and best regard!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110109/c193b48d/attachment.html>
2007 Mar 05
1
Re: Asterisk Java w/ Threads
With Asterisk-Java the proposed solution to connect to multiple Asterisk
servers is to create multiple AsteriskManagerConnection obeject.
Each ManagerConnection handles its own thread so there is no need for
custom thread handing code.
All you have to do is to make sure is the EventListener objects you pass
to these connections synchronize access to shared data (if there are
such accesses).
I think this approach is rather...
2005 Aug 30
0
ANNOUNCEMENT: Asterisk-Java 0.2-rc1 released
...Asterisk 1.0.x.
The changes include
* Support for the new Actions, Events and Commands of Asterisk 1.2
* New support for event generating Actions, i.e. Actions
that send their result as a series of Event rather than
the usual ManagerResults. See the sendEventGeneratingAction()
methods in ManagerConnection for more information.
* New base class for AGI scripts that allows you write cleaner
AGI scripts as you don't have to pass the channel variable
to all methods.
* New convenience constructors for manager actions
* Some minor bug fixes
Asterisk-Java is used in several commercial env...
2007 Feb 12
0
Asterisk-Java 0.3 Milestone 2
...software distributed under the terms of the Apache
License 2.0.
Here is the Changelog:
Bug
* [AJ-47] - AGI does not support multi line data
* [AJ-51] - Problems with non-english locales
* [AJ-52] - Fix shutdown when using the live api
Improvement
* [AJ-41] - Add ability to get ManagerConnection from AsteriskServer
* [AJ-49] - Support socket read timeout
New Feature
* [AJ-35] - Support timestamp property on manager events
* [AJ-42] - Add support QueueSummary action to Queue manager
interface
* [AJ-44] - Support PauseMonitor and UnpauseMonitor actions...