Re: [jdev] jabberBeans?

2005-04-19 Thread Peter Saint-Andre
> http://open.echomine.org/cowiki/MuseAPI/AboutJabber

Er, it looks like the up-to-date URL is:

http://open.echomine.org/confluence/display/MUSE/

___
jdev mailing list
jdev@jabber.org
http://mail.jabber.org/mailman/listinfo/jdev


Re: [jdev] jabberBeans?

2005-04-19 Thread Peter Saint-Andre
On Tue, Apr 19, 2005 at 08:24:02AM -0400, Jean Wright wrote:

> I am new to Jabber and just received my first jabber book from Amazon 
> yesterday. I purchased "Programming Jabber" from O'reilly. The book uses 
> jabberbeans for its Java library. I have not been able to find it on any 
> site. It appears that the jabberbeans.org site it no longer active. Could 
> someone point me in the right direction to get this or recommend a suitable 
> alternate Java Jabber library? I appreciate the help and look forward to 
> interacting with you all in the future.

This seems to be a frequently asked question, eh?

FYI, folks on this list seem to like Smack for client development, JSO
for component development, and Echomine Muse for its nice API and good
documentation:

http://www.jivesoftware.org/smack/
http://jso.jabberstudio.org/
http://open.echomine.org/cowiki/MuseAPI/AboutJabber

Naturally, YMMV. ;-)

/psa

___
jdev mailing list
jdev@jabber.org
http://mail.jabber.org/mailman/listinfo/jdev


Re: [jdev] jabberBeans?

2005-04-19 Thread Chris Chen
There is a list of library APIs you can choose from at jabber.org
http://www.jabber.org/software/libraries.shtml
Thanks,
Chris
On Apr 19, 2005, at 5:24 AM, Jean Wright wrote:
Hello all,
I am new to Jabber and just received my first jabber book from Amazon 
yesterday. I purchased "Programming Jabber" from O'reilly. The book 
uses jabberbeans for its Java library. I have not been able to find it 
on any site. It appears that the jabberbeans.org site it no longer 
active. Could someone point me in the right direction to get this or 
recommend a suitable alternate Java Jabber library? I appreciate the 
help and look forward to interacting with you all in the future.

Thanks,
--
JEAN WRIGHT
___
jdev mailing list
jdev@jabber.org
http://mail.jabber.org/mailman/listinfo/jdev
___
jdev mailing list
jdev@jabber.org
http://mail.jabber.org/mailman/listinfo/jdev


[jdev] jabberBeans?

2005-04-19 Thread Jean Wright
Hello all,

I am new to Jabber and just received my first jabber book from Amazon 
yesterday. I purchased "Programming Jabber" from O'reilly. The book uses 
jabberbeans for its Java library. I have not been able to find it on any site. 
It appears that the jabberbeans.org site it no longer active. Could someone 
point me in the right direction to get this or recommend a suitable alternate 
Java Jabber library? I appreciate the help and look forward to interacting with 
you all in the future.

Thanks,

-- 
JEAN WRIGHT
___
jdev mailing list
jdev@jabber.org
http://mail.jabber.org/mailman/listinfo/jdev


[JDEV] jabberbeans api

2003-04-01 Thread Mathias Waag
hi,

i am using the jabberbeans api and i am adding up to 10 Extensions into a
presence packet. i have developed the extensions the same way the
jabberbeans api does. eg. IQBrowse, IQBrowseBuilder, IQBrowseHandler.
internally jabberbeans stores these extensions in a vector. when the
subscriber receives the presence packet, he can get the extensions within an
enumeration by calling the Extension() method of the ContentPacket class.
and thats my problem. if the subscriber is only interested in one extension
(say Location) i have to do the following:
for(Enumeration enum = presence.Extensions();enum.hasMoreElements();){
Object o = enum.nextElement();
if(o instanceof Location){
...
break;
}
}
thats bad. instanceof comparison is expensive, as far as i know.
is there another way of getting a specific extension?
- change the jabber api and use a hashtable.
ContentPacket: addExtension(String name, Extension ext),
getExtension(name)...
- subclassing the ContentPacket class and use a hashtable there.
- something else
- dont worry about the instanceof

cheers
mathias

___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev


[JDEV] jabberbeans

2003-03-31 Thread Bharath Ravi Kumar
hi all,
 Firstly,thanks for the info,prince.I now need to know how to get started with jabber beans.Can someone provide info on that?I'd realty be grateful.Thanks anyway.
 Regards,
  BharathDo you Yahoo!?
Yahoo! Tax Center - File online, calculators, forms, and more

RE: [JDEV] jabberbeans startup

2003-03-31 Thread Mike Prince
Title: Message



1) I'm 
not a JabberBeans developer so hopefully someone else on the list can point you 
in a good starting direction.  Of course read through the 
docs they've provided and sifting through their source code are two great 
places to start.  I have another Java library called Yaja! that you might 
also consider ( http://yaja.sourceforge.net 
).
 
2) 
Firing up a Jabber server is very straight forward on either Windows or many of 
the Unix variants.  There is now the Quickstart package which should make 
it even easier (though I haven't tried quickstart because it was already pretty 
easy ;)
 
Assuming you are running Jabber on your desktop, consider using a 
TCP proxy to forward requests from one port (say 6222) to the Jabber client port 
(5222).  Then direct your clients to connect to port 6222 and watch all the 
XML stream back and forth.  It's a great way to familiarize yourself with 
how the Jabber protocol works, as well as a great debugging 
tool.
 
3) The 
UI is client side programming, so whatever the programmer wants they can 
get.  Usually the roster display is generated from XML doled out by the 
Jabber server.  The Jabber/XMPP spec says additional XML elements can be 
added to the roster (read the spec to see exactly where its OK).  An 
important gotcha is that different servers may not honor these additional 
attributes and/or elements, and other clients may not manipulate 
the additional data properly.  Quick example is the xdb_sql 
modules running in the Jabber server may not save your new fields into the 
Jabber database, and as such your information would be quickly lost.   
The stock Jabber 1.4.2 server uses files to save XML so you may be 
fine for a while. 
 
Hope 
this helps,
 
Mike

  
  -Original Message-From: 
  [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of 
  Bharath Ravi KumarSent: Sunday, March 30, 2003 9:50 
  AMTo: [EMAIL PROTECTED]Subject: [JDEV] jabberbeans 
  startup
  hi all, I intend to use jabber as a  transport for soap 
  messages.I read through the jabber protocol docs.I've chosen to use 
  jabberbeans to do this.But,there're several things that i haven't been able to 
  understand:
  1.How do i rig up the basic IM client using the beans?2.How could i 
  test the resulting client on a lan (without using the public jabber 
  servers)?3.Is it possible to have a separate indicator in the client 
  roster UI to mark out certain "special" kinds?I'm really a novice when it 
  comes to jabber.I have no idea how to get started.So,any suggestion is most 
  welcome.Thanks a 
  lot.    
  Regards, &nb! 
  sp;    Bharath
  
  
  Do you Yahoo!?Yahoo! 
  Platinum - Watch CBS' NCAA March Madness, live 
  on your desktop!


[JDEV] jabberbeans startup

2003-03-30 Thread Bharath Ravi Kumar
hi all, I intend to use jabber as a  transport for soap messages.I read through the jabber protocol docs.I've chosen to use jabberbeans to do this.But,there're several things that i haven't been able to understand:
1.How do i rig up the basic IM client using the beans?2.How could i test the resulting client on a lan (without using the public jabber servers)?3.Is it possible to have a separate indicator in the client roster UI to mark out certain "special" kinds?I'm really a novice when it comes to jabber.I have no idea how to get started.So,any suggestion is most welcome.Thanks a lot.    Regards, &nb!
sp;    BharathDo you Yahoo!?
Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop!

[JDEV] Jabberbeans: groupchatbean: any experts out there?

2002-11-23 Thread Darrell Berry
Hi

I've been playing with jabberbeans, which looks nice, however I can't
work out the proper way to send messages to a room once I've connected
there -- my agent shows up in the room, but I can't work out how to make
it communciate with the other users -- the GroupChatBean.sendMessage
method looks like the right one, but generates 'Forbidden' errors in the
jabberd logs -- I'm running the lastest release version of mu-conference
(0.3?).


I've also asked this quesiton on the jabberbeans list, but here is very
little activity there, so I'm hoping osmeone here can help -- in fact if
anyone has ANY jabberbeans example code other than the scripts in the
_programming jabber_ book, I'd love to hear from you!

thx



smime.p7s
Description: application/pkcs7-signature


Re: [JDEV] jabberbeans example?

2002-11-19 Thread Philippe Raxhon
Hi,

In the old CVS on sf (http://sourceforge.net/projects/jabberbeans/), 
there are some example codes, take a look at 
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jabberbeans/jabberbeans/src/jabberbeans-tests/simple-case/. 
They should still work with the newer version hosted on jabberstudio.

Philippe

Adrian Blakey wrote:

Could someone point me to some example code or a "hello world" program that 
uses jabberbeans?


___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev

 




___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] jabberbeans example?

2002-11-18 Thread Adrian Blakey
Could someone point me to some example code or a "hello world" program that 
uses jabberbeans?


___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] Jabberbeans problem with Applets

2002-10-22 Thread Bain Kennedy
Hi all,

I have been developing an Applet Jabber IM Client for a little while now.  I have done 
everything from write all the handlers, listeners and adapters myself, to finally 
getting smart and using the Jabberbeans module.  I got the IM Client working as a java 
application.  I also had the Applet working before even with the Jabberbeans, but all 
of the sudden I am getting this error:

java.lang.RuntimeException: error with extension factory
at org.jabber.jabberbeans.sax.XMLStreamDocumentHandler.(Unknown Source)
at org.jabber.jabberbeans.sax.InputStreamHandler.run(Unknown Source)

I have tried many things starting with the basic:

cb = new ConnectionBean();
cb.connect(java.net.InetAddress.getLocalHost());


To writing my own Connection Class

ConnectJabberServer cjs = new ConnectJabberServer(); // My own connection class
cb.disableStreamHeader();
cb.connect(cjs.returnSocket());


To even defining my own input and output stream.  All ways I recieve the same 
error.  Why is this doing this to me?  Please help... 

Don't mean to step on anybodies toes, cause I'm new here, checked the archives and 
couldn't quickly find a solution(Looked for 3 hours, been having this problem since 
9:00 PM tonight it's 3:00 AM now (PST :( )


Thanks in advance,

Bain Kennedy
Senior Engineer
Internet Solution Group, Inc.
[EMAIL PROTECTED]
w: 805.446. x121
c: 818.620.8039  
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] Jabberbeans questions/comments

2002-08-31 Thread Thomas Muldowney

New development has started here:  http://jabberbeans.jabberstudio.org/

There is also fresh code in CVS according to their project news.

--temas


On Sat, 2002-08-31 at 20:34, //chill wrote:
> Trying to find more information on jabberbeans but coming up with 
> blanks. Is there a maintainer in the house?
> 
> I've so far checked out jabberbeans and generated javadocs from src. So 
> what version have I checked out? Is there still a 2.0 in the works? Is 
> Jabberbeans back from the dead? Also I ran into some issues. First when 
> you browse the CVS jabberbeans isn't listed as an option. Second the 
> shell script wouldn't run, saying bad interpreter?
> 
> Anybody have any source I can download or look at? I'm mainly looking at 
> playing with components not clients.
> 
> Thanks!
> Chris Hill
> 
> ___
> jdev mailing list
> [EMAIL PROTECTED]
> http://mailman.jabber.org/listinfo/jdev


___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] Jabberbeans questions/comments

2002-08-31 Thread //chill

Trying to find more information on jabberbeans but coming up with 
blanks. Is there a maintainer in the house?

I've so far checked out jabberbeans and generated javadocs from src. So 
what version have I checked out? Is there still a 2.0 in the works? Is 
Jabberbeans back from the dead? Also I ran into some issues. First when 
you browse the CVS jabberbeans isn't listed as an option. Second the 
shell script wouldn't run, saying bad interpreter?

Anybody have any source I can download or look at? I'm mainly looking at 
playing with components not clients.

Thanks!
Chris Hill

___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] JabberBeans ConnectionListener

2002-08-13 Thread Mark Derricutt

Hiya, anyone here know why JabberBeans wouldn't fire any ConnectionListener 
events when I kill off my Jabber server?

I'm setting it up with:

  mConnection.addConnectionListener(this);

and:

  public void connectionChanged(ConnectionEvent connectionevent)
  {
log.info("Connection state changed.");
if (connectionevent.getState() == ConnectionEvent.STATE_DISCONNECTED)
{
  reConnect();
}
  }

But I'm not seeing the event fire?

Mark
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] JabberBeans???

2002-07-29 Thread David Waite

I'll need to run it by the current maintainer, but it seems ok to me for 
the code to be posted in the JabberBeans project CVS.

-David Waite

Jean-Louis Seguineau /EXC/TEC wrote:

>From what I understand, the original author, David Waite, is not willing to
>put any more effort into this.
>We are thinking in taking over and posting everything either on sourceforge,
>or jabberstudio whichever is interested in hosting the package.
>
>It will then become available for the community, as good old Open Source
>code. Whoever would be interested could then contribute. As it stands, the
>code as become pretty much bug proof as far as supporting the Jabber
>protocole. I would probably call it a release 1.0. We haven't had major
>modification other than IQ additions in the last 3 months. One thing,
>though, is that we are a server side company, and as such we have not been
>improving too much what was in the original JabberBeans for client support
>(the various Beans). We have just made the communication code realy
>mutlithreaded and robust.
>As to the additional beans that are on sourceforge, I don not see a major
>problem merging them into the library.
>
>Jean-Louis
>
>- Original Message -
>
>  
>
>>From: David Griffiths <[EMAIL PROTECTED]>
>>To: [EMAIL PROTECTED]
>>Subject: Re: [JDEV] JabberBeans???
>>Date: Mon, 29 Jul 2002 09:39:52 -0700
>>Reply-To: [EMAIL PROTECTED]
>>
>>That would be great.
>>
>>How will you be submitting? Sending to the authors of JabberBeans? Or just
>>posting the source?
>>
>>BTW, any way to get our real email addresses off the mailing list? I'm
>>starting to get spam on my work account (which up to now has not been
>>happening), and it's definately a result of posting here.
>>
>>David
>>- Original Message -
>>From: "Jean-Louis Seguineau /EXC/TEC" <[EMAIL PROTECTED]>
>>To: <[EMAIL PROTECTED]>
>>Sent: Monday, July 29, 2002 11:27 AM
>>Subject: Re: [JDEV] JabberBeans???
>>
>>
>>
>>
>>>Hi all,
>>>
>>>As we are using the JabberBeans concept and libraries, we will soon be
>>>contributing the derived code to the community.  It includes support for
>>>iq:browse, is:rpc, vcard-temp, x:data, c:event, x:html among others plus
>>>bugproofed versions of the standard IQs.
>>>Those of you that are interested can contact me for an early release of
>>>  
>>>
>>the
>>
>>
>>>sources.
>>>
>>>________
>>>Jean-Louis Seguineau
>>>Chief Technology Officer
>>>Antepo, Inc.
>>>
>>>ACCEPT, by Antepo
>>>Advanced Converging Communication and Enhanced Presence for the Telecom
>>>
>>>
>>>- Original Message -
>>>
>>>  
>>>
>>>>Message: 5
>>>>Date: Mon, 29 Jul 2002 17:21:50 +1200
>>>>From: Mark Derricutt <[EMAIL PROTECTED]>
>>>>To: [EMAIL PROTECTED]
>>>>Subject: [JDEV] JabberBeans???
>>>>Reply-To: [EMAIL PROTECTED]
>>>>
>>>>Is JabberBeans still maintained?  I see the website no longer exists.
>>>>
>>>>If not, is there another active java jabber library?  I see JSO, which
>>>>
>>>>
>>>says
>>>  
>>>
>>>>to be "low level", but I'm not sure -how- low level?
>>>>
>>>>Mark
>>>>
>>>>
>>>>   -- \m/ --
>>>>  "...if I seem super human I have been misunderstood." (c) Dream
>>>>
>>>>
>>Theater
>>
>>
>>>>  [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
>>>>
>>>>-- __--__--
>>>>
>>>>Message: 6
>>>>Date: Mon, 29 Jul 2002 17:34:58 +1200
>>>>From: Mark Derricutt <[EMAIL PROTECTED]>
>>>>To: [EMAIL PROTECTED]
>>>>Subject: Re: [JDEV] JabberBeans???
>>>>Reply-To: [EMAIL PROTECTED]
>>>>
>>>>Hmmm, for some reason I thought it was www.jabberbeans.org - but I see
>>>>
>>>>
>>it
>>
>>
>>>>all at sourceforge.net - I'll go hide now.
>>>>
>>>>--On Monday, 29 July 2002 5:21 p.m. +1200 Mark Derricutt
>>>>
>>>>
>><[EMAIL PROTECTED]>
>>
>>
>>>>wrote:
>>>>
>>>>
>>>>
>>>>>Is JabberBeans still maintained?  I see the website no longer
>>>>>  
>>>>>
>exists.
>  
>
>>>>
>>>>   -- \m/ --
>>>>  "...if I seem super human I have been misunderstood." (c) Dream
>>>>
>>>>
>>Theater
>>
>>
>>>>  [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
>>>>
>>>>
>>>>
>>>
>>>___
>>>jdev mailing list
>>>[EMAIL PROTECTED]
>>>http://mailman.jabber.org/listinfo/jdev
>>>
>>>  
>>>
>>--__--__--
>>
>>___
>>jdev mailing list
>>[EMAIL PROTECTED]
>>http://mailman.jabber.org/listinfo/jdev
>>
>>
>>End of jdev Digest
>>
>>
>>
>
>
>___
>jdev mailing list
>[EMAIL PROTECTED]
>http://mailman.jabber.org/listinfo/jdev
>  
>

___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] JabberBeans???

2002-07-29 Thread Sylvain Roberdeau

Mark,

Why not create a new projet in JabberStudio?
It will be more constructive for community.

Sylvain

Mark Derricutt a écrit :

> Is JabberBeans still maintained?  I see the website no longer exists.
>
> If not, is there another active java jabber library?  I see JSO, which says
> to be "low level", but I'm not sure -how- low level?
>
> Mark
>
>-- \m/ --
>   "...if I seem super human I have been misunderstood." (c) Dream Theater
>   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
> ___
> jdev mailing list
> [EMAIL PROTECTED]
> http://mailman.jabber.org/listinfo/jdev

___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] JabberBeans???

2002-07-29 Thread Jean-Louis Seguineau /EXC/TEC

>From what I understand, the original author, David Waite, is not willing to
put any more effort into this.
We are thinking in taking over and posting everything either on sourceforge,
or jabberstudio whichever is interested in hosting the package.

It will then become available for the community, as good old Open Source
code. Whoever would be interested could then contribute. As it stands, the
code as become pretty much bug proof as far as supporting the Jabber
protocole. I would probably call it a release 1.0. We haven't had major
modification other than IQ additions in the last 3 months. One thing,
though, is that we are a server side company, and as such we have not been
improving too much what was in the original JabberBeans for client support
(the various Beans). We have just made the communication code realy
mutlithreaded and robust.
As to the additional beans that are on sourceforge, I don not see a major
problem merging them into the library.

Jean-Louis

- Original Message -

> From: David Griffiths <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: [JDEV] JabberBeans???
> Date: Mon, 29 Jul 2002 09:39:52 -0700
> Reply-To: [EMAIL PROTECTED]
>
> That would be great.
>
> How will you be submitting? Sending to the authors of JabberBeans? Or just
> posting the source?
>
> BTW, any way to get our real email addresses off the mailing list? I'm
> starting to get spam on my work account (which up to now has not been
> happening), and it's definately a result of posting here.
>
> David
> - Original Message -
> From: "Jean-Louis Seguineau /EXC/TEC" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Monday, July 29, 2002 11:27 AM
> Subject: Re: [JDEV] JabberBeans???
>
>
> > Hi all,
> >
> > As we are using the JabberBeans concept and libraries, we will soon be
> > contributing the derived code to the community.  It includes support for
> > iq:browse, is:rpc, vcard-temp, x:data, c:event, x:html among others plus
> > bugproofed versions of the standard IQs.
> > Those of you that are interested can contact me for an early release of
> the
> > sources.
> >
> > 
> > Jean-Louis Seguineau
> > Chief Technology Officer
> > Antepo, Inc.
> >
> > ACCEPT, by Antepo
> > Advanced Converging Communication and Enhanced Presence for the Telecom
> >
> >
> > - Original Message -
> >
> > > Message: 5
> > > Date: Mon, 29 Jul 2002 17:21:50 +1200
> > > From: Mark Derricutt <[EMAIL PROTECTED]>
> > > To: [EMAIL PROTECTED]
> > > Subject: [JDEV] JabberBeans???
> > > Reply-To: [EMAIL PROTECTED]
> > >
> > > Is JabberBeans still maintained?  I see the website no longer exists.
> > >
> > > If not, is there another active java jabber library?  I see JSO, which
> > says
> > > to be "low level", but I'm not sure -how- low level?
> > >
> > > Mark
> > >
> > >
> > >-- \m/ --
> > >   "...if I seem super human I have been misunderstood." (c) Dream
> Theater
> > >   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
> > >
> > > -- __--__--
> > >
> > > Message: 6
> > > Date: Mon, 29 Jul 2002 17:34:58 +1200
> > > From: Mark Derricutt <[EMAIL PROTECTED]>
> > > To: [EMAIL PROTECTED]
> > > Subject: Re: [JDEV] JabberBeans???
> > > Reply-To: [EMAIL PROTECTED]
> > >
> > > Hmmm, for some reason I thought it was www.jabberbeans.org - but I see
> it
> > > all at sourceforge.net - I'll go hide now.
> > >
> > > --On Monday, 29 July 2002 5:21 p.m. +1200 Mark Derricutt
> <[EMAIL PROTECTED]>
> > > wrote:
> > >
> > > > Is JabberBeans still maintained?  I see the website no longer
exists.
> > >
> > >
> > >
> > >-- \m/ --
> > >   "...if I seem super human I have been misunderstood." (c) Dream
> Theater
> > >   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
> > >
> >
> >
> >
> > ___
> > jdev mailing list
> > [EMAIL PROTECTED]
> > http://mailman.jabber.org/listinfo/jdev
> >
>
>
> --__--__--
>
> ___
> jdev mailing list
> [EMAIL PROTECTED]
> http://mailman.jabber.org/listinfo/jdev
>
>
> End of jdev Digest
>


___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] JabberBeans???

2002-07-29 Thread Victor Yoalli Dominguez Torres


I'm interested too. I will appreciate if you could send me the library too.. 
Thanks



On Mon, Jul 29, 2002 at 03:58:51PM +0200, Javier Rodriguez wrote:
> I´m truly interested. I am evaluating jabberbeans and muse to write a Java
> client. While jabberbeans was abandoned a year ago, muse lacks of
> funcionality. Can you send me your library?
> 
> 
> -Mensaje original-
> De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]En nombre de
> Jean-Louis Seguineau /EXC/TEC
> Enviado el: lunes, 29 de julio de 2002 20:27
> Para: [EMAIL PROTECTED]
> Asunto: Re: [JDEV] JabberBeans???
> 
> 
> Hi all,
> 
> As we are using the JabberBeans concept and libraries, we will soon be
> contributing the derived code to the community.  It includes support for
> iq:browse, is:rpc, vcard-temp, x:data, c:event, x:html among others plus
> bugproofed versions of the standard IQs.
> Those of you that are interested can contact me for an early release of the
> sources.
> 
> 
> Jean-Louis Seguineau
> Chief Technology Officer
> Antepo, Inc.
> 
> ACCEPT, by Antepo
> Advanced Converging Communication and Enhanced Presence for the Telecom
> 
> 
> - Original Message -
> 
> > Message: 5
> > Date: Mon, 29 Jul 2002 17:21:50 +1200
> > From: Mark Derricutt <[EMAIL PROTECTED]>
> > To: [EMAIL PROTECTED]
> > Subject: [JDEV] JabberBeans???
> > Reply-To: [EMAIL PROTECTED]
> >
> > Is JabberBeans still maintained?  I see the website no longer exists.
> >
> > If not, is there another active java jabber library?  I see JSO, which
> says
> > to be "low level", but I'm not sure -how- low level?
> >
> > Mark
> >
> >
> >-- \m/ --
> >   "...if I seem super human I have been misunderstood." (c) Dream Theater
> >   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
> >
> > --__--__--
> >
> > Message: 6
> > Date: Mon, 29 Jul 2002 17:34:58 +1200
> > From: Mark Derricutt <[EMAIL PROTECTED]>
> > To: [EMAIL PROTECTED]
> > Subject: Re: [JDEV] JabberBeans???
> > Reply-To: [EMAIL PROTECTED]
> >
> > Hmmm, for some reason I thought it was www.jabberbeans.org - but I see it
> > all at sourceforge.net - I'll go hide now.
> >
> > --On Monday, 29 July 2002 5:21 p.m. +1200 Mark Derricutt <[EMAIL PROTECTED]>
> > wrote:
> >
> > > Is JabberBeans still maintained?  I see the website no longer exists.
> >
> >
> >
> >-- \m/ --
> >   "...if I seem super human I have been misunderstood." (c) Dream Theater
> >   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
> >
> 
> 
> 
> ___
> jdev mailing list
> [EMAIL PROTECTED]
> http://mailman.jabber.org/listinfo/jdev
> 
> ___
> jdev mailing list
> [EMAIL PROTECTED]
> http://mailman.jabber.org/listinfo/jdev
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] JabberBeans???

2002-07-29 Thread David Griffiths

That would be great.

How will you be submitting? Sending to the authors of JabberBeans? Or just
posting the source?

BTW, any way to get our real email addresses off the mailing list? I'm
starting to get spam on my work account (which up to now has not been
happening), and it's definately a result of posting here.

David
- Original Message -
From: "Jean-Louis Seguineau /EXC/TEC" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 29, 2002 11:27 AM
Subject: Re: [JDEV] JabberBeans???


> Hi all,
>
> As we are using the JabberBeans concept and libraries, we will soon be
> contributing the derived code to the community.  It includes support for
> iq:browse, is:rpc, vcard-temp, x:data, c:event, x:html among others plus
> bugproofed versions of the standard IQs.
> Those of you that are interested can contact me for an early release of
the
> sources.
>
> 
> Jean-Louis Seguineau
> Chief Technology Officer
> Antepo, Inc.
>
> ACCEPT, by Antepo
> Advanced Converging Communication and Enhanced Presence for the Telecom
>
>
> - Original Message -
>
> > Message: 5
> > Date: Mon, 29 Jul 2002 17:21:50 +1200
> > From: Mark Derricutt <[EMAIL PROTECTED]>
> > To: [EMAIL PROTECTED]
> > Subject: [JDEV] JabberBeans???
> > Reply-To: [EMAIL PROTECTED]
> >
> > Is JabberBeans still maintained?  I see the website no longer exists.
> >
> > If not, is there another active java jabber library?  I see JSO, which
> says
> > to be "low level", but I'm not sure -how- low level?
> >
> > Mark
> >
> >
> >-- \m/ --
> >   "...if I seem super human I have been misunderstood." (c) Dream
Theater
> >       [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
> >
> > --__--__--
> >
> > Message: 6
> > Date: Mon, 29 Jul 2002 17:34:58 +1200
> > From: Mark Derricutt <[EMAIL PROTECTED]>
> > To: [EMAIL PROTECTED]
> > Subject: Re: [JDEV] JabberBeans???
> > Reply-To: [EMAIL PROTECTED]
> >
> > Hmmm, for some reason I thought it was www.jabberbeans.org - but I see
it
> > all at sourceforge.net - I'll go hide now.
> >
> > --On Monday, 29 July 2002 5:21 p.m. +1200 Mark Derricutt
<[EMAIL PROTECTED]>
> > wrote:
> >
> > > Is JabberBeans still maintained?  I see the website no longer exists.
> >
> >
> >
> >-- \m/ --
> >   "...if I seem super human I have been misunderstood." (c) Dream
Theater
> >   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
> >
>
>
>
> ___
> jdev mailing list
> [EMAIL PROTECTED]
> http://mailman.jabber.org/listinfo/jdev
>
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



RE: [JDEV] JabberBeans???

2002-07-29 Thread Javier Rodriguez

I´m truly interested. I am evaluating jabberbeans and muse to write a Java
client. While jabberbeans was abandoned a year ago, muse lacks of
funcionality. Can you send me your library?


-Mensaje original-
De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]En nombre de
Jean-Louis Seguineau /EXC/TEC
Enviado el: lunes, 29 de julio de 2002 20:27
Para: [EMAIL PROTECTED]
Asunto: Re: [JDEV] JabberBeans???


Hi all,

As we are using the JabberBeans concept and libraries, we will soon be
contributing the derived code to the community.  It includes support for
iq:browse, is:rpc, vcard-temp, x:data, c:event, x:html among others plus
bugproofed versions of the standard IQs.
Those of you that are interested can contact me for an early release of the
sources.


Jean-Louis Seguineau
Chief Technology Officer
Antepo, Inc.

ACCEPT, by Antepo
Advanced Converging Communication and Enhanced Presence for the Telecom


- Original Message -

> Message: 5
> Date: Mon, 29 Jul 2002 17:21:50 +1200
> From: Mark Derricutt <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: [JDEV] JabberBeans???
> Reply-To: [EMAIL PROTECTED]
>
> Is JabberBeans still maintained?  I see the website no longer exists.
>
> If not, is there another active java jabber library?  I see JSO, which
says
> to be "low level", but I'm not sure -how- low level?
>
> Mark
>
>
>-- \m/ --
>   "...if I seem super human I have been misunderstood." (c) Dream Theater
>   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
>
> --__--__--
>
> Message: 6
> Date: Mon, 29 Jul 2002 17:34:58 +1200
> From: Mark Derricutt <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: [JDEV] JabberBeans???
> Reply-To: [EMAIL PROTECTED]
>
> Hmmm, for some reason I thought it was www.jabberbeans.org - but I see it
> all at sourceforge.net - I'll go hide now.
>
> --On Monday, 29 July 2002 5:21 p.m. +1200 Mark Derricutt <[EMAIL PROTECTED]>
> wrote:
>
> > Is JabberBeans still maintained?  I see the website no longer exists.
>
>
>
>-- \m/ --
>   "...if I seem super human I have been misunderstood." (c) Dream Theater
>   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
>



___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev

___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] JabberBeans???

2002-07-29 Thread Jean-Louis Seguineau /EXC/TEC

Hi all,

As we are using the JabberBeans concept and libraries, we will soon be
contributing the derived code to the community.  It includes support for
iq:browse, is:rpc, vcard-temp, x:data, c:event, x:html among others plus
bugproofed versions of the standard IQs.
Those of you that are interested can contact me for an early release of the
sources.


Jean-Louis Seguineau
Chief Technology Officer
Antepo, Inc.

ACCEPT, by Antepo
Advanced Converging Communication and Enhanced Presence for the Telecom


- Original Message -

> Message: 5
> Date: Mon, 29 Jul 2002 17:21:50 +1200
> From: Mark Derricutt <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: [JDEV] JabberBeans???
> Reply-To: [EMAIL PROTECTED]
>
> Is JabberBeans still maintained?  I see the website no longer exists.
>
> If not, is there another active java jabber library?  I see JSO, which
says
> to be "low level", but I'm not sure -how- low level?
>
> Mark
>
>
>-- \m/ --
>   "...if I seem super human I have been misunderstood." (c) Dream Theater
>   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
>
> --__--__--
>
> Message: 6
> Date: Mon, 29 Jul 2002 17:34:58 +1200
> From: Mark Derricutt <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: [JDEV] JabberBeans???
> Reply-To: [EMAIL PROTECTED]
>
> Hmmm, for some reason I thought it was www.jabberbeans.org - but I see it
> all at sourceforge.net - I'll go hide now.
>
> --On Monday, 29 July 2002 5:21 p.m. +1200 Mark Derricutt <[EMAIL PROTECTED]>
> wrote:
>
> > Is JabberBeans still maintained?  I see the website no longer exists.
>
>
>
>-- \m/ --
>   "...if I seem super human I have been misunderstood." (c) Dream Theater
>   [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
>



___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] JabberBeans???

2002-07-28 Thread Mark Derricutt

Hmmm, for some reason I thought it was www.jabberbeans.org - but I see it 
all at sourceforge.net - I'll go hide now.

--On Monday, 29 July 2002 5:21 p.m. +1200 Mark Derricutt <[EMAIL PROTECTED]> 
wrote:

> Is JabberBeans still maintained?  I see the website no longer exists.



   -- \m/ --
  "...if I seem super human I have been misunderstood." (c) Dream Theater
  [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] JabberBeans???

2002-07-28 Thread Mark Derricutt

Is JabberBeans still maintained?  I see the website no longer exists.

If not, is there another active java jabber library?  I see JSO, which says 
to be "low level", but I'm not sure -how- low level?

Mark


   -- \m/ --
  "...if I seem super human I have been misunderstood." (c) Dream Theater
  [EMAIL PROTECTED] - ICQ: 1934853 JID: [EMAIL PROTECTED]
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] JabberBeans encryption sample

2002-06-20 Thread mark

I suggest jettisioning jabberbeans and going with Muse at 
echomine.org. Much easier and active development.

Mark
On 20 Jun 02, at 12:55, Richard Clippard wrote:

> Anyone got a sample of how to encrypt Jabber messages using
> JabberBeans. I looked in the "swagger" sample and they did not seem to
> address this (or I just missed it). I am interested in encrypting all
> the message/chat content (not just the password (although I am
> interested in encrypting passwords too)).
> 
> Thanx. RL Clippard
> 


Mark Wilcox
[EMAIL PROTECTED]
Got LDAP?
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] JabberBeans encryption sample

2002-06-20 Thread Richard Clippard
Title: JabberBeans encryption sample






Anyone got a sample of how to encrypt Jabber messages using JabberBeans. I looked in the "swagger" sample and they did not seem to address this (or I just missed it). I am interested in encrypting all the message/chat content (not just the password (although I am interested in encrypting passwords too)).

Thanx. RL Clippard





Re: [JDEV] jabberbeans example

2002-05-30 Thread Jason Anderson

Duncan,

You need to register a listener on the connection, either by this:

class MyPacketListener extends PacketAdapter { ... }
connectionBean = new ConnectionBean();
connectionBean.addPacketListener(new MyPacketListener());

or by this:

class MyPacketListener extends PacketAdapter { ... }
connectionBean = new ConnectionBean();
messengerBean = new MessengerBean(connectionBean);
messengerBean.addPacketListener(new MyPacketListener());

and then MyPacketListener should look something like this:

class MyPacketListener extends PacketAdapter {

 public void receivedPacket(PacketEvent pe) {
 Packet p = pe.getPacket();

 // This if is not needed if you use MessengerBean
 if (p instanceof Message) {
 Message m = (Message)p;

 // normal, chat, or headline
 System.out.println("Message of type: " + m.getType());
 System.out.println("\treceived from: " + 
m.getFromAddress().toString());
 System.out.println("\tbody: " + m.getBody());
 }
 }

}

Of course, you need to connect the connection bean before this will do 
anything.  I hope this makes sense.  It won't compile like this, mind 
you. ;)

jason

Duncan Hoyle wrote:
> Hi
> 
> Does anyone have any example code for a message handling
> loop (ie. just sits there and processes incoming messages
> from the server) using jabberbeans? The examples directory
> isn't very complete and the documentation isn't very clear.
> I've managed to get an example which logs on and sends a
> single message but that's all.
> 
> Thanks
> 
> Duncan
> ___
> jdev mailing list
> [EMAIL PROTECTED]
> http://mailman.jabber.org/listinfo/jdev
> 
> .
> 


___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] jabberbeans example

2002-05-27 Thread Duncan Hoyle


Hi

Does anyone have any example code for a message handling
loop (ie. just sits there and processes incoming messages
from the server) using jabberbeans? The examples directory
isn't very complete and the documentation isn't very clear.
I've managed to get an example which logs on and sends a
single message but that's all.

Thanks

Duncan
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] Jabberbeans, xdb_java and incomplete packets --

2001-11-29 Thread Scott Honey

David,

Thanks for your advice -- the problem was a sloppy build environment.  I
had a different jabberbeans.jar file before the one packeged with xdb_java.
I guess I need to do some cleaning!

Thanks!

scott/

David Waite wrote:

> The XML shown as received by xdb_java is not the actual XML received,
> but that understood. The Handlers.properties file tells it to generate
> an IQAuth extension when it sees the 'jabber:iq:auth' namespace;
> however, the format is completely different than what it expects - it
> expects a 'query' element with a bunch of other elements within it, not
> just a 'password' element with CDATA for the password.
>
> There should be a replacement .properties file (and more importantly -
> replacement code) to provide a different extension objects for use when
> doing XDB requests. Should be as in 'I don't really know' - I have never
> tried running the xdb_java piece.
>
> -David Waite
>
> Scott Honey wrote:
>
> > Hey everyone,
> >
> > I'm currently working with xdb_java (see sourceforge.net for
> > downloads), and I've come accross an odd bug.  When the server sends
> > an XDB packet that includes a password, the xdb_java server never
> > receives it.  IQAuthZeroK seems to work, however.
> >
> > I believe this is not a jabberd problem because when I run xdb_file
> > remotely, everything comes out fine.
> >
> > Here's a bit of log...
> >
> > written by main server
> > Thu Nov 29 00:17:19 2001  mio.c:268 write_dump writing data:  > type='set' to='jim1@host' from='sessions' ns='jabber:iq:auth' id='3'>
> > JIM1
> >
> > received by xdb_java
> >  > ns="jabber:iq:auth">
> >
> > sent by xdb_java
> >  > ns="jabber:iq:auth">
> >
> > received by main server.
> > Thu Nov 29 00:17:19 2001  mio.c:698 MIO read from socket 14:  > to="sessions" from="jim1@host" id="3" type="result"
> > ns="jabber:iq:auth">
> >
> > I've been going mad trying to figure out why this isn't working
> > properly -- I'd really appreaciate some help.
> >
> > Thanks,
> >
> > Scott Honey
> >
> >
>
> ___
> jdev mailing list
> [EMAIL PROTECTED]
> http://mailman.jabber.org/listinfo/jdev

___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] Jabberbeans, xdb_java and incomplete packets --

2001-11-28 Thread David Waite

The XML shown as received by xdb_java is not the actual XML received, 
but that understood. The Handlers.properties file tells it to generate 
an IQAuth extension when it sees the 'jabber:iq:auth' namespace; 
however, the format is completely different than what it expects - it 
expects a 'query' element with a bunch of other elements within it, not 
just a 'password' element with CDATA for the password.

There should be a replacement .properties file (and more importantly - 
replacement code) to provide a different extension objects for use when 
doing XDB requests. Should be as in 'I don't really know' - I have never 
tried running the xdb_java piece.

-David Waite

Scott Honey wrote:

> Hey everyone,
>
> I'm currently working with xdb_java (see sourceforge.net for 
> downloads), and I've come accross an odd bug.  When the server sends 
> an XDB packet that includes a password, the xdb_java server never 
> receives it.  IQAuthZeroK seems to work, however.
>
> I believe this is not a jabberd problem because when I run xdb_file 
> remotely, everything comes out fine.
>
> Here's a bit of log...
>
> written by main server
> Thu Nov 29 00:17:19 2001  mio.c:268 write_dump writing data:  type='set' to='jim1@host' from='sessions' ns='jabber:iq:auth' id='3'> 
> JIM1
>
> received by xdb_java
>  ns="jabber:iq:auth">
>
> sent by xdb_java
>  ns="jabber:iq:auth">
>
> received by main server.
> Thu Nov 29 00:17:19 2001  mio.c:698 MIO read from socket 14:  to="sessions" from="jim1@host" id="3" type="result" 
> ns="jabber:iq:auth">
>
> I've been going mad trying to figure out why this isn't working 
> properly -- I'd really appreaciate some help.
>
> Thanks,
>
> Scott Honey
>  
>


___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] Jabberbeans, xdb_java and incomplete packets --

2001-11-28 Thread Gang Liu



Hi,
    I have modified jabberd to output 
IQAuth to work around this.
regards,
 
--
Gang Liu
- Original Message - 

  From: 
  Scott Honey 
  To: [EMAIL PROTECTED] 
  Sent: Thursday, November 29, 2001 1:41 
  PM
  Subject: [JDEV] Jabberbeans, xdb_java and 
  incomplete packets --
  Hey 
  everyone, 
      I'm currently working with xdb_java (see sourceforge.net 
  for downloads), and I've come accross an odd bug.  When the server sends 
  an XDB packet that includes a password, the xdb_java server never receives 
  it.  IQAuthZeroK seems to work, however. 
  I believe this is not a jabberd problem because when I run xdb_file 
  remotely, everything comes out fine. 
  Here's a bit of log... 
  written by main server Thu Nov 29 00:17:19 2001  mio.c:268 
  write_dump writing data: JIM1 
  received by xdb_java  
  sent by xdb_java  
  received by main server. Thu Nov 29 00:17:19 2001  mio.c:698 MIO 
  read from socket 14:  
  I've been going mad trying to figure out why this isn't working properly -- 
  I'd really appreaciate some help. 
  Thanks, 
  Scott Honey   


[JDEV] Jabberbeans, xdb_java and incomplete packets --

2001-11-28 Thread Scott Honey


Hey everyone,
    I'm currently working with xdb_java (see sourceforge.net
for downloads), and I've come accross an odd bug.  When the server
sends an XDB packet that includes a password, the xdb_java server never
receives it.  IQAuthZeroK seems to work, however.
I believe this is not a jabberd problem because when I run xdb_file
remotely, everything comes out fine.
Here's a bit of log...
written by main server
Thu Nov 29 00:17:19 2001  mio.c:268 write_dump writing data: JIM1
received by xdb_java

sent by xdb_java

received by main server.
Thu Nov 29 00:17:19 2001  mio.c:698 MIO read from socket 14: 
I've been going mad trying to figure out why this isn't working properly
-- I'd really appreaciate some help.
Thanks,
Scott Honey
 


[JDEV] JabberBeans Package : How to extract the Extension information

2001-09-28 Thread Thats Me

I am in a process of writing a server component in
JAVA. I am using JabberBeans package to connect to the
server. When I receive the XML packet in my server
component, I get InfoQuery object. I would like to
know how do I get the Extension information of this IQ
packet?



I could get the extension  from IQ packet. How
do I get the cmlns from ???

Thanks in Advance.

Regards
-Harish 


__
Do You Yahoo!?
Listen to your Yahoo! Mail messages from any phone.
http://phone.yahoo.com
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] jabberbeans: parsing XML from a file

2001-09-19 Thread Jens Alfke
 On Wednesday, September 19, 2001, at 07:08 AM, tom Bailly-salins wrote:

How can I go from an XML String (representing a message + extensions)
written in a file to a jabberbeans Message Object that I use in my code?

I don't know anything about the JabberBeans API, but at the very least you can run the string through an XML parser and get the various elements, from which it's quite easy to get the attributes of the messages. JabberBeans must include or require an XML parser, so you already have one lying around...

—Jens

[JDEV] jabberbeans: parsing XML from a file

2001-09-19 Thread tom Bailly-salins

Could anyone tell me how I could read Jabber messages stored in
their XML format from a local file (like an Inbox).

How can I go from an XML String (representing a message + extensions)
written in a file to a jabberbeans Message Object that I use in my code?


Thanks a million

TOM
[EMAIL PROTECTED]

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] Jabberbeans + roster

2001-09-18 Thread ARSAUT Roxane FTRD/DAC/LAN

object : help about Jabberbean API.

Hello
I am developing a light Jabber client
and I would like to know how to get the information from the roster (the
list of users for example);
I try to use RosterBean and RosterBuilder classes (from API) but without
success
is it possible to have an example of code using this classes ?
Thanks in advance
Roxane




!! Changement d'adresse EMAIL  !


Roxane Arsaut
France Telecom R&D
Phone : (33) 2 96 05 16 14  Fax : (33) 2 96 05 37 84
Technopole Anticipa
2, avenue Pierre Marzin
22307 Lannion





___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



RE: [JDEV] jabberbeans Question?

2001-05-11 Thread Dixon Canario

Hey can you share your jabber client with the group...
I'm looking for a jabber client to incorporate it in a big
software project...
so if you can do so I'll appreciate it.. :)
well, 
  later and thanks..

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
anand v
Sent: Friday, May 11, 2001 6:19 PM
To: [EMAIL PROTECTED]
Subject: [JDEV] jabberbeans Question?


Hi,

I am using the latest jabberbeans JabberBeans-0.9.0-pre4
and I would like to know how to subscrive yahoo and msn transport
to a java client using jabber server 1.4.1??

The code is working fine but I have to logout the client and
log back in to see the transport work properly

Thanks

Anand
_
Get your FREE download of MSN Explorer at http://explorer.msn.com

___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev
___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] jabberbeans Question?

2001-05-11 Thread anand v

Hi,

I am using the latest jabberbeans JabberBeans-0.9.0-pre4
and I would like to know how to subscrive yahoo and msn transport
to a java client using jabber server 1.4.1??

The code is working fine but I have to logout the client and
log back in to see the transport work properly

Thanks

Anand
_
Get your FREE download of MSN Explorer at http://explorer.msn.com

___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



Re: [JDEV] JabberBeans

2001-04-12 Thread David Waite

whoop, don't know how that one slipped through the cracks. It is fixed
now in CVS.

It actually lost it on the send (never transmitted)

-David Waite

Matt Diez wrote:

>
>
> Yep,
>   I'm probably going to hell for not reporting this through the proper
>
> channels, but I think I've stumbled across a bug in JabberBeans.
> When Jabber sends the following packet:
>
>  ns='jabber:x:offline' id='905'>
>  from='gez@elavil/Desktoppy'>
> C1E549CFFDE38C48BB550A3EB994AA13
> 2
> www
>  stamp='20010412T22:39:51'>Offline Storage
> 
> 
>
> JabberBeans seems to lose the "action" attribute.
>
>  ns="jabber:x:offline">
>  id="JCOM_19">
> 2
> C1E549CFFDE38C48BB550A3EB994AA13
> www
>  from="user@elavil">Offline Storage
> 
> 
>
> Just to call it to your attention.
>
> Thanks for your work on JabberBeans so far, it's coming along quite
> nicely.
>
> By the way, are you planning on making some sort of Offline extension
> class to handle
> serialization of the  tags necessary in the xdb response?
> currently I'm just
> using my own extension wrapper class to do that.
>
>
> Take care,
> Matthew D. Diez


___
jdev mailing list
[EMAIL PROTECTED]
http://mailman.jabber.org/listinfo/jdev



[JDEV] JabberBeans

2001-04-12 Thread Matt Diez
Title: JabberBeans





Yep, 
  I'm probably going to hell for not reporting this through the proper
channels, but I think I've stumbled across a bug in JabberBeans.
When Jabber sends the following packet:



    
        C1E549CFFDE38C48BB550A3EB994AA13
        2
        www
        Offline Storage
    



JabberBeans seems to lose the "action" attribute.



    
        2
        C1E549CFFDE38C48BB550A3EB994AA13
        www
        Offline Storage
    



Just to call it to your attention.


Thanks for your work on JabberBeans so far, it's coming along quite nicely.


By the way, are you planning on making some sort of Offline extension class to handle
serialization of the  tags necessary in the xdb response? currently I'm just
using my own extension wrapper class to do that.




Take care,
Matthew D. Diez