Re: [OpenSIPS-Users] Forcing reinvite for t38 on different pstn gw

2009-07-19 Thread Alex Balashov
Uwe Kastens wrote:

> Ok, thats not possible with T38, since the codec is 1st established as
> "normale" codec. If one of the devices gets a fax ton it will iniitate a
> reinvite with t38.

Yep;  so, you need to send the call to a device that supports both 
regular codec as well as T.38 and can make the switch.

-- 
Alex Balashov
Evariste Systems
Web: http://www.evaristesys.com/
Tel: (+1) (678) 954-0670
Direct : (+1) (678) 954-0671
Mobile : (+1) (678) 237-1775

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Forcing reinvite for t38 on different pstn gw

2009-07-19 Thread Uwe Kastens
Hi,

>> Is it possible to handle reinvites in that way, that I can send them to
>> a special pstn gw? This looks a little tricky, since I need to drop the
>> 1st invite.
> 
> No, that would not be in the slightest bit compatible with SIP protocol
> mechanics as described per the RFC.  The initial INVITE establishes the
> dialog, and without that initial request there cannot be sequential
> in-dialog requests - and therefore, no re-INVITEs.
> 
[...]
> 
> 
> The only way you can pull this off is to decide in advance whether the
> call needs to go through a special PSTN GW when routing the initial INVITE.

Ok, thats not possible with T38, since the codec is 1st established as
"normale" codec. If one of the devices gets a fax ton it will iniitate a
reinvite with t38.


Thanks

BR

Uwe


-- 

kiste lat: 54.322684, lon: 10.13586

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] A small calrification on db_unixodbc

2009-07-19 Thread ASHWINI NAIDU
hi Everyone,

 I just wanted to know Is mysql-server needed on the opensips machince
even if i decide to have a seperate mysql server and use unixodbc for
connectivity between the opensips and mysql server.



-- 
Thanking You,
Ashwini BR Naidu
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Forcing reinvite for t38 on different pstn gw

2009-07-19 Thread Alex Balashov
Uwe Kastens wrote:

> Is it possible to handle reinvites in that way, that I can send them to
> a special pstn gw? This looks a little tricky, since I need to drop the
> 1st invite.

No, that would not be in the slightest bit compatible with SIP protocol 
mechanics as described per the RFC.  The initial INVITE establishes the 
dialog, and without that initial request there cannot be sequential 
in-dialog requests - and therefore, no re-INVITEs.

In-dialog requests must be routed to the dialog peer that was 
established by the initial INVITE;  you can't route them somewhere else 
instead once the dialog has been established.

The following scenario plays out - and even then, only if Record-Route 
is turned on and sequential requests flow through the proxy:


A   Proxy   B

 INVITE 1...@proxy >
<--- 100 Trying ---
   INVITE 1...@b >
  < 100 Trying --
  <-- 180 Ringing ---
<-- 180 Ringing ---
  <-- 200 OK w/Contact URI
<-- 200 OK + contact --
---> ACK cont...@b --->
  -- ACK cont...@b ->
- INVITE cont...@b --->
  --- INVITE cont...@b ->


The only way you can pull this off is to decide in advance whether the 
call needs to go through a special PSTN GW when routing the initial INVITE.


-- 
Alex Balashov
Evariste Systems
Web: http://www.evaristesys.com/
Tel: (+1) (678) 954-0670
Direct : (+1) (678) 954-0671
Mobile : (+1) (678) 237-1775

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] Forcing reinvite for t38 on different pstn gw

2009-07-19 Thread Uwe Kastens
Hello list,

Is it possible to handle reinvites in that way, that I can send them to
a special pstn gw? This looks a little tricky, since I need to drop the
1st invite.

Has anybody a hint for me?

BR

Uwe



-- 

kiste lat: 54.322684, lon: 10.13586

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] [OpenXCAP] Does OpenXCAP support fetching elements from the document?

2009-07-19 Thread Iñaki Baz Castillo
El Jueves, 16 de Julio de 2009, Iñaki Baz Castillo escribió:
> I'm trying to fetch an element of the XML document [*]. For example I
> send the following GET request:
>
> GET /xcap-root/pres-rules/users/u...@domain/index/~~/cp:ruleset/cp:rule
>
> Theorically it should retrieve the first rule of the document.
> However OpenXCAP replies "500 Internal Server Error" and logs nothing
> (neither in access.log or error.log)
> Note that I've "log_stacktrace=any".
>
> Does OpenXCAP support it?

opss, it does support it :)

But I was doing a wrong query. The correct one is:

GET /xcap-root/pres-
rules/users/u...@domain/index/~~/cp:ruleset/cp:rule?xmlns(cp=urn:ietf:params:xml:ns:common-
policy)

-- 
Iñaki Baz Castillo 

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Help with implementing presence

2009-07-19 Thread Saúl Ibarra
Go through your configuration file and locate the section where your
SUBSCRIBEs are handled. Also, enable debug and check that all modules
are loaded correctly.


On Sat, Jul 18, 2009 at 2:08 AM, Srikanth
Rajagopalan wrote:
> Hi Guys,
>
> I need some help here.
>
> I had an opensips server without presence enabled and wanted to enable it. I
> did the following changes
>
> 1) Uncomment the 2 presence related loadmodules
> 2) Uncomment the modparam lines related to presence and changed the server
> ip there.
> 3) From the makefile removed all presence related modules from the
> exclude_module line
> 4) While running make included all these modules along with mysql
>
> I tried sending subscrive messages. It worked and then for publish I got
> 503/service unauthorized. The database tables remained empty.
>
> Then I tried with a server where I hadn't made these changes and found that
> the same things happened there also.
>
> Now I realize I haven't enabled presence at all. Please tell me how to
> enable it.
>
> Thanks,
> Srikanth Rajagopalan
>
> PS: I sent an earlier mail thinking that I had enabled presence please
> disregard them now.
> 
> Love Cricket? Check out live scores, photos, video highlights and more.
> Click here.
> ___
> Users mailing list
> Users@lists.opensips.org
> http://lists.opensips.org/cgi-bin/mailman/listinfo/users
>
>



-- 
Saúl -- "Nunca subestimes el ancho de banda de un camión lleno de disketes."

http://www.saghul.net/

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] new CDRTool release 6.9.0

2009-07-19 Thread Alex Balashov
ram wrote:

> Hi Adrian
>  
> I found some problem last version when iam patching freeradius.patch
> with Freeradius 2.1.6 is that Fixed in this version
>  
> I have installed Freeradius 2.0.4

I would wager, on Adrian's behalf, that a description of "some problem" 
or a reference to a bug report number would be necessary to answer this 
question.

-- 
Alex Balashov
Evariste Systems
Web: http://www.evaristesys.com/
Tel: (+1) (678) 954-0670
Direct : (+1) (678) 954-0671
Mobile : (+1) (678) 237-1775

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] new CDRTool release 6.9.0

2009-07-19 Thread ram
On Sat, Jul 18, 2009 at 7:42 PM, Adrian Georgescu wrote:

> Changelog:
>
> cdrtool (6.9.0) unstable; urgency=low
>
>   * Display geographic location using geo ip
>   * Fixed variable names that did not match the config
>   * Fixed logging of imported rows from csv files
>   * Fixed export of CSV with prepaid history
>   * Hide called address in missed session list
>   * Refactored PSTN provisioning, NGNPro >= 4.1.5 is required
>   * Show timezone in SIP accounts list
>   * Display prepaid balance in SIP accounts list
>   * Do not change quota when toggle the prepaid flag
>   * Specify a default timezone per engine
>   * Cache returns from lookup sip_proxy from Thor network
>
> The software can be downloaded from:
>
> http://download.ag-projects.com/CDRTool/
>


Hi Adrian

I found some problem last version when iam patching freeradius.patch
with Freeradius 2.1.6 is that Fixed in this version

I have installed Freeradius 2.0.4


Ram
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users