users@glassfish.java.net

Re: web services not showing up

From: Lucas Jordan <lucasjordan_at_softhome.net>
Date: Wed, 19 Jul 2006 10:31:46 -0400

I will make the changes you suggested. thanks for the insight! the war
is as produced by netbeans 5.5, I think some of the trouble is that
netbeans does not really want you to have several services in one wsdl.
hence I "added" services 6 times that just happen to be from the same
wsdl. BTW I recreated my project in netbeans and all seems to be
working, perhaps the build script of the old project went wonky....

I did not move each service to there own wsdl file because I wanted to
share data types between them...and I did not create an external xsd for
the types because the App server was kept reporting that the xsd was at
a 'localhost' address when read by an external computer....

with the exception of the 'localhost' issue (which is probably my
problem) it looks to me like this is a netbeans build issue. It is beta
after all.

thank for your help every one!
-Lucas

On Mon, 2006-07-17 at 14:06 -0400, Alan Frechette wrote:
> One problem I see with your war is incorrect packaging. Basically
> you have the same wsdl located throughout the war. All you need is
> the wsdl located under WEB-INF/wsdl/Device.wsdl. It should not be
> under WEB-INF/classes/Device.wsdl as well.
>
> The second problem I see is where are the implementation classes for the
> 6 ports you defined. I don't see them in the war.
>
> The third problem I see is the web.xml does not define webservices
> endpoints. Since you specify a web.xml file you must specify the
> webservices endpoints in the form
>
> <servlet>
> <servlet-name>Impl1</servlet-name>
> <servlet-class>package.Impl1</servlet-class>
> <load-on-startup>0</load-on-startup>
> </servlet>
> <servlet>
> <servlet-name>Impl2</servlet-name>
> <servlet-class>package.Impl2</servlet-class>
> <load-on-startup>0</load-on-startup>
> </servlet>
> <servlet-mapping>
> <servlet-name>Impl1</servlet-name>
> <url-pattern>/port1</url-pattern>
> </servlet-mapping>
> <servlet-mapping>
> <servlet-name>Impl2</servlet-name>
> <url-pattern>/port2/url-pattern>
> </servlet-mapping>
>
> That is all I can say for now. You need to correct these 3 problems
> above to proceed.
>
> Alan Frechette
>
>
> Lucas Jordan wrote On 07/17/06 11:12,:
> > I have this war file, it contains 6 classes that should be web services.
> > The application server loads the web app (you can view it's index.jsp)
> > but no web services we loaded. I have also attached the log file for the
> > server. I undeployed the war, rotated the logs and shutdown. so the log
> > is everything after and including the shutdown.
> >
> > The war file can be downloaded from:
> > http://mentis.no-ip.com/ljordan/device-services.war
> >
> > My home machine, it will take a bit to download.
> >
> > what am I doing wrong?
> >
> > any help would be awesome!
> > -Lucas
> >
> >
> >
> > On Fri, 2006-07-14 at 14:32 -0400, Lucas Jordan wrote:
> >
> >>ok, so I have been trying to create a procedure to reproduce the error.
> >>And of course everything now seems to be working. of course it was not
> >>working before I started writing this email....if it breaks again I will
> >>first cry and then record how I broke it and send it along.
> >>
> >>I am not 100% sure that this is not a netbeans issue, I have started
> >>logging the war files it produces, so when it does break again I should
> >>be able to see what is actually being passed to the app server.
> >>
> >>Thanks
> >>-Lucas
> >>
> >>
> >>On Fri, 2006-07-14 at 10:20 -0700, Vijay Ramachandran wrote:
> >>
> >>>Comments in line :
> >>>
> >>>
> >>>>I am trying to deploy a web application to an instance of glassfish and
> >>>>I am having trouble. when I deploy the web application, it is listed
> >>>>under the Web Applications (on the admin console) but no Web Services
> >>>>associated with that application are listed under the "Web Services"
> >>>>section.
> >>>
> >>>When this happens - are there any exceptions in the server.log
> >>>(AS_INSTALL/domains/domain1/logs/server.log) ?
> >>>
> >>>
> >>>>The weird thing is, sometimes they are. If I create a new
> >>>>project in netbeans(5.5), create a web services from a wsdl, and deploy
> >>>>it, occasionally a web services is listed.
> >>>>
> >>>
> >>>This kind of a problem has not been reported so far !!!
> >>>
> >>>
> >>>>I know this is not a very helpful description of my problem. I am not
> >>>>seeing any errors in the log. sometimes it works and some times it does
> >>>>not.
> >>>>
> >>>>here is the code for the web service:
> >>>>package net.digitalxtractions.services.device;
> >>>>
> >>>>import javax.jws.WebService;
> >>>>
> >>>>@WebService(serviceName = "GetImagesService", portName =
> >>>>"GetImagesPort", endpointInterface =
> >>>>"net.digitalxtractions.services.device.GetImagesPortType",
> >>>>targetNamespace = "http://digitalxtractions.net/services/Device",
> >>>>wsdlLocation = "WEB-INF/wsdl/GetImagesService/Device.wsdl")
> >>>>public class GetImagesService implements
> >>>>net.digitalxtractions.services.device.GetImagesPortType {
> >>>>
> >>>> public net.digitalxtractions.services.device.GetImagesResponseType
> >>>>getImagesOperation(net.digitalxtractions.services.device.GetImagesRequestType request) throws net.digitalxtractions.services.device.ActionError {
> >>>>
> >>>> return new GetImagesResponseType();
> >>>>
> >>>> }
> >>>>}
> >>>>
> >>>
> >>>This looks good
> >>>
> >>>
> >>>>I assume glassfish creates the web service from the information listed
> >>>>after @WebService.
> >>>
> >>>yes it will
> >>>
> >>>>How does one specify a web service in the web.xml
> >>>>file?
> >>>
> >>>If you use annotations, you dont have to
> >>>
> >>>
> >>>>I would like to try and define the service without relying on
> >>>>magical introspection.
> >>>>
> >>>
> >>>Then you have to specify all deployment descriptors like webservices.xml etc
> >>>
> >>>>my current web.xml is:
> >>>><?xml version="1.0" encoding="UTF-8"?>
> >>>><web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
> >>>>xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> >>>>xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
> >>>>http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
> >>>> <session-config>
> >>>> <session-timeout>
> >>>> 30
> >>>> </session-timeout>
> >>>> </session-config>
> >>>> <welcome-file-list>
> >>>> <welcome-file>
> >>>> index.jsp
> >>>> </welcome-file>
> >>>> </welcome-file-list>
> >>>></web-app>
> >>>>
> >>>>thanks for any help.
> >>>>-Lucas
> >>>>
> >>>
> >>>
> >>>Is it possible to let us have your WAR/EAR that gets deployed by
> >>>netbeans ? If not, at the WSDL that is packaged ?
> >>>
> >>>Without these, it is tough to understand what is going on
> >>>
> >>>Thanks
> >>>
> >>>Vijay
> >>>
> >>>---------------------------------------------------------------------
> >>>To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
> >>>For additional commands, e-mail: users-help_at_glassfish.dev.java.net
> >>>
> >>
> >>---------------------------------------------------------------------
> >>To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
> >>For additional commands, e-mail: users-help_at_glassfish.dev.java.net
> >>
> >>
> >>
> >>------------------------------------------------------------------------
> >>
> >>[#|2006-07-17T10:59:50.490-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|CORE5051: Shutting down all J2EE applications ...|#]
> >>
> >>[#|2006-07-17T10:59:50.491-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|CORE 5060 : Stopping all J2EE Connector 1.5 Compliant resource adapters ...|#]
> >>
> >>[#|2006-07-17T10:59:50.492-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|CORE 5061 : Resource adapters Stop() Complete|#]
> >>
> >>[#|2006-07-17T10:59:50.492-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|CORE5052: Application shutdown complete.|#]
> >>
> >>[#|2006-07-17T10:59:50.492-0400|INFO|sun-appserver-pe9.0|javax.enterprise|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|JBIFW0030: Processing SHUTDOWN_EVENT|#]
> >>
> >>[#|2006-07-17T10:59:50.494-0400|SEVERE|sun-appserver-pe9.0|com.sun.jbi.component.com.sun.httpsoapbc-1.0-2com.sun.jbi.httpsoapbc.OutboundReceiver|_ThreadID=17;_ThreadName=com.sun.httpsoapbc-1.0-2;_RequestID=7d950e2d-9b77-42a2-90bd-29fe1b5ca471;|Stopping the Receiver Thread|#]
> >>
> >>[#|2006-07-17T10:59:50.537-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system|_ThreadID=18;_ThreadName=Thread-24;|Stopping the acceptor thread|#]
> >>
> >>[#|2006-07-17T10:59:50.539-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system|_ThreadID=19;_ThreadName=JavaEEServiceEngine;|JBISE6015: JavaEEServiceEngine : Java EE Service Engine stopped successfully.|#]
> >>
> >>[#|2006-07-17T10:59:50.560-0400|WARNING|sun-appserver-pe9.0|com.sun.jbi.management.system.DeploymentService|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;_RequestID=e70ce0ea-9e89-464c-afba-524d8f264abf;|java.io.FileNotFoundException: /home/ljordan/applications/SUNWappserver03/domains/domain1/jbi/system/deployment/sastate.properties (No such file or directory)|#]
> >>
> >>[#|2006-07-17T10:59:50.565-0400|SEVERE|sun-appserver-pe9.0|com.sun.jbi.management.system.AdminService|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;_RequestID=e70ce0ea-9e89-464c-afba-524d8f264abf;|javax.management.InstanceNotFoundException: MBean instance not found: com.sun.jbi:JbiName=domain1_at_localhost,ServiceName=MessageService,ControlType=Lifecycle,ComponentType=System|#]
> >>
> >>[#|2006-07-17T10:59:50.610-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|WEB0303: Stopping Sun-Java-System/Application-Server.|#]
> >>
> >>[#|2006-07-17T10:59:50.613-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;8080;|WEB0713: Stopping Sun-Java-System/Application-Server HTTP/1.1 on 8080|#]
> >>
> >>[#|2006-07-17T10:59:50.618-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;8182;|WEB0713: Stopping Sun-Java-System/Application-Server HTTP/1.1 on 8182|#]
> >>
> >>[#|2006-07-17T10:59:50.621-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;4848;|WEB0713: Stopping Sun-Java-System/Application-Server HTTP/1.1 on 4848|#]
> >>
> >>[#|2006-07-17T10:59:50.633-0400|INFO|sun-appserver-pe9.0|org.apache.catalina.core.StandardWrapper|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|Waiting for 1 instance(s) to be deallocated|#]
> >>
> >>[#|2006-07-17T10:59:51.670-0400|INFO|sun-appserver-pe9.0|org.apache.catalina.core.StandardWrapper|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|Waiting for 1 instance(s) to be deallocated|#]
> >>
> >>[#|2006-07-17T10:59:52.710-0400|INFO|sun-appserver-pe9.0|org.apache.catalina.core.StandardWrapper|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|Waiting for 1 instance(s) to be deallocated|#]
> >>
> >>[#|2006-07-17T10:59:56.981-0400|INFO|sun-appserver-pe9.0|javax.enterprise|_ThreadID=16;_ThreadName=RMI TCP Connection(10)-127.0.0.1;|JBIFW0040: Processing TERMINATION_EVENT|#]
> >>
> >>[#|2006-07-17T10:59:58.764-0400|INFO|sun-appserver-pe9.0|javax.enterprise.tools.launcher|_ThreadID=10;_ThreadName=main;|
> >>/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/bin/java
> >>-client
> >>-Xmx512m
> >>-XX:NewRatio=2
> >>-Dcom.sun.aas.defaultLogFile=/home/ljordan/applications/SUNWappserver03/domains/domain1/logs/server.log
> >>-Djava.endorsed.dirs=/home/ljordan/applications/SUNWappserver03/lib/endorsed
> >>-Djava.security.policy=/home/ljordan/applications/SUNWappserver03/domains/domain1/config/server.policy
> >>-Djava.security.auth.login.config=/home/ljordan/applications/SUNWappserver03/domains/domain1/config/login.conf
> >>-Dsun.rmi.dgc.server.gcInterval=3600000
> >>-Dsun.rmi.dgc.client.gcInterval=3600000
> >>-Djavax.net.ssl.keyStore=/home/ljordan/applications/SUNWappserver03/domains/domain1/config/keystore.jks
> >>-Djavax.net.ssl.trustStore=/home/ljordan/applications/SUNWappserver03/domains/domain1/config/cacerts.jks
> >>-Djava.ext.dirs=/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/lib/ext:/home/ljordan/applications/SUNWappserver03/domains/domain1/lib/ext:/home/ljordan/applications/SUNWappserver03/javadb/lib
> >>-Djdbc.drivers=org.apache.derby.jdbc.ClientDriver
> >>-Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
> >>-Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
> >>-Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
> >>-Dcom.sun.enterprise.taglisteners=jsf-impl.jar
> >>-Dcom.sun.aas.classloader.optionalOverrideableChain=appserv-ws.jar,commons-logging.jar,commons-launcher.jar
> >>-Dcom.sun.aas.classloader.appserverChainJars=admin-cli.jar,admin-cli-ee.jar,dbschema.jar,j2ee-svc.jar
> >>-Dcom.sun.aas.classloader.serverClassPath.ee=%HADB_HOME%/lib/hadbjdbc4.jar,/home/ljordan/applications/SUNWappserver03/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,%HADB_HOME%/lib/dbstate.jar,%HADB_HOME%/lib/hadbm.jar,%HADB_HOME%/lib/hadbmgt.jar,/opt/SUNWmfwk/lib/mfwk_instrum_tk.jar
> >>-Dcom.sun.aas.configName=server-config
> >>-Ddomain.name=domain1
> >>-Djmx.invoke.getters=true
> >>-Dcom.sun.aas.promptForIdentity=true
> >>-Dcom.sun.aas.classloader.optionalOverrideableChain.ee=
> >>-Dcom.sun.aas.instanceRoot=/home/ljordan/applications/SUNWappserver03/domains/domain1
> >>-Dcom.sun.aas.domainName=domain1
> >>-Dcom.sun.aas.classloader.sharedChainJars=javaee.jar,/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/lib/tools.jar,install/applications/jmsra/imqjmsra.jar,commons-launcher.jar,/home/ljordan/applications/SUNWappserver03/imq/lib/jaxm-api.jar,/home/ljordan/applications/SUNWappserver03/imq/lib/fscontext.jar,/home/ljordan/applications/SUNWappserver03/imq/lib/imqbroker.jar,/home/ljordan/applications/SUNWappserver03/imq/lib/imqjmx.jar,/home/ljordan/applications/SUNWappserver03/imq/lib/imqxm.jar,/home/ljordan/applications/SUNWappserver03/lib/ant/lib/ant.jar,appserv-ws.jar,mail.jar,jsf-api.jar,jsf-impl.jar,appserv-jstl.jar,appserv-env.jar,jmxremote_optional.jar,/home/ljordan/applications/SUNWappserver03/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,commons-logging.jar,activation.jar,appserv-rt.jar,appserv-admin.jar,appserv-cmp.jar
> >>-Dcom.sun.aas.classloader.sharedChainJars.ee=appserv-se.jar,appserv-ee.jar,%HADB_HOME%/lib/dbstate.jar,%HADB_HOME%/lib/hadbjdbc4.jar,jgroups-all.jar,/opt/SUNWmfwk/lib/mfwk_instrum_tk.jar
> >>-Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
> >>-Dcom.sun.enterprise.overrideablejavaxpackages=javax.xml.bind,javax.help,javax.portlet
> >>-Dcom.sun.aas.classloader.serverClassPath=/home/ljordan/applications/SUNWappserver03/lib/install/applications/jmsra/imqjmsra.jar,/home/ljordan/applications/SUNWappserver03/imq/lib/jaxm-api.jar,/home/ljordan/applications/SUNWappserver03/imq/lib/fscontext.jar,/home/ljordan/applications/SUNWappserver03/imq/lib/imqbroker.jar,/home/ljordan/applications/SUNWappserver03/imq/lib/imqjmx.jar,/home/ljordan/applications/SUNWappserver03/lib/ant/lib/ant.jar,/home/ljordan/applications/SUNWappserver03/lib/SUNWjdmk/5.1/lib/jdmkrt.jar
> >>-Dcom.sun.aas.classloader.appserverChainJars.ee=
> >>-Dcom.sun.aas.configRoot=/home/ljordan/applications/SUNWappserver03/config
> >>-Djava.library.path=/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/lib/i386/client:/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/lib/i386:/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/../lib/i386:/home/ljordan/applications/SUNWappserver03/lib:/usr/lib/lwp:/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/lib/i386/client:/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/lib/i386:/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/../lib/i386:/home/ljordan/applications/SUNWappserver03/lib:/home/ljordan/applications/SUNWappserver03/lib:/home/ljordan/applications/SUNWappserver03/lib:/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/lib/i386/client:/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/lib/i386:/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/../lib/i386
> >>-Dcom.sun.aas.instanceName=server
> >>-Dcom.sun.aas.processLauncher=SE
> >>-Dcom.sun.aas.installRoot=/home/ljordan/applications/SUNWappserver03
> >>-Dcom.sun.aas.ClassPathPrefix=
> >>-Dcom.sun.aas.ClassPathSuffix=:/home/ljordan/applications/SUNWappserver03/addons/amserver/amclientsdk.jar:/home/ljordan/applications/SUNWappserver03/addons/amserver/amwebServiceProvider.jar:/home/ljordan/applications/SUNWappserver03/addons/amserver
> >>-Dcom.sun.aas.ServerClassPath=
> >>-cp
> >>:/home/ljordan/applications/SUNWappserver03/lib/appserv-launch.jar
> >>com.sun.enterprise.server.PELaunch
> >>start|#]
> >>
> >>[#|2006-07-17T10:59:59.385-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;|Starting Sun Java System Application Server Platform Edition 9.0 (build b48) ...|#]
> >>
> >>[#|2006-07-17T11:00:00.421-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;|CORE5098: AS Socket Service Initialization has been completed.|#]
> >>
> >>[#|2006-07-17T11:00:00.457-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;Java HotSpot(TM) Client VM;1.5.0_06;Sun Microsystems Inc.;|CORE5076: Using [Java HotSpot(TM) Client VM, Version 1.5.0_06] from [Sun Microsystems Inc.]|#]
> >>
> >>[#|2006-07-17T11:00:00.517-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core.security|_ThreadID=10;_ThreadName=main;|SEC1002: Security Manager is OFF.|#]
> >>
> >>[#|2006-07-17T11:00:01.561-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.tools.admin|_ThreadID=10;_ThreadName=main;|ADM0001:MBeanServer initialized successfully|#]
> >>
> >>[#|2006-07-17T11:00:03.153-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core.security|_ThreadID=10;_ThreadName=main;com.sun.enterprise.security.provider.PolicyWrapper;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
> >>
> >>[#|2006-07-17T11:00:03.259-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core.selfmanagement|_ThreadID=10;_ThreadName=main;|sgmt.service_initialized|#]
> >>
> >>[#|2006-07-17T11:00:03.479-0400|INFO|sun-appserver-pe9.0|javax.enterprise|_ThreadID=10;_ThreadName=main;|JBIFW0000: Processing INIT_EVENT|#]
> >>
> >>[#|2006-07-17T11:00:07.688-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.tools.admin|_ThreadID=10;_ThreadName=main;|ADM1079: Initialization of AMX MBeans successful|#]
> >>
> >>[#|2006-07-17T11:00:08.156-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.tools.admin|_ThreadID=10;_ThreadName=main;service:jmx:rmi:///jndi/rmi://localhost:8686/jmxrmi;|ADM1504: Here is the JMXServiceURL for the Standard JMXConnectorServer: [service:jmx:rmi:///jndi/rmi://localhost:8686/jmxrmi]. This is where the remote administrative clients should connect using the standard JMX connectors|#]
> >>
> >>[#|2006-07-17T11:00:08.156-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.tools.admin|_ThreadID=10;_ThreadName=main;true;|ADM1506: Status of Standard JMX Connector: Active = [true]|#]
> >>
> >>[#|2006-07-17T11:00:08.393-0400|INFO|sun-appserver-pe9.0|javax.enterprise|_ThreadID=10;_ThreadName=main;|JBIFW0010: Processing STARTUP_EVENT|#]
> >>
> >>[#|2006-07-17T11:00:09.458-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;|WEB0302: Starting Sun-Java-System/Application-Server.|#]
> >>
> >>[#|2006-07-17T11:00:09.516-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;__default-admingui;__asadmin;/;|WEB0100: Loading web module [__default-admingui] in virtual server [__asadmin] at [/]|#]
> >>
> >>[#|2006-07-17T11:00:09.731-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;adminapp;__asadmin;/web1;|WEB0100: Loading web module [adminapp] in virtual server [__asadmin] at [/web1]|#]
> >>
> >>[#|2006-07-17T11:00:09.752-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;admingui;__asadmin;/asadmin;|WEB0100: Loading web module [admingui] in virtual server [__asadmin] at [/asadmin]|#]
> >>
> >>[#|2006-07-17T11:00:09.759-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;amserver;server;/amserver;|WEB0100: Loading web module [amserver] in virtual server [server] at [/amserver]|#]
> >>
> >>[#|2006-07-17T11:00:10.246-0400|INFO|sun-appserver-pe9.0|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=10;_ThreadName=main;/asadmin;|Initializing Sun's JavaServer Faces implementation (1.2-b20-FCS) for context '/asadmin'|#]
> >>
> >>[#|2006-07-17T11:00:11.913-0400|INFO|sun-appserver-pe9.0|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=10;_ThreadName=main;/asadmin;|Completed initializing Sun's JavaServer Faces implementation (1.2-b20-FCS) for context '/asadmin'|#]
> >>
> >>[#|2006-07-17T11:00:12.145-0400|INFO|sun-appserver-pe9.0|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=10;_ThreadName=main;;|Initializing Sun's JavaServer Faces implementation (1.2-b20-FCS) for context ''|#]
> >>
> >>[#|2006-07-17T11:00:12.884-0400|INFO|sun-appserver-pe9.0|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=10;_ThreadName=main;;|Completed initializing Sun's JavaServer Faces implementation (1.2-b20-FCS) for context ''|#]
> >>
> >>[#|2006-07-17T11:00:13.544-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;8080;|WEB0712: Starting Sun-Java-System/Application-Server HTTP/1.1 on 8080|#]
> >>
> >>[#|2006-07-17T11:00:14.052-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;8182;|WEB0712: Starting Sun-Java-System/Application-Server HTTP/1.1 on 8182|#]
> >>
> >>[#|2006-07-17T11:00:14.197-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;4848;|WEB0712: Starting Sun-Java-System/Application-Server HTTP/1.1 on 4848|#]
> >>
> >>[#|2006-07-17T11:00:14.711-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;|About to load the system app: __JWSappclients|#]
> >>
> >>[#|2006-07-17T11:00:14.944-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;__JWSappclients:sys.war;server;/__JWSappclients;|WEB0100: Loading web module [__JWSappclients:sys.war] in virtual server [server] at [/__JWSappclients]|#]
> >>
> >>[#|2006-07-17T11:00:15.039-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core.selfmanagement|_ThreadID=10;_ThreadName=main;|SMGT0007: Self Management Rules service is enabled|#]
> >>
> >>[#|2006-07-17T11:00:15.048-0400|INFO|sun-appserver-pe9.0|javax.enterprise|_ThreadID=10;_ThreadName=main;|JBIFW0020: Processing READY_EVENT|#]
> >>
> >>[#|2006-07-17T11:00:17.443-0400|WARNING|sun-appserver-pe9.0|com.sun.jbi.management.system.AdminService|_ThreadID=10;_ThreadName=main;_RequestID=4ac055b0-37bf-4fd8-ac3e-0d9b10df6fcb;|JBIMA0201: getComponentByName: Lookup failed for "com.sun.jbi:ComponentName=JavaEEServiceEngine,ControlType=Lifecycle,ComponentType=Installed,JbiName=domain1_at_localhost,*".|#]
> >>
> >>[#|2006-07-17T11:00:17.445-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.tools.admin|_ThreadID=10;_ThreadName=main;|Is Java EE Service Engine installed false|#]
> >>
> >>[#|2006-07-17T11:00:17.448-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system|_ThreadID=10;_ThreadName=main;/home/ljordan/applications/SUNWappserver03/lib/addons/jbi/appserv-jbise.jar;|Java EE Service Engine Bundle :|#]
> >>
> >>[#|2006-07-17T11:00:17.733-0400|WARNING|sun-appserver-pe9.0|com.sun.jbi.management|_ThreadID=10;_ThreadName=main;_RequestID=4ac055b0-37bf-4fd8-ac3e-0d9b10df6fcb;|JBIMA1316: Unable to add component. Component JavaEEServiceEngine already exists in the repository.|#]
> >>
> >>[#|2006-07-17T11:00:17.924-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system|_ThreadID=11;_ThreadName=JavaEEServiceEngine;|Service Engine starting|#]
> >>
> >>[#|2006-07-17T11:00:18.207-0400|WARNING|sun-appserver-pe9.0|com.sun.jbi.management|_ThreadID=10;_ThreadName=main;_RequestID=4ac055b0-37bf-4fd8-ac3e-0d9b10df6fcb;|JBIMA1305: Failed to install component JavaEEServiceEngine.|#]
> >>
> >>[#|2006-07-17T11:00:18.235-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system|_ThreadID=10;_ThreadName=main;|Service Engine starting|#]
> >>
> >>[#|2006-07-17T11:00:18.675-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system|_ThreadID=11;_ThreadName=JavaEEServiceEngine;|JBISE6013: JavaEEServiceEngine : Java EE Service Engine started successfully.|#]
> >>
> >>[#|2006-07-17T11:00:18.691-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system|_ThreadID=10;_ThreadName=main;|JBISE6013: JavaEEServiceEngine : Java EE Service Engine started successfully.|#]
> >>
> >>[#|2006-07-17T11:00:18.865-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;|Application server startup complete.|#]
> >>
> >>[#|2006-07-17T11:00:22.552-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.tools.deployment|_ThreadID=12;_ThreadName=Thread-29;|deployed with moduleid = device-services|#]
> >>
> >>[#|2006-07-17T11:00:23.097-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-4848-1;device-services;server;/device-services;|WEB0100: Loading web module [device-services] in virtual server [server] at [/device-services]|#]
> >>
> >>
> >>
> >>
> >>------------------------------------------------------------------------
> >>
> >>---------------------------------------------------------------------
> >>To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
> >>For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>