jabber client
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2780
Java Jabber Client 0.0.19
Java Jabber Client is a Jabber client written in Java. more>>
Jabber is an instant messagings system (and a few other things but Ill forget about these for the moment), but it uses XML so its easy to create clients for it, and to link it in with other systems.
As well as that anyone can run a Jabber server, so youre school, university or office could have their own messaging system.
<<lessAs well as that anyone can run a Jabber server, so youre school, university or office could have their own messaging system.
Download (0.13MB)
Added: 2005-09-08 License: GPL (GNU General Public License) Price:
1513 downloads
Piorun Jabber Client 0.1.0
Piorun Jabber Client is a Jabber client for Gnome with user interface simmilar to IRC clients. more>>
Piorun Jabber Client is a Jabber client for Gnome with user interface simmilar to IRC clients.
Currenly implemented features include: standard chat, multi-user chat, roster and subscriptions management, VCards, privacy lists, secure connections (TLS and SALSL).
Piorun is written using Mono/Gtk#
<<lessCurrenly implemented features include: standard chat, multi-user chat, roster and subscriptions management, VCards, privacy lists, secure connections (TLS and SALSL).
Piorun is written using Mono/Gtk#
Download (0.22MB)
Added: 2005-09-02 License: GPL (GNU General Public License) Price:
1514 downloads
Console Jabber Client 1.0.0
Console Jabber Client is a Jabber client with text-based user interface resembling those known from popular IRC clients. more>>
Console Jabber Client is a Jabber client with text-based user interface resembling those known from popular IRC clients.
CJC is a Jabber/XMPP client for text terminals. Console Jabber Client uses pyxmpp library for XMPP comunication and curses for screen output. It is not finished yet, but still quite usable. Its user interface is resembling those of popular IRC clients like irssi or BitchX.
<<lessCJC is a Jabber/XMPP client for text terminals. Console Jabber Client uses pyxmpp library for XMPP comunication and curses for screen output. It is not finished yet, but still quite usable. Its user interface is resembling those of popular IRC clients like irssi or BitchX.
Download (0.10MB)
Added: 2006-05-23 License: GPL (GNU General Public License) Price:
1262 downloads
Jabber::Lite 0.7
Jabber::Lite is a standalone library for communicating with Jabber servers. more>>
Jabber::Lite is a standalone library for communicating with Jabber servers.
SYNOPSIS
use Jabber::Lite;
my $jlobj = Jabber::Lite->new();
$jlobj->connect( %args );
$jlobj->authenticate( %args );
my $stillgoing = 1;
while( $stillgoing ){
my $tval = $jlobj->process();
if( $tval == 1 ){
my $curobj = $jlobj->get_latest();
# Process based on the object.
}elsif( $tval < 0 ){
$stillgoing = 0;
}
}
GOALS
Jabber::Lite is intended to be a pure perl library for interacting with Jabber servers, and be able to run under any version of perl that has the Sockets library.
Jabber::Lite is, as the name implies, a small lite library for dealing with Jabber servers, implemented entirely in perl. Whilst it is small, it does try to be fairly complete for common tasks.
Whats in the box? Jabber::Lite is able to connect to a Jabber server, read from the socket, and supply XML objects to the application as the application reads them. Its function calls are mostly compatible with Jabber::NodeFactory and Jabber::Connection. Surprisingly, it can also function as a stand-alone XML parser (which was not the authors original intent, but hey, it works).
Whats not in the box? Any requirement for a recent perl version, UTF-8 support, as well as a fully XML-compliant Parser.
Applications using this library will need to be aware that this library uses a combination of pull and push methods of supplying XML objects. Handlers for given object types can be put in place, however if an object is not fully handled by a Handler, the object will block further objects until the Application retrieves it. Read the notes on ->process and ->get_latest() for further details.
The inbuilt parser, fully implemented in perl, is more properly termed an XML Recogniser. If you want a fully compliant XML Parser, look elsewhere. This one recognises just enough XML for its purposes.
<<lessSYNOPSIS
use Jabber::Lite;
my $jlobj = Jabber::Lite->new();
$jlobj->connect( %args );
$jlobj->authenticate( %args );
my $stillgoing = 1;
while( $stillgoing ){
my $tval = $jlobj->process();
if( $tval == 1 ){
my $curobj = $jlobj->get_latest();
# Process based on the object.
}elsif( $tval < 0 ){
$stillgoing = 0;
}
}
GOALS
Jabber::Lite is intended to be a pure perl library for interacting with Jabber servers, and be able to run under any version of perl that has the Sockets library.
Jabber::Lite is, as the name implies, a small lite library for dealing with Jabber servers, implemented entirely in perl. Whilst it is small, it does try to be fairly complete for common tasks.
Whats in the box? Jabber::Lite is able to connect to a Jabber server, read from the socket, and supply XML objects to the application as the application reads them. Its function calls are mostly compatible with Jabber::NodeFactory and Jabber::Connection. Surprisingly, it can also function as a stand-alone XML parser (which was not the authors original intent, but hey, it works).
Whats not in the box? Any requirement for a recent perl version, UTF-8 support, as well as a fully XML-compliant Parser.
Applications using this library will need to be aware that this library uses a combination of pull and push methods of supplying XML objects. Handlers for given object types can be put in place, however if an object is not fully handled by a Handler, the object will block further objects until the Application retrieves it. Read the notes on ->process and ->get_latest() for further details.
The inbuilt parser, fully implemented in perl, is more properly termed an XML Recogniser. If you want a fully compliant XML Parser, look elsewhere. This one recognises just enough XML for its purposes.
Download (0.047MB)
Added: 2006-09-16 License: Perl Artistic License Price:
1138 downloads
Jabberlang 0.2
Jabberlang is a client XMPP/Jabber library for Erlang to implement scalable fault-tolerant XMPP/Jabber agents. more>>
Jabberlang is a client XMPP and Jabber library for Erlang to implement scalable fault-tolerant XMPP/Jabber agents.
The first version has been presented during Erlang User Conference (EUC 2004). For now, it still only supports a minimal subset of the Jabber/XMPP protocol but many changes are planned.
Enhancements:
- This version fixes several problems and improves the behavior of Jabberlang.
- The connection now fails when the expat library fails to load.
- A bug has been fixed regarding the name of the host used in the library, so the "to" attribute in the stream is now set correctly.
<<lessThe first version has been presented during Erlang User Conference (EUC 2004). For now, it still only supports a minimal subset of the Jabber/XMPP protocol but many changes are planned.
Enhancements:
- This version fixes several problems and improves the behavior of Jabberlang.
- The connection now fails when the expat library fails to load.
- A bug has been fixed regarding the name of the host used in the library, so the "to" attribute in the stream is now set correctly.
Download (0.98MB)
Added: 2005-11-23 License: GPL (GNU General Public License) Price:
1430 downloads
Gabber 1.9.4
Gabber is an Jabber Instant Messaging client. more>>
Gabber 2 is the next generation of Gabber: The Gnome Jabber Client. Gabber 2 is a Jabber client written in C++ using Gtkmm2 which is currently available for Linux and Mac OS X (under X11).
<<less Download (0.58MB)
Added: 2005-07-26 License: GPL (GNU General Public License) Price:
1551 downloads
Oracle client 1.00
Oracle client is a simplistic Perl-based Oracle client. more>>
Oracle client is a simplistic Perl-based Oracle client that tries to mimic some of the functionality of PostgreSQL and MySQLs text-based SQL clients.
It is relatively simplistic, but much more useful than dbishell or sqlplus.
The project supports readline, history, desc, and various shorthand commands like d, , c, etc.
<<lessIt is relatively simplistic, but much more useful than dbishell or sqlplus.
The project supports readline, history, desc, and various shorthand commands like d, , c, etc.
Download (0.013MB)
Added: 2007-04-12 License: Perl Artistic License Price:
938 downloads
Jabber::Connection 0.03
Jabber::Connection is a simple Perl module with connectivity functions for Jabber. more>>
SYNOPSIS
# client connection:
my $c = new Jabber::Connection(
server => jabber.org,
log => 1,
);
# component connection:
# my $c = new Jabber::Connection(
# server => localhost:5700,
# localname => comp.localhost,
# ns => jabber:component:accept,
# log => 1,
# debug => 1,
# );
die "oops: ".$c->lastError unless $c->connect();
$c->register_beat(10, &every_10_seconds);
$c->register_handler(presence,&presence);
$c->register_handler(iq,&handle_iq_conference);
$c->register_handler(iq,&handle_iq_browse);
$c->auth(qmacro,password,myresource); # client auth
# $c->auth(secret); # component auth
$c->send( );
$c->start;
DESCRIPTION ^
The Jabber::Connection package provides basic functions for connecting clients and components to a Jabber server.
Download (0.012MB)
Added: 2007-03-21 License: Perl Artistic License Price:
952 downloads
Jabber::RPC 0.01
Jabber::RPC is a Jabber-RPC Implementation. more>>
Jabber::RPC is a Jabber-RPC Implementation.
SYNOPSIS
See documentation for Jabber::RPC::Server and Jabber::RPC::Client.
Jabber::RPC is a library that implements Jabber-RPC for Perl. The library consists of two modules, Jabber::RPC::Server and Jabber::RPC::Client. Please refer to the documentation for these two modules for more information.
<<lessSYNOPSIS
See documentation for Jabber::RPC::Server and Jabber::RPC::Client.
Jabber::RPC is a library that implements Jabber-RPC for Perl. The library consists of two modules, Jabber::RPC::Server and Jabber::RPC::Client. Please refer to the documentation for these two modules for more information.
Download (0.005MB)
Added: 2007-03-21 License: Perl Artistic License Price:
949 downloads
Messa 1.01 (Client)
Messa is an instant messager client and server. The client has a curses interface and works on the console. more>>
Messa is an instant messager client and server. The client has a curses interface and works on the console. Messa supports multilingual messages and private messages.
The server supports monoprocess operation (without threads), the ability to choose the listening port, and the ability to run under the console.
<<lessThe server supports monoprocess operation (without threads), the ability to choose the listening port, and the ability to run under the console.
Download (0.012MB)
Added: 2006-07-21 License: LGPL (GNU Lesser General Public License) Price:
1194 downloads
Gnome Jabber 0.4
Gnome Jabber is an instant message client for Gnome using the Jabber protocol. more>>
Gnome Jabber is an instant message client for Gnome using the Jabber protocol.
Main features:
- Basic Chat/Messages
- Group Chat
- Headline Support
- Browse Support
- Unicode Support
- Message History
- Invisible Support
- Sound Notifications
- Emote Icons
- Reply Indicator
Enhancements:
- Gave the user the option to add a new account or set up the connection details when running for the first time.
- Last minute fixes... GjConnection was not being passed.
- Removed the "first_time_run" entry.
- Fixed up the process of what happens on first time run. Also uses the ".gnome2/Gnome Jabber" directory to know if this is the first time we are running instead of GConf.
- Fixed up what happens when running for the first time. Also, it now uses "Gnome Jabber" instead of "gnome-jabber" so it is consistant with what happens on Windows.
- Added check before unrefing, this caused a lot of unnecessary warnings in the log.
- Added fix for groupchat not working at all.
<<lessMain features:
- Basic Chat/Messages
- Group Chat
- Headline Support
- Browse Support
- Unicode Support
- Message History
- Invisible Support
- Sound Notifications
- Emote Icons
- Reply Indicator
Enhancements:
- Gave the user the option to add a new account or set up the connection details when running for the first time.
- Last minute fixes... GjConnection was not being passed.
- Removed the "first_time_run" entry.
- Fixed up the process of what happens on first time run. Also uses the ".gnome2/Gnome Jabber" directory to know if this is the first time we are running instead of GConf.
- Fixed up what happens when running for the first time. Also, it now uses "Gnome Jabber" instead of "gnome-jabber" so it is consistant with what happens on Windows.
- Added check before unrefing, this caused a lot of unnecessary warnings in the log.
- Added fix for groupchat not working at all.
Download (1.1MB)
Added: 2005-09-09 License: GPL (GNU General Public License) Price:
1508 downloads
Original Gamers Client 0.4.7
Original Gamers Client is a cross-platform GUI MUD client. more>>
Original Gamers Client project is a cross-platform GUI MUD client.
Original Gamers Client aims to combine the convenience of a GUI-based MUD client with the power that seems reserved for TUI-based clients. OGC implements its GUI using Tk.
<<lessOriginal Gamers Client aims to combine the convenience of a GUI-based MUD client with the power that seems reserved for TUI-based clients. OGC implements its GUI using Tk.
Download (MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1046 downloads
Oww Client 0.5.4
Oww Client is a graphical client program for One-Wire Weather (Oww) servers. more>>
Oww Client is a graphical client program for One-Wire Weather (Oww) servers. Oww Client is based on GTK+, displaying lists of collected weather data from one or more servers.
Enhancements:
- Owwl was enhanced to include new sensor types (mainly for cryogenic readout).
- A status window was added.
- Reconnexion is now automatic, after the remote server drops it.
<<lessEnhancements:
- Owwl was enhanced to include new sensor types (mainly for cryogenic readout).
- A status window was added.
- Reconnexion is now automatic, after the remote server drops it.
Download (0.038MB)
Added: 2006-06-09 License: Artistic License Price:
1233 downloads
Cabber 0.5.0 test1
Cabber is a console Jabber client. more>>
Cabber is a Console Jabber Client, it is desing for provide Jabber services to the console users, because All borned in the Console.
Enhancements:
- A lot of new features!
<<lessEnhancements:
- A lot of new features!
Download (0.025MB)
Added: 2005-09-09 License: GPL (GNU General Public License) Price:
1506 downloads
Tiny ERP Web client 0.0.1
Tiny ERP Web client is a Turbogears/AJAX interface for the enterprise management software Tiny ERP. more>>
Tiny ERP Web client is a Turbogears/AJAX interface for the enterprise management software Tiny ERP.
The project supports all features of the GTK client and connects to the Tiny ERP server using XML-RPC.
<<lessThe project supports all features of the GTK client and connects to the Tiny ERP server using XML-RPC.
Download (0.38MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
865 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above jabber client search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed