Weblogic 4.5.1 as an NT service

I have problems with i'm starting weblogic as an Nt services.
          When i'm starting the classpath weblogic not get the classpath in Nt regedit.
          Could you help me? where is this variable for load the classpath for my properties in the classpath.
          thanks..
          

This link is better....
http://e-docs.bea.com/wls/docs61///adminguide/startstop.html#1026476
"J" wrote in message
news:3c437b4f$[email protected]..
>
I've already installed Weblogic Server 6.1 not as an NT service.
For a new project I find I need it as an NT service. How can I register itas
an NT service without having to re-install (and lose my existing effort)?
J--
Edited by jonmountjoy at 03/05/2008 5:42 AM
Edited by LWCarl at 06/11/2008 8:51 AM

Similar Messages

  • Weblogic Server 6.1 as Windows NT Service

    Hi All,
    I am running Weblogic Server 6.1 as Windows NT Service with one WAR
    Application Deployed in Production Mode.
    My machine is on Windows 2000 Application Server. I am facing a very strange
    problem with the setup.
    Prob 1 :
    Sometimes the service unexpactedly terminates ( I ve got the log in
    Event Viewer of Win2K saying that myserver service has been terminated 2
    times....) !! Can anyone explain why it is terminating like these ? what
    could be the possible reasons ?
    Prob 2 :
    When i see the logs that are generated i found that the WAR Application
    is continuously getting re-deployed and I am getting Deployment Exceptions
    for the same WAR files that i couldnt be deployed. This is happening
    automatically , I am not re-deploying the app.
    What could be the possible reasons ? Can anyone explain this behaviour ?
    Thanks in Advance.
    Bhavin Raichura

    Hello Bhavin,
    Are you sure you are running in production mode? Because production vs
    development mode is controlled by a parameter in startWebLogic. However,
    startWebLogic doesn't matter when you run it as a service. The startup
    parameters are set in installNTService, from where they go directly in the
    Windows registry.
    We found out that it matters what the timestamp of the packaged file is,
    compared to the time WebLogic started. For us, when the timestamp of our
    .ear file is earlier than the time WebLogic started, it does not want to
    redeploy. Maybe your timestamp is in the future or something??
    There are two reasons why you will see "service terminated unexpectedly".
    (a) If you stop the server yourself from the admin console or through the
    command line, the beasvc process exits, but Windows doesn't expect that, so
    it complains. Windows will not complain if you stop the service through "net
    stop <service>".
    However, there is reason (b), when the beasvc.exe process crashes by itself.
    We occasionally experience that (WebLogic 6.1 sp1) and we don't know why
    either. The only clue is in the weblogic.log file, where the last entry was
    something like: NT Performance Pack, I/O error, FD 3456.
    If you solve your #1, I would love to hear about it.
    Christo
    "bhavin raichura" <[email protected]> wrote in message
    news:[email protected]...
    Hi Kumar,
    Thanks for the reply.
    Well, the size of WAR is not very big, but that needs many other jars inthe
    classpath to get executed.
    I suppose the prob # 2 can be solved by Disabling Auto Deployment of
    Applications from Console > Mydomain > Application and uncheck thecheckbox
    but I am not sure.
    But what is wrong exactly with the setup ? This works perfactly alrightwhen
    Weblogic is not running as Windows Service.
    can web.xml and weblogic.xml or config.xml be helpful to you in
    understanding the problem ?
    Thanks in advance.
    Bhavin Raichura
    "Kumar Allamraju" <[email protected]> wrote in message
    news:[email protected]...
    I can help with #2.
    If your war file is not that big, can you send it to me? I will take alook at
    it.
    bhavin raichura wrote:
    Hi All,
    I am running Weblogic Server 6.1 as Windows NT Service with one WAR
    Application Deployed in Production Mode.
    My machine is on Windows 2000 Application Server. I am facing a very
    strange
    problem with the setup.
    Prob 1 :
    Sometimes the service unexpactedly terminates ( I ve got the log
    in
    Event Viewer of Win2K saying that myserver service has been terminated2
    times....) !! Can anyone explain why it is terminating like these ?what
    could be the possible reasons ?
    Prob 2 :
    When i see the logs that are generated i found that the WARApplication
    is continuously getting re-deployed and I am getting DeploymentExceptions
    for the same WAR files that i couldnt be deployed. This is happening
    automatically , I am not re-deploying the app.
    What could be the possible reasons ? Can anyone explain this behaviour
    >>>
    Thanks in Advance.
    Bhavin Raichura

  • Install webLogic 10.3.5.0 as windows Service

    Hi there;
    Looking for install webLogic as windows service; I found some papers that points me to "WL_HOME\server\bin\installSvc.cmd"
    as we can see here in [On-Line Manual References|http://download.oracle.com/docs/cd/E21764_01/web.1111/e13708/winservice.htm#START143]
    But; the fact is that in my wl_home\server\bin directory I can't see installSvc.cmd ;
    wl_home\server is not there any way;
    I have wl_home\serverS instead of it ;
    Any tips to configure webLogic 10.3.5.0 as windows service ?
    Foward thanks
    Marcos Ortega

    Hi Marcos,
    Since you were looking in your domain directory, note that you can innstall WLS components like node manager, admin server and managed servers as Windows services (which might be what you are trying to achieve).
    - For Node Manager you have the cmd file at WL_HOME\server\bin\installNodeMgrSvc.cmd
    - To create a Windows service for the Admin Server:
    1. Create a text file named %MIDDLEWARE_HOME%\user_projects\domains\<domain name>\servers\AdminServer\security\boot.properties. Add the following lines:
    username=weblogic
    password=<the weblogic username password>
    2. Create a command script called installAdmServer_Service.cmd which you will want to make sure has lines like:
    SETLOCAL
    set DOMAIN_NAME=<your wls domain>
    set USERDOMAIN_HOME=<path to domain> # e.g., C:\middleware\FMW11g\user_projects\domains\ClassicDomain
    set SERVER_NAME=AdminServer
    set PRODUCTION_MODE=true
    cd %USERDOMAIN_HOME%
    call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd
    call "<your middleware home>\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL
    3. Then run "installAdmServer_Service.cmd", the Service should be installed. It will have a name like "beasvc %DOMAIN_NAME%_%SERVER_NAME%" (e.g. beasvc ClassicDomain_AdminServer). The Service "Startup Type" shouldl be "Automatic".
    - To create a Windows service for the Managed Server:
    1. Create a text file named %MIDDLEWARE_HOME%\user_projects\domains\<domain name>\servers\[managed_server_name]\security\boot.properties. Add the following lines:
    username=weblogic
    password=<the weblogic username password e.g manager11g>
    2. Create a command script called installWLSFORMS_Service.cmd which has lines like
    SETLOCAL
    set DOMAIN_NAME=<your wls domain>
    set USERDOMAIN_HOME=<path to domain> # e.g. C:\middleware\FMW11g\user_projects\domains\ClassicDomain
    set SERVER_NAME=WLS_FORMS
    set PRODUCTION_MODE=true
    set ADMIN_URL=http://mymachine.mycompany.com:7001
    cd %USERDOMAIN_HOME%
    call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd
    call "<your middleware home>\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL
    3. Then run "installWLSFORMS_Service.cmd", the Service should be installed and it will have a name like "beasvc %DOMAIN_NAME%_%SERVER_NAME%" (e.g. beasvc ClassicDomain_WLS_FORMS). The Service "Startup Type" will be "Automatic".
    Some warnings:
    - The ADMIN_URL value should reference the AdminServer hostname and listen port.
    - The SERVER_NAME value is case sensitive. For example, if you are creating a MS Windows service for a different managed server such as 'wls_ods1' then the value needs to match the case of the server name otherwise the startup of the server via the MS Windows service will fail.
    - Be careful that there are no trailing spaces after each line in the command file - trailing spaces will cause the managed server to fail at startup.
    Hope this helps.
    -Cris

  • In Weblogic admin server,in monitoring status the services status is SHUTDOWN,but the corresponding services are running fine

    Hi All,
    In WebLogic server when we checked the health status through monitoring tab. Initially ,we find the Analytic provider services and Essbase Administrative services were UNKNOWN.
    we tried restarting the specific services (stopped and started the "Stop Analytic Provider services(Oracle Weblogic 10)" ,"Stop Essbase Administration services (Oracle Weblogic 10)" ).it has no effect still the status remains same as "UNKNOWN". But the services are running fine and the EAS console also working fine.After that,we restarted the weblogic  hosting server. Now the status changed as "SHUTDOWN". Now also the services are running fine and the EAS console also working fine. How to make the health status of both the services to be RUNNING and why it is showing like this eventhough the services are working fine.?
    We have gone through the Oracle Document ID:1563358 which we felt relevant to this. Please guide through whether to apply patches. Our weblogic server version is 10.3.6.0.

    Hi,
    Patches in this document Doc ID 1563358.1 belongs to weblogic versions from 10.3.4 to 12.1.1  so is it your weblogic version is within this range?
    Kindly check your weblogic version using below commands.
    cd $DOMAIN_HOME/bin
    . ./setDomainEnv.sh
    $ java Weblogic.version
    Or for detail
    $ java Weblogic.version –verbose
    Regards,
    Jagx.

  • Weblogic Server 6.1 as an NT service - (post-install)

    I've already installed Weblogic Server 6.1 not as an NT service.
    For a new project I find I need it as an NT service. How can I register it as
    an NT service without having to re-install (and lose my existing effort)?
    J
    Edited by LWCarl at 06/11/2008 8:53 AM

    This link is better....
    http://e-docs.bea.com/wls/docs61///adminguide/startstop.html#1026476
    "J" wrote in message
    news:3c437b4f$[email protected]..
    >
    I've already installed Weblogic Server 6.1 not as an NT service.
    For a new project I find I need it as an NT service. How can I register itas
    an NT service without having to re-install (and lose my existing effort)?
    J--
    Edited by jonmountjoy at 03/05/2008 5:42 AM
    Edited by LWCarl at 06/11/2008 8:51 AM

  • Policy Agent on BEA WebLogic when server instance runs as windows service

    hi.
    my environment is: win2k3, bea weblogic server 8.1sp4, access manager 7.1 and policy agent 2.2. installation process of policy agent asks for server startup script (startWebLogic.cmd) which i found under my server instance catalogue. the only issue is that my server instance is installed as a windows service and should not be started in a command window.
    am i safe with just specifying the path to the startup script or is there another way of dealing with this issue?
    might be a dumb question, but it would be nice to be sure that i'm doing the right thing before i go ahead and install policy agent. :)
    thanks,
    tb

    Hi,
    I have not set it up as a window service but can try to help. for one thing, this step is not permanent and if it does not work then you can undo this step by re-editting the script to remove the line you added. This step has you change the bea startup script for that domain to call the agent script setAgentEnv_AdminServer(it ws copied into bea domain directory during installation of agent) which just sets some agent resources in the classpath. If you start bea and those things are not in the classpath etc then agent wont work. So no permanent damage, you can change it if it doesnt work.
    I suggest you try it out and start the bea server as a service and see if it works - if not try again.
    I am not sure what the windows service would use to start the app server, but somehow it must specify some environment properties and things in its classpath, so if this script doesnt work then you can just do the things in the setAgentEnv_AdminServer script like setting those things in classpath.
    Please let us know if it works and if any extra steps required? Would be helpful to others to know how to configure as a windows service.
    hth,
    Sean

  • Weblogic startup stucked while starting OBIEE 11g services

    Hi ,
    Below is an excerpt(last 3 lines) from the wls startup screen , i.e. While starting BI services .
    *<Mar 11, 2013 12:53:53 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>*
    *<Mar 11, 2013 12:53:53 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>*
    *<Mar 11, 2013 12:53:54 PM IST> <Notice> <Log Management> <BEA-170019> <The server log file D:\OBI11g_Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\logs\AdminServer.log is opened. All server side log events will be written to this file.>*
    After this screen , nothing happens ! Please suggest how to TROUBLESHOOT .

    Try to stop all the services and force kill any pending sessions from OS and try re-starting .?
    Hope this helps.

  • Weblogic Startup Stuck While Starting OBIEE 11g Services

    When starting OBIEE 11g, startup stuck with this message:
    <Info> <Management> <BEA-141107> <Version: WebLogic  Server 10.3.5.0  Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Notice> <Log Management> <BEA-170019> <The server
    log file D:\app\oracle\product\OBI11G\user_projects\domains\bifoundation_domain\
    servers\AdminServer\logs\AdminServer.log is opened. All server side log events w
    ill be written to this file.>
    Please help what could be the cause for this.
    Thanks

    Hi, can u please explain in details how to remove locks and which locks u remove on Weblogic Admin Server ?
    I met the same issues here and already try to remove :
    a) $DOMAIN_HOME/servers/<server_name>/tmp/<servermame>.lok
    b) $DOMAIN_HOME/servers/<server_name>/data/ldap/ldapfiles/EmbeddedLDAP.lok
    Thanks.

  • How to Migrate OC4J EJB Web service to Weblogic

    Hello,
    We have a J2EE app developed under OC4J that needs to be migrated to weblogic 10.x. It uses web services mapped to EJB's with the oracle.j2ee.ws.SessionBeanWebService class, example setup:
    <servlet>
    <servlet-name>CreditCardManager</servlet-name>
    <servlet-class>oracle.j2ee.ws.SessionBeanWebService</servlet-class>
    <init-param>
    <param-name>jndi-name</param-name>
    <param-value>CreditCardManagerBean</param-value>
    </init-param>
    </servlet>
    Can someone point me to any docs on how to create the equivalent objects in Weblogic?
    Thanks,
    Leor

    Microsoft webservices uses HTTP sessions to maintain state. That means that the webservice sends a token to the client to be passed back on subsequent calls.
    Unfortunately, the webservice control in 8.1 doesn't know how to send the session token back to the MS webservice. The webservice control knows how to talk SOAP only. It doesn't know about session tokens. The reason for this is the different protocols available to transmit SOAP. Most of them are not HTTP session aware.
    Workshop webservices uses conversation ID's that are contained within the SOAP header to maintain state. That way, we don't have the dependency on the session state for maintaining state.
    The way to handle Microsoft's stateful webservice implementation is to create a custom webservice control that uses an HTTP client. Query the HTTP client for the session cookie. Store the session token and send it with subsequent calls to the MS webservice.
    Thanks,
    David Gorton
    Workshop Customer Centric Engineering

  • Accessing config information in XML file in a Weblogic web service (JWS)

    Problem:
    I have implemented a web service for sending emails and pages via Java Mail and SNPP respectively using WebLogic Workshop on the BEA WebLogic 8.1 platform. In the service, I use certain pieces of information that are currently stored in an XML file on disk. Also, in its current state, the web service is implemented with public methods directly in the .jws Java file and not as a session bean. The file read from disk is performed every time the web service operation to send a message is invoked. As we all know, the I/O files access is very expensive and a performance bottleneck, especially when it is incurred on every invocation of the web service ‘sendMessage’ [operation.
    Without radically re-writing the application, I am looking for a way to improve the performance of the web service and can only come up with the following 2 ways:
    1) Move the code out of the sendMessage operation: Here, the main question I have is 'to where should I move it to'? I have seen in the WebLogic Workshop documentation that WebLogic Server maintains only a single instance of a Java class that implements a Web Service operation, and each invoke of the Web Service uses this same instance. In that case, I should be able to put the code in the constructor so that the files is read only at the time the class is instantiated, but a constructor in the .jws file that contains the web service operations itself does not seem to be invoked by the container (I tried to put a breakpoint in the constructor, but it seems that the constructor code never gets called)
    2) Move the configuration variables into some type of standard configuration file of WebLogic, something like web.xml or wlw-config.xml or jws-config.properties files. But I found that these XML files have an associated schema to conform to and do not provide any custom elements or attributes that I could add for my application(is that true?). Also, if I can somehow put the configuration information into any of these standard files, how do I access it from within the application 'without' doing a file read from disk? Are these configuration file items available in memory for access and use by the web service and if they are, what API can I use to access and use them?
    Any and all ideas are welcome!
    Thanks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I have been looking into a similar problem. Since web services are by design stateless, they aren't good for 'remembering' information between calls. Aside from a file read, the only other solution I have found is to use a database. You can make use of an entity bean or simply make some kind of JDBC call. I don't know if you need to stick with the config file, but if so maybe you could read the config data into a database once and then you might have faster access than reading from a file. I'm not sure about which would have better performace, but its all I have come up with so far. What parser are you using to read your XML file? Have you tried others to see if they have better performance?

  • Facing issue while business service in weblogic Env

    Hi All,
    I am facing issue while creating a business service in the application. I have deployed my jar file which contain the XAI service under businessApp,Standalone folder of the app as well as i had placed the generated XML file of mine servicer under the xmlMetaInfo Folder of the app. After bouncing the server and when i am creating the business with the schema provided below i am getting an exception :
    Schema:
    <schema pageAction="read">
    <EMAILID mapField="EMAILID"/>
    <USER_FLG mapField="USER_FLG"/>
    <FIRST_NAME mapField="FIRST_NAME"/>
    <LAST_NAME mapField="LAST_NAME"/>
    <USER_ID mapField="USER_ID"/>
    <PASSWORD mapField="PASSWORD"/>
    <USER_GROUP_1 type="group">
    <userGroup mapField="USR_GRP_ID1"/>
    </USER_GROUP_1>
    <USER_GROUP_2 type="group">
    <userGroup mapField="USR_GRP_ID2"/>
    </USER_GROUP_2>
    <USER_GROUP_3 type="group">
    <userGroup mapField="USR_GRP_ID3"/>
    </USER_GROUP_3>
    <USER_GROUP_4 type="group">
    <userGroup mapField="USR_GRP_ID4"/>
    </USER_GROUP_4>
    <USER_GROUP_5 type="group">
    <userGroup mapField="USR_GRP_ID5"/>
    </USER_GROUP_5>
    <USER_GROUP_6 type="group">
    <userGroup mapField="USR_GRP_ID6"/>
    </USER_GROUP_6>
    <USER_GROUP_7 type="group">
    <userGroup mapField="USR_GRP_ID7"/>
    </USER_GROUP_7>
    <USER_GROUP_8 type="group">
    <userGroup mapField="USR_GRP_ID8"/>
    </USER_GROUP_8>
    <USER_GROUP_9 type="group">
    <userGroup mapField="USR_GRP_ID9"/>
    </USER_GROUP_9>
    <USER_GROUP_10 type="group">
    <userGroup mapField="USR_GRP_ID10"/>
    </USER_GROUP_10>
    <USER_GROUP_11 type="group">
    <userGroup mapField="USR_GRP_ID11"/>
    </USER_GROUP_11>
    <USER_GROUP_12 type="group">
    <userGroup mapField="USR_GRP_ID12"/>
    </USER_GROUP_12>
    <MESSAGE_TEXT mapField="MESSAGE_TEXT"/>
    </schema>
    Exception While creating the business Service :
    SYSUSER - 899645-93-1 2013-02-18 17:17:42,679 [[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR (service.metainfo.MetaInformationRepository) Service metainfo missing for 'CMUSER5'
    com.splwg.shared.common.LoggedException: Service metainfo missing for 'CMUSER5'
    at com.splwg.shared.common.LoggedException.raised(LoggedException.java:65)
    at com.splwg.base.support.service.metainfo.MetaInformationRepository.privateGetMetaInfoURL(MetaInformationRepository.java:171)
    at com.splwg.base.support.service.metainfo.MetaInformationRepository.buildMetaInfo(MetaInformationRepository.java:183)
    at com.splwg.base.support.service.metainfo.MetaInformationRepository.privateGetMetaInformation(MetaInformationRepository.java:105)
    at com.splwg.base.support.service.metainfo.MetaInformationRepository.getMetaInformation(MetaInformationRepository.java:98)
    at com.splwg.base.support.schema.validation.BusinessServiceSchemaValidator.initialize(BusinessServiceSchemaValidator.java:28)
    at com.splwg.base.support.schema.validation.SchemaValidator.validate(SchemaValidator.java:102)
    at com.splwg.base.domain.common.schema.Schema_CHandler.validateBusinessServiceSchema(Schema_CHandler.java:67)
    at com.splwg.base.domain.common.schema.Schema_CHandler.validateSchema(Schema_CHandler.java:55)
    at com.splwg.base.domain.common.schema.Schema_CHandler.access$000(Schema_CHandler.java:30)
    at com.splwg.base.domain.common.schema.Schema_CHandler$ValidateSchemaDefinitionAsValidXml.validateSave(Schema_CHandler.java:147)
    at com.splwg.base.domain.common.schema.Schema_CHandler$ValidateSchemaDefinitionAsValidXml.validateSave(Schema_CHandler.java:124)
    at com.splwg.base.api.changehandling.AbstractCustomRule.validateSave(AbstractCustomRule.java:86)
    at com.splwg.base.support.changehandlers.ChangeEventHandler.applyRule(ChangeEventHandler.java:300)
    at com.splwg.base.support.changehandlers.ChangeEventHandler.access$300(ChangeEventHandler.java:37)
    at com.splwg.base.support.changehandlers.ChangeEventHandler$2.run(ChangeEventHandler.java:225)
    at com.splwg.base.support.changehandlers.ChangeEventHandler$JumpToChangeHandlerRunner.run(ChangeEventHandler.java:339)
    at com.splwg.base.support.interception.SessionInterceptionManager.notifyGenericCallStackJump(SessionInterceptionManager.java:268)
    at com.splwg.base.support.context.FrameworkSession.notifyGenericCallStackJump(FrameworkSession.java:1473)
    at com.splwg.base.support.changehandlers.ChangeEventHandler.executeValidation(ChangeEventHandler.java:229)
    at com.splwg.base.support.changehandlers.SessionChangeManager.fireSaveValidations(SessionChangeManager.java:223)
    at com.splwg.base.support.changehandlers.SessionChangeManager.processSave(SessionChangeManager.java:204)
    at com.splwg.base.support.context.FrameworkSession.processSave(FrameworkSession.java:1102)
    at com.splwg.base.support.interception.SessionInterceptionManager.saveChangesCalled(SessionInterceptionManager.java:233)
    at com.splwg.base.support.context.FrameworkSession.saveChanges(FrameworkSession.java:1121)
    at com.splwg.base.api.GenericBusinessObject.saveChanges(GenericBusinessObject.java:149)
    at com.splwg.base.support.pagemaintenance.EntityPageMaintenance.add(EntityPageMaintenance.java:121)
    at com.splwg.base.support.pagemaintenance.AbstractPageMaintenance.addItem(AbstractPageMaintenance.java:169)
    at com.splwg.base.support.service.JavaPageAddService.add(JavaPageAddService.java:40)
    at com.splwg.base.support.service.PageAddService.privateAdd(PageAddService.java:95)
    at com.splwg.base.support.service.PageAddService.privateExecute(PageAddService.java:74)
    at com.splwg.base.support.service.PageAddService.execute(PageAddService.java:31)
    at com.splwg.base.api.service.ServiceDispatcher.addItemInSession(ServiceDispatcher.java:218)
    at com.splwg.base.api.service.ServiceDispatcher$2.execute(ServiceDispatcher.java:119)
    at com.splwg.base.api.service.ServiceDispatcher$2.execute(ServiceDispatcher.java:118)
    at com.splwg.base.support.context.SessionExecutable.doInNewSession(SessionExecutable.java:39)
    at com.splwg.base.api.service.ServiceDispatcher.addItem(ServiceDispatcher.java:123)
    at com.splwg.ejb.service.impl.ServiceBean$4.compute(ServiceBean.java:93)
    at com.splwg.ejb.service.impl.ServiceBean$4.compute(ServiceBean.java:92)
    at com.splwg.ejb.service.impl.AbstractServiceBeanInvocationHelper.computeWithTranslatedExceptions(AbstractServiceBeanInvocationHelper.java:25)
    at com.splwg.ejb.service.impl.ServiceBeanInvocationHelper.execute(ServiceBeanInvocationHelper.java:12)
    at com.splwg.ejb.service.impl.ServiceBean.add(ServiceBean.java:91)
    at com.splwg.ejb.service.impl.SPLServiceBean_8o7vtd_EOImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
    at com.splwg.ejb.service.impl.SPLServiceBean_8o7vtd_EOImpl.add(Unknown Source)
    at com.splwg.ejb.service.impl.SPLServiceBean_8o7vtd_EOImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
    at com.splwg.ejb.service.impl.SPLServiceBean_8o7vtd_EOImpl_1035_WLStub.add(Unknown Source)
    at com.splwg.serviceclient.RemoteServiceDispatcher$4.executeService(RemoteServiceDispatcher.java:79)
    at com.splwg.serviceclient.RemoteServiceDispatcher$4.executeService(RemoteServiceDispatcher.java:78)
    at com.splwg.serviceclient.RemotePageServiceDispatcherHelper.doIt(RemotePageServiceDispatcherHelper.java:19)
    at com.splwg.serviceclient.RemoteServiceDispatcher.add(RemoteServiceDispatcher.java:76)
    at com.splwg.base.web.dataservlet.PageAdd.privateDoPost(PageAdd.java:40)
    at com.splwg.base.web.dataservlet.MutatingPageServlet.doPost(MutatingPageServlet.java:26)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at com.splwg.base.web.services.RequestContextFilter.doFilter(RequestContextFilter.java:50)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    SYSUSER - 899645-93-1 2013-02-18 17:17:42,688 [[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR (api.service.ServiceExecutionPolicy) Rollback: Add failed
    Please help me out with this issue as it is blocking mine development time.
    Thanks,

    By default, WLP stores policy data such as roles/users/groups in both weblogic server embedded ldap and db to support user entitlements.
    The WebLogic Server embedded LDAP server for a domain consists of a master LDAP server, maintained in the domain’s Administration Server, and a replicated LDAP server maintained in each Managed Server in the domain. I think in your case, the ldap data of admin server and all managed server are not in sync.
    Probably you have checked "Refresh Replica At Startup" - when enabled/checked the embedded LDAP server in a Managed Server will refresh all replicated data at boot time only. That is reason why when you restart the servers, the roles populated from all managed servers.
    For more details see the doc at http://docs.oracle.com/cd/E15051_01/wls/docs103/secmanage/ldap.html#wp1102162

  • Federation using weblogic as an IDP and OIF as a SP(service Provider)

    Hi,
    I am facing some problem during SAML creation.
    I am using weblogic as an Identity Provider and Oracle Identity federation (OIF) as a service Provider. The federation will be IDP(weblogic) initiated.
    I have configured both sides , published metadata and exchanged.
    Is there any out of box feature of weblogic by which we can use SAML after configuration only or we need to write a separate java code(Login page.jsp etc) in order to create login page and using the entire configuration which I made in weblogic.
    I am using OIF as service provider . I have Exchanged metadata of OIF and weblogic as part of building trust between IDP and SP.
    IF I had used OIF at both sides in that case my job would be pretty easy (cause OIF is specifically built for this purpose. But our requirement is different as I have to use weblogic as an IDP).
    What URL I need to hit for SAML if there is out of box feature in weblogic for using SAML(after configuring everything in weblogic).
    Thanks.
    Piyush

    Weblogic itself does not have an identity provisioning store, you will have to employ a provisioning mechanism.
    -MD

  • Running JRA recording with Weblogic running as a service

    Is it possible to run JRA recording while running the WebLogic application server as a service?
    The spec for our environment is as follows:
    - JRockit JVM version: JRRT 3.1.0 1.4.2
    - Weblogic version: 8.1 SP6
    - OS: Windows XP SP3
    Ideally, we would like to be able to run JRA recording every hour as an automated process, however as there is no java.exe process to attach to it seems this might not be a possibility? I appreciate is certainly possible to run the application as a console application and attach to the PID of a running java process using JRCMD if WebLogic is not running as a service. Are there any solutions for taking JRA recordings when JRockit is running in a Weblogic Service?

    Tim,
    You can try to run beasvc.exe in debug mode, from a command prompt after the
    server is booted. You can run it by: >beasvc -debug ...
    This will simulate the service being started in the foreground so that you can
    see output messages. You may be trying to run beasvc in a way that is not
    intended. If you continue to have issues, you should open a case with BEA
    Support.
    Regards,
    Glenn
    Developer Relations Engineer
    BEA Support
    Tim Isenhart wrote:
    I want to collect performance data from weblogic running as a service. I
    customized the commandline in the installSvc script and inserted a profiler
    class in front of weblogic.Server.
    When i start the service, beasvc crashes.
    How can i work around this without resorting to running a manual script ?
    Thx,
    Tim

  • Help on setting up weblogic 9.1 as windows service

    Hi,
    I want to install weblogic 9.1 to run as windows service.
    Can any body point me to steps?

    Please follow this link, you can get an idea from this link
    http://egeneration.beasys.com/wls/docs81/adminguide/winservice.html
    Thanks
    Togotutor
    <b><a class="jive-link-external" href="http://www.togotutor.com">http://www.togotutor.com</a> (Learn Programming and Administration for Free)</b>

  • How to start  weblogic server automattically (services.msc)

    Hi Experts,
    I would like to monitor Hyperion services. ( I know only weblogic console option; please let me better option if any)
    I regularly login to Hyperion server and start admin server for weblogic then using url for console I check status of all service.
    start>Programs> Oracle Weblogic>user projects>EPM System> start Admin server for Weblogic
    but when i logout from Hyperion server admin server for weblogic automatically logout. Please suggest which services i can put automatically in windows services (services.msc) so that i need not to start manually.
    Please help
    Regards,
    Kumar

    Have a search on the internet for "weblogic admin server as a windows service" and you will gets lots of results.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • Profit center field in FIBLFFP- free form payment

    Hi, We need profit center field in the screen of FIBLFFP as it is not present currently in the t code FIBLFFP. We needed this field as New G/l has been implemented and document splitting is active based on the profit center but we have not marked man

  • Info record lead time default

    Hey Gurus, We have a situation in which the business is maintaining planned delivery lead time in the info record as to the material master.  There are values in both but we are finding that when running CTM that it is using the planned delivery time

  • Plus vs desktop in export excel with drill

    Hi, In a crosstab report, if I do a drill down, there is a date on the left which remains blank if the date repeats itself. If I export the report to excel from DESKTOP, the date (even if blank in the report) is repeated in the excel report which is

  • "Views" column works only if excluding its posters

    "Views" column is a good idea, thanks, (and finally we would not need a "Read vs Unread" column if only the small blue dots were not SO small) but it would be nice if it showed the actual number of visits. As it is now, it mainly shows how many times

  • Manufacturing marks on new mac

    I just purchased a 13inch new aluminum body mac. It has extremely small dots..like one on each surface. The dot is not just a mark...an extremley extremely tiny hole. Is it a finishing defect? My mac is just a day old, its been lying in one place so