[Beginners Corner] - Trying to install/test-run JBoss 5, encountering errors
by crobison
Hey folks,
I've downloaded a copy of JBoss 5 Beta 1, and I've installed it on a box running CentOS and I'm trying to do a test run to verify that everything got installed correctly. When I do, I get a huge dump over the next two minutes, and it doesn't look like all is well.
The salient bits appear to be:
13:39:34,991 ERROR [BaseModelMBean] Exception invoking method addChild
java.lang.RuntimeException: org.jboss.xb.binding.JBossXBException: Failed to parse source: Bad file descriptor
at org.jboss.web.tomcat.tc6.TomcatInjectionContainer.processMetadata(TomcatInjectionContainer.java:264)
...
13:39:35,051 ERROR [BaseModelMBean] Exception invoking method init
LifecycleException: Manager has not yet been started
...
13:39:35,097 ERROR [AbstractKernelController] Error installing to Start: name=jboss.web.deployment:war=/jmx-console state=Create mode=Manual requiredState=Installed
LifecycleException: Manager has not yet been started
...
This is directly after having unzipped the distribution zip file jboss-5.0.0.Beta1.zip. What else do I need to do at an absolute minimum to get it to start up successfully?
Thanks!
--chris
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3996876#3996876
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3996876
19 years, 4 months
[JBoss Seam] - iceFaces inputFile component
by buddy1974
Hi all,
has anyone successfully integrated the <ice:inputFile/> Component? I am trying to get this to work, but I keep getting an 404 inside the genrated iframe.
I am new to seam and icefaces.
So any help is highly appreciated.
Here is my setup:
I am using the web.xml from the seam 1.1.GA examples/icefaces example booking application. I also copied the icefaces jars into my lib folder. That made most errors disappear. But this error stays. Any help is highly appreciated.
this is how my current page looks like:
| <h:form id="upload">
| <div>
| <ice:inputFile style="border:none; width:400px; height:70px;" progressListener="#{inputFile.progress}" actionListener="#{inputFile.action}"/>
| <ice:outputProgress id="pro" value="#{inputFile.percent}"/>
| <h:commandButton id="uploadPicture" value="upload Picture!" action="#{upload.uploadPicture}"/>
| </div>
| </h:form>
|
The commandButton was generated by seam-gen new-action i don't know if I have to provide a inputFile bean. Plus I don't know how to get the thing with the events working, since (as for my understanding) the icefaces component showcase schos bean examples when one uses icefaces framework standalone.
Kind regards
Juergen Hoffmann
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3996874#3996874
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3996874
19 years, 4 months
[Beginners Corner] - JBoss with Gmail
by vishwanath.nadimpally
How can we configure JBoss to use Gmail smtp. I am using 4.0.2 and I want Jboss to use gmail smtp. I did something in my mail-service.xml.
| <attribute name="Configuration">
| <!-- Test -->
| <configuration>
| <!-- Change to your mail server prototocol -->
| <property name="mail.transport.protocol" value="smtp"/>
|
| <property name="mail.smtp.starttls.enable" value="true"/>
| <property name="mail.smtp.host" value="smtp.gmail.com"/>
| <property name="mail.smtp.auth" value="true"/>
|
|
| <!-- Change to the SMTP gateway server -->
| <!-- Change to the address mail will be from -->
| <property name="mail.from" value="someaddress(a)gmail.com"/>
|
| <!-- Enable debugging output from the javamail classes -->
| <property name="mail.debug" value="false"/>
| </configuration>
| </attribute>
|
But this doesnt work. I keep getting error
"class javax.mail.MessagingException: 530 5.7.0 Must issue a STARTTLS command first 9sm23453515agc"
Can some one help me please?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3996873#3996873
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3996873
19 years, 4 months
[Messaging, JMS & JBossMQ] - Dead letter queues
by tobinibot
I am using JBoss 4.0.5 with ActiveMQ 4.1.0 as my JMS provider. I have an MDB set up, reading from an ActiveMQ queue, and am using normal container managed transactions (with XA). When the transaction fails, the message is correctly put back on the queue. From the logs, I can tell that my message is pulled off the queue 5 times. After that, it is gone.
>From what I understand, JBoss is configured to try a preset number of times (apparently 5), and then move the message to a dead letter queue (DLQ). However, I cannot find the message anywhere. I have not configured anything around DLQ's. By default, does JBoss put the message in one of it's DLQ's, or does it try to put it to the JMS provider's DLQ (in this case ActiveMQ)? I haven't been able to find it in either one.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3996870#3996870
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3996870
19 years, 4 months