[JNDI/Naming/Network] - Exception javax.naming.NoInitalContextException
by cffranco
Hi,
I need to insert some data in my database(hsqldb), but is not working. I am using the connection via a datasource, and by doing jndi lookup. When you run the code, I receive the exception:
--------------------------------------------------------------------------------
Exception in thread "main" javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
---------------------------------------------------------------------------------
Please somebody help me.? ;o)
My code:
package org.jboss.soa.esb.dbaccess;
import java.sql.Connection;
import java.sql.PreparedStatement;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.sql.DataSource;
public class InsertRecords {
/** String driver = "org.hsqldb.jdbcDriver";
String url = "jdbc:hsqldb:hsqldb\\localDB";
String username = "sa";
String password = "";
Class.forName(driver);
Connection conn = DriverManager.getConnection(url, username, password);
return conn;**/
public static void main(String[] args) throws Exception {
Context initContext = new InitialContext();
Context envContext = (Context)initContext.lookup("java:/comp/env");
DataSource ds = (DataSource) envContext.lookup("jdbc/FtpZip");
Connection conn = null;
PreparedStatement pstmt = null;
try {
conn = ds.getConnection();
String query = "insert into teste(name_file) values('lala')";
pstmt = conn.prepareStatement(query); // create a statement
pstmt.setInt(1, 1); // set input parameter 1
//pstmt.setString(2, "deptname"); // set input parameter 2
//pstmt.setString(3, "deptLocation"); // set input parameter 3
pstmt.executeUpdate(); // execute insert statement
} catch (Exception e) {
e.printStackTrace();
} finally {
pstmt.close();
conn.close();
}
}
}
Thanks..
[]´s
Claudemir
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4233065#4233065
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4233065
16 years, 11 months
[Security & JAAS/JBoss] - Re: Problem with Dynamic Login Config on JBoss 5.0.1
by Plukh
I'm trying the new simpler approach and can't seem to get my application to work (old DynamicLoginConfig way worked fine).
Here's what I'm doing:
WEB-INF/jboss-web.xml (in the web module)
| <?xml version="1.0" encoding="UTF-8"?>
| <!DOCTYPE jboss-web PUBLIC "-//JBoss//DTD Web Application 4.2//EN"
| "http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd">
| <jboss-web>
| <security-domain>java:/jaas/gameportal</security-domain>
| </jboss-web>
|
META-INF/gameportal-jboss-beans.xml (in ear)
| <?xml version="1.0" encoding="UTF-8"?>
|
| <deployment xmlns="urn:jboss:bean-deployer:2.0">
|
| <application-policy xmlns="urn:jboss:security-beans:1.0" name="gameportal">
| <authentication>
| <login-module code="ru.gameportal.login.GameportalLoginModule"
| flag="required">
| </login-module>
| </authentication>
| </application-policy>
|
| </deployment>
|
Unfortunately, JBoss doesn't call my custom login module (I'm using WebAuthentication for programmatic login, if it matters). Some info, hopefully relevant, from the log file:
| 17:37:50,437 TRACE [ApplicationPolicyMetaDataFactory] Generating metadata for application-policy gameportal
| 17:37:50,437 TRACE [ApplicationPolicyMetaDataFactory] Generating authentication metadata for policy gameportal
| 17:37:50,437 TRACE [ApplicationPolicyMetaDataFactory] Injecting security management JNDIBasedSecurityManagement into application-policy metadata
| 17:37:50,468 TRACE [ApplicationPolicyBean] ApplicationPolicy gameportal created org.jboss.security.config.ApplicationPolicy@1c2f724
| 17:37:50,468 TRACE [ApplicationPolicyBean] ApplicationPolicy gameportal registered
| ...
| 17:38:06,703 TRACE [JaccContextValve] MetaData:org.jboss.metadata.web.jboss.JBossWebMetaData@1f:principalToRoleSetMapnull
| 17:38:06,703 TRACE [SecurityAssociationValve] Begin invoke, caller=null
| ...
| 17:38:06,718 TRACE [JBossWebRealm] Begin authenticate, username=vdenisov(a)redline.ru
| 17:38:06,718 DEBUG [JNDIBasedSecurityManagement] Creating SDC for domain=gameportal
| 17:38:06,718 TRACE [JaasSecurityManager] Constructing
| 17:38:06,718 DEBUG [gameportal] CallbackHandler: org.jboss.security.auth.callback.JBossCallbackHandler@f92417
| 17:38:06,718 DEBUG [gameportal] CachePolicy set to: org.jboss.util.TimedCachePolicy@b0a21a
| 17:38:06,718 DEBUG [JNDIBasedSecurityManagement] setCachePolicy, c=org.jboss.util.TimedCachePolicy@b0a21a
| 17:38:06,718 TRACE [gameportal] Begin isValid, principal:vdenisov@redline.ru, cache info: null
| 17:38:06,718 TRACE [gameportal] defaultLogin, principal=vdenisov(a)redline.ru
| 17:38:06,718 TRACE [XMLLoginConfigImpl] Begin getAppConfigurationEntry(gameportal), size=11
| 17:38:06,718 TRACE [XMLLoginConfigImpl] End getAppConfigurationEntry(gameportal), authInfo=AppConfigurationEntry[]:
| [0]
| LoginModule Class: org.jboss.security.auth.spi.UsersRolesLoginModule
| ControlFlag: LoginModuleControlFlag: required
| Options:
| name=usersProperties, value=u.properties
| name=unauthenticatedIdentity, value=anonymous
| name=rolesProperties, value=r.properties
|
It then proceeds to authenticate using UsersRolesLoginModule (and, of course, failes to open appropriate files).
Any advice?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4233051#4233051
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4233051
16 years, 11 months
[Installation, Configuration & DEPLOYMENT] - Error parsing XML config files in Jboss3.2.7 instances after
by fnandoch
I'm trying to migrate two Jboss instances between platforms Solaris (souce) / Linux (destin) y I have a main problem. After startup the instances, appears errors a time to parse xmlÃÂôs config files. The errors are different but I believe they have the same cause.
INSTANCE 1 sample error trace
------------------------------
...
XML-22101: (Fatal Error) DOMSource node as this type not supported.
2009-05-25 13:43:12,286 INFO [STDOUT]
XML-22900: (Fatal Error) An internal error condition occurred.
2009-05-25 13:43:12,288 ERROR [org.jboss.deployment.MainDeployer] Could not initialise deployment: file:/usr/local/jboss-3.2.7/server/3thparty.oncogen/deploy/hsqldb-ds.xml
org.jboss.deployment.DeploymentException: Problem with xsl transformation; - nested throwable: (javax.xml.transform.TransformerException: XML-22900: (Fatal Error) An internal error condition occurred.)
at org.jboss.deployment.XSLSubDeployer.init(XSLSubDeployer.java:207)
at org.jboss.deployment.MainDeployer.init(MainDeployer.java:696)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:631)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:604)
...
INSTANCE 2 sample error trace
------------------------------
2009-05-25 12:22:02,867 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] Incomplete Deployment listing:
Incompletely deployed packages:
org.jboss.deployment.DeploymentInfo@9dba188b { url=file:/usr/local/jboss-3.2.7/server/3thparty/deploy/hsqldb-ds.xml }
deployer: org.jboss.deployment.XSLSubDeployer@10c6cfc
status: null
state: FAILED
watch: file:/usr/local/jboss-3.2.7/server/3thparty/deploy/hsqldb-ds.xml
lastDeployed: 1243246902066
lastModified: 1243246902000
mbeans:
org.jboss.deployment.DeploymentInfo@e24f7400 { url=file:/usr/local/jboss-3.2.7/server/3thparty/deploy/jms/jms-ds.xml }
deployer: org.jboss.deployment.XSLSubDeployer@10c6cfc
status: null
state: FAILED
watch: file:/usr/local/jboss-3.2.7/server/3thparty/deploy/jms/jms-ds.xml
lastDeployed: 1243246902078
lastModified: 1243246902000
mbeans:
org.jboss.deployment.DeploymentInfo@cf42bef9 { url=file:/usr/local/jboss-3.2.7/server/3thparty/deploy/proxyUser10-ds.xml }
deployer: org.jboss.deployment.XSLSubDeployer@10c6cfc
status: null
state: FAILED
watch: file:/usr/local/jboss-3.2.7/server/3thparty/deploy/proxyUser10-ds.xml
lastDeployed: 1243246902087
lastModified: 1243246902000
mbeans:
org.jboss.deployment.DeploymentInfo@daa50d42 { url=file:/usr/local/jboss-3.2.7/server/3thparty/deploy/custodio.ear }
deployer: org.jboss.deployment.EARDeployer@1e12f6d
status: null
state: FAILED
watch: file:/usr/local/jboss-3.2.7/server/3thparty/deploy/custodio.ear
lastDeployed: 1243246921529
lastModified: 1243246921000
mbeans:
Hi tried to configure the system in target server exactly that origin server:
- JBOSS_HOME full copied (and this is another dubt I have... is Jboss multiplatform really and support a copy/paste implementation?)
- User Jboss Enviorenment execution with identic variables and PATHS
- Same JDK version: jdk1.5.0_14
- Same Oracle client version: 10.2.0.2 for Linux
I be sure that should be and basic aspect of configuration... Please, I would appreciate any help on this type of error.
Thanks for advance.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4233048#4233048
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4233048
16 years, 11 months
[Installation, Configuration & DEPLOYMENT] - pelirr31
by pelirr
Hello, I am trying to deploy an aplication, but I have one error in jboss:
...
===============================================================================
JBoss Bootstrap Environment
JBOSS_HOME: C:\Archivos de programa\jboss\jboss-5.0.0.GA
JAVA: c:\Archivos de programa\Java\jdk1.6.0_13\bin\java
JAVA_OPTS: -Dprogram.name=run.bat -server -Xms128m -Xmx512m -XX:MaxPermSize=256m -Dorg.jboss.resol
ver.warning=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
CLASSPATH: C:\Archivos de programa\jboss\jboss-5.0.0.GA\bin\run.jar
===============================================================================
08:10:07,256 INFO [ServerImpl] Starting JBoss (Microcontainer)...
08:10:07,287 INFO [ServerImpl] Release ID: JBoss [Morpheus] 5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA
date=200812042120)
08:10:07,287 INFO [ServerImpl] Bootstrap URL: null
08:10:07,287 INFO [ServerImpl] Home Dir: C:\Archivos de programa\jboss\jboss-5.0.0.GA
08:10:07,287 INFO [ServerImpl] Home URL: file:/C:/Archivos%20de%20programa/jboss/jboss-5.0.0.GA/
08:10:07,287 INFO [ServerImpl] Library URL: file:/C:/Archivos%20de%20programa/jboss/jboss-5.0.0.GA/
lib/
08:10:07,287 INFO [ServerImpl] Patch URL: null
08:10:07,287 INFO [ServerImpl] Common Base URL: file:/C:/Archivos%20de%20programa/jboss/jboss-5.0.0
.GA/common/
08:10:07,287 INFO [ServerImpl] Common Library URL: file:/C:/Archivos%20de%20programa/jboss/jboss-5.
0.0.GA/common/lib/
08:10:07,287 INFO [ServerImpl] Server Name: default
08:10:07,287 INFO [ServerImpl] Server Base Dir: C:\Archivos de programa\jboss\jboss-5.0.0.GA\server
08:10:07,287 INFO [ServerImpl] Server Base URL: file:/C:/Archivos%20de%20programa/jboss/jboss-5.0.0
.GA/server/
08:10:07,287 INFO [ServerImpl] Server Config URL: file:/C:/Archivos%20de%20programa/jboss/jboss-5.0
.0.GA/server/default/conf/
08:10:07,287 INFO [ServerImpl] Server Home Dir: C:\Archivos de programa\jboss\jboss-5.0.0.GA\server
\default
08:10:07,287 INFO [ServerImpl] Server Home URL: file:/C:/Archivos%20de%20programa/jboss/jboss-5.0.0
.GA/server/default/
08:10:07,287 INFO [ServerImpl] Server Data Dir: C:\Archivos de programa\jboss\jboss-5.0.0.GA\server
\default\data
08:10:07,287 INFO [ServerImpl] Server Library URL: file:/C:/Archivos%20de%20programa/jboss/jboss-5.
0.0.GA/server/default/lib/
08:10:07,287 INFO [ServerImpl] Server Log Dir: C:\Archivos de programa\jboss\jboss-5.0.0.GA\server\
default\log
08:10:07,287 INFO [ServerImpl] Server Native Dir: C:\Archivos de programa\jboss\jboss-5.0.0.GA\serv
er\default\tmp\native
08:10:07,287 INFO [ServerImpl] Server Temp Dir: C:\Archivos de programa\jboss\jboss-5.0.0.GA\server
\default\tmp
08:10:07,287 INFO [ServerImpl] Server Temp Deploy Dir: C:\Archivos de programa\jboss\jboss-5.0.0.GA
\server\default\tmp\deploy
08:10:10,660 INFO [ServerImpl] Starting Microcontainer, bootstrapURL=file:/C:/Archivos%20de%20progr
ama/jboss/jboss-5.0.0.GA/server/default/conf/bootstrap.xml
08:10:12,724 INFO [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.plugins.cache.Iterable
TimedVFSCache]
08:10:12,834 INFO [VFSCacheFactory] Using VFSCache [IterableTimedVFSCache{lifetime=1800, resolution
=60}]
08:10:13,779 INFO [CopyMechanism] VFS temp dir: C:\Archivos de programa\jboss\jboss-5.0.0.GA\server
\default\tmp
08:10:13,874 INFO [ZipEntryContext] VFS force nested jars copy-mode is enabled.
08:10:16,600 INFO [ServerInfo] Java version: 1.6.0_13,Sun Microsystems Inc.
08:10:16,600 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 11.3-b02,Sun Microsystems Inc.
08:10:16,600 INFO [ServerInfo] OS-System: Windows XP 5.1,x86
08:10:16,710 INFO [JMXKernel] Legacy JMX core initialized
08:10:21,375 INFO [ProfileServiceImpl] Loading profile: default from: org.jboss.system.server.profi
leservice.repository.SerializableDeploymentRepository@e8eeca(root=C:\Archivos de programa\jboss\jbos
s-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=defaul
t,name=default])
08:10:21,375 INFO [ProfileImpl] Using repository:org.jboss.system.server.profileservice.repository.
SerializableDeploymentRepository@e8eeca(root=C:\Archivos de programa\jboss\jboss-5.0.0.GA\server, ke
y=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
08:10:21,375 INFO [ProfileServiceImpl] Loaded profile: ProfileImpl(a)3e574{key=org.jboss.profileservi
ce.spi.ProfileKey@143b82c3[domain=default,server=default,name=default]}
08:10:25,156 INFO [WebService] Using RMI server codebase: http://127.0.0.1:8083/
08:10:42,726 INFO [NativeServerConfig] JBoss Web Services - Stack Native Core
08:10:42,726 INFO [NativeServerConfig] 3.0.4.SP1
08:10:58,940 INFO [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://127.0.0.1/jnd
i/rmi://127.0.0.1:1090/jmxconnector
08:10:59,507 INFO [MailService] Mail Service bound to java:/Mail
08:11:03,021 WARN [JBossASSecurityMetadataStore] WARNING! POTENTIAL SECURITY RISK. It has been dete
cted that the MessageSucker component which sucks messages from one node to another has not had its
password changed from the installation default. Please see the JBoss Messaging user guide for instru
ctions on how to do this.
08:11:03,053 WARN [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.an
notation.ManagementComponent
08:11:03,478 INFO [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc
.
08:11:03,478 INFO [TransactionManagerService] Setting up property manager MBean and JMX layer
08:11:04,124 INFO [TransactionManagerService] Initializing recovery manager
08:11:04,818 INFO [TransactionManagerService] Recovery manager configured
08:11:04,818 INFO [TransactionManagerService] Binding TransactionManager JNDI Reference
08:11:04,881 INFO [TransactionManagerService] Starting transaction recovery manager
08:11:06,031 INFO [Http11Protocol] Inicializando Coyote HTTP/1.1 en puerto http-127.0.0.1-8080
08:11:06,031 INFO [AjpProtocol] Inicializando Coyote AJP/1.3 en ajp-127.0.0.1-8009
08:11:06,031 INFO [StandardService] Arrancando servicio jboss.web
08:11:06,047 INFO [StandardEngine] Starting Servlet Engine: JBoss Web/2.1.1.GA
08:11:06,141 INFO [Catalina] Server startup in 253 ms
08:11:06,173 INFO [TomcatDeployment] deploy, ctxPath=/web-console, vfsUrl=management/console-mgr.sa
r/web-console.war
08:11:07,985 INFO [TomcatDeployment] deploy, ctxPath=/jbossws, vfsUrl=jbossws.sar/jbossws-managemen
t.war
08:11:08,064 INFO [TomcatDeployment] deploy, ctxPath=/invoker, vfsUrl=http-invoker.sar/invoker.war
08:11:08,379 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/Archivos de program
a/jboss/jboss-5.0.0.GA/server/default/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
08:11:08,426 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/Archivos de program
a/jboss/jboss-5.0.0.GA/server/default/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
08:11:08,473 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/Archivos de program
a/jboss/jboss-5.0.0.GA/server/default/deploy/jms-ra.rar/META-INF/ra.xml
08:11:08,505 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/Archivos de program
a/jboss/jboss-5.0.0.GA/server/default/deploy/mail-ra.rar/META-INF/ra.xml
08:11:08,599 INFO [RARDeployment] Required license terms exist, view vfszip:/C:/Archivos de program
a/jboss/jboss-5.0.0.GA/server/default/deploy/quartz-ra.rar/META-INF/ra.xml
08:11:08,789 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
08:11:08,852 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
08:11:08,852 INFO [RAMJobStore] RAMJobStore initialized.
08:11:08,852 INFO [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from
default resource file in Quartz package: 'quartz.properties'
08:11:08,852 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
08:11:08,852 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
08:11:10,459 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=Data
SourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
08:11:11,136 WARN [QuartzTimerServiceFactory] sql failed: CREATE TABLE QRTZ_JOB_DETAILS(JOB_NAME VA
RCHAR(80) NOT NULL, JOB_GROUP VARCHAR(80) NOT NULL, DESCRIPTION VARCHAR(120) NULL, JOB_CLASS_NAME VA
RCHAR(128) NOT NULL, IS_DURABLE VARCHAR(1) NOT NULL, IS_VOLATILE VARCHAR(1) NOT NULL, IS_STATEFUL VA
RCHAR(1) NOT NULL, REQUESTS_RECOVERY VARCHAR(1) NOT NULL, JOB_DATA BINARY NULL, PRIMARY KEY (JOB_NAM
E,JOB_GROUP))
08:11:11,231 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
08:11:11,231 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
08:11:11,231 INFO [JobStoreCMT] Using db table-based data access locking (synchronization).
08:11:11,278 INFO [JobStoreCMT] Removed 0 Volatile Trigger(s).
08:11:11,278 INFO [JobStoreCMT] Removed 0 Volatile Job(s).
08:11:11,294 INFO [JobStoreCMT] JobStoreCMT initialized.
08:11:11,294 INFO [StdSchedulerFactory] Quartz scheduler 'JBossEJB3QuartzScheduler' initialized fro
m an externally provided properties instance.
08:11:11,294 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
08:11:11,294 INFO [JobStoreCMT] Freed 0 triggers from 'acquired' / 'blocked' state.
08:11:11,310 INFO [JobStoreCMT] Recovering 0 jobs that were in-progress at the time of the last shu
t-down.
08:11:11,310 INFO [JobStoreCMT] Recovery complete.
08:11:11,310 INFO [JobStoreCMT] Removed 0 'complete' triggers.
08:11:11,310 INFO [JobStoreCMT] Removed 0 stale fired job entries.
08:11:11,325 INFO [QuartzScheduler] Scheduler JBossEJB3QuartzScheduler_$_NON_CLUSTERED started.
08:11:11,861 INFO [ServerPeer] JBoss Messaging 1.4.1.GA server [0] started
08:11:12,192 INFO [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, leas
e period 10000 milliseconds
08:11:12,192 INFO [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@5dba
88 started
08:11:12,208 INFO [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, leas
e period 10000 milliseconds
08:11:12,208 INFO [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@155f
a6e started
08:11:12,224 INFO [QueueService] Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCac
heSize=2000
08:11:12,224 INFO [QueueService] Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000,
downCacheSize=2000
08:11:12,224 WARN [ConnectionFactoryJNDIMapper] supportsFailover attribute is true on connection fa
ctory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non c
lustered. So connection factory will *not* support failover
08:11:12,224 WARN [ConnectionFactoryJNDIMapper] supportsLoadBalancing attribute is true on connecti
on factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is
non clustered. So connection factory will *not* support load balancing 08:11:12,239 INFO [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, leas
e period 10000 milliseconds
08:11:12,239 INFO [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@39f6
dc started
08:11:13,279 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=Conn
ectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
08:11:13,295 INFO [TomcatDeployment] deploy, ctxPath=/PruebaOsiris, vfsUrl=PruebaOsiris.war
08:11:13,358 WARN [config] Unable to process deployment descriptor for context '/PruebaOsiris'
08:11:14,367 INFO [TomcatDeployment] deploy, ctxPath=/, vfsUrl=ROOT.war
08:11:14,493 INFO [TomcatDeployment] deploy, ctxPath=/jmx-console, vfsUrl=jmx-console.war
08:11:14,603 INFO [TomcatDeployment] deploy, ctxPath=/solostruts2, vfsUrl=solostruts2.war
08:11:14,650 WARN [config] Unable to process deployment descriptor for context '/solostruts2'
08:11:14,824 INFO [Http11Protocol] Arrancando Coyote HTTP/1.1 en puerto http-127.0.0.1-8080
08:11:14,855 INFO [AjpProtocol] Arrancando Coyote AJP/1.3 en ajp-127.0.0.1-8009
08:11:14,871 INFO [ServerImpl] JBoss (Microcontainer) [5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=
200812042120)] Started in 1m:7s:536ms
and I can't see my application.war. I have in my app one initial page, in web.xml, but it dont't run. Principal error can be:
08:11:13,358 WARN [config] Unable to process deployment descriptor for context '/PruebaOsiris'
and I don`t know why jboss don`t find my app PruebaOsiris.wap. Can you help me ? Thanks, and regards,
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4233044#4233044
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4233044
16 years, 11 months