[JBoss-user] [Installation, Configuration & Deployment] - JBoss Deployment Error

2005-11-17 Thread Some1ne
Okay, so I'm using the HtmlAdaptor to invoke a URL that directs the 
DeploymentScanner to add a URL to its list of webapps and to deploy the webapp 
that resides there, and in my case the URL I'm giving it points to a servlet 
responsible for serving up the appropriate webapp in a WAR archive, and I'm 
getting IOExceptions with the following message when the server tries to deploy 
the webapp:

"The filename, directory name, or volume label syntax is incorrect"

I can access the servlet URL manually in a web browser and download the file 
correctly, so I know that that's working correctly, so what could be causing 
the deployment to fail like this?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3907784#3907784

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3907784


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Custom Deployment Actions

2005-10-14 Thread Some1ne
Is there a method of specifying customized actions to occur whenever a webapp 
is deployed?  For example, say I have a class the represents a hot-pluggable 
action that can be made available to other running webapps when it is deployed, 
but in order to make it available to these other webapps it needs to be 
"registered" with the system, so what I'd like to do is have something that 
when a webapp is deployed, it searches through the archive for instances of 
these actions, and when it finds them it takes the proper steps to register 
them with the rest of the system.  Can this be done, and if so, how?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3901254#3901254

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3901254


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Scheduling an Event

2005-01-19 Thread Some1ne
I'm trying to create/schedule an event that handles the processing of 
transactions and the creation of bills/invoices on a monthly basis, and I've 
been running into some problems.  I am using Eclipse, and specifically, it is 
telling me that "Schedulable cannot be resolved or is not a valid 
superinterface" and that it cannot find the "org.jboss.varia" package (the 
package which should contain the scheduler related classes).  I've tried 
looking through the various jar-files, but I cannot find the one that contains 
this package...so bascally, what jar do I need to add to my classpath in order 
for Eclipse to be able to resolve the necessary classes/what jar contains the 
necessary package?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862839#3862839

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862839


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Jboss and Log4j

2004-08-19 Thread Some1ne
Hi, I was wondering if it's possible to configure multiple loggers through log4j...I 
know I can have multiple appenders so that I can go "log.debug('whatever');" and have 
the message go to multiple logs in multiple formats, but what I would like to do is 
have a logger configured that handles debug/trace/info log events (which I already 
do), and then have another, very specific logger set up that ONLY logs transaction 
information to a database.  I don't want the second logger to recieve any of the 
debug/trace/info data that's handled by the current logger, and I don't want the 
current logger to recieve any of the transaction data that the second logge will be 
writing to the database.

...so is it possible to do this with log4j, and if so, how?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3845654#3845654

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3845654


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - JBoss and HTTP Authorization

2004-06-17 Thread Some1ne
I was just wondering about the scheme used for HTTP Authorization in JBoss when 
 is set to "BASIC" in web.xml...does it follow a challenge/response 
pattern, or will the server bypass issuing the challenge if the first request already 
contains an Authorization header with the proper credentials?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3839147#3839147

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3839147


---
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Extremely verbose debug mode?

2004-06-13 Thread Some1ne
I'm trying to debug a mobile application which sends requests to a JBoss server and 
was wondering if there's any way to make JBoss spew all requests it recieves either to 
the console or to a log file...basically, if (in the land of pretend where everything 
is simple like it should be) a server-client transaction consists of the client saying 
"Hey, give me /pages/index.html" to the server and then the server saying "Okay, here 
it is..." back to the client, I want the "Hey, give me /pages/index.htm" to get 
written either to the console, or a log file, or both...is there any way to do this?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3838601#3838601

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3838601


---
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user