Jiplet Container 0.2.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Jiplet Container 0.2.0 (Default branch)
# 1  
Old 02-01-2009
Jiplet Container 0.2.0 (Default branch)

Image Jiplet Container (Java SIP Servlet) is a servlet-like development and runtime environment for SIP applications. The SIP protocol is widely used for voice services over IP networks. This product enables developers to create server-side SIP applications using a component-based model similar to that envisioned by the J2EE architecture. The Jiplet container runs as a standalone server as well as a JBOSS service. License: The Apache License 2.0 Changes:
The primary enhancement in this release is a technology upgrade to the Jiplet Admin Console: it has been ported to GWT 1.5 and refactored to use the GWTCOMP library. Additionally, the ESR (Enterprise SIP archive) deployer has been removed since JBoss 4.x can now handle Jiplet SPR and SRR archives inside an EAR, and a number of bugs were fixed. This project has reached a status of stable. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Net::SIP::Dropper::ByField(3pm) 			User Contributed Perl Documentation			   Net::SIP::Dropper::ByField(3pm)

NAME
Net::SIP::Dropper::ByField - drops SIP messages based on fields in SIP header SYNOPSIS
my $drop_by_field = Net::SIP::Dropper::ByField->new( methods => [ 'REGISTER', '...', '' ], 'From' => qr/sip(?:vicious|sscuser)/, 'User-Agent' => qr/^friendly-scanner$/, ); my $dropper = Net::SIP::Dropper->new( cb => $drop_by_field ); my $chain = Net::SIP::ReceiveChain->new([ $dropper, ... ]); DESCRIPTION
With "Net::SIP::Dropper::ByField" one can drop packets based on the contents of the fields in the SIP header. This can be used to drop specific user agents. CONSTRUCTOR
new ( ARGS ) ARGS is a hash with the following keys: methods Optional argument to restrict dropping to specific methods. Is array reference of method names, if one of the names is empty also responses will be considered. If not given all packets will be checked. field-name Any argument other then "methods" will be considered a field name. The value is a callback given to "invoke_callback", like for instance a Regexp. METHODS
run ( PACKET, LEG, FROM ) This method is called as a callback from the Net::SIP::Dropper object. It returns true if the packet should be dropped, e.g. if at least one of the in the constructor specified fields matches the specified value. perl v5.14.2 2011-02-03 Net::SIP::Dropper::ByField(3pm)