[JBoss-dev] [Mail Services] - Integration with Nukes

2004-04-21 Thread kabkhan
I've only just started looking at Nukes, and here are my initial thoughts. I'm still 
haven't gone into the Nukes code in any depth, but hope the following makes some kind 
of sense. I'd rather get a discussion going now and get what we are meant to be doing 
clear while figuring out Nukes. I'm not sure how big the changes to be made to Nukes 
will be, but I we will need to make some. How tight is the integration between the two 
meant to be? 

All users, forums, topics and watches for nukes are currently stored in nukes db 
tables.

We will need to record local addresses meant for Nukes somewhere, both to allow for 
sending when relay is disabled, and to allow for delivery/posting. I guess we could 
expand the UserRepostitory for now to set up certain addresses as special and meant 
for Nukes. 


A OUTGOING MAIL
===
When posts are made on the forum, they should be posted to all users who are watching 
the forum/and topic. Currently Nukes has its own code for handling this, but I take it 
we want to modify it to use mail services for sending instead?

B INCOMING MAIL
===
1 We essentially want to implement Mail Services to act as an additional incoming 
front-end for Nukes. i.e. in addition to the web ui that comes with it.
2 Each forum has its own email address that mails come from when sent to the 
subscribers (i.e. whoever is watching the forum/topic)
3 Subscribers can simply reply to the individual emails to post replies on the forums. 
We could probably fit in another (chainable?) maillistener (or do I mean 
mailhandler?), and messages intended for Nukes would then be posted on the forums.
4 When a reply is received from one of the subscribers it is posted on the forum:

a) The user is logged into nukes using their email address so we know who the post is 
from.  (I'm not sure how Nukes handles session tracking, so maybe need to look at 
something there). 
  | b) The destination forum can be decided either by the stuff that goes in the 
header for each forum (i.e. ours has [Mail Services] in it), or by the address for the 
forum. Or even both.
  | c) The destination topic can be determined from the subject of the recieved 
mail. If several topics exists within the forum with the same titles the newest is 
selected, which goes some way to solve problems with double posts and cases where an 
old different post has the same title as a newer post. 
  | d) For a)c), and I guess b), more information somehow in order to nail down 
exactly who is posting to where wold be nice. a) can be narrowed down further by 
seeing what users with the address watch the forum/address. For c) we could parse the 
text of the email to look for the link containing all the information, but it sounds 
slow and painful.
  | 
  | 
  | 5 It could/should be possible to sign up for notifications on a per forum basis by 
sending a message to the forum's email address. This would only be possible for users 
already registered in nukes.
  | 
  | I've probably left out a whole bunch of stuff, so would be good to hear more 
ideas. Once this discussion stabilizes a bit at our end we will probably need some 
comments from Julien.
  | 
  | Cheers,
  | 
  | Kab

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831710#3831710

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831710


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: wiki site added

2004-04-21 Thread hxp
I've reorganized the main Nukes wiki page, to make it much easier for newcomers to 
find what they need. The general sequence of topics goes from getting-started type 
topics, to the advanced user topics, to the getting into development topics, to the 
more advanced development topics. This main Nukes wiki page is still at: 

http://jboss.org/wiki/Wiki.jsp?page=NukesForJBoss 


-- Howard

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831717#3831717

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831717


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss Remoting] - The Weblogic provide some rmi-able jdbc package

2004-04-21 Thread solidboy
In jboss-remoting  document ,it says that it can provide any pojo remoting

datasource name: jdbc/OracleDB
The Datasource is on a jboss server(JVM1),Does  the following:
1. I lookup it from an another JVM2
2. Operating on the datasource

can work?

The Weblogic provide some rmi-able jdbc package,and seems work!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831718#3831718

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831718


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Nukes security

2004-04-21 Thread pista
How to manage security on Nukes?
I understand the notion of group and level but I don't understand the patterns !
What means .*:.*:.* and :::?
What I have to write to display the faq module for users of a group created before?
Sorry for the mistakes !! :o/

Thanks for help !!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831719#3831719

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831719


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: How does Nukes evalute statements like $ {config:siteNam

2004-04-21 Thread hxp
porterrickabaugh wrote : Some data is kept in the nukes database.  MySql users can 
use the following commands the to Site Name and Slogan.
  | 
  | update nuke_services_attributes set pn_value = 'Your Web Portal' where pn_aid = 
'SiteName';
  | 
  | update nuke_services_attributes set pn_value = 'Slogan' where pn_aid = 'Nukes on 
JBoss';
  | 
  | 


Sorry, but in today's context -- J2EE, JBoss, Nukes -- that's just plain _bad_ advice. 


Don't use naked SQL to meddle with your Nukes database. 

It bypasses any interceptors (security, transactionality, etc) or application code 
(logic, filters, constraints, rules, etc.) that may be imposed by the module or the 
core. 

It's database-brand dependent (as you say, your code is only supposed to work on 
MySQL). 

It's error prone (yup, your 2 lines of SQL code above won't even work on MySQL -- 
re-read it closely  ;-  ). 

It's a bad habit to get into.

Worse yet, it undermines the very good and very important design assumption that Nukes 
owns the database -- and that the Nukes Entity EJBs are the only way in and out of 
the tables.

If you want to stay in the stone age, then you might as well just edit MySQL's 
datafiles directly with a hexadecimal editor, or even better, bang bits directly to 
your disks by track and sector.

=


Now,  here's how you do it right:  use the jmx-console . go to the core module 


http://localhost:8080/jmx-console/HtmlAdaptor?action=inspectMBeanname=nukes.modules%3Aname%3Dcore

 find the SiteName and Slogan Attribute Names, and edit the Attribute Values 
strings to your liking. Scroll down ~40% of the way down the page and click the Apply 
Changes button.

Much more civilized ;-)

-- Howard


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831721#3831721

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831721


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Tomcat] - Exception morphing bug

2004-04-21 Thread [EMAIL PROTECTED]
Hi, 
I'm deploying a weblogic conversion to JBoss and have some problems - i think which 
are configuration-related - with my exception-handling mechanism. 

I'm using Jboss-3.2.3, the standard download with integrated Tomcat against postgres. 

On certain requests which have missing parameters I throw an exception, which should 
then forward to one of a number of JSPs dependant upon the type of exception. However, 
currently all exceptions seem to be masked to a NullPointerException. 

I've posted it in this forum because I throw the exception in the web tier, but if you 
can recommend somewhere better i'll post it there.

I've copied (and annotated) the stacktrace below - the exception is thrown at 1 - 
you can see from the stack trace its a MissingFormDataException. Then its caught at 
2, by which time its become a NullPointerException. Magic! 

Also, there's nothing in my code to display the stack trace to STDERR between 1 and 
2, so the only thing I can think is that the exception-morphing is to do with this. 
If anyone can advise me where I can configure this not to be displayed, or if you've 
got any other ideas what might be causing the problem I'd really appreciate it. 

Thanks in advance. 
Dave 


14:17:06,030 DEBUG [JkInputStream] Copy into body buffer2 [EMAIL PROTECTED] 337 337 
14:17:06,030 DEBUG [JkInputStream] Data: 
action=updatelanguage=en_USfavorite_category=APP_SERVERtitle_a=Mrgiven_name_a=family_name_a=kaddress_1_a=kaddress_2_a=kcity_a=kstate_or_province_a=kpostal_code_a=kcountry_a=United+Kingdomtelephone_number_a=123[EMAIL
 
PROTECTED]job_title_a=company_a=currency=en_GBimage=%E2%80%B9%E2%80%B9+UPDATE+%E2%80%BA%E2%80%BA
 
14:17:06,030 DEBUG [HandlerRequest] R( /appjbosstore/customer.action) 
14:17:06,031 DEBUG [HandlerRequest] Calling next container 
org.apache.jk.server.JkCoyoteHandler 
14:17:06,031 DEBUG [JkCoyoteHandler] Invoke R( /appjbosstore/customer.action) [EMAIL 
PROTECTED] /appjbosstore/customer.action 
14:17:06,033 DEBUG [JkCoyoteHandler] ACK 
14:17:06,034 INFO [STDOUT] URLFilter: uri /appjbosstore/customer.action 
14:17:06,034 INFO [STDOUT] MainServlet:getParams(POST) 
14:17:06,034 DEBUG [JkCoyoteHandler] doRead null 0 0 
14:17:06,035 DEBUG [JkInputStream] doRead 0 337 337 false 0 0 
14:17:06,036 INFO [STDOUT] MainServlet, gotParam(): 
14:17:06,036 INFO [STDOUT] MainServlet:about to process request 
14:17:06,036 INFO [STDOUT] processing customer.action 
14:17:06,037 INFO [STDOUT] DefaultCustomerHTMLAction:extractContactInfo() 
14:17:06,037 INFO [STDOUT] DefaultCustomerHTMLAction:extractContactInfo()Got given 
name 0 

1 

14:17:06,038 ERROR [STDERR] 
com.sun.j2ee.blueprints.petstore.controller.web.exceptions.MissingFormDataException: 
Missing Address Data 
14:17:06,040 ERROR [STDERR] at 
com.sun.j2ee.blueprints.petstore.controller.web.actions.DefaultCustomerHTMLAction.extractContactInfo(Unknown
 Source) 
14:17:06,040 ERROR [STDERR] at 
com.sun.j2ee.blueprints.petstore.controller.web.actions.DefaultCustomerHTMLAction.extractExtendedContactInfo(Unknown
 Source) 
14:17:06,040 ERROR [STDERR] at 
com.sun.j2ee.blueprints.petstore.controller.web.actions.CustomerHTMLAction.perform(Unknown
 Source) 
14:17:06,041 ERROR [STDERR] at 
com.sun.j2ee.blueprints.waf.controller.web.RequestProcessor.processRequest(Unknown 
Source) 
14:17:06,041 ERROR [STDERR] at 
com.sun.j2ee.blueprints.waf.controller.web.MainServlet.doProcess(Unknown Source) 
14:17:06,041 ERROR [STDERR] at 
com.sun.j2ee.blueprints.waf.controller.web.MainServlet.doPost(Unknown Source) 
14:17:06,041 ERROR [STDERR] at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:760) 
14:17:06,041 ERROR [STDERR] at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) 
14:17:06,041 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
 
14:17:06,041 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
 
14:17:06,042 ERROR [STDERR] at 
com.sun.j2ee.blueprints.signon.web.SignOnFilter.doFilter(Unknown Source) 
14:17:06,042 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
 
14:17:06,042 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
 
14:17:06,042 ERROR [STDERR] at 
com.sun.j2ee.blueprints.petstore.controller.web.SecurityFilter.doFilter(Unknown 
Source) 
14:17:06,042 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
 
14:17:06,042 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
 
14:17:06,043 ERROR [STDERR] at 
com.sun.j2ee.blueprints.petstore.controller.web.URLFilter.doFilter(Unknown Source) 
14:17:06,043 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
 
14:17:06,043 ERROR [STDERR] at 

[JBoss-dev] [JBoss IDE] - JMX tags

2004-04-21 Thread lepe
JBossIDE from CVS and Eclipse M8.


Trying to build a simple mbean. Get Interface generated but is stuck on generate the 
jboss-service.xml file. 

Found in Xdoclet configuration that I could add jbossxmlservicetemplate and also found 
its property servicefile that I set to jboss. Now I get a jboss-service.xml but it 
does not mention anything about my mbean. Any more property that I have to set or am i 
completly out?

/L

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831723#3831723

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831723


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - JBoss-IDE 1.2.3 release

2004-04-21 Thread letiemble
Hi,

The JBoss-IDE 1.2.3 is officialy released (second attempt).
Release 1.2.3 is for Eclipse 2.1 series
Release 1.2.330 is for Eclipse 3.0 series beyond 3.0M8

Installation is available trough the Eclipse install/update manager or trough zip 
bundles :
http://prdownloads.sourceforge.net/jboss/org.jboss.ide.eclipse_1.2.3.bin.dist.zip?download
http://prdownloads.sourceforge.net/jboss/org.jboss.ide.eclipse_1.2.330.bin.dist.zip?download

Additional informations can be found in the release notes :
http://prdownloads.sourceforge.net/jboss/release_notes_1.2.3.html?download


!!! IMPORTANT !!!
Just after the initial release mad the 19 of april, a blocking bug was found in the 
Launcher par of JBoss-IDE. This bug has been corrected and the release has been 
re-bundled. When the bug was discovered, upgrade and download where frozen. However, 
if you have upgraded between the 19 of April and now, you have to re-install the 
bundle.


Laurent.
[img][/img]

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831729#3831729

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831729


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Nukes security

2004-04-21 Thread sgwood

Check out http://jboss.org/wiki/Wiki.jsp?page=NukesSecurity


Sherman

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831733#3831733

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831733


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Patches-939239 ] Mappings for DaffodilDB

2004-04-21 Thread SourceForge.net
Patches item #939239, was opened at 2004-04-21 13:32
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376687aid=939239group_id=22866

Category: JBossCMP
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Philipp Hug (codeshark)
Assigned to: Nobody/Anonymous (nobody)
Summary: Mappings for DaffodilDB

Initial Comment:
These are the mappings for DaffodilDB:
http://www.daffodildb.com/

I received them from the DaffodilDB support team, so 
they should be correct.

Please add them to standardjbosscmp-jdbc.xml.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376687aid=939239group_id=22866


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Interested in translating Nukes in italian

2004-04-21 Thread Janoz
I already did a lot of work in this part but ran into some problems for wich i'm still 
waiting for some feedback. See 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3828820#3828820. I'm planning 
to translate it to dutch. I already have done most off the core module (including 
stripping some templates and java files of hardcoded content)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831734#3831734

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831734


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Nukes security

2004-04-21 Thread pista
Thanks but I have already seen this page ! It doesn't help me !!
What strings put between : to define rules?
Have you examples, please?


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831736#3831736

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831736


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JMS on JBoss (JMS/JBoss)] - Re: ChangeNotes: 3.2.4

2004-04-21 Thread [EMAIL PROTECTED]
Bug Fix:

Fix the Queue and Topic Requestors to close the receivers before deleting the 
temporary destination.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831747#3831747

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831747


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Clustering support for SSO

2004-04-21 Thread Remy Maucherat
Hi,

Brian Stansberry submitted some new useful patches for Tomcat, adding 
pluggable SSO support, with an implementation of JBoss clustering for 
SSO (which would replace the regular SSO valve).

The issue it addresses is that when there's a failover, SSO data is lost 
and the user would possibly need to relog in once (to add SSO on the new 
node). The increase in network activity should be reasonable, but 
obviously this is a polish feature.

Are we interested in this advanced functionality ? (the question is for 
Scott and Bill, mostly)

--
x
Rémy Maucherat
Developer  Consultant
JBoss Group (Europe) SàRL
x


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Clustering support for SSO

2004-04-21 Thread Scott M Stark
Yes, In fact I'm looking to add this immedaitely. 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of Remy Maucherat
 Sent: Wednesday, April 21, 2004 7:01 AM
 To: [EMAIL PROTECTED]
 Subject: [JBoss-dev] Clustering support for SSO
 
 Hi,
 
 Brian Stansberry submitted some new useful patches for 
 Tomcat, adding pluggable SSO support, with an implementation 
 of JBoss clustering for SSO (which would replace the 
 regular SSO valve).
 
 The issue it addresses is that when there's a failover, SSO 
 data is lost and the user would possibly need to relog in 
 once (to add SSO on the new node). The increase in network 
 activity should be reasonable, but obviously this is a polish feature.
 
 Are we interested in this advanced functionality ? (the 
 question is for Scott and Bill, mostly)
 
 --
 x
 Rémy Maucherat
 Developer  Consultant
 JBoss Group (Europe) SàRL
 x
 



---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70alloc_id638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Clustering support for SSO

2004-04-21 Thread Remy Maucherat
Scott M Stark wrote:
Yes, In fact I'm looking to add this immedaitely. 
Brian's patch seems good, but I didn't fully review it: can we wait 
until after 3.2.4, though ?
Some Tomcat changes are needed, and I can't make them appear in a 
release within two seconds ;)

--
x
Rémy Maucherat
Developer  Consultant
JBoss Group (Europe) SàRL
x
---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Clustering support for SSO

2004-04-21 Thread Scott M Stark
I want to do another 3.2.4RC2 release before the final so there is time. 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of Remy Maucherat
 Sent: Wednesday, April 21, 2004 8:24 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-dev] Clustering support for SSO
 
 Scott M Stark wrote:
  Yes, In fact I'm looking to add this immedaitely. 
 
 Brian's patch seems good, but I didn't fully review it: can 
 we wait until after 3.2.4, though ?
 Some Tomcat changes are needed, and I can't make them appear 
 in a release within two seconds ;)
 
 --
 x
 Rémy Maucherat
 Developer  Consultant
 JBoss Group (Europe) SàRL
 x
 
 
 ---
 This SF.Net email is sponsored by: IBM Linux Tutorials
 Free Linux tutorial presented by Daniel Robbins, President and CEO of
 GenToo technologies. Learn everything from fundamentals to system
 administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
 ___
 JBoss-Development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development
 
 


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70alloc_id638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Clustering support for SSO

2004-04-21 Thread Remy Maucherat
Scott M Stark wrote:
I want to do another 3.2.4RC2 release before the final so there is time. 
Ok. Then we can say that I'll take care of this in Tomcat land soon 
enough (since all that is apparently needed is to merge patches, again 
thanks to Brian :) ).

--
x
Rémy Maucherat
Developer  Consultant
JBoss Group (Europe) SàRL
x
---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.42 Build Successful

2004-04-21 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/?log=log20040421101032Lbuild.42
BUILD COMPLETE-build.42Date of build:04/21/2004 10:10:32Time to build:51 minutes 43 secondsLast changed:04/21/2004 09:47:27Last log entry:Queue and Topic Requestor fixes during close




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(5)modifiedejortj2ee/src/main/javax/jms/TopicRequestor.javaQueue and Topic Requestor fixes during closemodifiedejortj2ee/src/main/javax/jms/QueueRequestor.javaQueue and Topic Requestor fixes during closemodifiedtdieslerserver/build.xml+ provide access to the wsdl  definition from ServiceRefMetaDatamodifiedtdieslerserver/src/main/org/jboss/deployment/ClientDeployer.java+ fix a few typos+ pass the classloader to the ClientMetaData for additional resource loadingmodifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/SQLUtil.javause abstract jdbc bridge instead of concrete implementation where possible



[JBoss-dev] [ jboss-Bugs-936962 ] XDoclet access to /resources/additional_values.xml

2004-04-21 Thread SourceForge.net
Bugs item #936962, was opened at 2004-04-17 15:02
Message generated for change (Comment added) made by folkerts
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=936962group_id=22866

Category: JBoss-IDE
Group: None
Status: Closed
Resolution: Fixed
Priority: 5
Submitted By: Ralf Folkerts (folkerts)
Assigned to: Laurent Etiemble (letiemble)
Summary: XDoclet access to /resources/additional_values.xml

Initial Comment:
Version: JBoss-IDE 1.2.230 on Eclipse 3.0M8
OS: Linux (Gentoo)
JDK: 1.4.2_04 (Sun)

When trying to refresh the XDoclet-Info
(Window/Preferences/JBoss IDE/XDoclet/Refresh XDolet
Modules  Code Assist/Refresh XDoclet Data) the
JBoss IDE tries to access a file !SESSION Apr 17, 2004
15:49:11.935 -
java.version=1.4.2_04
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=de_DE
!ENTRY org.jboss.ide.eclipse.xdoclet.assist 4 0 Apr 17,
2004 15:49:11.936
!MESSAGE Internal Error
!STACK 0
java.io.FileNotFoundException:
/resources/additional_values.xml (Datei oder
Verzeichnis nicht gefunden)
at java.io.FileInputStream.open(Native Method)
at
java.io.FileInputStream.init(FileInputStream.java:106)
at java.io.FileInputStream.init(FileInputStream.java:66)
at java.io.FileReader.init(FileReader.java:41)
at
org.jboss.ide.eclipse.xdoclet.assist.XDocletAssistPlugin.getXMLPersistenceManager(XDocletAssistPlugin.java:382)
at
org.jboss.ide.eclipse.xdoclet.assist.XDocletAssistPlugin.getXMLDocument(XDocletAssistPlugin.java:344)
at
org.jboss.ide.eclipse.xdoclet.assist.XDocletAssistPlugin.getXMLDocument(XDocletAssistPlugin.java:329)
at
org.jboss.ide.eclipse.xdoclet.assist.XDocletAssistPlugin.addValuesToDocletTree(XDocletAssistPlugin.java:139)
at
org.jboss.ide.eclipse.xdoclet.assist.XDocletAssistPlugin$1.run(XDocletAssistPlugin.java:219)
at
org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101)
!ENTRY org.jboss.ide.eclipse.xdoclet.assist 4 0 Apr 17,
2004 15:49:12.38
!MESSAGE Internal Error
!STACK 0
java.lang.reflect.InvocationTargetException
at
org.eclipse.jface.operation.ModalContext.run(ModalContext.java:283)
at
org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:400)
at
org.jboss.ide.eclipse.xdoclet.assist.XDocletAssistPlugin.getRefreshedDocletTree(XDocletAssistPlugin.java:228)
at
org.jboss.ide.eclipse.xdoclet.assist.ui.XDocletPreferencePage$1.widgetSelected(XDocletPreferencePage.java:65)
at
org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
at
org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
at
org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:939)
at
org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1953)
at
org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1726)
at
org.eclipse.jface.window.Window.runEventLoop(Window.java:670)
at org.eclipse.jface.window.Window.open(Window.java:650)
at
org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:72)
at
org.eclipse.jface.action.Action.runWithEvent(Action.java:881)
at
org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:550)
at
org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:502)
at
org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:435)
at
org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
at
org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:939)
at
org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1953)
at
org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1726)
at
org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1562)
at
org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1536)
at
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:257)
at
org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139)
at
org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:277)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:239)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:117)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:267)
at 

[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Log error

2004-04-21 Thread cwampler
We are getting the following error in our log all over the place... but the cache 
still seems to work okay. Is it an expected exception, something we are causing, or a 
bug to be logged?

2004-04-21 14:46:28,474 DEBUG- Node.acquireWriteLock - acquired WL: fqn=/, 
owner=172.20.31.123:3085:4, [EMAIL PROTECTED]
2004-04-21 14:46:28,474 INFO - TreeCache$MessageListenerAdaptor.setState - setState(): 
locking the old tree was successful
2004-04-21 14:46:28,484 DEBUG- LRUPolicy.nodeAdded - nodeAdded(): fqn- /
2004-04-21 14:46:28,484 ERROR- TreeCache$MessageListenerAdaptor.setState - setState(): 
locking/unlocking the old tree failed
java.lang.NullPointerException
at org.jboss.cache.eviction.LRUPolicy.nodeAdded(LRUPolicy.java:49)
at org.jboss.cache.TreeCache.notifyNodeAdded(TreeCache.java:2873)
at org.jboss.cache.TreeCache.notifyAllNodesCreated(TreeCache.java:2920)
at 
org.jboss.cache.TreeCache$MessageListenerAdaptor.setState(TreeCache.java:2367)
at 
org.jgroups.blocks.MessageDispatcher$ProtocolAdapter.passUp(MessageDispatcher.java:551)
at org.jgroups.blocks.RequestCorrelator.receive(RequestCorrelator.java:316)
at 
org.jgroups.blocks.MessageDispatcher$ProtocolAdapter.up(MessageDispatcher.java:596)
at org.jgroups.JChannel.up(JChannel.java:873)
at org.jgroups.stack.ProtocolStack.up(ProtocolStack.java:349)
at org.jgroups.stack.ProtocolStack.receiveUpEvent(ProtocolStack.java:365)
at org.jgroups.stack.Protocol.passUp(Protocol.java:482)
at 
org.jgroups.protocols.pbcast.STATE_TRANSFER.handleStateRsp(STATE_TRANSFER.java:299)
at org.jgroups.protocols.pbcast.STATE_TRANSFER.up(STATE_TRANSFER.java:119)
at org.jgroups.stack.UpHandler.run(Protocol.java:55)
2004-04-21 14:46:28,484 INFO - TreeCache$MessageListenerAdaptor.setState - setState(): 
forcing release of all locks in old tree
2004-04-21 14:46:28,484 INFO - TreeCache.fetchStateOnStartup - state was retrieved 
successfully
2004-04-21 14:46:28,484 INFO - LRUPolicy.cacheStarted - Starting eviction policy using 
the provider: org.jboss.cache.eviction.LRUPolicy

Thanks again,
Chris

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831820#3831820

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831820


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - FIBO tutorial

2004-04-21 Thread natgross
Hi;
Can someone please explain why Eclipse is reporting a fatal error for the first line 
in the index.html file per page 24 on the tutorial:

!DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN

And the error is:
Fatal error - White spaces are required between publicId and systemId.

thanks
-nat

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831825#3831825

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831825


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Tomcat] - IIS Tomcat Integration error

2004-04-21 Thread chuckharris
I posted this originally in the HTTPD, Servlets  JSP instead of this one.  
http://www.jboss.org/index.html?module=bbop=postingmode=quotep=3831604  I think 
this was the appropriate forum.  Sorry for the cross post.  

I successfully integrated IIS and jboss/tomcat 3.2.2 but have run into an error
when attempting to do the same on another pc. Both are win2k machines with IIS 5.
The log in C:\WINNT\system32\LogFiles\W3SVC1 shows:

15:31:08 127.0.0.1 GET /jakarta/isapi_redirect.dll 200 
which matches the pc that has been integrated.  

The localhost_access2004-04-20.log has:

127.0.0.1 - - [20/Apr/2004:07:24:38 -0800] GET /jakarta/isapi_redirect.dll 
HTTP/1.1 404 764

and the web page returned has:

type Status report
message /jakarta/isapi_redirect.dll
description The requested resource (/jakarta/isapi_redirect.dll) is not available.

Apache Tomcat/4.1.27-LE-jdk14

the isapi.log for the request looks like:

[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (626)]: HttpFilterProc started
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (672)]: In HttpFilterProc Virtual Host 

redirection of /168.71.206.230/test/test_login.jsp
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (351)]: Into 

jk_uri_worker_map_t::map_uri_to_worker
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (368)]: Attempting to map URI 

'/168.71.206.230/test/test_login.jsp'
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (456)]: 

jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (678)]: In HttpFilterProc test Default 

redirection of /test/test_login.jsp
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (351)]: Into 

jk_uri_worker_map_t::map_uri_to_worker
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (368)]: Attempting to map URI 

'/test/test_login.jsp'
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (391)]: 

jk_uri_worker_map_t::map_uri_to_worker, Found a context match ajp13 - /test/
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (688)]: HttpFilterProc 
[/test/test_login.jsp] 

is a servlet url - should redirect to ajp13
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (737)]: HttpFilterProc check if 

[/test/test_login.jsp] is points to the web-inf directory
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (696)]: HttpFilterProc started
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (759)]: In HttpFilterProc Virtual Host 

redirection of /168.71.206.230/jakarta/isapi_redirect.dll
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (460)]: Into 

jk_uri_worker_map_t::map_uri_to_worker
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (477)]: Attempting to map URI 

'/100.22.206.230/jakarta/isapi_redirect.dll'
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (599)]: 

jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (765)]: In HttpFilterProc test Default 

redirection of /jakarta/isapi_redirect.dll
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (460)]: Into 

jk_uri_worker_map_t::map_uri_to_worker
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (477)]: Attempting to map URI 

'/jakarta/isapi_redirect.dll'
[Tue Apr 20 08:46:02 2004]  [jk_uri_worker_map.c (599)]: 

jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (829)]: HttpFilterProc 

[/jakarta/isapi_redirect.dll] is not a servlet url
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (838)]: HttpFilterProc check if 

[/jakarta/isapi_redirect.dll] is points to the web-inf directory
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (878)]: HttpExtensionProc started
[Tue Apr 20 08:46:02 2004]  [jk_worker.c (132)]: Into wc_get_worker_for_name ajp13
[Tue Apr 20 08:46:02 2004]  [jk_worker.c (136)]: wc_get_worker_for_name, done  found a 

worker
[Tue Apr 20 08:46:02 2004]  [jk_isapi_plugin.c (913)]: HttpExtensionProc got a worker 
for 

name ajp13
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (1546)]: Into jk_worker_t::get_endpoint
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (1590)]: In 
jk_endpoint_t::ajp_get_endpoint, 

time elapsed since last request = 894 seconds
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (1208)]: Into jk_endpoint_t::service
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (295)]: Into ajp_marshal_into_msgb
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (463)]: ajp_marshal_into_msgb - Done
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (693)]: sending to ajp13 #316
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (966)]: ajp_send_request 2: request body 
to 

send 0 - request body to resend 0
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (738)]: ERROR: can't receive the response 

message from tomcat, network problems or tomcat is down. err=-53
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (1137)]: Error reading reply from tomcat. 

Tomcat is down or network problems.
[Tue Apr 20 08:46:02 2004]  [jk_ajp_common.c (1290)]: ERROR: Receiving from tomcat 
failed, 

recoverable operation. err=0
[Tue Apr 20 08:46:02 2004]  

[JBoss-dev] [Nukes Development] - User Variables

2004-04-21 Thread thepriz
Is it possable yet in the CVS HEAD to save information per user? Ie. I would like to 
save an ID number for each user which has been assigned to them?

Thanks,

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831832#3831832

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831832


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: User Variables

2004-04-21 Thread cooper
you mean like a generic storage ?


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831834#3831834

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831834


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/winxp/1.4.1_06) [AUTOMATED]

2004-04-21 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Thu Apr 22 01:28:23 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
01:28:22,734 WARN  [NamingContext] Failed to connect to localhost:1099
javax.naming.CommunicationException: Failed to retrieve stub from server 
localhost:1099.  Root exception is 
java.io.EOFException
at 
java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2438)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1245)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:197)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1182)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:513)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:506)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jboss.Shutdown.main(Shutdown.java:182)
javax.naming.CommunicationException: Could not obtain connection to any of these urls: 
localhost:1099
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1195)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:513)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:506)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jboss.Shutdown.main(Shutdown.java:182)
Exception in thread main JBOSS SHUTDOWN FAILED

===
Thu Apr 22 01:28:23 GMTDT 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Re: TODO: (post M1)

2004-04-21 Thread spiritualmechanic
I'm trying to test my JCA adapter, and for the life of me I can't get java:/MailDS 
to be retrieved. Is that even exposed on the listener? I'm beginning to think it's not.

I can get jmx/rmi/RMIAdapter, though.

So anyways, I'm starting to set up my unit tests. It looks like in the current tests a 
small JMX server is created, then the Mail MBeans are attached, and then you start 
testing.

Should I try binding my JCA adapter programmatically (ctx.bind) to do testing? Or 
should I just use some cactus tests to test in-container?


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3831837#3831837

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3831837


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.43 Build Successful

2004-04-21 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/?log=log20040421135947Lbuild.43
BUILD COMPLETE-build.43Date of build:04/21/2004 13:59:47Time to build:148 minutes 10 secondsLast changed:04/21/2004 12:23:09Last log entry:Fix the jca test deployment




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(4)modifiedejorttestsuite/src/resources/jca/adapter/testadapter-ds.xmlFix the jca test deploymentmodifiedejortconnector/src/main/org/jboss/resource/connectionmanager/JBossManagedConnectionPool.javaMore fixes for null pooling strategymodifiedejortconnector/src/main/org/jboss/resource/connectionmanager/JBossManagedConnectionPool.javaGive a useful error message when flushing a pool that has not been startedmodifiedejortserver/.classpathFix the eclipse build



[JBoss-dev] jboss-head build.44 Build Successful

2004-04-21 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/?log=log20040421220524Lbuild.44
BUILD COMPLETE-build.44Date of build:04/21/2004 22:05:24Time to build:16 minutes 19 secondsLast changed:04/21/2004 21:49:22Last log entry:local only beans were failing on timer callbacks because invokeproxybinding mustbe null.




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(3)modifiedpatriot1burkeserver/src/main/org/jboss/ejb/txtimer/TimedObjectInvokerImpl.javalocal only beans were failing on timer callbacks because invokeproxybinding mustbe null.modifiedbelabancluster/src/main/org/jboss/ha/framework/server/DistributedStateImpl.javagetCurrentState() now returns a clone instead of the ref. Avoid ConcurrentModification ex when adding contents while doing a state transfer (case 1483 in SalesForce)modifiedbelabancluster/src/main/org/jboss/ha/framework/server/HAPartitionImpl.javano message