jaimbot-users Mailing List for Java AIMBot
Brought to you by:
ostersc
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2005 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Arya <ary...@gm...> - 2011-03-17 06:31:50
|
Hello Is there anyway to send the "The user is typing" status before sending a message? I was unable to find the method. Regards! |
|
From: David R. <dav...@re...> - 2005-08-25 14:48:14
|
Hi,
I have a quick test program to show a problem logging in:
------------------------------------------------------------------------
import java.io.BufferedReader;
import java.io.InputStreamReader;
import com.levelonelabs.aim.AIMBuddy;
import com.levelonelabs.aim.AIMClient;
public class JaimTest {
public static void main(String args[]) throws Exception {
if (args.length < 2) {
System.out.println("Usage: JaimTest <username> <password>");
}
// Make a new client
AIMClient client = new AIMClient(args[0], args[1]);
// Start the thread
Thread thread = new Thread(client);
thread.setDaemon(true);
thread.start();
// Add a buddy (drig23 is me, Dave Rudder)
AIMBuddy buddy = client.getBuddy("drig23");
client.addBuddy(buddy);
// Send me a nice message
client.sendMessage(buddy, "Hi Dave, how ya' doin?");
// Wait until the user hits the enter button
new BufferedReader(new InputStreamReader(System.in)).readLine();
}
}
------------------------------------------------------------------------
When I run this with a an account that works fine with gaim, I get:
Aug 25, 2005 8:43:35 AM com.levelonelabs.aim.AIMClient run
INFO: *** Starting AIM CLIENT (SEQNO:37833) ***
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.net.SocketInputStream.skip(SocketInputStream.java:203)
at java.io.FilterInputStream.skip(FilterInputStream.java:129)
at com.levelonelabs.aim.AIMClient.run(AIMClient.java:343)
at java.lang.Thread.run(Thread.java:534)
Aug 25, 2005 8:43:45 AM com.levelonelabs.aim.AIMClient signoff
INFO: Trying to close IM (2.5).....
Aug 25, 2005 8:43:45 AM com.levelonelabs.aim.AIMClient signoff
INFO: *** AIM CLIENT SIGNED OFF.
Aug 25, 2005 8:43:45 AM com.levelonelabs.aim.AIMClient run
SEVERE: *** AIM ERROR: java.net.SocketException: Socket closed ***
I haven't been able to login from a Java program for quite a while. I
searched the mailing lists and forums of both this project and JaimLib
(which apparently is showing the same issue). No dice. I found some
suggestions to hardcode the IP address of the server, since the AIM DNS
seems to be responding with some bad addresses, but the given address
didn't seem to help.
Can anyone help me out?
Thanks a lot,
Dave
|
|
From: Mike M. <mmu...@cs...> - 2005-01-09 17:57:15
|
Hi, There is a bug in the AIM library handling of incoming messages, where leading colons are stripped from messages. As well, multiple colons in the body of the message are replaced with single colons. This is because the AIMClient is tokenizing the message based on a colon separator. I am attaching a patch to fix this bug. The patch basically modifies it so the message is retrieved using a substring command, rather than the StringTokenizer method. Thanks, Mike |
|
From: <mmu...@cs...> - 2005-01-08 08:37:58
|
Is the AIM library portion of JAIMBot thread safe? I want to have a listener thread and a thread that will occasionally send messages, over the same AIMClient object. Will this cause any problems? By the way, nice work on the library. From what I've seen it's well written and works solidly. I had a user logged on to AIM in about 10 minutes of coding. :) |
|
From: ganaparthy b. <gan...@ya...> - 2004-06-03 13:03:58
|
Hi I am getting an error while starting the JAIMBot
I am trying to start the AIMBot after confiring the properties (screen
name and password)
------------------- given below shows the error ---------------
C:\Documents and Settings\bganapar>java -classpath
D:\SourceForge\DownLoad\AOLIM-JBOT\docs\jaimbot-1.3\jaimbot-1.3.jar;D:\SourceForge\DownLoad\AOLIM-
JBOT\docs\jaimbot-1.3\lib\megahal-1.0.jar;D:\SourceForge\DownLoad\AOLIM-JBOT\docs\jaimbot-1.3\lib\rdf-1.0.jar;D:\SourceForge\DownLoad\AOLIM-JBOT\docs\
jaimbot-1.3\conf com.levelonelabs.aimbot.AIMBot
Unable to change MegaHAL personality to "C:\Documents and
Settings\bganapar\conf\megahal".
Reverting to MegaHAL personality "".
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (MegaHal Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (Messenger Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (User Administration Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (List Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (Preference Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (User Information Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (Headlines Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (Stock Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (TV Listings Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (Weather Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (Babel Poetry Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (TicTacToe Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot loadModules
INFO: Loading mod (Reminder Module)
Jun 3, 2004 6:29:48 PM com.levelonelabs.aimbot.AIMBot depersist
INFO: Couldn't locate persistance file; starting fresh.
Jun 3, 2004 6:29:48 PM com.levelonelabs.aim.AIMClient run
INFO: *** Starting AIM CLIENT (SEQNO:35583) ***
java.net.ConnectException: Connection timed out: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(Unknown Source)
at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
at java.net.PlainSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.<init>(Unknown Source)
at java.net.Socket.<init>(Unknown Source)
at com.levelonelabs.aim.AIMClient.run(AIMClient.java:314)
at java.lang.Thread.run(Unknown Source)
Jun 3, 2004 6:30:10 PM com.levelonelabs.aim.AIMClient signoff
INFO: Trying to close IM (1).....
java.lang.NullPointerException
at com.levelonelabs.aim.AIMClient.signoff(AIMClient.java:950)
at com.levelonelabs.aim.AIMClient.run(AIMClient.java:320)
at java.lang.Thread.run(Unknown Source)
Thanks a ton in advance for your advice
Ganaparthy
__________________________________
Do you Yahoo!?
Friends. Fun. Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/
|
|
From: <ben...@id...> - 2004-05-22 12:55:54
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
|
From: Scott O. <os...@ya...> - 2004-04-12 13:24:53
|
I'll have to look into the mobile phone AIM thing, I've never tried it. I'm not aware of any difference, but I'll take a look. As for the logging, yes, setting the level to WARNING or SERVERE should report less logging because it means only show messages that are of that severity or higher. In the bot.properties you'll see a line like this: # SEVERE (big problems)> WARNING (problems) > INFO (system status) > FINE (all aim messages)> FINEST (gory details) Setting the level to any of those levels only shows you the messages that are at the level you specify or a level to the left of the level you specify. So by setting the level to SEVERE you only see SEVERE messages. Hope that helps, Scott --- Vikas Gupta <vi...@ho...> wrote: > Hello, > > First of great project you have going. I am trying to send a message from > jaimbot to a username of the form +5555551212 (a mobile phone user), but > the message is never recvd by the phone user. It works via regular aim. Is > there some special mapping between phone numbers and sms messages that needs > to be added to send to a phone buddy? Also, when I turn on WARNING or SEVERE > logging, it appears to report less logging than INFO. > > Any help is greatly appreciated, > > Thanks, > Vikas > > _________________________________________________________________ > Is your PC infected? Get a FREE online computer virus scan from McAfee® > Security. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963 > __________________________________ Do you Yahoo!? Yahoo! Tax Center - File online by April 15th http://taxes.yahoo.com/filing.html |
|
From: Skirecs <ci...@op...> - 2004-03-24 03:50:14
|
I just downloaded Jaimbot and am eager to begin. I configured the Conf files, but when I CD to the directory, the Root, and paste in the command, this is the error: Exception in thread "main" java.lang.NoClassDefFoundError: com/levelonelabs/aimb ot/AIMBot Any Ideas? Thanks Skirecs www.skirecs.dynu.com |
|
From: Ian K. <ik...@ae...> - 2003-09-28 00:06:08
|
Hello,
I recently downloaded JAIMBOT, and would like to just sent a simple
message to another username without receiving an event. Please let me
know if this is possible with your code, and if not, where I can find
another project that implements this functionality. Please send any
responces to ik...@ae... as I am not subscribed to the mailing
list.
Thanks!
Ian
----------------------------------------------------------------------
I have the following code, but I never receive a message. The 'Echo'
example included with your source distribution works fine.
public class AIM {
public static void main(String [] args) {
final AIMSender aim=(AIMSender) new
AIMClient("xxx","yyy", "Simple Send Message Bot", true);
AIMBuddy buddy = new AIMBuddy("zzz");
aim.addAIMListener(new AIMAdapter() {
// do nothing, I only want to sent one message
});
aim.signOn();
aim.sendMessage(buddy, "Testing message send.");
aim.signOff();
}
}
|
|
From: Daniel D. <dm...@3e...> - 2003-09-04 21:17:02
|
When I start jaimbot, I end up with a large number of java processes. Is this normal, or something I should be concerned about? Why are there more than one? [dmd@eco ~]$ ps -efwww|grep java dmd 10308 17148 0 11:30 ? 00:00:00 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10339 10308 0 11:30 ? 00:00:00 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10340 10339 0 11:30 ? 00:00:01 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10342 10339 0 11:30 ? 00:00:00 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10343 10339 0 11:30 ? 00:00:00 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10358 10339 0 11:30 ? 00:00:36 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10360 10339 0 11:30 ? 00:00:00 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10361 10339 0 11:30 ? 00:00:00 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10362 10339 0 11:30 ? 00:00:00 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10410 10339 0 11:30 ? 00:00:03 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot dmd 10413 10339 0 11:30 ? 00:00:00 /usr/java/j2sdk1.4.1_03/bin/java -classpath build/classes/:lib/rdf-1.0.jar:conf:lib/megahal-1.0.jar com.levelonelabs.aimbot.AIMBot Daniel Drucker |
|
From: Daniel D. <dm...@3e...> - 2003-09-04 21:16:58
|
I've found that if I haven't talked to my Jaimbot in a long time (>30 minutes or so), it takes a long time (as much as 20 seconds) for it to 'wake up' and respond. Is this normal? After that first "wake up", responses are fast (2-3 seconds). Daniel Drucker |
|
From: Robert J. A. <ro...@ac...> - 2003-08-30 03:57:07
|
I'm trying to run Jaimbot from Mac OS X 10.2. But with no success. I get the following: Exception in thread "main" java.lang.NoClassDefFoundError: com/levelonelabs/aimbot/AIMBot Any ideas? -- Robert J. Accettura ro...@ac... |
|
From: <ru...@ms...> - 2003-04-26 05:51:58
|
I have written an AIM bot in perl ( http://shear.sourceforge.net )... using a few different perl modules (and my own ugly code) to connect to the aim servers... I've never been very happy with the results. Either the bot sends stuff out way too slow, eats all my processor time, or gets booted from aim (and has to reconnect) frequently. Since my bot is set up so that the process(es) that connect to aim don't have to do a whole lot of processing (there is a database back end), I'm considering switching to a java based process to connect to aim. I haven't looked at your api yet, but since you've got an example bot that works, and you have what looks to be good documentation (i haven't read it all yet, just skimmed it), it seems likely that your library will work well for my uses; but I've got a couuple questions before I start diving in. Is the connection to the aim server through TOC or OSCAR? (not that it matters a whole lot, I'm just curious) Does the library provide automatic rate limiting of outgoing messages? (to attempt to prevent the server from booting connections for being too chatty) Does the library provide for connections to ICQ? (If not, I'll probably be submitting some patches once I get into it... its actually rather simple to get it to work) Thank you, Richard 'toast' Russo |
|
From: ostersc <os...@al...> - 2003-03-30 22:52:32
|
I just released version 1.2 of the Java AIM Library and Java AIM Bot. These should be usable for the general public now, documentation is soon to come to the website. Scott |