Skip to content

Commit 6f9b0bf

Browse files
committed
Initial import
0 parents  commit 6f9b0bf

56 files changed

Lines changed: 3584 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
_site
2+
.sass-cache
3+
.DS_Store
4+
*.sublime-project
5+
*.sublime-workspace
6+
codekit-config.json
7+
node_modules
8+
_asset_bundler_cache
9+
.jekyll-metadata

.ruby-gemset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jekyll

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby-2.3.0
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
author: srt
3+
comments: true
4+
date: 2006-08-23 01:43:00+00:00
5+
layout: post
6+
permalink: debugging-manager-api-776
7+
slug: debugging-manager-api
8+
title: Debugging Manager API
9+
wordpress_id: 776
10+
tags:
11+
- asterisk
12+
---
13+
14+
Start ngrep either on the Asterisk server or on the client:
15+
16+
17+
18+
19+
20+
21+
ngrep -s 1500 port 5038 -T
22+
23+
24+
25+
26+
27+
28+
A successful login results in output like this:
29+
30+
31+
32+
33+
34+
35+
interface: eth1 (10.13.0.0/255.255.255.0)
36+
filter: (ip or ip6) and ( port 5038 )
37+
####
38+
T +7.653003 10.13.0.102:5038 -> 10.13.0.55:46779 [AP]
39+
Asterisk Call Manager/1.2..
40+
##
41+
T +0.113468 10.13.0.55:46779 -> 10.13.0.102:5038 [AP]
42+
action: Challenge..actionid: 29181730_0#..authtype: MD5....
43+
##
44+
T +0.000391 10.13.0.102:5038 -> 10.13.0.55:46779 [AP]
45+
Response: Success..ActionID: 29181730_0#..Challenge: 171465739....
46+
##
47+
T +0.036776 10.13.0.55:46779 -> 10.13.0.102:5038 [AP]
48+
action: Login..actionid: 29181730_1#..key: fdc46063e81c6c5ab84188698e0cb55b..authtype: MD5..username: manager....
49+
#
50+
T +0.001271 10.13.0.102:5038 -> 10.13.0.55:46779 [AP]
51+
Response: Success..
52+
#
53+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
author: srt
3+
comments: true
4+
date: 2006-09-22 20:40:00+00:00
5+
layout: post
6+
permalink: asterisk-1-4-beta-released-416
7+
slug: asterisk-1-4-beta-released
8+
title: Asterisk 1.4 beta released
9+
wordpress_id: 416
10+
tags:
11+
- asterisk
12+
---
13+
14+
Digium has released a first beta of Asterisk 1.4 which is scheduled for October.
15+
16+
17+
18+
19+
It is available from [http://www.asterisk.org](http://www.asterisk.org).
20+
21+
22+
23+
24+
Now its time to review the changes and see what finally made it into the new stable branch of Asterisk and adjust Asterisk-Java accordingly. I hope there won't be too much to add to Asterisk-Java as we already closely followed the development of Asterisk. If all goes well Asterisk-Java 0.3 should be available with full Asterisk 1.4 support short time after the final Asterisk 1.4 release.
Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
---
2+
author: srt
3+
comments: true
4+
date: 2006-09-26 01:35:00+00:00
5+
layout: post
6+
permalink: asterisk-java-0-3-milestone-1-676
7+
slug: asterisk-java-0-3-milestone-1
8+
title: Asterisk-Java 0.3 Milestone 1
9+
wordpress_id: 676
10+
tags:
11+
- asterisk-java
12+
---
13+
14+
Asterisk-Java 0.3 Milestone 1 has been released and is available from [http://asterisk-java.org/download/0.3-m1](http://asterisk-java.org/download/0.3-m1). The package name has been changed from net.sf.asterisk to org.asteriskjava and it makes use of Java 5 features so you need at least a JDK 1.5.
15+
16+
17+
18+
19+
20+
A whole bunch of new features has been added including support for SSL secured connections to the Manager API and the new org.asteriskjava.live package that handles call tracking and allows you to build applications like click2call very easily and without all the hassles involved in directly using the Manager API.
21+
22+
23+
24+
25+
26+
Here is the Changelog:
27+
28+
29+
30+
31+
32+
## Bug
33+
34+
35+
36+
37+
38+
39+
* [[AJ-17](http://jira.reucon.org/browse/AJ-17)] - call.getChannel() is null when using AsteriskManager.originateCall()
40+
41+
42+
* [[AJ-25](http://jira.reucon.org/browse/AJ-25)] - Timing issue with ResourceBundleMappingStrategy
43+
44+
45+
* [[AJ-27](http://jira.reucon.org/browse/AJ-27)] - ManagerReader Interrupt
46+
47+
48+
* [[AJ-31](http://jira.reucon.org/browse/AJ-31)] - getParameter() Bug
49+
50+
51+
* [[AJ-32](http://jira.reucon.org/browse/AJ-32)] - Incorrect usage of ConnectEvent
52+
53+
54+
* [[AJ-33](http://jira.reucon.org/browse/AJ-33)] - no setter for the dnd field
55+
56+
57+
* [[AJ-34](http://jira.reucon.org/browse/AJ-34)] - redirect action for 2 channels not works
58+
59+
60+
* [[AJ-36](http://jira.reucon.org/browse/AJ-36)] - Bug with CommandAction: result is overwritten each time
61+
62+
63+
* [[AJ-37](http://jira.reucon.org/browse/AJ-37)] - Default CompositeMappingStrategy doesn't honor fastagi-mapping.properties
64+
65+
66+
* [[AJ-39](http://jira.reucon.org/browse/AJ-39)] - Missing property "callerId" on ExtensionStatusEvent
67+
68+
69+
70+
71+
72+
## New Feature
73+
74+
75+
76+
77+
78+
79+
* [[AJ-28](http://jira.reucon.org/browse/AJ-28)] - Add support for login with eventMask
80+
81+
82+
* [[AJ-29](http://jira.reucon.org/browse/AJ-29)] - Add support for non-shared instances to ResourceBundleMappingStrategy and ClassNameMappingStrategy
83+
84+
85+
86+
87+
88+
## Task
89+
90+
91+
92+
93+
94+
95+
* [[AJ-18](http://jira.reucon.org/browse/AJ-18)] - Change to maven2
96+
97+
98+
* [[AJ-19](http://jira.reucon.org/browse/AJ-19)] - Change package name to org.asteriskjava
99+
100+
101+
* [[AJ-26](http://jira.reucon.org/browse/AJ-26)] - Fix @version javadoc tags which are broken since moving to svn
102+
103+
104+
105+
106+
107+
Documentation for 0.3-m1 is available at [http://asterisk-java.org/0.3-m1/](http://asterisk-java.org/0.3-m1/).
108+
109+
110+
111+
112+
113+
Asterisk-Java 0.3 will be released with the release of Asterisk 1.4.
114+
115+
116+
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
---
2+
author: srt
3+
comments: true
4+
date: 2007-02-12 03:29:00+00:00
5+
layout: post
6+
permalink: asterisk-java-0-3-milestone-2-896
7+
slug: asterisk-java-0-3-milestone-2
8+
title: Asterisk-Java 0.3 Milestone 2
9+
wordpress_id: 896
10+
tags:
11+
- asterisk-java
12+
- release
13+
---
14+
15+
Asterisk-Java 0.3 Milestone 2 has been released and is available from [http://asterisk-java.org/download/0.3-m2](http://asterisk-java.org/download/0.3-m2).
16+
17+
18+
19+
20+
Here is the Changelog:
21+
22+
23+
24+
25+
## Bug
26+
27+
28+
29+
30+
31+
32+
* [[AJ-47](http://jira.reucon.org/browse/AJ-47)] - AGI does not support multi line data
33+
34+
35+
* [[AJ-48](http://jira.reucon.org/browse/AJ-48)] - UserEvent does not work with Asterisk 1.4
36+
37+
38+
* [[AJ-51](http://jira.reucon.org/browse/AJ-51)] - Problems with non-english locales
39+
40+
41+
* [[AJ-52](http://jira.reucon.org/browse/AJ-52)] - Fix shutdown when using the live api
42+
43+
44+
45+
46+
## Improvement
47+
48+
49+
50+
51+
52+
53+
* [[AJ-41](http://jira.reucon.org/browse/AJ-41)] - Add ability to get ManagerConnection from AsteriskServer
54+
55+
56+
* [[AJ-49](http://jira.reucon.org/browse/AJ-49)] - Support socket read timeout
57+
58+
59+
60+
61+
## New Feature
62+
63+
64+
65+
66+
67+
68+
* [[AJ-35](http://jira.reucon.org/browse/AJ-35)] - Support timestamp property on manager events
69+
70+
71+
* [[AJ-42](http://jira.reucon.org/browse/AJ-42)] - Add support QueueSummary action to Queue manager interface
72+
73+
74+
* [[AJ-44](http://jira.reucon.org/browse/AJ-44)] - Support PauseMonitor and UnpauseMonitor actions
75+
76+
77+
* [[AJ-45](http://jira.reucon.org/browse/AJ-45)] - Support ZapRestart action
78+
79+
80+
81+
82+
## Task
83+
84+
85+
86+
87+
88+
89+
* [[AJ-53](http://jira.reucon.org/browse/AJ-53)] - Refactor BaseAgiScript to extend AgiOperations and implement AgiScript so users can extend AgiOperation to provide their own add-on features
90+
91+
92+
93+
94+
Documentation for 0.3-m2 is available at [http://asterisk-java.org/0.3-m2/](http://asterisk-java.org/0.3-m2/).
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
author: srt
3+
comments: true
4+
date: 2007-03-22 23:36:00+00:00
5+
layout: post
6+
permalink: adding-support-for-asterisk-1-4-606
7+
slug: adding-support-for-asterisk-1-4
8+
title: Adding Support for Asterisk 1.4
9+
wordpress_id: 606
10+
tags:
11+
- asterisk
12+
- asterisk-java
13+
---
14+
15+
The most important issue we have to resolve before we can release Asterisk-Java 0.3 is
16+
full support for Asterisk 1.4
17+
18+
19+
20+
21+
The challenge is to find all changes. Unfortunately the Changelogs do not record all of them so the only way to go is looking through the whole source tree and checking all
22+
events and actions for the Manager API and the supported requests for FastAGI.
23+
24+
25+
26+
27+
Many thanks to Martin B. Smith who continued that work and provided support for
28+
the GetConfig and UpdateConfig actions and is currently working on
29+
[AJ-50](http://jira.reucon.org/browse/AJ-50).
30+
31+
32+
33+
34+
You can also help us by providing feedback on what's still missing. Just post a
35+
short comment to [AJ-50](http://jira.reucon.org/browse/AJ-50) and
36+
tell us which new properties, actions, events or FastAGI changes you encountered.
37+
38+
39+

0 commit comments

Comments
 (0)