Re: [JBoss-user] Directory structure for using Jboss with Eclipse

2002-08-12 Thread Francisco Andrades

Hi, for development I use uncompressed wars inside the server/default/deploy
directory. Any servlet/JSP/EJB should run exactly the same in JBoss within
eclipse as it runs outside.

Francisco Andrades
www.NextJ.com

> - Original Message -
> From: "Michael Mattox" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Monday, August 12, 2002 12:00 PM
> Subject: [JBoss-user] Directory structure for using Jboss with Eclipse
>
>
> > I installed the EASIE Jboss plugin for Eclipse and that is working
> > properly (I can start and stop Jboss with the menu).  Now I'm having
> > trouble configuring my project for Jboss.  I'm not sure how to
> organize
> > the directory structure.  If someone using Jboss with Eclipse can tell
> > me how they organized their project that would be a great help.
> >
> > Thanks
> > Michael
> >
> >
> >
> > ---
> > This sf.net email is sponsored by:ThinkGeek
> > Welcome to geek heaven.
> > http://thinkgeek.com/sf
> > ___
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
>
> ---
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
> ---
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
>



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Am I thinking about this correctly?

2002-06-20 Thread Francisco Andrades

I believe i misread the question, but in any case this is very bad practice.
You should go for the mbean option

Francisco Andrades
www.NextJ.com

- Original Message -
From: "Francisco Andrades" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 20, 2002 5:13 PM
Subject: Re: [JBoss-user] Am I thinking about this correctly?


> The EJB spec specifically forbids Threads execution from an EJB.
> This metodology is highly unrecommended.
>
> Francisco Andrades
> www.NextJ.com
>
> - Original Message -
> From: "Duarte Nuno Loreto" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, June 20, 2002 4:31 PM
> Subject: RE: [JBoss-user] Am I thinking about this correctly?
>
>
> > Hello!
> >
> > I believe the MBean is a possibility. We opted for another option. We
> > deployed a war with a servlet that starts a thread on the init() and
> listens
> > to a socket. when communication is received, we start another thread
that
> > calls the EJBs and replies to client through the same socket
(synchronous
> > call).
> >
> > This way we know it works. Through MBean we didn't try. Servlets are
easy
> to
> > code. But you need to start JBoss with catalina/tomcat.
> >
> > Happy coding!
> >
> > Duarte Loreto
> >
> > > -Original Message-
> > > From: Jim Williams [SMTP:[EMAIL PROTECTED]]
> > > Sent: Quinta-feira, 20 de Junho de 2002 20:47
> > > To: [EMAIL PROTECTED]
> > > Subject: [JBoss-user] Am I thinking about this correctly?
> > >
> > > Hello,
> > > I am new to jboss so I am looking for a bit of advice.
> > >
> > > I have a problem and I think I know how to solve it
> > > but I may be barking up the wrong tree or in the wrong
> > > forest altogether.
> > >
> > >
> > > What I need to do is to create a class that listens on
> > > a port and triggers other objects when it receives
> > > data.  Not a big deal really i am just not used to
> > > using Jboss and I am feeling unsure.  (I have done
> > > this before with just plain java classes)  The data
> > > coming in is our own format over tcp.  We do not want
> > > to run a vm on the "terminals" so jms is out.  We do
> > > not want to use http for the message.
> > >
> > > The way I think I deal with this with jboss is to
> > > write a custom mBean service to deal with our
> > > situation.  Open a port listener and deal with the
> > > data as it comes in.  Am I think correctly here or am
> > > I way off??
> > >
> > > Thanks,
> > > Jim Williams
> > > Software Engineer, 4Access Communications
> > >
> > > __
> > > Do You Yahoo!?
> > > Yahoo! - Official partner of 2002 FIFA World Cup
> > > http://fifaworldcup.yahoo.com
> > >
> > >
> > > ---
> > > Sponsored by:
> > > ThinkGeek at http://www.ThinkGeek.com/
> > > ___
> > > JBoss-user mailing list
> > > [EMAIL PROTECTED]
> > > https://lists.sourceforge.net/lists/listinfo/jboss-user
> >
> >
> > ---
> > Sponsored by:
> > ThinkGeek at http://www.ThinkGeek.com/
> > ___
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-user
> >
>
>
>
> ---
> Sponsored by:
> ThinkGeek at http://www.ThinkGeek.com/
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
>



---
Sponsored by:
ThinkGeek at http://www.ThinkGeek.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Am I thinking about this correctly?

2002-06-20 Thread Francisco Andrades

The EJB spec specifically forbids Threads execution from an EJB.
This metodology is highly unrecommended.

Francisco Andrades
www.NextJ.com

- Original Message -
From: "Duarte Nuno Loreto" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 20, 2002 4:31 PM
Subject: RE: [JBoss-user] Am I thinking about this correctly?


> Hello!
>
> I believe the MBean is a possibility. We opted for another option. We
> deployed a war with a servlet that starts a thread on the init() and
listens
> to a socket. when communication is received, we start another thread that
> calls the EJBs and replies to client through the same socket (synchronous
> call).
>
> This way we know it works. Through MBean we didn't try. Servlets are easy
to
> code. But you need to start JBoss with catalina/tomcat.
>
> Happy coding!
>
> Duarte Loreto
>
> > -Original Message-
> > From: Jim Williams [SMTP:[EMAIL PROTECTED]]
> > Sent: Quinta-feira, 20 de Junho de 2002 20:47
> > To: [EMAIL PROTECTED]
> > Subject: [JBoss-user] Am I thinking about this correctly?
> >
> > Hello,
> > I am new to jboss so I am looking for a bit of advice.
> >
> > I have a problem and I think I know how to solve it
> > but I may be barking up the wrong tree or in the wrong
> > forest altogether.
> >
> >
> > What I need to do is to create a class that listens on
> > a port and triggers other objects when it receives
> > data.  Not a big deal really i am just not used to
> > using Jboss and I am feeling unsure.  (I have done
> > this before with just plain java classes)  The data
> > coming in is our own format over tcp.  We do not want
> > to run a vm on the "terminals" so jms is out.  We do
> > not want to use http for the message.
> >
> > The way I think I deal with this with jboss is to
> > write a custom mBean service to deal with our
> > situation.  Open a port listener and deal with the
> > data as it comes in.  Am I think correctly here or am
> > I way off??
> >
> > Thanks,
> > Jim Williams
> > Software Engineer, 4Access Communications
> >
> > __
> > Do You Yahoo!?
> > Yahoo! - Official partner of 2002 FIFA World Cup
> > http://fifaworldcup.yahoo.com
> >
> >
> > ---
> > Sponsored by:
> > ThinkGeek at http://www.ThinkGeek.com/
> > ___
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
> ---
> Sponsored by:
> ThinkGeek at http://www.ThinkGeek.com/
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
>



---
Sponsored by:
ThinkGeek at http://www.ThinkGeek.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] IDE Question

2002-06-12 Thread Francisco Andrades

vi :)

Francisco Andrades
NextJ.com

- Original Message - 
From: "Greg Turner" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 12, 2002 2:25 PM
Subject: [JBoss-user] IDE Question


> What IDE are you guys and gals using?  I have been using Intellij, but
> now that I am getting into XDoclet, I find that Intellij is unable to
> run a build file that contains an XDoclet.  I am about ready to look to
> another IDE.  Any suggestions?
> 
> Greg Turner
> 
> Tiburon Enterprise Systems
> http://www.tiburon-e-systems.com
> Box 1171
> Tiburon, CA 94920
> 415-332-3363
> 
> 
> 
> ___
> 
> Sponsored by:
> ThinkGeek at http://www.ThinkGeek.com/
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
> 


___

Sponsored by:
ThinkGeek at http://www.ThinkGeek.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-11 Thread Francisco Andrades Grassi

The web interface looks pretty good, but a lot of people (including
myself) cant just go surf the web-site to be up to day with jboss. I can't
connect to the web at peek time, that's when i thank good ol' email. I'm
pretty sure there's a lot of people like me in this list, using jboss and
keeping track of it.

I, for instance, keep a track of the most relevant mails from the list,
and that has been the answer for 99% of the questions i have, without
even surfing the mail-archive. This change would be a 'rollback' (this
word is the hipe in this list). I cant imagine entering the web site,
searching the newest post, reading all of them in the web browser and
saving the most relevant ones in the disk. I know this issue is
100% in the hands of the group and the developers, but i'm sure the
best way would be a mail-web mixture.

I know a lot of people uses such a system, but this list is already part
of the jboss users life.

On Wed, 11 Jul 2001, Ole Husgaard wrote:

> Hi,
>
> marc fleury wrote:
> > the forums online seem to be holding, let's start bringing more pressure on.
> >
> > Unless something massive happens we are on track for this list disappearing.
> >
> > So get and get used to the forum format NOW
>
> I strongly disagree.
>
> VERY STRONGLY !!!
>
> It looks to me like you want to shut down this
> list just because you want to FORCE the users
> of this list to use whatever smart web service
> you have set up.

-- 
Francisco Andrades


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Class Cast Exception with JBossMQ

2001-06-30 Thread Francisco Andrades

I have no idea what your problem is . but al 6.30 you must draw a
smile at the name of your package  :)

> [EmailBean] at 
> com.guerrillabroadcasting.groundswell.ejb.mdb.EmailBean.sendEmail(EmailBean.


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user