[JBoss-user] [EJB 3.0] - Callback methods not called for @Stateless bean

2006-05-16 Thread Ganton
I am playing around with EJB3 on 4.0.4.CR2, and cannot get the callbacks PostConstruct or PreDestroy to work. I saw an issue from about 8 months ago, that said this was a bug that needed to be input via JIRA, but did not find one there, nor a resolution. Was this fixed ? Here is the bean, a

[JBoss-user] [Beginners Corner] - Re: Deploying expanded war/jar in JBOSS

2006-05-11 Thread Ganton
If you create a directory under server//deploy with a .war extension, and deploy it expanded right there, similar to the way several of the sar archives are deployed. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3943035#3943035 Reply to the post : http://

[JBoss-user] [Beginners Corner] - Re: how to access index.jsp

2006-05-09 Thread Ganton
You need to put a entry in your web.xml deployment descriptor View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3942368#3942368 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3942368 ---

[JBoss-user] [Beginners Corner] - Re: How i access text file in JBoss?

2006-05-09 Thread Ganton
Thats the way i'd do it. Write the file to the jboss work space, then have a servlet that can find the file in the work space and stream it back with the correct content type. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3942352#3942352 Reply to the post

[JBoss-user] [Beginners Corner] - Re: Need Help

2006-05-09 Thread Ganton
I'm pretty sure JEMS is just the name to describe the entire suite of applications from JBoss, that make up their enterprise suite. It is not a "product" per-se, but a collection of products, such as the application server, portal server, etc...etc... View the original post : http://www.jboss.

[JBoss-user] [Beginners Corner] - Re: Port already in use: 4444

2006-05-09 Thread Ganton
You might want to check your system for worms/viruses. Some, like MSBlast set up shop on port View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3942349#3942349 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3942349 -

[JBoss-user] [Beginners Corner] - XML parser

2006-05-09 Thread Ganton
Did the version of xerces change between 4.0.3SP1 and 4.0.4.CR2 ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3942347#3942347 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3942347 ---

[JBoss-user] [JBossWS] - XML marshalling/unmarshalling issue

2006-05-07 Thread Ganton
I am doing some marshalling/unmarshalling of POJOs using JAXB, and on 4.0.3SP1 it works great, the xml comes out in order, matching the schema associated with it. However, under 4.0.4CR2, the xml comes out in what appears to be alphabetical order by element, completely destroying its validity a

[JBoss-user] [JBossWS] - Re: JAXB 2.0

2006-04-21 Thread Ganton
To start, I am trying to use a simple annotated class (@XmlRootElement), create a JAXBContext, and marshal it using that JAXBContext. What I am seeing, is that if I use the JAXB 2.0 RI, JBoss doesn't recognize the annotation, and I get a JAXBException relating to the class not having the requir

[JBoss-user] [JBossWS] - JAXB 2.0

2006-04-20 Thread Ganton
Does 4.0.4.CR2 support JAXB 2.0 with annotations ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3938569#3938569 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3938569 --

[JBoss-user] [JBossWS] - JAXB 2.0 Marshaling Exception

2006-04-20 Thread Ganton
When I attempt to run the following code, I get: JAXBException: org.xml.sax.SAXException: unable to marshal type "com.parasynthion.centurion.hibernate.entity.Testjaxb" as an element because it is missing an @XmlRootElement annotationnull I have included the XSD, generated class from XJC, and th

[JBoss-user] [JBossWS] - Re: JBoss 4.0 web service example

2006-03-27 Thread Ganton
Ok, nevermind, I figured out, that it was an improper request, you have to add the ?wsdl to the end of it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3932965#3932965 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3932

[JBoss-user] [JBossWS] - JBoss 4.0 web service example

2006-03-27 Thread Ganton
I have input, and deployed the example HelloPojo service from the 4.0 documentation, but when I try to run the client, I am getting a ServiceException: modler error: faild to parse document at "http://xx:8080/testbed/service/Hello": org.aml.sax.SAXParseException: Element type "meta" must b

[JBoss-user] [Installation, Configuration & Deployment] - JavaMail / mail-service.xml

2005-11-10 Thread Ganton
Is there a setting in mail-service.xml to set the SMTP server connection timeout value ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3906668#3906668 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3906668 -

[JBoss-user] [Security & JAAS/JBoss] - Login Modules and Realm

2005-10-31 Thread Ganton
I am attempting to hook an LdapLoginModule to an ActiveDirectory user store, and in looking through the code, I cannot determine how, or when the login module "maps" the roles it collects into the Realm controlling the application. Can somebody clarify this for me ? Thank you View the origina

[JBoss-user] [Installation, Configuration & Deployment] - Update: Deployment issue in with virtual hosts

2005-09-08 Thread Ganton
I have also figured out, that this trace only occurs when something has been stored in the session of a user. All of the objects that are being stored are Serializable, so I don't think its a serialization issue. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

[JBoss-user] [Installation, Configuration & Deployment] - Deployment issue in with virtual hosts

2005-09-08 Thread Ganton
I am using JBoss 3.2.5, and have configured two virtual hosts. When I configured the virtual hosts, ANY redeployment of and EAR, leads to this horrific stack trace being thrown, and my application becoming unavailable. I have poked around, and tweaked some settings back and forth, but cannot se

[JBoss-user] [Management, JMX/JBoss] - Re: ServiceMBeanSupport lifecycle methods

2005-08-29 Thread Ganton
Turns out it was a faulty attribute in the jboss-service.xml, but I have to tell you, the error message for failing the dependency was difficult if not impossible to find in the server logs. Thank you for your response View the original post : http://www.jboss.org/index.html?module=bb&op=view

[JBoss-user] [Management, JMX/JBoss] - ServiceMBeanSupport lifecycle methods

2005-08-23 Thread Ganton
I am at my wits end.The lifecycle methods, createService() and startService() are not being invoked on startup for a class that extends ServiceMBeanSupport, and overrides these functionsWhat gives ? I even built the example HelloMBeanIt does not work

[JBoss-user] [Clustering/JBoss] - Re: Can't get sticky sessions to work

2004-11-12 Thread Ganton
My session ID looks like this: E03QTrINyAW6tim2mxuZ1A** The content of it changed pretty dramatically when I pulled my head out of my ass, and remembered to put the in the web.xml of the test application. I would make my two channel definitions look like this, and make sure that each machine

[JBoss-user] [Clustering/JBoss] - Re: Can't get sticky sessions to work

2004-11-11 Thread Ganton
koreth: I JUST got all this working, the one big difference I can see between your setup and mine, is that when running the tomcats on separate machines, you do NOT need the jvmRoute, and tomcatID attributes, each jvm only has it's own route. Here is my workers2.properties file, adjust yours a

[JBoss-user] [Security & JAAS/JBoss] - Custom login module

2004-06-21 Thread Ganton
I am using JBoss 3.2.2, and I am attempting to convert a custom login module from JBoss 3.0.4. I do not have password hashing enabled, and yet the raw password, does not appear to be "raw" when it gets to my convertRawPassword() function. Anybody have an idea why ? View the original post :

[JBoss-user] [HTTPD, Servlets & JSP] - JBoss 3.2.2/Windoze2000/Redeploy/JSP

2004-05-24 Thread Ganton
Whenever I "redeploy" a JSP page, that includes other jsp pages using the tag. The content of the included pages is not rendered. I have made sure, that the source directory is being deleted on redeploy, so it's not a jasper page age issue. I do however think it is some sort of Jasper issue...