Arjan
unread,Mar 6, 2008, 6:11:16 AM3/6/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to The Roomware Project
Hi,
I'm trying to run Roomware on Windows using Bluesoleil and BlueCove.
After some hacking, I think I have it running. I'll report on some of
the problems I discovered.
The roomware.conf file needs these two lines for the http communicator
and bluetooth module to work..
blue-class: bluemod.Module
http-class: httpcomm.Communicator
maybe it's an idea to enter a default class somewhere in the code so
this won't bloat the config file? I think most mods/comms just have a
single class and these options only confuse people...
There were two unimplemented methods for the "DiscoveryListener"
interface in the bluemod Module.java class, I just stubbed them so the
code would compile again:
public synchronized void servicesDiscovered(int transID,
ServiceRecord[] servRecord) {
System.out.println("Services discovered: " + servRecord.length);
}
public synchronized void serviceSearchCompleted(int transID, int
respCode) {
System.out.println("Service search completed: " + respCode);
}
(I was using the stable version of BlueCove; maybe this has changed
for more recent releases)
Furthermore, I'm working on a set of .bat files so the compilation
process goes more smoothly; right now I was using cygwin to compile
just because I was lazy.
Regards,
Arjan Scherpenisse