[Installation, Configuration & Deployment] - jboss don't start
by Torleif67
am running jboss 4.0.5.GA on my MAC (10.4.8) system. When i start eclipse and try to run my server i get this message from the console and my server don't start.
07:00:34,274 INFO [Server] Starting JBoss (MX MicroKernel)...
07:00:34,282 INFO [Server] Release ID: JBoss [Zion] 4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)
07:00:34,305 INFO [Server] Home Dir: /Applications/jboss-4.0.5.GA
07:00:34,305 INFO [Server] Home URL: file:/Applications/jboss-4.0.5.GA/
07:00:34,307 INFO [Server] Patch URL: null
07:00:34,308 INFO [Server] Server Name: default
07:00:34,308 INFO [Server] Server Home Dir: /Applications/jboss-4.0.5.GA/server/default
07:00:34,310 INFO [Server] Server Home URL: file:/Applications/jboss-4.0.5.GA/server/default/
07:00:34,311 INFO [Server] Server Log Dir: /Applications/jboss-4.0.5.GA/server/default/log
07:00:34,311 INFO [Server] Server Temp Dir: /Applications/jboss-4.0.5.GA/server/default/tmp
07:00:34,312 INFO [Server] Root Deployment Filename: jboss-service.xml
07:00:37,556 INFO [ServerInfo] Java version: 1.5.0_07,Apple Computer, Inc.
07:00:37,562 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.5.0_07-87,"Apple Computer, Inc."
07:00:37,609 INFO [ServerInfo] OS-System: Mac OS X 10.4.8,ppc
07:00:39,110 INFO [Server] Core system initialized
07:01:00,113 INFO [WebService] Using RMI server codebase: http://jesper-nykvists-ibook-g4.local:8083/
07:01:00,236 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
07:01:06,034 INFO [SocketServerInvoker] Invoker started for locator: InvokerLocator [socket://10.60.128.231:3873/]
07:01:18,931 INFO [ServiceEndpointManager] WebServices: jbossws-1.0.3.SP1 (date=200609291417)
07:01:21,016 INFO [SnmpAgentService] SNMP agent going active
07:01:22,969 INFO [CorbaNamingService] Naming: [IOR:000000000000002B49444C3A6F6D672E6F72672F436F734E616D696E672F4E616D696E67436F6E746578744578743A312E3000000000000200000000000000E8000102000000000E31302E36302E3132382E323331000DC8000000114A426F73732F4E616D696E672F726F6F74000000000000050000000000000008000000004A414300000000010000001C00000000000100010000000105010001000101090000000105010001000000210000006000000000000000010000000000000024000000200000007E00000000000000010000000E31302E36302E3132382E323331000DC900400000000000000000001004010008060667810201010100000000000000000000000000000000000000000000002000000004000000000000001F0000000400000003000000010000002000000000000000020000002000000004000000000000001F0000000400000003]
I am fairly new to this so i ask for some help with this please.
Anybody knows what i am doing wrong here with my jboss?
Torleif
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4026832#4026832
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4026832
19Â years, 1Â month
[JBoss Seam] - @DataModelSelection always set to first item in ListDataMode
by stu2
First, this is Seam 1.2Patch1 on Jboss 4.0.5.
In a nutshell, when I have a h:commandLink in a dataTable backed with a List, now matter which row's "clickable link" I select, the value in the variable annotated as @DataModelSelection is always the first element in the list.
In my SFSB I have the following defined:
| @DataModelSelection(value="mappedColumns")
| protected FeedMappingColumn columnToDelete;
|
| @DataModel
| public List<FeedMappingColumn> getMappedColumns() {
| List<FeedMappingColumn> columns = new ArrayList<FeedMappingColumn>();
| columns.addAll(mappedColumns.values());
| return columns;
| }
|
basically translating a map into a list for display purposes.
The xhtml is as follows:
| <rich:dataTable id="mappedColumns" value="#{feedMapping.mappedColumns}"
| var="column">
| <h:column>
| <f:facet name="header">
| <h:outputText value="Column Number" />
| </f:facet>
| #{column.rawColumn.columnNumber}
| </h:column>
| <h:column>
| <h:commandLink value="del" action="#{feedMapping.removeMapping}"/>
| </h:column>
| </rich:dataTable>
|
and #{feedMapping.removeMapping} looks like this:
| public void removeMapping() {
| int columnNumber = columnToDelete.getRawColumn().getColumnNumber();
| info("Deleting column #0. columnToDelete instance is #1", columnNumber, columnToDelete);
| FeedMappingColumn column = mappedColumns.remove(columnNumber);
|
| // make sure it's already mapped. If not this is a programming error
| assert column != null : "Column [" + columnNumber + "] isn't mapped. Shouldn't be presented with unmap option";
| assert column.getMappingCdmField() != null : "Column [" + columnNumber + "] is a mapped column but doesn't have a CdmField";
|
| // add the cdmField back to the list of available ones
| remainingCdmFields.put(column.getMappingCdmField().getCdmField(),column.getMappingCdmField());
| column.setMappingCdmField(null);
| unMappedColumns.put(columnNumber, column);
| }
|
I've been over the logic many times this afternoon, and I don't think it's a logic error. And I just stepped through Seam's DataModelSelector class, and it's getSelection() method in the debugger. After I click on for instance the last row in the list, I see that the selected value is indeed whatever happens to be the first item in the list.
Any ideas? I suspect it's a bug in the DataModel stuff, but want to get feedback before submitting something in Jira.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4026828#4026828
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4026828
19Â years, 1Â month