Web services - web logic 10.3.3.0 - spring

I have an application which is implemented with spring and uses web services.
I am trying to deploy it on Web Logic 10.3.3.0 but I get the error:
:com.sun.xml.bind.v2.runtime.IllegalAnnotationsException:6 counts of IllegalAnnotationExceptions
I deploy the same application(war file) on web logic 10.3.0.0 and it works fine.
I can not figure it out what is so different in the new version of the web logic.
I use in the applicationContext.xml of the Spring:
<wss:binding url="/webService/documentB" >
<wss:service>
<ws:service bean="#webService.documentB" impl="moi.DocumentsService" />
</wss:service>
</wss:binding>
<!-- simplest definition only needs the class name -->
<bean id="webService.documentB" class="moi.DocumentsService">
<property name="publicDocumentDao" ref="publicDocumentDao"></property>
</bean>
In web.xml file:
<!-- JAX-WS RI dispatcher servlet -->
<servlet>
<servlet-name>jaxws-servlet</servlet-name>
<servlet-class>com.sun.xml.ws.transport.http.servlet.WSSpringServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>jaxws-servlet</servlet-name>
<url-pattern>/webService/*</url-pattern>
</servlet-mapping>
DocumentsService.java is:
@WebService
public class DocumentsService {
private PublicDocumentDao mPublicDocumentDao;
// Injected with spring
public void setPublicDocumentDao(PublicDocumentDao aDao) {
mPublicDocumentDao = aDao;
//constructor
public DocumentsService() {
@WebMethod
public DocumentInfoResult requestDocumentInfo(@WebParam(name = "documentInfoRequest")
DocumentInfoRequest aDocumentInfoRequest) {
return mDocument;
I am using Spring 2.0 , Hibernate 3, Struts 1.
The log file of the weblogic 10.3.3.0 is:
weblogic.application.ModuleException: :com.sun.xml.bind.v2.runtime.IllegalAnnotationsException:6 counts of IllegalAnnotationExceptions
at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:102)
at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:448)
at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:297)
at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:139)
at com.sun.xml.bind.api.JAXBRIContext.newInstance(JAXBRIContext.java:105)
at com.sun.xml.ws.developer.JAXBContextFactory$1.createJAXBContext(JAXBContextFactory.java:73)
at com.sun.xml.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelImpl.java:159)
at com.sun.xml.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelImpl.java:151)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.xml.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:151)
at com.sun.xml.ws.model.AbstractSEIModelImpl.postProcess(AbstractSEIModelImpl.java:94)
at com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:265)
at com.sun.xml.ws.server.EndpointFactory.createSEIModel(EndpointFactory.java:363)
at com.sun.xml.ws.server.EndpointFactory.createEndpoint(EndpointFactory.java:202)
at com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:514)
at org.jvnet.jax_ws_commons.spring.SpringService.getObject(SpringService.java:333)
at org.jvnet.jax_ws_commons.spring.SpringService.getObject(SpringService.java:45)
at org.springframework.beans.factory.support.AbstractBeanFactory.getObjectFromFactoryBean(AbstractBeanFactory.java:1246)
at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveInnerBean(BeanDefinitionValueResolver.java:221)
at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:128)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1100)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:862)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:423)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:249)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:155)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:246)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:160)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:291)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)
at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:246)
at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:189)
at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:49)
at com.oracle.weblogic.wsee.wrapper.org.springframework.web.context.ContextLoaderListener.contextInitialized(Unknown Source)
at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1863)
at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3126)
at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Edited by: user5165836 on 14-Jul-2011 05:41

Hi,
I solved the problem with adding an extra jar file to the project:
com.springsource.org.jvnet.jax_ws_commons.spring-1.8.0.jar.

Similar Messages

  • Issue in calling web service from SoapUI 4.0.0 to Oracle web logic server10

    Hi All,
    I am trying to call a web service from soapUI 4.0.0 to Oracle Web logic server 10.3 in which primavera p6 war file is deployed..
    getting an error::*this class does not support saaj 1.3*
    setting the following system property in the Weblogic startup script:
    -Djavax.xml.soap.MessageFactory=com.sun.xml.internal.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl does not work..
    setting the following system property in the Weblogic startup script:
    -Djavax.xml.soap.MessageFactory=weblogic.xml.saaj.MessageFactoryImpl
    even does not work..
    how to resolve this error,plz help me its urgent..

    Have you tried submitting your help request on the SmartBear soapUI forum?
    http://www.eviware.com/forum/viewforum.php?f=5
    Or if a soapUI Pro user:
    http://www.eviware.com/forum/viewforum.php?f=2
    Best,
    Alex

  • Separating obiee server and presentation services via Web Logic Server

    Hello,
    I'm attempting to Install OBIEE Server 11.1.1.3.0 on Linux (box A). I also am installing Web Logic Server 10.3.3 on Linux (box B) with the plan of deploying presentation services on WLS.
    I originally did the following:
    1. setup Repositoyr using RCU
    2. Installed OBIEE 11.1.1.3.0 using Enterprise Option.
    3. Installed WLS 10.3.3
    4. Began following this doc: http://www.obieetalk.com/deploying-obi-presentation-services-weblogic
    ---and the following questions arose as I was going through those steps:
    a. when I start up the Weblogic configuration wizard. I get to step 8 and it asks me to configure the Administration Server.
    --is that the Weblogic Server(box B)?
    b. It then asks me to configure Managed Servers.
    --That is the Weblogic Server, correct(box B)?
    I skipped Configuring Clusters.
    c. It then asks to Configure Machines.
    --I'm not sure what to put here.
    **I then proceeded to open up an SR and was given a "Here's the install guide" as a 'Solution Offered'.
    Oracle then came back with you need to do a "Software Only" install of OBIEE
    --On Box A or B? Because when I do that it asking where the WebLogic Server / Middleware Home is located.
    So, I'm asking
    1. do I do Enterprise, Simple or Software Only on Box A?
    2. Install WLS first, and then follow the document( http://www.obieetalk.com/deploying-obi-presentation-services-weblogic ) on how to deploy the Presentation Services?
    3. Which will lead me back to these questions:
    a. when I start up the Weblogic configuration wizard. I get to step 8 and it asks me to configure the Administration Server.
    --is that the Weblogic Server(box B)?
    b. It then asks me to configure Managed Servers.
    --That is the Weblogic Server, correct(box B)?
    I skipped Configuring Clusters.
    c. It then asks to Configure Machines.
    --I'm not sure what to put here.
    Any help is greatly appreciated. Thanks in advance!

    Hi,
    Is this the only error that you got in log files. Can you change the presentation catalog name and give it a try. Kill all the services. Start OC4J and then start the services.
    Regards,
    Sandeep

  • Help Needed compile, deploy Web Service with Annotations on Web Logic 9.2

    Hi,
    I am new web logic and need some help in compiling, creating deployment file i.e. war, ear on Web Logic 9.2. I have the following sample web service with annotations code code but need help in compiling, creating deployment file (war,ear), creating proxy for testing etc. How to compile and create deployment files in WebLogic 9.2. Any help is really appreciated.
    package sample_ws;
    import java.rmi.RemoteException;
    import javax.jws.*;
    import javax.jws.soap.SOAPBinding;
    import org.w3c.dom.Document;
    @WebService
    @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL,
                 parameterStyle = SOAPBinding.ParameterStyle.BARE)
    public class EchoService {
        public EchoService() {
        @WebMethod(action="echo")
        @WebResult(targetNamespace="http://exa.org", name="echoResult")
        public Document echo(@WebParam(targetNamespace = "http://exa.org",
                                       name = "echoMsg")
            Document doc) throws RemoteException{
            return doc;
    }Thanks

    I am using Oracle Jdeveloper as an IDE and created a war file and deployed on Oracle App. Server it works fine. Now if I deploy the same war on Web Logic it gives me the following error:
    java.lang.IllegalStateException: could not find schema type named {{http}//exa.org}>>echoResult
    Errors were encountered while performing this operation. Here is the code I have:
    package webservice2 ;
    import java.rmi.RemoteException;
    import javax.jws.*;
    import javax.jws.soap.SOAPBinding;
    import org.w3c.dom.Document;
    @WebService
    @SOAPBinding(style = SOAPBinding.Style.DOCUMENT,
                 use = SOAPBinding.Use.LITERAL,
                 parameterStyle = SOAPBinding.ParameterStyle.BARE)
    public class EchoService {
        public EchoService() {
        @WebMethod(action="echo")
        @WebResult(targetNamespace="http://exa.org", name="echoResult")
        public Document echo(@WebParam(targetNamespace = "http://exa.org",
                                       name = "echoMsg")
            Document doc) throws RemoteException{
            return doc;
    }And here is the wsdl file I have:
    <definitions
         name="EchoServiceService"
         targetNamespace="http://webservice2/"
         xmlns="http://schemas.xmlsoap.org/wsdl/"
         xmlns:tns="http://webservice2/"
         xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
         xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
         xmlns:ns1="http://exa.org"
         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
        >
        <types>
            <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://exa.org" elementFormDefault="qualified"
                 xmlns:tns="http://exa.org" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/">
                <element name="echoMsg" nillable="true">
                    <complexType>
                        <sequence>
                            <any/>
                        </sequence>
                    </complexType>
                </element>
                <element name="echoResult" nillable="true">
                    <complexType>
                        <sequence>
                            <any/>
                        </sequence>
                    </complexType>
                </element>
            </schema>
        </types>
        <message name="EchoServicePortType_echo">
            <part name="echoMsg" element="ns1:echoMsg"/>
        </message>
        <message name="EchoServicePortType_echoResponse">
            <part name="echoResult" element="ns1:echoResult"/>
        </message>
        <portType name="EchoService">
            <operation name="echo">
                <input message="tns:EchoServicePortType_echo"/>
                <output message="tns:EchoServicePortType_echoResponse"/>
            </operation>
        </portType>
        <binding name="EchoServiceSoapHttp" type="tns:EchoService">
            <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
            <operation name="echo">
                <soap:operation soapAction="echo"/>
                <input>
                    <soap:body use="literal" parts="echoMsg"/>
                </input>
                <output>
                    <soap:body use="literal" parts="echoResult"/>
                </output>
            </operation>
        </binding>
        <service name="EchoServiceService">
            <port name="EchoServiceSoapHttpPort" binding="tns:EchoServiceSoapHttp">
                <soap:address location="http://localhost:8888/EnableSrc-WebService2-context-root/EchoServiceSoapHttpPort"/>
            </port>
        </service>
    </definitions>Any ideas what might be wrong.

  • Oracle web logic crashing other services on same server

    Hello,
    I have three servers in a cluster. Everything runs great. All of a sudden they can no longer speak to eachother on port 7001. But then they can again, and then they can't, then they can. QUICK hits. Also other services on the same boxes are taking hits as well including the ssh services that are running on all three. Again. Quick hits. Interestingly enough when the service does take a hit, it will continue to listen on port 22.....I haven't gotten a change to check bandwidth utilization, but those are gig switches, and I don't think these things are sending gigs worth of data to each other in bursts. Physical cabling is good between the servers and the switch. It's services on the box that are taking hits. When we restart web logic, everything is great for a few days and then this issue will start up again. Any input would be appreciated.
    Thanks,
    Dice.

    Hi Dice,
    I agree with Kalyan recommendation to assess the health of your cluster, so please do that.
    That being said, your comment regarding Weblogic restart is very important as well. Did you also assess the health of your JVM garbage collection & CPU during these spikes? Global VM collections e.g. Full GC can be quite intrusive and cause JVM to hang. When JVM hangs, Weblogic Server Socket port (associated with that VM) may not reachable depending how long GC runs, what policy you use, capacity of your physical server, # of physical cores etc.
    Please see of these QUICK hits that you refer actually correlate with Full GC cycles from one or more JVM's running from that host.
    Please also share the specification of your JVM (vendor e.g. HotSpot vs. IBM vm vs. Jrockit, Heap size, 32-bit vs. 64-bit etc.) and physical host (speed & # of cores, OS etc.)
    If system is fine for few days then start to degrade, then please look for some JVM leak patterns.... A JVM memory leak means OldGen/tenured space growing over time, so will GC elapsed time & frequency until you start to notice global impact & degradation.
    Please share any data that you have on the above so we can rule that out.
    If you are not using any monitoring at this point, I recommend at minimum that you enable verbose:gc so we can assess the health of your JVM's running from that host.
    Thanks.
    P-H
    http://javaeesupportpatterns.blogspot.com

  • Unable to access a Web service in Web logic

    Hi,
    We have deployed a web service in a Web logic 9.2 MP3. We have 1 admin server and 2 managed servers. The web service is deployed under 1 of the managed server. There are no errors thrown in the log files during starting of managed and admin server.
    The other systems are not able to connect to the web service.
    Also there is no entry or any error message in all the log files.
    Can anyone please guide us to overcome this issue?
    Thanks in advance.
    Regards,
    Ninad K

    I would advise you to open a support case.
    Some basic things, do you know if the web service is bound to the URL that you expect on server 1? Try connecting to your web service uri with ?WSDL at the end to see if the WSDL is returned.
    You can also try using tools like TCPMon to see what's getting passed over the wire.

  • Start Primavera Web Logic Instances as Windows Services

    Hi,
    An external contractor has recently deployed P6 v8.1 in our environments and to our surprise currenlty Primavera Web Logic instances installed (p6, contract module, progress reporter and webservices) ara running as a java consoles in a logged user session. Our internal policies does not allow to have applications running under these conditions (all servers are required to be able to startup automatically and sessions expires) so we have requested Primavera consultants to set up Primavera-related WebLogic instances as a Windows Services. We have just received an answer form them arguing that this requirement can not be fullfilled because Oracle does not currently support Primavera-related Weblogic instances deployment as Windows Services on 64-bits platforms.
    Could someone provide his opinion about?
    Thanks

    I setup P6.2.1 Web on WebLogic running as a service in a 64 bit Windows environment successfully for a previous client. While it may not be officially supported by Oracle to configure it in this manner, I personally had no issues with it.
    I used the below article to guide me through setting up node manager. Hopefully this is of help to you.
    http://blogs.oracle.com/jamesbayer/entry/weblogic_nodemanager_quick_sta

  • Web Logic 10.3.6 (64bit) - Could not load the sitemesh filter and library

    Installed Web Logic 10.3.3 (32bit) and Java JDK 1.6.0_21 (32bit) in a customer's server (Windows Server 2008 R2 and 64-bit Operating System). The web page can be displayed with header and side menu.
    However installed Web Logic 10.3.6 (64bit) and Java JDK 1.6.0_31 (64bit) on that same server. The web page cannot be displayed with header and side menu, it is just displayed with a blank background. Refer to the below "ERROR LOG", found the application could not load the sitemesh filter and library properly. We are using sitemesh-2.3.jar.
    Have tried installed Web Logic 10.3.6 (64bit) and Java JDK 1.6.0_31 (64bit) in a test server (Windows Server 2008 R2 and 64-bit Operating System). The web page can be displayed with header and side menu.
    Please assist on this issue. Thanks.
    Below is the sitemesh that is declared and configured.
    WEB-INF/web.xml
    <filter>
    <filter-name>sitemesh</filter-name>
    <filter-class>com.opensymphony.module.sitemesh.filter.PageFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>sitemesh</filter-name>
    <url-pattern>/*</url-pattern>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>INCLUDE</dispatcher>          
    </filter-mapping>
    WEB-INF/decorators.xml
    <decorators defaultdir="/template/decorators">
    <decorator name="plain" page="plain.jsp"/>
    <decorator name="printable" page="printable.jsp"/>
    <decorator name="standard" page="page_template_std.jsp">
    <pattern>/*.jsp</pattern>
    </decorator>
    <excludes>
    <pattern>/include/*</pattern>
    <pattern>/js/*</pattern>
    <pattern>/Login.jsp*</pattern>
    </excludes>
    </decorators>
    WEB-INF/sitemesh.xml
    <sitemesh>
    <property name="decorators-file" value="/WEB-INF/decorators.xml"/>
    <excludes file="${decorators-file}"/>
    <page-parsers>
    <parser content-type="text/html"
    class="com.opensymphony.module.sitemesh.parser.HTMLPageParser" />
    <parser content-type="text/html;charset=ISO-8859-1"
    class="com.opensymphony.module.sitemesh.parser.HTMLPageParser" />
    </page-parsers>
    <decorator-mappers>
         <mapper class="com.opensymphony.module.sitemesh.mapper.PageDecoratorMapper">
              <param name="property.1" value="meta.decorator" />
              <param name="property.2" value="decorator" />
         </mapper>
         <mapper class="com.opensymphony.module.sitemesh.mapper.FrameSetDecoratorMapper">
         </mapper>
         <mapper class="com.opensymphony.module.sitemesh.mapper.AgentDecoratorMapper">
              <param name="match.MSIE" value="ie" />
              <param name="match.Mozilla [" value="ns" />
              <param name="match.Opera" value="opera" />
              <param name="match.Lynx" value="lynx" />
         </mapper>
         <mapper class="com.opensymphony.module.sitemesh.mapper.PrintableDecoratorMapper">
              <param name="decorator" value="printable" />
              <param name="parameter.name" value="printable" />
              <param name="parameter.value" value="true" />
         </mapper>
         <mapper class="com.opensymphony.module.sitemesh.mapper.RobotDecoratorMapper">
              <param name="decorator" value="robot" />
         </mapper>
         <mapper class="com.opensymphony.module.sitemesh.mapper.ParameterDecoratorMapper">
              <param name="decorator.parameter" value="decorator" />
         </mapper>
         <mapper class="com.opensymphony.module.sitemesh.mapper.FileDecoratorMapper">
         </mapper>
         <mapper class="com.opensymphony.module.sitemesh.mapper.ConfigDecoratorMapper">
              <param name="config" value="/WEB-INF/decorators.xml" />
         </mapper>
    </decorator-mappers>
    </sitemesh>
    ERROR LOG
    ####<May 8, 2012 5:38:49 PM SGT> <Error> <HTTP> <BHQKPK10060> <cms_cimbmy> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1336469929804> <BEA-101165> <Could not load user defined filter in web.xml: com.opensymphony.module.sitemesh.filter.PageFilter.
    com.opensymphony.module.sitemesh.factory.FactoryException: Cannot construct Factory : com.opensymphony.module.sitemesh.factory.DefaultFactory: java.lang.reflect.InvocationTargetException
         at com.opensymphony.module.sitemesh.Factory.getInstance(Factory.java:50)
         at com.opensymphony.module.sitemesh.filter.PageFilter.init(PageFilter.java:87)
         at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
         at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Do you see any further nested exceptions OR errors in the log file.
    Considering that the same WLS-JDK combination works on one machine and does not work on another machine, it indicates an environmental issue.
    "However installed Web Logic 10.3.6 (64bit) and Java JDK 1.6.0_31 (64bit) on that same server. The web page cannot be displayed....
    Have tried installed Web Logic 10.3.6 (64bit) and Java JDK 1.6.0_31 (64bit) in a test server (Windows Server 2008 R2 and 64-bit Operating System). The web page can be displayed with header and side menu."
    I am suspecting if it has to do anything with the native libraries being loaded JAVA_LIB_PATH.
    Please review the server log file again for identifying differences in LIB_PATH or PATH or any messages saying "Unable to load native.. performance pack.."
    Arun

  • Web logic server found error

    hi guys, i have successfully deployed my first container managed persistence entity bean
    on web logic server 5.1 but i am unable to run my client application the following error
    occurs when i try to run my client application on windows 98 platform
    we are unable to get a connection to the web logic server at t3:\\localhost:7001
    please make sure that the server is running
    unable to lookup the beans home: cannot instantiate
    class:weblogic.jndi.WLInitialContextFactory
    plz let me know how to overcome this problem
    and what does it mean by t3 why we use it instead of http.
    with regards
    abid

    we are unable to get a connection to the web logic
    server at t3:\\localhost:7001
    please make sure that the server is running
    unable to lookup the beans home: cannot instantiate
    class:weblogic.jndi.WLInitialContextFactoryt3 is a proprietary protocol used by weblogic. First of all tcp/ip needs to be set up in order for you to access localhost. You can check this by opening your browser and typing http://localhost in the address bar. This should bring up the weblogic homepage. If this does not happen, all you need to do is install the TCP/IP services.
    Amit Rajaram

  • Start Web Logic 5.1 in a separate JVM

    Hi All.
    Is there a way to start Web Logic 5.1 in a separate JVM from within a java class.
    I am writing a service pack for a Web Logic application. During the service pack
    uninstall, I have to stop web logic, delete the new files, restore old files and
    restart web logic.
    For restarting, I am using a JNI call to invoke the web logic startup class. This
    runs in its own java.exe process. But even after the uninstaller's java.exe quits,
    the java.exe that is running web logic holds a lock on to the folder from where
    the uininstaller was launched.
    Does anyone know why this is happening?
    Is there a solution to this issue?
    Your help would be much appreciated.
    Thanks Jai

    In your function that you call with JNI, before you launch the new WebLogic
    process, you should set the current working directory to the WebLogic
    directory and everything will work fine.
    I have no explanation for why the directory remains locked.
    - Mike
    "Jai Karuppuswamy" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hi All.
    Is there a way to start Web Logic 5.1 in a separate JVM from within a javaclass.
    >
    >
    I am writing a service pack for a Web Logic application. During theservice pack
    uninstall, I have to stop web logic, delete the new files, restore oldfiles and
    restart web logic.
    For restarting, I am using a JNI call to invoke the web logic startupclass. This
    runs in its own java.exe process. But even after the uninstaller'sjava.exe quits,
    the java.exe that is running web logic holds a lock on to the folder fromwhere
    the uininstaller was launched.
    Does anyone know why this is happening?
    Is there a solution to this issue?
    Your help would be much appreciated.
    Thanks Jai

  • ERROR IN WEB LOGIC AND JBUILDER...

    hi,
    im just new to weblogic with JBuilder X, i made a very basic session bean and when i compiled it. it said...
    "WebLogicSesMod.jar": Spaces in the temporary directory path may cause WebLogic APPC utility to produce fatal compile errors.
    im using Weblogic 8.1platform server
    and when i RUN THE APPLICATION then it throws exception...
    The WebLogic Server did not start up properly.
    java.lang.NoClassDefFoundError: com/bea/wsrp/util/debug/Debug
         at com.bea.wsrp.security.WSRPIdentityAsserterProviderImpl.<clinit>(WSRPIdentityAsserterProviderImpl.java:45)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at java.lang.Class.newInstance0(Class.java:308)
         at java.lang.Class.newInstance(Class.java:261)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.createSecurityProvider(SecurityServiceManagerDelegateImpl.java:232)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:939)
         at weblogic.security.service.PrincipalAuthenticator.initialize(PrincipalAuthenticator.java:151)
         at weblogic.security.service.PrincipalAuthenticator.<init>(PrincipalAuthenticator.java:257)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.doATN(SecurityServiceManagerDelegateImpl.java:581)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealm(SecurityServiceManagerDelegateImpl.java:420)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.loadRealm(SecurityServiceManagerDelegateImpl.java:698)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealms(SecurityServiceManagerDelegateImpl.java:731)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(SecurityServiceManagerDelegateImpl.java:874)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:717)
         at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:822)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:670)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:344)
         at weblogic.Server.main(Server.java:32)
    Reason: com/bea/wsrp/util/debug/Debug
    PLEASE HELP ME, IM IN BIG MESS....
    WAITING...

    hi,
    i reinstalled server and JBuilder, and again made a session bean. the server started successfully...
    but while compiling code the PREVIOUS error came with more enhancement...
    "EJBModule.jar": Spaces in the temporary directory path may cause WebLogic APPC utility to produce fatal compile errors.
    "EJBModule.jar": Spaces in the classpath may cause WebLogic APPC utility to produce fatal compile errors.
    "EJBModule.jar": C:\bea\jdk142_04\bin\javaw -classpath "C:\bea\weblogic81\server\lib\weblogic_sp.jar;C:\bea\weblogic81\server\lib\weblogic.jar;C:\bea\weblogic81\server\lib\webservices.jar;C:\Documents and Settings\Administrator\jbproject\ejbsess\EJBModule.jar;" weblogic.appc -keepgenerated -forceGeneration -compiler C:/bea/jdk142_04/bin/javac "C:/Documents and Settings/Administrator/jbproject/ejbsess/EJBModule.jar.jar" -output "C:/Documents and Settings/Administrator/jbproject/ejbsess/EJBModule.jar"
    "EJBModule.jar": <Nov 2, 2004 12:01:33 PM GMT+05:00> <Warning> <EJB> <BEA-010054> <EJB Deployment: WebLogicSes has a class ejbsess.WebLogicSesBean that is in the classpath. This class should only be located in the ejb-jar file.>
    "EJBModule.jar": <Nov 2, 2004 12:01:33 PM GMT+05:00> <Warning> <EJB> <BEA-010054> <EJB Deployment: WebLogicSes has a class ejbsess.WebLogicSesHome that is in the classpath. This class should only be located in the ejb-jar file.>
    "EJBModule.jar": <Nov 2, 2004 12:01:33 PM GMT+05:00> <Warning> <EJB> <BEA-010054> <EJB Deployment: WebLogicSes has a class ejbsess.WebLogicSes that is in the classpath. This class should only be located in the ejb-jar file.>
    "EJBModule.jar": [J2EE:160127]ERROR: Could not delete previous archive: C:\Documents and Settings\Administrator\jbproject\ejbsess\EJBModule.jar
    and the EXECUTION OF WEB LOGIC SERVER GOES FINE...
    C:\bea\jdk142_04\bin\javaw -classpath "C:\bea\weblogic81\server\lib\weblogic_sp.jar;C:\bea\weblogic81\server\lib\weblogic.jar;C:\bea\weblogic81\server\lib\webservices.jar" -ms64m -mx64m -Djava.library.path="C:/bea/weblogic81/server/bin" -Dbea.home="C:/bea" -Dweblogic.Name=myserver -Djava.security.policy=="C:/bea/weblogic81/server/lib/weblogic.policy" -Dweblogic.management.discover=false -Dweblogic.ProductionModeEnabled=false -Dweblogic.management.password=aqibjava -Dweblogic.management.username=weblogic weblogic.Server
    <Nov 2, 2004 11:56:33 AM GMT+05:00> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.4.2_04-b05 from Sun Microsystems Inc.>
    <Nov 2, 2004 11:56:34 AM GMT+05:00> <Info> <Configuration Management> <BEA-150016> <This server is being started as the administration server.>
    <Nov 2, 2004 11:56:34 AM GMT+05:00> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
    WebLogic XMLX Module 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973 >
    <Nov 2, 2004 11:56:35 AM GMT+05:00> <Notice> <Management> <BEA-140005> <Loading domain configuration from configuration repository at C:\bea\user_projects\domains\enterprisedomain\.\config.xml.>
    <Nov 2, 2004 11:56:38 AM GMT+05:00> <Notice> <Log Management> <BEA-170019> <The server log file C:\bea\user_projects\domains\enterprisedomain\myserver\myserver.log is opened. All server side log events will be written to this file.>
    <Nov 2, 2004 11:56:40 AM GMT+05:00> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Nov 2, 2004 11:56:40 AM GMT+05:00> <Notice> <WebLogicServer> <BEA-000327> <Starting WebLogic Admin Server "myserver" for domain "enterprisedomain">
    <Nov 2, 2004 11:56:45 AM GMT+05:00> <Warning> <HTTP> <BEA-101296> <Unable to load the default compiler class "com.sun.tools.javac.Main". Using the default javac compiler to compile JSPs.>
    <Nov 2, 2004 11:56:50 AM GMT+05:00> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "myserver" for domain "enterprisedomain" running in Development Mode>
    <Nov 2, 2004 11:56:50 AM GMT+05:00> <Notice> <WebLogicServer> <BEA-000355> <Thread "ListenThread.Default" listening on port 7001, ip address *.*>
    <Nov 2, 2004 11:56:50 AM GMT+05:00> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    NOW WATS WRONG :(
    WAITING...

  • Error deploying entity bean on web logic server

    i am trying to deploy a container managed persistence entity bean on web logic server when i run the command ejbc which generates the final jar file ready to deploy having its stub and skeleton it gives me the error that the return type of create(int) method should have a type of bean home interface while in accordance with ejb1.1 specicication it should be the type of primary key and a null value should be returned.
    plz let me know where i am doing it wrong.

    thanks for ur quick response sir i am using this services provided by sun microsystem first time and
    am really thankful to Sun Microsystem for this great deal of help to the new commers but sir my problem is still there.
    following is the method which i have written in the code
         public InvoicePK ejbCreate(int id)
              this.id=id;
              return null;
    and here it is the error generated by the server deployment tool.
    [9.2.8] In EJB Invoice, the return type for the create method create(int) must be the bean's remote interface type.
    [9.2.8] In EJB Invoice, the findByPrimaryKey method must return the Entity bean's remote interface type.
    [9.2.8] In EJB Invoice, the return type for the method findByPrimaryKey(com.swi.InvoicePK) must be the entity bean's remote interface type (for a single-object finder) or a collection thereof (for a mult-object finder).
    the detail of files created by me are as follows.
    1. Invoice (Entity Bean)
    2. InvoicePK (Primary Key file)
    3. MyRemoteInterface (remote interface for entity bean)
    4. MyHomeInterface (home interface for entity bean)
    plz let me know where i am doing wrong and oblige.

  • JDev Integrated Web Logic Server fails

    I'm a newbie with WLS. I've installed JDEV 11.1.1.3 in Windows XP SP3, and installed extensions for Webcenter.
    Now trying to go through webcenter tutorial, I arrived at point where I'm trying to run a small application,
    but nothing works. I've searched and searched the internet for clues, help, and tried multiple things, but nothing helps.
    First, I get the warning message
    Warning> <Server> <BEA-002611> <Hostname "XXX", maps to multiple IP addresses: 10.10.10.10, 169.254.25.129, 192.168.2.6
    and then when I disable all the network connections for these IPs, just to see if this would help,
    then the server appears to start successfully, but the tutorial app that compiled successfully does not start to run in any brower.
    I go through the properties of the Application Server for the Integrated Web Logic Server to test the connection and I get
    Testing JSR-160 Runtime ... failed.
    Cannot establish connection.
    Testing JSR-160 DomainRuntime ... skipped.
    Testing JSR-88 ... skipped.
    Testing JSR-88-LOCAL ... skipped.
    Testing JNDI ... skipped.
    Testing JSR-160 Edit ... skipped.
    Testing HTTP ... failed.
    Unable to open conection: Connection refused: connect
    Testing Server MBeans Model ... skipped.
    I have no clue, and trying different configurations does not help.
    I need a WebLogic for Dummies guide. Anyone have some clue ?

    Thanks Ravi Jegga for looking at my post. Here's some info.
    1) Here's the log output for starting Server Instance (IntegratedWebLogicServer)
    *** Using port 7101 ***
    "C:\Documents and Settings\jaudet\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\bin\startWebLogic.cmd"
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\oracle\MIDDLE~1\WLSERV~1.3\server\ext\jdbc\oracle\11g\ojdbc6dms.jar;C:\oracle\MIDDLE~1\patch_wls1033\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1\JDK160~1\lib\tools.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.3.0.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\oracle\Middleware\jdeveloper\webcenter\modules\oracle.portlet.server_11.1.1\oracle-portlet-api.jar;C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar
    PATH=C:\oracle\MIDDLE~1\patch_wls1033\profiles\default\native;C:\oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;C:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;C:\oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;C:\oracle\MIDDLE~1\JDK160~1\jre\bin;C:\oracle\MIDDLE~1\JDK160~1\bin;C:\oracle\product\10.2.0\db_4\BIN;C:\OracleBI\server\Bin;C:\OracleBI\web\bin;C:\OracleBI\web\catalogmanager;C:\OracleBI\SQLAnywhere;C:\product\10.1.3.1\OracleAS_5\jdk\bin;C:\product\10.1.3.1\OracleAS_5\jdk\jre\bin\client;C:\product\10.1.3.1\OracleAS_5\jdk\jre\bin;C:\product\10.1.3.3\OracleBIP\jre\1.4.2\bin\client;C:\product\10.1.3.3\OracleBIP\jre\1.4.2\bin;C:\product\10.1.3.1\OracleAS_5\ant\bin;C:\product\10.1.3.1\OracleAS_5\bin;C:\oracle\product\10.2.0\db_4\BIN;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Ora_10g2_DevSuite\jdk\jre\bin\classic;C:\Ora_10g2_DevSuite\jdk\jre\bin;C:\Ora_10g2_DevSuite\jdk\jre\bin\client;C:\Ora_10g2_DevSuite\jlib;C:\Ora_10g2_DevSuite\bin;C:\Ora_10g2_DevSuite\jre\1.4.2\bin\client;C:\Ora_10g2_DevSuite\jre\1.4.2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\MKS\mksnt;C:\Program Files\QuickTime\QTSystem\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_18"
    Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    Java HotSpot(TM) Client VM (build 16.0-b13, mixed mode)
    Starting WLS with line:
    C:\oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=C:\oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks -Dhttp.proxyHost=emeacache.uk.oracle.com -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=null -Dhttps.proxyHost=emeacache.uk.oracle.com -Dhttps.proxyPort=80 -Dhttps.nonProxyHosts=null -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=C:\oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\DOCUME~1\jaudet\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1 -Dcommon.components.home=C:\oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.domain.config.dir=C:\DOCUME~1\jaudet\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1 -Doracle.server.config.dir=C:\DOCUME~1\jaudet\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.security.jps.config=C:\DOCUME~1\jaudet\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Digf.arisidbeans.carmlloc=C:\DOCUME~1\jaudet\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\DOCUME~1\jaudet\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\arisidprovider -Dweblogic.alternateTypesDirectory=C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\DOCUME~1\jaudet\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\oracle\store\gmds -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.auth=ACC -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -Doracle.wc.openusage.clustername=localhost -Doracle.wc.openusage.collectorport=31314 -Doracle.wc.openusage.timeout=30 -Doracle.wc.openusage.unicast=true -Doracle.wc.openusage.enabled=false -Doracle.webcenter.tagging.scopeTags=false -XX:+UseParallelGC -XX:+DisableExplicitGC -Dwc.oracle.home=C:\oracle\Middleware\jdeveloper -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\oracle\MIDDLE~1\patch_wls1033\profiles\default\sysext_manifest_classpath;C:\oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    <Oct 5, 2010 11:01:47 AM EDT> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    C:\Documents and Settings\jaudet\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\lib\mbeantypes\csp-id-asserter.jar>
    <Oct 5, 2010 11:01:48 AM EDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 16.0-b13 from Sun Microsystems Inc.>
    <Oct 5, 2010 11:01:52 AM EDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401 >
    <Oct 5, 2010 11:01:55 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Oct 5, 2010 11:01:55 AM EDT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Oct 5, 2010 11:01:56 AM EDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\jaudet\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Oct 5, 2010 11:01:56 AM EDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\jaudet\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00008. Log messages will continue to be logged in C:\Documents and Settings\jaudet\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Oct 5, 2010 11:01:57 AM EDT> <Notice> <Log Management> <BEA-170019> <The server log file C:\Documents and Settings\jaudet\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <Oct 5, 2010 11:02:10 AM EDT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Oct 5, 2010 11:02:28 AM EDT> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddi was not deployed. Error: [Deployer:149158]No application files exist at 'C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddi.war'.>
    <Oct 5, 2010 11:02:28 AM EDT> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddiexplorer was not deployed. Error: [Deployer:149158]No application files exist at 'C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddiexplorer.war'.>
    <Oct 5, 2010 11:02:28 AM EDT> <Warning> <Deployer> <BEA-149617> <Non-critical internal application consoleapp was not deployed. Error: [Deployer:149158]No application files exist at 'consoleapp'.>
    <Oct 5, 2010 11:02:28 AM EDT> <Warning> <Deployer> <BEA-149617> <Non-critical internal application wlstestclient was not deployed. Error: [Deployer:149158]No application files exist at 'wlstestclient'.>
    <Oct 5, 2010 11:02:31 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Oct 5, 2010 11:02:31 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <ServerMessages><warningMsgFailedLoadingPipeline> Unable to load the webservices management interceptor pipeline
    java.security.AccessControlException: access denied (oracle.security.jps.JpsPermission IdentityAssertion)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
         at java.security.AccessController.checkPermission(AccessController.java:546)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:378)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:438)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:460)
         at oracle.security.jps.internal.jaas.AbstractSubjectSecurity.checkPermission(AbstractSubjectSecurity.java:113)
         at oracle.security.jps.internal.jaas.AbstractSubjectSecurity.getActionExecutor(AbstractSubjectSecurity.java:76)
         at oracle.wsm.policyaccess.impl.PMPolicyResolverBase$2.run(PMPolicyResolverBase.java:209)
         at oracle.wsm.policyaccess.impl.PMPolicyResolverBase$2.run(PMPolicyResolverBase.java:207)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.wsm.policyaccess.impl.PMPolicyResolverBase.getActionExecutor(PMPolicyResolverBase.java:206)
         at oracle.wsm.policyaccess.impl.PMPolicyResolverBase.init(PMPolicyResolverBase.java:100)
         at oracle.wsm.policyaccess.impl.remote.RemotePolicyResolver.init(RemotePolicyResolver.java:116)
         at oracle.wsm.policyaccess.impl.PolicyAccessResolver.getResolver(PolicyAccessResolver.java:169)
         at oracle.wsm.policyaccess.impl.PolicyAccessResolver.getResolver(PolicyAccessResolver.java:98)
         at oracle.wsm.policyaccess.impl.PolicyAccessorImpl.getPolicySetMap(PolicyAccessorImpl.java:412)
         at oracle.wsm.policyaccess.impl.PolicyAccessorImpl.getPolicySet(PolicyAccessorImpl.java:379)
         at oracle.integration.platform.common.mgmt.PolicyCacheImpl$CacheNode.refreshIfStale(PolicyCacheImpl.java:142)
         at oracle.integration.platform.common.mgmt.PolicyCacheImpl.getPolicySet(PolicyCacheImpl.java:247)
         at oracle.j2ee.ws.server.mgmt.runtime.SuperServerInterceptorPipeline.forcePolicyLoad(SuperServerInterceptorPipeline.java:192)
         at oracle.j2ee.ws.server.mgmt.runtime.SuperServerInterceptorPipeline.<init>(SuperServerInterceptorPipeline.java:68)
         at oracle.j2ee.ws.server.JAXRPCProcessor.createAndInitWsmgmtInterceptor(JAXRPCProcessor.java:919)
         at oracle.j2ee.ws.server.JAXRPCProcessor.init(JAXRPCProcessor.java:877)
         at oracle.j2ee.ws.server.JAXRPCServlet.init(JAXRPCServlet.java:252)
         at javax.servlet.GenericServlet.init(GenericServlet.java:241)
         at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
         at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
         at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
         at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
         at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3126)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    <Oct 5, 2010 11:03:15 AM EDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\jaudet\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Oct 5, 2010 11:03:15 AM EDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\jaudet\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00008. Log messages will continue to be logged in C:\Documents and Settings\jaudet\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Oct 5, 2010 11:03:15 AM EDT> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Oct 5, 2010 11:03:19 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Oct 5, 2010 11:03:19 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Oct 5, 2010 11:03:19 AM EDT> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Oct 5, 2010 11:03:19 AM EDT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 192.168.2.6:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Oct 5, 2010 11:03:19 AM EDT> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Oct 5, 2010 11:03:19 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Oct 5, 2010 11:03:19 AM EDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    2) And here's the feedback from testing the application server connection
    Testing JSR-160 Runtime ... failed.
    Cannot establish connection.
    Testing JSR-160 DomainRuntime ... skipped.
    Testing JSR-88 ... skipped.
    Testing JSR-88-LOCAL ... skipped.
    Testing JNDI ... skipped.
    Testing JSR-160 Edit ... skipped.
    Testing HTTP ... success.
    Testing Server MBeans Model ... skipped.
    1 of 8 tests successful.
    3) The install of the webcenter extension was done via the JDEV Help - Check for updates
    selecting for files
    oracle.webcenter.framework_bundle.zip
    and
    oracle.webcenter.customization_bundle.zip
    that were automatically installed by JDEV without any prompts for additional steps.

  • ACE and Oracle Web logic

    Hi All,
    I have here a 6509-E chassis with a Sup720 in it and an ACE module also in it.
    Our enviornment is getting oracle web-logic virtual servers via OVM.  Our ERP team would like to be able to load-balance to the web servers located in the oracle OVM box.  The Oracle OVM stuff, as near as I can make out uses java processes to direct traffic once it hits the box to the virtual web servers it contains. The java processes listen on different ports, thereby meaning there can be loads of web servers on the one box assuming the physical box has enough resources.
    That said, I currently have three web servers all sitting on the one physical box.
    For example:
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman","serif";}
    server1 = http://10.1.95.70:9999
    server2 = http://10.1.95.70:9888
    server3 = http://10.1.95.70:9777
    The Company bought ACE modules a while ago and we'd like to be able to use them to load balance across the three servers (there are a lot more than three but this illustrates the point).
    In the configuration of the ACE module, the rserver mode (real server) requires an IP to be assigned to the rserver, this is the real IP address of the actual server and is classes as 'serverside' I think:
    eg
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman","serif";}
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman","serif";}
    rserver host SVR_9999
      description Real Server 9999
      ip address 10.1.95.70
      inservice
    As the second web server also resides on that same IP, should it not also have the same IP?  ie
    rserver host SVR_9888
      description Real Server 9888
      ip address 10.1.95.70
      inservice
    When I try to enter in the ip address however it errors out with a duplicate:
    ACE1/TEST_CTX(config)# rserver host SVR_9888
    ACE1/TEST_CTX(config-rserver-host)# ip address 10.1.95.70
    Error: Duplicate IP address or subnet
    My question is:  Is there a way I can use the ACE module to load balance to different web servers on the one IP address (assuming the rest of the configuration is fine)?   Something that would achieve the following eg?
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman","serif";}
    rserver host SVR_9999
      description Real Server 9999
      ip address 10.1.95.70:9999
      inservice
    rserver host SVR_9888
      description Real Server 9888
      ip address 10.1.95.70:9888
      inservice
    Many thanks in advance.
    Brad

    Hi
    You need to create one rserver and multipul serverfams with port number as follow.
    rserver host SVR_1
      description Real Server
        ip address 10.1.95.70
      inservice
    rserver host SVR_2
      description Real Server
        ip address 10.1.95.70
      inservice
    serverfarm host SRV_9999
        rserver SVR_1 9999
          inservice
        rserver SVR_2 9999
           inservice
    serverfarm host SRV_9888
        rserver SVR_1 9888
           inservice
        rserver SVR_2 9888
           inservice
    serverfarm host SRV_9777
        rserver SVR_1 9777
           inservice
        rserver SVR_2 9777
           inservice
    sticky ip-netmask 255.255.255.255 address both STICKY_9999
      timeout 510
      replicate sticky
      serverfarm SRV_9999
    sticky ip-netmask 255.255.255.255 address both STICKY_9888
      timeout 510
       replicate sticky
       serverfarm SRV_9888
    sticky ip-netmask 255.255.255.255 address both STICKY_9777
      timeout 510
       replicate sticky
       serverfarm SRV_9777
    class-map match-all VIP_9999
      2 match virtual-address xxx.xxx.xxx.xxx tcp eq 9999
    class-map match-all VIP_9888
       2 match virtual-address xxx.xxx.xxx.xxx tcp eq 9888
    class-map match-all VIP_9777
       2 match virtual-address xxx.xxx.xxx.xxx tcp eq 9777
    policy-map type loadbalance first-match SLB_ORACLE_9999
      class class-default
        sticky-serverfarm SRV_9999
    policy-map type loadbalance first-match SLB_ORACLE_9888
       class class-default
         sticky-serverfarm SRV_9888
    policy-map type loadbalance first-match SLB_ORACLE_9777
       class class-default
         sticky-serverfarm SRV_9777
    policy-map multi-match ORACLE
      class VIP_9999
        loadbalance vip inservice
        loadbalance policy SLB_ORACLE_9999
        loadbalance vip icmp-reply
      class VIP_9888
        loadbalance vip inservice
        loadbalance policy SLB_ORACLE_9888
        loadbalance vip icmp-reply
      class VIP_9777
        loadbalance vip inservice
        loadbalance policy SLB_ORACLE_9777
        loadbalance vip icmp-reply
    interface vlan xx
       ip address yyy.yyy.yyy.yyy 255.255.255.0
         service-policy input  ORACLE
    Regards,
    Vashdev

  • Start web logic server 12cr1 falls

    Hi
    I'm new in Oracle world.
    I don't have any idea but mt situation is following
    i created'new domain in Web Logic Server wizard (everything is looking fine) but when I try to staed I get a following
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: <openjpa-1.1.1-SNAPSHOT-r422266:957329 fatal internal error> org.apache.openjpa.util.InternalException: There was an error when invoking the static getInstance method on the named factory *class "kodo.jdbc.kernel.KodoJDBCBrokerFactory".* See the nested exception for details.
         at org.apache.openjpa.kernel.Bootstrap.getBrokerFactory(Bootstrap.java:95)
         at com.bea.common.security.storeservice.util.StoreServiceDelegate$StoreSerivceHelper.getPersistenceManagerFactory(StoreServiceDelegate.java:347)
         at com.bea.common.security.storeservice.util.StoreServiceDelegate.initJDO(StoreServiceDelegate.java:145)
         at com.bea.common.security.storeservice.util.StoreServiceDelegate.<init>(StoreServiceDelegate.java:98)
    at com.bea.common.security.internal.service.StoreServiceImpl.init(StoreServiceImpl.java:76)
         at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:363)
         at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:315)
         at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:257)
         at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:72)
         at weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(WLSIdentityServiceImpl.java:46)
         at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(CSSWLSDelegateImpl.java:299)
         at weblogic.security.service.CSSWLSDelegateImpl.initialize(CSSWLSDelegateImpl.java:220)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(CommonSecurityServiceManagerDelegateImpl.java:1789)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:443)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:841)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:870)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1032)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:148)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.RuntimeException: There were errors initializing your configuration: <openjpa-1.1.1-SNAPSHOT-r422266:957329 fatal store error> org.apache.openjpa.util.StoreException: *[FMWGEN][SQLServer JDBC Driver]The requested instance is either invalid or not running*.
         at org.apache.openjpa.jdbc.schema.DataSourceFactory.installDBDictionary(DataSourceFactory.java:235)
    There are 1 nested errors:
    weblogic.security.service.SecurityServiceRuntimeException: [Security:090399]Security Services Unavailable
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:917)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1054)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:148)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    HELP!
    I'm running on win2008 and DB is MSSQL2008r2
    Laslo

    Hi
    thanks for quick reply
    I created a new web logic domain without security store... right now when I start it loog ok
    ####<Sep 6, 2012 1:59:31 PM CEST> <Notice> <Security> <WIN-DKF42PM30J6> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1346932771559> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <WebLogicServer> <WIN-DKF42PM30J6> <AdminServer> <main> <<WLS Kernel>> <> <> <1346932775105> <BEA-000365> <Server state changed to STANDBY.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <WebLogicServer> <WIN-DKF42PM30J6> <AdminServer> <main> <<WLS Kernel>> <> <> <1346932775109> <BEA-000365> <Server state changed to STARTING.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <Log Management> <WIN-DKF42PM30J6> <AdminServer> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1346932775369> <BEA-170027> <The server has successfully established a connection with the Domain level Diagnostic Service.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <WebLogicServer> <WIN-DKF42PM30J6> <AdminServer> <main> <<WLS Kernel>> <> <> <1346932775495> <BEA-000365> <Server state changed to ADMIN.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <WebLogicServer> <WIN-DKF42PM30J6> <AdminServer> <main> <<WLS Kernel>> <> <> <1346932775544> <BEA-000365> <Server state changed to RESUMING.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <Server> <WIN-DKF42PM30J6> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1346932775566> <BEA-002613> <Channel "Default[2]" is now listening on fe80:0:0:0:0:5efe:c0a8:8380:7001 for protocols iiop, t3, ldap, snmp, http.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <Server> <WIN-DKF42PM30J6> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1346932775568> <BEA-002613> <Channel "Default" is now listening on 192.168.131.128:7001 for protocols iiop, t3, ldap, snmp, http.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <Server> <WIN-DKF42PM30J6> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1346932775572> <BEA-002613> <Channel "Default[4]" is now listening on 127.0.0.1:7001 for protocols iiop, t3, ldap, snmp, http.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <Server> <WIN-DKF42PM30J6> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1346932775577> <BEA-002613> <Channel "Default[5]" is now listening on 0:0:0:0:0:0:0:1:7001 for protocols iiop, t3, ldap, snmp, http.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <Server> <WIN-DKF42PM30J6> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1346932775586> <BEA-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:0:ffff:ffff:fffe:7001 for protocols iiop, t3, ldap, snmp, http.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <Server> <WIN-DKF42PM30J6> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1346932775591> <BEA-002613> <Channel "Default[3]" is now listening on fe80:0:0:0:7ca4:9afd:eba:23ad:7001 for protocols iiop, t3, ldap, snmp, http.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <WebLogicServer> <WIN-DKF42PM30J6> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1346932775594> <BEA-000331> <Started the WebLogic Server Administration Server "AdminServer" for domain "Test_base_domain" running in development mode.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <WebLogicServer> <WIN-DKF42PM30J6> <AdminServer> <main> <<WLS Kernel>> <> <> <1346932775637> <BEA-000365> <Server state changed to RUNNING.>
    ####<Sep 6, 2012 1:59:35 PM CEST> <Notice> <WebLogicServer> <WIN-DKF42PM30J6> <AdminServer> <main> <<WLS Kernel>> <> <> <1346932775685> <BEA-000360> <The server started in RUNNING mode.>
    Thanks a lot ... But still I'm not understand why I cannot connect to mssql with my previous domain even I put extracted sqljdbc.jar and sqljdbc4.jar to $JAVA_HOME/jre/lib/ext AND I put this jar files to C:\Oracle\Middleware\jdk160_29\jre\lib\ext as well
    Also:
    i dont have a problem to connect to http://win-dkf42pm30j6:7001/console to get Admin Console BUT WHY I cannot see the http://win-dkf42pm30j6:7001/ page !!!
    thanks in advance
    Edited by: LPastor on Sep 6, 2012 5:45 AM
    Edited by: LPastor on Sep 6, 2012 5:46 AM
    Edited by: LPastor on Sep 6, 2012 5:47 AM
    Edited by: LPastor on Sep 6, 2012 5:47 AM

Maybe you are looking for

  • Create a single tall image from a multi-page pdf file

    I would like to take a multi-pake pdf file, and have all of the pages "appended" from top to bottom edge to create a single tall image. I am a teacher, and I currently do this by hand, I am then able to annotate the entire page and croll down an enti

  • Import statement vanishes while saving metadata

    Hi I am facing a strange problem.When I am saving metadata the import statements are erased from the //begin import and // end section in the implementation section of a view.But all packages are present. Pease help

  • How to disable 'select display' on screen sharing?

    One improvement in Lion is Screen Sharings 'asking' of the current logged in user as to whether or not it is ok to share the screen.  While I understand the need for this in a multi-user environment, this is a unnecessary level of feature for most ho

  • ShowPrintablePageBehavior is not working inside popup. Is it an ADF Bug?

    Hi, I am facing some issues with showPrintablePageBehavior component. 1. I have placed a command button with showPrintablePageBehavior inside a popup. But I am getting a blank page in print mode. But the showPrintablePageBehavior is working fine with

  • HT4890 i can't locate my photos in my icloud

    there is no iphoto icon in my icloud and i can't seem to find my photos. the photo stream is enabled on my iphone and in the icloud preferences on my mac book pro, yet still it doesn't show up.