Hi,
Just managed to install the new openser administrator and everything just
works. Thanks to Mike for this nice application. However I can't add user
with openserctl anymore. The following error appears:
ERROR 1054 (42S22) at line 1: Unknown column 'phplib_id' in 'field list'
ERROR: introducing the new user '5702' to the database failed
On the other hand, adding new users from administrator GUI does not have
this problem. This happened right after installation of aministrator so I
think it is related to the administrator mysql table changes.
Any suggestions please? Thanks,
Patrick
Hi,
I wish to forward busy and no answer calls to Asterisk, and have the RTP
stream go through mediaproxy. At the moment, some calls use mediaproxy and
some don't. If the call is not using mediaproxy to get it too. I have noticed
that I can't call use_media_proxy() from failed route. I don't want to use
mediaproxy for every call between UA's, if not needed. Any suggestions on how
I might be able to get calls to use mediaproxy if forwarded ?
current fail route:
failure_route[1] {
if (t_check_status("487")) {
break;
};
if (isflagset(26) && t_check_status("486")) {
avp_delete("s:fwdbusy");
resetflag(26);
revert_uri();
rewritehostport("202.168.41.218:5060");
append_branch();
t_relay_to_udp("202.168.41.218", "5060");
break;
};
if (isflagset(27) && t_check_status("408")) {
avp_delete("s:fwdnoanswer");
resetflag(27);
revert_uri();
rewritehostport("202.168.41.218:5060");
append_branch();
t_relay_to_udp("202.168.41.218", "5060");
break;
};
end_media_session();
}
Thanks
--
Shaun Hofer
Hello,
When I invite new member to instance message conference I get the
message that doesn't contain header:
Content-Type: text/plain
This couses me little bit problems...Should this header include to the
reply?
MESSAGE sip:xx SIP/2.0.
Via: SIP/2.0/UDP xx;branch=z9hG4bK74fb.067ba117.0.
To: sip:xx.
From:sip:x;tag=0c3c711902a8bbb20a1e767e10f39a78-96ab.
CSeq: 10 MESSAGE.
Call-ID: 7bdbafcb-32586@x.
Content-Length: 38.
User-Agent: OpenSer (1.2.0-dev6-notls (i386/linux)).
.
x@x joined room.. left
Best Regards,
Henri Keski-Sikkila
Hello,
I'm a newbie with the SIMPLE extensions. This week I
started using the presence server module (with the
configuration suggested in the wiki and 2 X-lite's)
The softphones are sending the SUBSCRIBE and the
PUBLISH messages. The NOTIFYs are received for the
Event presence.winfo with some XML content:
<?xml version="1.0"?>
<watcherinfo
xmlns="urn:ietf:params:xml:ns:watcherinfo" version="0"
state="full">
<watcher-list resource="sip:10092011@a.b.c.d"
package="presence"/>
</watcherinfo>
But, when I add each softphone as a Contact for the
other there is no XML content for the Event presence,
and the contact's status never changes even if I do
multiple changes.
I noticed that in the table xcap_xml there is no data,
Should I put some information manually? or the
information should be inserted when receiving the
PUBLISH?
Am I missing something?
Any ideas?
Thanks for your help,
Humberto Quintana
____________________________________________________________________________________
Be a PS3 game guru.
Get your game face on with the latest PS3 news and previews at Yahoo! Games.
http://videogames.yahoo.com/platform?platform=120121
Whats the importance of branch parameter. I am using RTC/1.2 library and its
not generating branch parameter.
_________________________________________________________________
Tried the new MSN Messenger? Its cool! Download now.
http://messenger.msn.com/Download/Default.aspx?mkt=en-in
I have a primary and secondary dns server setup in resolv.conf, with a timeout option of 1 second.The idea is when the primary fails, my secondary server picks up the workload.When openser is running, and primary dns is down, I am seeing several re-transmissions of 200 OK (invite) to my originator *after* openser has finished processing ACK. I was thinking the final responses would stop reTX after the ACK was t_relayed. Have you seen such behavior? And better yet- Is there a solution for this?Thanks, Will
Hello:
I would like to implement sequential hunting. Hunting is when a call
arrives for a given subscriber, no one answers the original number so
the proxy populates the username portion of the r-uri with another
number (from the database) and tries again. This process continues until
all numbers in the database are exhausted. I have the "failover" working
but the r-uri field is not updated on any interation though the
failure_route. Does anyone have any ideas how to make the following work?
Thanks,Steve
# hunting (serial forking)
if (avp_db_load("$ruri/username", "s:allow_hunt")) {
if (avp_check("s:allow_hunt", "eq/y/i")) {
avp_delete("s:allow_hunt");
xlog("L_INFO", "\n[SER]: [%Tf] [%ci] Call Hunting Enabled for
<%ru>\n");
avp_db_load("$ruri/username", "s:huntlist/sam");
xlog("L_INFO", "\n[SER]: [%Tf] [%ci] Call Hunting Started to
<%ru>\n");
t_on_failure("6");
t_relay();
break;
};
};
# Iterate through extension list for subscribers with call hunting enabled
failure_route[6] {
xlog("L_INFO", "\n[SER]: [%Tf] [%ci] Failure Block #6: HUNTING for
<%ru> from <%fu> at <%is>\n");
if (avp_pushto("$ruri/username", "s:huntlist/g"))
{
append_branch();
avp_delete("s:huntlist");
t_on_failure("6");
t_relay();
};
}
Hello,
since a lot of providers has change there authentication to qop="auth"
the uac_auth(); function of the uac module can't use anymore.
by google I found a lot of requests for qop with uac_auth and also
the official feature request 1345887.
Is a target date known for a solution, maybe it's possible with 1.2.0?
Feature Request [ 1345887 ] Implement qop functionality in uac module
p.s.: I know it's on the road map, but it is needed so often......
thanks.
Andreas
Hello All,
I have installed openser-1.1.1 with tls on my box. However, when I try
to run openser. It returns me this error: ERROR: module version mismatch
for /usr/local/lib/openser/modules/mysql.so; core: openser 1.1.1-tls
(i386/freebsd); module: openser 1.1.1-notls (i386/freebsd).
Would someone be kind enough to help me how to compile a mysql.so which
supports tls?
Thank you.
Hi all,
I'm having a problem with the mediaproxy rtp proxy.
I'm using to do accounting into a MySQL database.
After a period of inactivity, it loses it's connection to the MySQL server and
the update queries begin to fail. Openser stays connected, however.
The error in the logs is:
error: accounting failed. MySQL error: (2006, 'MySQL server has gone
away')
I'm running:
mediaproxy 1.8.0
openser-1.1.0 (using the RHEL3 rpm from the openser website)
openser-mysql-1.1.0 (again using the openser RHEL3 rpm)
Python-2.4.4
MySQL-python-1.2.1_p2
My Python skills aren't up to much. So far, I've tried added the
following line into /usr/local/mediaproxy/modules/mysql.py just before
the query call, to try and re-establish the connection:
def query(self, query):
self._query = query
for c in range(0, 3):
try:
self.conn.db.ping() <<<<<<---- added by me
return self.cursor.execute(query)
except MySQLdb.OperationalError, why:
if why[0] not in (CR.SERVER_GONE_ERROR, CR.SERVER_LOST):
raise
raise
... but it hasn't helped.
Has anyone seen this before?
Best regards,
James
--
James Holden AQ Limited
Senior Systems Architect 13-15 Hunslet Road
james.holden(a)uk.aql.com Leeds, LS10 1JQ
07989 702968 0800 389 5815
=====================================================
http://aql.com/documents/news/about_aql.pdf
"The service has been perfect."
BSI Inspectorate ltd
"really really really useful. easy to use and reduces manpower."
Fortnums
"without a shadow of a doubt...excellent"
Ruella James Plc
-----------------------------------------------------
(aq) Limited
13-15 Hunslet Road Leeds LS10 1JQ
194 Harrogate Road Leeds LS7 4NZ
http://www.aql.com
Sales: 08707 449227
Fax: 08707 449228
PGP public key http://aql.co.uk/A-Q.txt
Subject to our standard terms, found at
http://aql.com/site/termsofservice.php
-----------------------------------------------------
******************************
CONFIDENTIALITY
This e-mail is intended only for the use of the addressees named
above and may be confidential or legally privileged.
If you are not an addressee you must not read it and must not use
any information contained in nor copy it nor inform any person other
than (aq) limited or the addressees of its existence or contents.
If you have received this email and are not a named addressee, please
delete it and notify the (aq) limited customer service department via
admin(a)a-q.co.uk. Many thanks.
=========================================================