Setup Of Domains Using wlserver

Not sure if this is the correct newsgroup but I am looking at tring to get a domain setup using ant and wlserver. The simple examples that are listed on dev2dev seem to report success but the directories of the domain are empty.
I can create domains using configuration wizard that do show up properly and actually contain startup scripts in the directories created but it invloves scripts and reference jars thus makes the install more complex and needs environment builders with more skill sets.
Any ideas why the wlserver does not create all the artifacts to truly start a server for a new domain??
Thanks,
-Tony

Settings > Store , tap the account on the right-hand side, log out of it and then in with the other one. If you added any apps/music/films from your account on your computer then they will be removed when the other person syncs to their own computer - an iPad is only supposed to be used with one computer at a time.

Similar Messages

  • Have any companies setup  a domain with cluster using  BEA platform8.1 sp2?

    Hi, everyone,
    Do you know who has setup a domain with cluster in production using BEA platform8.1 sp2. That is, the customer uses portal and integration in the same managed server, and uses the cluster technique.
    I want to know whether there was a successful case or not till now. If possible, please send me some information about it. My account is [email protected], or [email protected]
    Thank you very much.
    Loen xie

    Hi, everyone,
    Do you know who has setup a domain with cluster in production using BEA platform8.1 sp2. That is, the customer uses portal and integration in the same managed server, and uses the cluster technique.
    I want to know whether there was a successful case or not till now. If possible, please send me some information about it. My account is [email protected], or [email protected].
    Thank you very much.
    Loen xie

  • Problem Using wlserver task in ant file

    I am trying to create a weblogic domain using the following in my ant file:
    <target name="new-server">
    <mkdir dir="/opt/deployment/domains" />
    <wlserver dir="/opt/deployment/domains"
    beahome="/opt/bea"
    domainname="SandboxDomain"
    servername="AdminServer"
    host="localhost" port="7001"
    generateConfig="true"
    username="weblogic" password="password"
    productionmodeenabled="false"
    action="start" failonerror="true" />
    </target>
    However, I keep getting the following exception:
    [wlserver] Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/Server
    I am executing the ant script by placing the weblogic.jar file in the lib directory of ant. I am also using ant version 1.6.2. Any suggestions on how to remedy this problem would be appreciated.

    Hi,
    Had the same problem, try adding the classpath attribute to the wlserver tasks.
    example:
    <wlserver dir="${SERVER_DOMAINS}/test_domain"
    beahome="${SERVER_ROOT}"
    weblogichome="${SERVER_WEBLOGIC_HOME}"
    generateConfig="true"
    host="localhost"
    port="6001"
    username="${WEBLOGIC_USER}"
    password="${WEBLOGIC_PASSWORD}"
    servername="testServer"
    action="start"
    classpath="<wl_installdir>\server\lib\weblogic.jar">
    Regards,

  • How to start weblogic instance using wlserv ant task

    Hi,
    Iam using weblogic 8.1
    Iam trying to write build script which starts remote weblogic instance and does deploy using wldeploy and restarts the instance.
    First iam trying with starting weblogic.
    ==============================
    <wlserver
                   dir="${server.project.root.dir}"
                   domainName="${weblogic.domain.name}"
                   serverName="${weblogic.server.name}"
                   host="10.106.90.50"
                   port="8001"
                   generateConfig="true"
                   productionModeEnabled="false"
                   weblogicHome="${weblogic.home}/weblogic81"
              username="weblogic"
                   password="password"
                   args = "-XX:MaxPermSize=512M -Xms256m -Xmx512m"
                   action="start">
                   <classpath refid="weblogic.classpath"/>
              </wlserver>
    ==============================
    Iam getting an issue here , it starts the weblogic but automatically it stops the weblogic , without any exception.
    as per their documentation
    "When you use the wlserver task in an Ant script, the task does not return control until the specified server is available and listening for connections. If you start up a server instance using wlserver, the server process automatically terminates after the Ant VM terminates. If you only connect to a currently-running server using the wlserver task, the server process keeps running after Ant completes."
    I understand what they are saying , but what is the remedy to it , how to rectify it. I tried starting default server it gives NPE.
    ITs kinda very urgent for me any help , or available scripts will be very use ful.
    Thanks in advance.

    meghab,
    Thanks for the reply.
    I tried using java task , now the server is starting sucessfully but iam getting exception while starting the Queue.
    Here is my ant task.
    ===================================
    <target name="weblogicrun">
              <java fork="yes" dir="${weblogic.domain.dir}" classpathref="weblogic-classpath" classname="weblogic.Server">
                   <jvmarg value="-server"/>
                   <jvmarg value="-Dweblogic.Name=MyAppServer"/>
                   <jvmarg value="-Dweblogic.RootDirectory=${weblogic.config.dir}"/>
                   <jvmarg value="-Xms256m"/>
                   <jvmarg value="-Xmx512m"/>
                   <jvmarg value="-XX:MaxPermSize=128m"/>
                   <jvmarg value="-da"/>
                   <jvmarg value="-Dplatform.home=D:/bea"/>
                   <jvmarg value="-Dwls.home=D:/bea/weblogic81/server"/>
                   <jvmarg value="-Dweblogic.ProductionModeEnabled=false"/>
                   <jvmarg value="-Djava.security.policy=D:/bea/weblogic81/server/lib/weblogic.policy"/>
              </java>
         </target>
    ===================================
    In my project i have default queue , it gives INSTANTIATION EXCEPTION while trying to invoke weblogic.jms.common.DestinationImpl
    ==================================
    java.lang.InstantiationError: weblogic.jms.common.DestinationImpl
    =====================================
    Iam providing the config information from config.xml
    <JMSServer Name="WSStoreForwardInternalJMSServerMyServer"
    Store="FileStore" Targets="MyAppServer">
    <JMSQueue CreationTime="1179819623120"
    JNDIName="jms.internal.queue.WSStoreForwardQueue"
    JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSStoreForwardQueueCCAppServer"/>
    <JMSQueue CreationTime="1179819623511"
    JNDIName="jms.internal.queue.WSDupsEliminationHistoryQueue"
    JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSDupsEliminationHistoryQueueMyAppServer"/>
    </JMSServer>
    =========================================
    The full exception stack is below...
    [java] <Oct 11, 2007 1:54:28 PM IST> <Notice> <WebLogicServer> <BEA-000327> <Starting WebLogic Admin Server "MyAppServer" for domain "MyAppDomain">
    [java] <Oct 11, 2007 1:54:41 PM IST> <Error> <JMS> <BEA-040368> <The following exception has occurred:
    [java] java.lang.InstantiationError: weblogic.jms.common.DestinationImpl
    [java] at weblogic.jms.backend.BEDestination.initialize(BEDestination.java:801)
    [java] at weblogic.jms.backend.BEDestination.initialize(BEDestination.java:341)
    [java] at weblogic.jms.backend.BackEnd.createDestination(BackEnd.java:1952)
    [java] at weblogic.jms.backend.BackEnd.initialize(BackEnd.java:667)
    [java] at weblogic.jms.JMSService.addJMSServer(JMSService.java:2247)
    [java] at weblogic.jms.JMSService.addDeployment(JMSService.java:2031)
    [java] at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:337)
    [java] at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:597)
    [java] at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:575)
    [java] at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:241)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java] at java.lang.reflect.Method.invoke(Method.java:324)
    [java] at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:755)
    [java] at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:734)
    [java] at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:516)
    [java] at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    [java] at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    [java] at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:990)
    [java] at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:948)
    [java] at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:948)
    [java] at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:475)
    [java] at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(ServerMBean_Stub.java:7731)
    [java] at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java:1321)
    [java] at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:339)
    [java] at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:229)
    [java] at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:136)
    [java] at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:965)
    [java] at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:360)
    [java] at weblogic.Server.main(Server.java:32)
    Am i missing something.
    Thanks in advance.
    Edited by rdayalan at 10/11/2007 1:45 AM

  • Joining a computer to the domain using the netbios name VS the FQDN

    Where I work we must join computers to the domain using the netbios name (ex: mycomp) vs the FQDN mycompany.tx.com or else problems occur and the computer must be rejoined to the domain again with the netbios name- it can be joined to the domain initially, but after about 15 - 30 mins we'll get an error message when trying to logon.
    The error message I believe is:
    "The system cannot log you on to this domain because the system's computer account in its primary domain is missing or the password on the account is incorrect."
    I haven't seen it happen in a while, but if I remember correctly this is the error message we get -I could be wrong though.
    It may also have just been a "domain is not available" message.
    Some additional info:
    The netbios domain name is diffent then the DNS name ie: "mycompany.tx.com" was not made "mycompany" for netbios, but "mycomp" instead.
    Our DFL is mixed mode with some 2000 and some 2003 servers
    We used to use WINS, but now we do not.
    And lastly we usually add a WINS address along with the dns address in each workstation via "advanced TCP/IP settings" (why I do not know) and occationally I will not be able to join a computer to the domain until I add this WINS address. I know what your thinking, and I will say that I am not 100% all of our WINS server were deactivated. 
    Any info on how to figure this out or troubleshoot this would be greatly apprieciated. Thanks a lot. 

    Well this happened again.
    As a test before I deployed a PC to one of our branches I joined it to the domain via the FQDN: mycompany.tx.com instead of the netbios name: mycomp prior to shipping. It spent a few days in transit and when it arrived a user plugged it in and tried to logon, but recieved this message:
    "The system cannot log you on to this domain because the system's computer account in its primary domain is missing or the password on that account is incorrect"
    I realize this error message maybe unrelated, but if I recall correctly this is what happened last time.
    I pretty sure I was thorough in removing the computer account from the nessesary DCs (it failed and needed to be replaced) before I joined the replacement to the domain with the same name.
    Rejoining to the domain via "mycomp" corrected the issue.
    Netlogsetup.log:
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpValidateName: checking to see if 'BR021WS025' is valid as type 1 name
    01/06 15:24:01 NetpCheckNetBiosNameNotInUse for 'BR021WS025' [MACHINE] returned 0x0
    01/06 15:24:01 NetpValidateName: name 'BR021WS025' is valid for type 1
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpValidateName: checking to see if 'BR021WS025.mycompany.tx.com' is valid as type 5 name
    01/06 15:24:01 NetpValidateName: name 'BR021WS025.mycompany.tx.com' is valid for type 5
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpValidateName: checking to see if 'FGYJ' is valid as type 2 name
    01/06 15:24:01 NetpCheckNetBiosNameNotInUse for 'FGYJ' [ Workgroup as MACHINE]  returned 0x0
    01/06 15:24:01 NetpValidateName: name 'FGYJ' is valid for type 2
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpUnJoinDomain: unjoin from 'mycomp' using '(null)' creds, options: 0x4
    01/06 15:24:01  OS Version: 5.0
    01/06 15:24:01  Build number: 2195
    01/06 15:24:01  ServicePack: Service Pack 4
    01/06 15:24:01 NetpUnJoinDomain: status of getting computer name: 0x0
    01/06 15:24:01 NetpApplyJoinState: actions: 0xb803a
    01/06 15:24:01 NetpDsGetDcName: trying to find DC in domain 'mycomp', flags: 0x1020
    01/06 15:24:01 NetpDsGetDcName: failed to find a DC in the specified domain: 0x54b
    01/06 15:24:01 NetpApplyJoinState: initiating a rollback due to earlier errors
    01/06 15:24:01 NetpApplyJoinState: actions: 0x40000
    01/06 15:24:01 NetpGetLsaPrimaryDomain: status: 0x0
    01/06 15:24:01 NetpUnJoinDomain: status: 0x54b
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpUnJoinDomain: unjoin from 'mycomp' using '(null)' creds, options: 0x0
    01/06 15:24:01  OS Version: 5.0
    01/06 15:24:01  Build number: 2195
    01/06 15:24:01  ServicePack: Service Pack 4
    01/06 15:24:01 NetpUnJoinDomain: status of getting computer name: 0x0
    01/06 15:24:01 NetpApplyJoinState: actions: 0xb003a
    01/06 15:24:02 NetpApplyJoinState: status of stopping and setting start type of Netlogon to 16: 0x0
    01/06 15:24:06 NetpApplyJoinState: status of stopping and setting start type of TimeSvc to 16: 0x0
    01/06 15:24:06 NetpGetLsaPrimaryDomain: status: 0x0
    01/06 15:24:06 NetpLsaOpenSecret: status: 0x0
    01/06 15:24:06 NetpLsaOpenSecret: status: 0x0
    01/06 15:24:06 NetpSetLsaPrimaryDomain: for 'mycomp' status: 0x0
    01/06 15:24:06 NetpApplyJoinState: status of setting LSA pri. domain: 0x0
    01/06 15:24:07 NetpApplyJoinState: status of removing from local groups: 0x0
    01/06 15:24:07 NetpApplyJoinState: NON FATAL: status of removing DNS registrations: 0x0
    01/06 15:24:07 NetpUnJoinDomain: status: 0x0
    01/06 15:24:12 -----------------------------------------------------------------
    01/06 15:24:12 NetpDoDomainJoin
    01/06 15:24:12 NetpMachineValidToJoin: 'BR063WS014'
    01/06 15:24:12 NetpGetLsaPrimaryDomain: status: 0x0
    01/06 15:24:12 NetpMachineValidToJoin: status: 0x0
    01/06 15:24:12 NetpJoinWorkgroup: joining computer 'BR063WS014' to workgroup 'FGYJ'
    01/06 15:24:12 NetpValidateName: checking to see if 'FGYJ' is valid as type 2 name
    01/06 15:24:12 NetpCheckNetBiosNameNotInUse for 'FGYJ' [ Workgroup as MACHINE]  returned 0x0
    01/06 15:24:12 NetpValidateName: name 'FGYJ' is valid for type 2
    01/06 15:24:13 NetpSetLsaPrimaryDomain: for 'FGYJ' status: 0x0
    01/06 15:24:13 NetpJoinWorkgroup: status:  0x0
    01/06 15:24:13 NetpDoDomainJoin: status: 0x0
    01/07 10:49:50 -----------------------------------------------------------------
    01/07 10:49:50 NetpValidateName: checking to see if 'mycompany.tx.com' is valid as type 3 name
    01/07 10:49:50 NetpValidateName: 'mycompany.tx.com' is not a valid NetBIOS domain name: 0x7b
    01/07 10:49:50 NetpCheckDomainNameIsValid [ Exists ] for 'mycompany.tx.com' returned 0x0
    01/07 10:49:50 NetpValidateName: name 'mycompany.tx.com' is valid for type 3
    01/07 10:49:59 -----------------------------------------------------------------
    01/07 10:49:59 NetpDoDomainJoin
    01/07 10:49:59 NetpMachineValidToJoin: 'BR021WS025'
    01/07 10:49:59 NetpGetLsaPrimaryDomain: status: 0x0
    01/07 10:49:59 NetpMachineValidToJoin: status: 0x0
    01/07 10:49:59 NetpJoinDomain
    01/07 10:49:59  Machine: BR021WS025
    01/07 10:49:59  Domain: mycompany.tx.com
    01/07 10:49:59  MachineAccountOU: (NULL)
    01/07 10:49:59  Account: mycompany.tx.com\myUserName
    01/07 10:49:59  Options: 0x27
    01/07 10:49:59  OS Version: 5.0
    01/07 10:49:59  Build number: 2195
    01/07 10:49:59  ServicePack: Service Pack 4
    01/07 10:49:59 NetpValidateName: checking to see if 'mycompany.tx.com' is valid as type 3 name
    01/07 10:49:59 NetpValidateName: 'mycompany.tx.com' is not a valid NetBIOS domain name: 0x7b
    01/07 10:49:59 NetpCheckDomainNameIsValid [ Exists ] for 'mycompany.tx.com' returned 0x0
    01/07 10:49:59 NetpValidateName: name 'mycompany.tx.com' is valid for type 3
    01/07 10:49:59 NetpDsGetDcName: trying to find DC in domain 'mycompany.tx.com', flags: 0x1020
    01/07 10:50:00 NetpDsGetDcName: found DC '\\br041svr.mycompany.tx.com' in the specified domain
    01/07 10:50:00 NetpJoinDomain: status of connecting to dc '\\br041svr.mycompany.tx.com': 0x0
    01/07 10:50:00 NetpGetLsaPrimaryDomain: status: 0x0
    01/07 10:50:00 NetpLsaOpenSecret: status: 0xc0000034
    01/07 10:50:00 NetpGetLsaPrimaryDomain: status: 0x0
    01/07 10:50:00 NetpLsaOpenSecret: status: 0xc0000034
    01/07 10:50:01 NetpManageMachineAccountWithSid: NetUserAdd on '\\br041svr.mycompany.tx.com' for 'BR021WS025$' failed: 0x8b0
    01/07 10:50:01 NetpManageMachineAccountWithSid: status of attempting to set password on '\\br041svr.mycompany.tx.com' for 'BR021WS025$': 0x0
    01/07 10:50:01 NetpJoinDomain: status of creating account: 0x0
    01/07 10:50:01 NetpJoinDomain: status of setting netlogon cache: 0x0
    01/07 10:50:01 NetpGetLsaPrimaryDomain: status: 0x0
    01/07 10:50:02 NetpSetLsaPrimaryDomain: for 'mycomp' status: 0x0
    01/07 10:50:02 NetpJoinDomain: status of setting LSA pri. domain: 0x0
    01/07 10:50:02 NetpJoinDomain: status of managing local groups: 0x0
    01/07 10:50:03 NetpJoinDomain: status of setting ComputerNamePhysicalDnsDomain to 'mycompany.tx.com': 0x0
    01/07 10:50:04 NetpJoinDomain: status of starting Netlogon: 0x0
    01/07 10:50:04 NetpWaitForNetlogonSc: waiting for netlogon secure channel setup...
    01/07 10:50:06 NetpWaitForNetlogonSc: status: 0x0, sub-status: 0x0
    01/07 10:50:06 NetpJoinDomain: status of disconnecting from '\\br041svr.mycompany.tx.com': 0x0
    01/07 10:50:06 NetpDoDomainJoin: status: 0x0
    01/11 11:21:08 -----------------------------------------------------------------
    01/11 11:21:08 NetpValidateName: checking to see if 'WK' is valid as type 2 name
    01/11 11:21:20 NetpCheckNetBiosNameNotInUse for 'WK' [ Workgroup as MACHINE]  returned 0x0
    01/11 11:21:20 NetpValidateName: name 'WK' is valid for type 2
    01/11 11:21:20 -----------------------------------------------------------------
    01/11 11:21:20 NetpUnJoinDomain: unjoin from 'mycomp' using '(null)' creds, options: 0x4
    01/11 11:21:20  OS Version: 5.0
    01/11 11:21:20  Build number: 2195
    01/11 11:21:20  ServicePack: Service Pack 4
    01/11 11:21:20 NetpUnJoinDomain: status of getting computer name: 0x0
    01/11 11:21:20 NetpApplyJoinState: actions: 0xb803a
    01/11 11:21:20 NetpDsGetDcName: trying to find DC in domain 'mycomp', flags: 0x1020
    01/11 11:21:56 NetpDsGetDcName: failed to find a DC having account 'BR021WS025$': 0x525
    01/11 11:21:56 NetpDsGetDcName: found DC '\\BR021SVR' in the specified domain
    01/11 11:21:56 NetUseAdd to \\BR021SVR\IPC$ returned 1326
    01/11 11:21:56 Trying add to  \\BR021SVR\IPC$ using NULL Session
    01/11 11:21:56 NetpApplyJoinState: status of connecting to dc '\\BR021SVR': 0x0
    01/11 11:21:57 NetpApplyJoinState: status of stopping and setting start type of Netlogon to 16: 0x0
    01/11 11:22:01 NetpApplyJoinState: status of stopping and setting start type of TimeSvc to 16: 0x0
    01/11 11:22:01 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:22:01 NetpLsaOpenSecret: status: 0x0
    01/11 11:22:01 NetpLsaOpenSecret: status: 0x0
    01/11 11:22:01 SamLookupNamesInDomain on BR021WS025$ failed with 0xc0000073
    01/11 11:22:01 NetpManageMachineAccountWithSid: status of disabling account 'BR021WS025$' on '\\BR021SVR': 0x534
    01/11 11:22:01 NetpApplyJoinState: status of disabling account: 0x534
    01/11 11:22:01 NetpApplyJoinState: initiating a rollback due to earlier errors
    01/11 11:22:01 NetpApplyJoinState: actions: 0x40130
    01/11 11:22:01 NetpDsGetDcName: trying to find DC in domain '(null)', flags: 0x1020
    01/11 11:22:26 NetpDsGetDcName: failed to find a DC having account 'BR021WS025$': 0x525
    01/11 11:22:26 NetpDsGetDcName: found DC '\\br021svr.mycompany.tx.com' in the specified domain
    01/11 11:22:26 NetUseAdd to \\br021svr.mycompany.tx.com\IPC$ returned 1326
    01/11 11:22:26 Trying add to  \\br021svr.mycompany.tx.com\IPC$ using NULL Session
    01/11 11:22:26 NetpApplyJoinState: status of connecting to dc '\\br021svr.mycompany.tx.com': 0x0
    01/11 11:22:26 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:22:26 NetpLsaOpenSecret: status: 0xc0000034
    01/11 11:22:27 NetpSetMachineAccountPassword: NetUserGetInfo on '\\br021svr.mycompany.tx.com' 'BR021WS025$' failed: 0x8ad
    01/11 11:22:27 NetpApplyJoinState: status of setting machine password: 0x8ad
    01/11 11:22:27 NetpApplyJoinState: status of starting and setting start type of Netlogon to 4: 0x0
    01/11 11:22:28 NetpApplyJoinState: status of starting and setting start type of TimeSvc to 4: 0x0
    01/11 11:22:28 NetpApplyJoinState: status of disconnecting from '\\br021svr.mycompany.tx.com': 0x0
    01/11 11:22:28 NetpApplyJoinState: status of disconnecting from '\\BR021SVR': 0x0
    01/11 11:22:28 NetpUnJoinDomain: status: 0x534
    01/11 11:22:28 -----------------------------------------------------------------
    01/11 11:22:28 NetpUnJoinDomain: unjoin from 'mycomp' using '(null)' creds, options: 0x0
    01/11 11:22:28  OS Version: 5.0
    01/11 11:22:28  Build number: 2195
    01/11 11:22:28  ServicePack: Service Pack 4
    01/11 11:22:28 NetpUnJoinDomain: status of getting computer name: 0x0
    01/11 11:22:28 NetpApplyJoinState: actions: 0xb003a
    01/11 11:22:58 NetpApplyJoinState: status of stopping and setting start type of Netlogon to 16: 0x0
    01/11 11:23:01 NetpApplyJoinState: status of stopping and setting start type of TimeSvc to 16: 0x0
    01/11 11:23:02 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:23:02 NetpLsaOpenSecret: status: 0x0
    01/11 11:23:02 NetpLsaOpenSecret: status: 0x0
    01/11 11:23:02 NetpSetLsaPrimaryDomain: for 'mycomp' status: 0x0
    01/11 11:23:02 NetpApplyJoinState: status of setting LSA pri. domain: 0x0
    01/11 11:23:03 NetpApplyJoinState: status of removing from local groups: 0x0
    01/11 11:23:03 NetpApplyJoinState: NON FATAL: status of removing DNS registrations: 0x0
    01/11 11:23:03 NetpUnJoinDomain: status: 0x0
    01/11 11:23:45 -----------------------------------------------------------------
    01/11 11:23:45 NetpDoDomainJoin
    01/11 11:23:45 NetpMachineValidToJoin: 'BR021WS025'
    01/11 11:23:45 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:23:45 NetpMachineValidToJoin: status: 0x0
    01/11 11:23:45 NetpJoinWorkgroup: joining computer 'BR021WS025' to workgroup 'WK'
    01/11 11:23:45 NetpValidateName: checking to see if 'WK' is valid as type 2 name
    01/11 11:23:57 NetpCheckNetBiosNameNotInUse for 'WK' [ Workgroup as MACHINE]  returned 0x0
    01/11 11:23:57 NetpValidateName: name 'WK' is valid for type 2
    01/11 11:23:58 NetpSetLsaPrimaryDomain: for 'WK' status: 0x0
    01/11 11:23:58 NetpJoinWorkgroup: status:  0x0
    01/11 11:23:58 NetpDoDomainJoin: status: 0x0
    01/11 11:33:08 -----------------------------------------------------------------
    01/11 11:33:08 NetpValidateName: checking to see if 'mycomp' is valid as type 3 name
    01/11 11:33:17 NetpCheckDomainNameIsValid [ Exists ] for 'mycomp' returned 0x0
    01/11 11:33:17 NetpValidateName: name 'mycomp' is valid for type 3
    01/11 11:34:23 -----------------------------------------------------------------
    01/11 11:34:23 NetpDoDomainJoin
    01/11 11:34:23 NetpMachineValidToJoin: 'BR021WS025'
    01/11 11:34:23 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:34:23 NetpMachineValidToJoin: status: 0x0
    01/11 11:34:23 NetpJoinDomain
    01/11 11:34:23  Machine: BR021WS025
    01/11 11:34:23  Domain: mycomp
    01/11 11:34:23  MachineAccountOU: (NULL)
    01/11 11:34:23  Account: mycomp\USER1
    01/11 11:34:23  Options: 0x27
    01/11 11:34:23  OS Version: 5.0
    01/11 11:34:23  Build number: 2195
    01/11 11:34:23  ServicePack: Service Pack 4
    01/11 11:34:23 NetpValidateName: checking to see if 'mycomp' is valid as type 3 name
    01/11 11:34:23 NetpCheckDomainNameIsValid [ Exists ] for 'mycomp' returned 0x0
    01/11 11:34:23 NetpValidateName: name 'mycomp' is valid for type 3
    01/11 11:34:23 NetpDsGetDcName: trying to find DC in domain 'mycomp', flags: 0x1020
    01/11 11:34:35 NetpDsGetDcName: failed to find a DC having account 'BR021WS025$': 0x525
    01/11 11:34:35 NetpDsGetDcName: found DC '\\BR021SVR' in the specified domain
    01/11 11:34:35 NetpJoinDomain: status of connecting to dc '\\BR021SVR': 0x0
    01/11 11:34:35 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:34:35 NetpLsaOpenSecret: status: 0xc0000034
    01/11 11:34:35 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:34:35 NetpLsaOpenSecret: status: 0xc0000034
    01/11 11:34:36 NetpJoinDomain: status of creating account: 0x0
    01/11 11:34:36 NetpJoinDomain: status of setting netlogon cache: 0x0
    01/11 11:34:36 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:34:37 NetpSetLsaPrimaryDomain: for 'mycomp' status: 0x0
    01/11 11:34:37 NetpJoinDomain: status of setting LSA pri. domain: 0x0
    01/11 11:34:37 NetpJoinDomain: status of managing local groups: 0x0
    01/11 11:34:37 NetpJoinDomain: status of setting ComputerNamePhysicalDnsDomain to 'mycompany.tx.com': 0x0
    01/11 11:34:38 NetpJoinDomain: status of starting Netlogon: 0x0
    01/11 11:34:38 NetpWaitForNetlogonSc: waiting for netlogon secure channel setup...
    01/11 11:34:45 NetpWaitForNetlogonSc: status: 0x0, sub-status: 0x0
    01/11 11:34:45 NetpJoinDomain: status of disconnecting from '\\BR021SVR': 0x0
    01/11 11:34:45 NetpDoDomainJoin: status: 0x0
    - I forgot to add when the user experienced this problem I checked for the computer account and found it was not present in the domain on any DCs.

  • Setup "conflict domain" for posting

    Hi
    I would like to configure a "conflict domain" for the Oracle Financials Posting concurrent program.
    We've setup Posting to run concurrently for each batch of SET_OF_BOOKS_ID/USER_JE_SOURCE rows inserted into the GL_INTERFACE table.
    The two concurrent programs are GLPPOS and GLPAUTOP. The conflict resolution is defined as "global" between the two.
    Mostly it runs fine, but occasionally a long-running GLPPOS holds up several GLPAUTOP requests as they are labelled as "Standby" when waiting.
    There is however no reason for such a wait to occur since the data is different in each case.
    I've read up on conflict domains using the following documentation.
    http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/115sacg.zip
    and realise that a "conflict domain" can be defined, which will enable changing the conflict resolution from "global" to "domain".
    The question I have is how to go I about configuring a "Conflict domain" based on SOB ID and JE Source Name ?
    Also, to which of the two concurrent programs should I associate the new "Conflict Domain", i.e. GLPPOS or GLPAUTOP?
    Finally, is there a PL/SQL api available for configuring and associating "conflict domains"?
    I'm also aware that the GL_DAILY_BALANCES/GL_JE_LINES and GL_BALANCES tables require partitioning, which would siginicantly improve the performance of GLPPOS, but would like to firstly focus on the conflict issue and then consider partitioning.
    db = 10.2.04
    ebs = 11.5.10.2
    Much appreciate any help or ideas that could be offered.

    Yes, I have looked at the document. I have gone into the Concurrent Conflict Domain form, but am unsure as to what to enter under "Domain", "Short Name" and "Description.
    Say for example a posting against a Set of Books/JE Source is running (2,238), then another Posting (2,200) should be able to run concurrently.
    What do I enter under the "Domain" and "Short Name" ?
    I'm new to Oracle Apps, so all these terms and forms are a bit confusing at this stage!

  • Setup Problem HP6830 using Hotspot for Printer & Laptop

    I have a TMobile Hotspot that gives me internet access for my laptop.I have a HP Officejet Pro that I just got and I'm trying to set it up on the Hotspot network.I've installed (via disk) the HP Software on my Toshiba Coimputer.I've gone through the setup process on the printer and it shows I'm connected to the Hotspot Network.When I try to go through the setup process on the computer it says it can't find that printer.I've checked - over and over again - the IP, and printed everything out (Config Page & Network TestResults) on the Printer, and it indicates everything is OK. My question is - Why can't my computer find the computer (they're both on the same Hotspot Network)?I don't have a USB Cable right now, and I'm trying to set it up wirelessly.  Any suggestion about what I might have missed?  Any help would be appreciated

    Hey ,  Welcome to the HP Support Forum.  I understand you're encountering some setup issues when using your HP Officejet Pro 6830 e-All-in-One Printer with a mobile hot spot.  I would like to assist you with this.   In my experience, mobile hotspots are hit and miss when used to support printers' wireless connections, even when the setup's are completed with diligence and care on the part of the user.  This caveat aside, as there are no official documents from HP on how to troubleshoot this particular issue, I recommend  toggling airplane mode on your T-Mobile device before restoring the hotspot connection.  Try the printer to laptop connection via the software as before, once you've confirmed the laptop's connected to the hotspot.  If this approach falls short, you could try the alternative and HP supported wireless direct setup method.  Here's how: From your printer's front panel touch the Wireless Direct icon ()Turn Wireless Direct OnFrom here you can choose to have it enabled with Security On or Off.  If you turn Security On, make a note of the passcode (it'll come in handy later).To learn how to complete the setup on your computer and any other mobile devices, click here for more instructions. Please let me know the result of your troubleshooting by responding to this post.  If I have helped you resolve the issue, feel free to give me a virtual high-five by clicking the 'Thumbs Up' icon below and clicking to accept this solution. Thank you for posting in the HP Support Forum.  Have a great day!

  • Setting up a domain using Oracle DB.

    I creating a domain manually applying portal template using our own WLST script. We successfully applied workshop extension but whenever we try to apply the personalization extension we go the following exception:
    WARNING] com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.ScriptException: java.lang.NullPointerException
    [WARNING]      at com.bea.plateng.domain.script.jython.CommandExceptionHandler.handleException(CommandExceptionHandler.java:51)
    [WARNING]      at com.bea.plateng.domain.script.jython.WLScriptContext.handleException(WLScriptContext.java:1464)
    [WARNING]      at com.bea.plateng.domain.script.jython.WLScriptContext.updateDomain(WLScriptContext.java:453)
    [WARNING]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [WARNING]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [WARNING]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [WARNING]      at java.lang.reflect.Method.invoke(Method.java:597)
    [WARNING]      at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:160)
    [WARNING]      at org.python.core.PyMethod.__call__(PyMethod.java:96)
    [WARNING]      at org.python.core.PyObject.__call__(PyObject.java:258)
    [WARNING]      at org.python.core.PyInstance.invoke(PyInstance.java:244)
    [WARNING]      at org.python.pycode._pyx3.updateDomain$19(/tmp/WLSTOfflineIni7284856197490404440.py:89)
    [WARNING]      at org.python.pycode._pyx3.call_function(/tmp/WLSTOfflineIni7284856197490404440.py)
    [WARNING]      at org.python.core.PyTableCode.call(PyTableCode.java:208)
    [WARNING]      at org.python.core.PyTableCode.call(PyTableCode.java:256)
    [WARNING]      at org.python.core.PyFunction.__call__(PyFunction.java:169)
    [WARNING]      at org.python.pycode._pyx16.f$0(/tmp/wlst_8685525951102029317.py:65)
    [WARNING]      at org.python.pycode._pyx16.call_function(/tmp/wlst_8685525951102029317.py)
    [WARNING]      at org.python.core.PyTableCode.call(PyTableCode.java:208)
    [WARNING]      at org.python.core.PyCode.call(PyCode.java:14)
    [WARNING]      at org.python.core.Py.runCode(Py.java:1135)
    [WARNING]      at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:167)
    [WARNING]      at weblogic.management.scripting.WLST.main(WLST.java:129)
    [WARNING]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [WARNING]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [WARNING]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [WARNING]      at java.lang.reflect.Method.invoke(Method.java:597)
    [WARNING]      at weblogic.WLST.main(WLST.java:29)
    [WARNING] Caused by: com.bea.plateng.domain.script.ScriptException: java.lang.NullPointerException
    [WARNING]      at com.bea.plateng.domain.script.ScriptExecutor.runGenerator(ScriptExecutor.java:2817)
    [WARNING]      at com.bea.plateng.domain.script.ScriptExecutor.updateDomain(ScriptExecutor.java:834)
    [WARNING]      at com.bea.plateng.domain.script.jython.WLScriptContext.updateDomain(WLScriptContext.java:449)
    [WARNING]      ... 25 more
    [WARNING] Caused by: java.lang.NullPointerException
    [WARNING]      at com.bea.plateng.domain.jdbc.JDBCDataLoader.load(JDBCDataLoader.java:159)
    [WARNING]      at com.bea.plateng.domain.security.SQLAuthenticatorHandler.loadSQLAuthenticatorFile(SQLAuthenticatorHandler.java:265)
    [WARNING]      at com.bea.plateng.domain.TemplateImporter.generate(TemplateImporter.java:427)
    [WARNING]      at com.bea.plateng.domain.script.ScriptExecutor$2.run(ScriptExecutor.java:2785)
    [WARNING]
    [WARNING] com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.ScriptException: java.lang.NullPointerException
    The oracle DB has all scripts already applied even the the user has been created using the SQLAuthenticator.sql
    This is blocking our development environment and we cannot proceed usign oracle.
    Here is also the WLST script that we are using to create the domain.
    from java.lang import String
    from java.io import File
    #=======================================================================================
    # This script creates a weblogic domain from a domain template
    # It will also extend the domain if any extension templates are defined
    #=======================================================================================
    print 'Start domain creation...'
    print ''
    #=======================================================================================
    # Create domain from a domain template only if there's no existing domain already created
    #=======================================================================================
    domainDir=File('.../wls_domains/repairsDomain')
    if domainDir.exists():
    print 'Found existing domain at .../repairsDomain'
    print 'Remove the directory if you want to create a brand-new domain'
    print ''
    else:
    # create a brand new domain from domain template, currently we just use wls.jar
    # which comes with weblogic installation
    print 'Creating domain using template .../bea/wlserver_10.3/common/templates/domains/wls.jar'
    readTemplate('.../bea/wlserver_10.3/common/templates/domains/wls.jar')
    # update server properties: name, listen address, listen port
    cd('/Server/AdminServer')
    cmo.setName('AdminServer')
    cmo.setListenAddress('0.0.0.0')
    cmo.setListenPort(int('10004'))
    # Reset the login id and password
    cd('/Security/base_domain/User')
    delete('weblogic','User')
    create('system','User')
    cd('/Security/base_domain/User/system')
    cmo.setPassword('weblogic')
    # - CreateStartMenu: Disable creation of Start Menu shortcut.
    setOption('CreateStartMenu', 'false')
    # - ServerStartMode: Set mode to development.
    setOption('ServerStartMode', 'dev')
    # - OverwriteDomain: Enable overwrite domain, when saving, if one exists.
    setOption('OverwriteDomain', 'true')
    # Write the base domain and close the base domain template.
    writeDomain('.../repairsDomain')
    closeTemplate()
    print 'Server AdminServer will be listening at address 0.0.0.0 on port 10004'
    print 'Domain repairsDomain successfully created in .../repairsDomain'
    print ''
    #=======================================================================================
    # Apply extension templates if there's any
    #=======================================================================================
    extensionDomainTemplates=String('.../.m2/repository/com/vzb/domains/weblogic-workshop/1.2-SNAPSHOT/weblogic-workshop-1.2-SNAPSHOT.jar:.../.m2/repository/com/vzb/domains/weblogic-p13n/1.2-SNAPSHOT/weblogic-p13n-1.2-SNAPSHOT.jar:.../.m2/repository/com/vzb/domains/weblogic-portal-content/1.2-SNAPSHOT/weblogic-portal-content-1.2-SNAPSHOT.jar:.../.m2/repository/com/vzb/domains/weblogic-portal/1.2-SNAPSHOT/weblogic-portal-1.2-SNAPSHOT.jar')
    if extensionDomainTemplates.length() != 0:
    templates=extensionDomainTemplates.split(File.pathSeparator)
    for template in templates:
    print 'Extending domain using template ' + template
    readDomain('.../repairsDomain')
    addTemplate(template)
    updateDomain()
    closeDomain()
    We migrate templates to maven so we can replace DB settings.

    Marcus,
    I can't answer your specific question but I suggest you browse some of the OAS and WebDB documentation. Click the documentation link on the left of this page. You could also take a look at some of the technical white papers available at www.oracle.com.
    Blaise

  • How to Reset Password of User while not connected to Domain using Local Admin Account

    How to Reset Password of User while not connected to the Domain using Local Admin Account
    (I have the use of a local admin account), and I want to help a user reset their password who has logged in the PC and had their credentials cached, but forgot this password. 
    In Local Admin Account :
    When I go to Control Panel, users, users, manager user ; I cannot see any users in this window except the local admin account, and, so I cannot reset a user password this way.
    When I go to lusrmgr.msc, then users ; the local admin account will display only. 
    If I go to command prompt and type "net user", this will not display any users who have logged in to the computer, and so I cannot use "net user" to reset a password.
    I don't want to use any disks, 3rd party programs, or create a VPN connection to the domain.  I just want to help a user who calls in and forgets their password.

    Hello Keith,
    I know this is an old thread but I'm trying to better understand how I could change the domain password while not on the network. What I'm getting from your post is that you:
    1. Create a local user account (not a domain user)
    2. Login with that local user account
    3. Connect to the VPN while logged in as a local user
    4. Log out of the local account and login with the domain credentials
    Now, my question is based on the assumption that the password created on the local account is the same password that one will use to login to the domain account? Also, is the local user account the same as the domain account?
    Thanking you in advance!

  • How to change the print page setup in IE using javascript

    dear all,
    I want to take print out envelope paper size, so i want to chnage the page setup in IE
    i want to change the print page setup in IE using javascript

    I think, you can do this using CSS.
    http://support.sas.com/rnd/base/ods/templateFAQ/Template_csstyle.html

  • How to manually add library to my WL domain using admin console?

    Hello All,
    In need to manually add the JSF2:0 shared library into my
    domain using the admin console. How can I do that?
    Should I go to Admin Console -> Deployments -> Install -> Upload (from my desktop) -> now how do I tell where this should be installed in weblogic?
    Thanks,

    this link http://download.oracle.com/docs/cd/E21764_01/apirefs.1111/e13952/taskhelp/library/DeployLibrary.html shows the steps involved

  • What easy setup do I use for the Canon A1 1080i60?

    What easy setup do I use for the Canon A1 1080i60?

    I called tech support and they were no help.
    G5   Mac OS X (10.4.9)  

  • Document on 10g RAC setup on solaris using vmware

    Hi All,
    I am planning to setup "Oracle 10g RAC setup on Solaris using vmware", but I am strucked up at installation of Soaris 10 in VMWare.
    Can any body please help/provide me the document on Solaris 10 installation for RAC setup .
    The main problems I am having during the SOlaris 10 setup is
    1) Setting up the static public and private addresses required for RAC
    2) Partitioning the disk space.
    Thanks in advance,
    Mahipal Reddy

    Refer these,
    http://www.scribd.com/doc/15650880/Install-Rac-on-Solaris-Vmware
    http://www.disperu.com/using-vmware-server-install-10g-rac-on-solaris/
    http://nayyares.blogspot.com/2008/11/step-by-step-rac-10g-r2-solaris-10.html
    Thanks
    Edited by: Cj on Dec 13, 2010 2:38 AM

  • Finding Domain used in a table

    I would like to find the different domains used in a particular table. Is there any function module or a way out work out this...

    Hi,
    Use table DD04L.
    The field rollname is the Data Element. With the data element you can find the fields used.
    Regards,
    Fernando

  • HT5552 I am unable to setup payment method using American Express.

    I am unable to setup payment method using American Express.

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for

  • Downloaded Mountain Lion and now not able to select multiple email messages at a time for deletion what gives?

    Downloaded ML last night now one little glitch seems to be that I cannot select multiple messages at a time to delete. With the massive amount of email I receive, this is a problem. Cannot seem to find any simple fixes in preferences. Any ideas?

  • Can I configure Lightroom to use all my cores in case of actions like imports?

    Hi! I've a CPU with four cores and also enabled hyperthreading. But if I do an import by Lightroom it uses at best 25 % of my overall CPU performance. If it would start many low prio threads, it would speed up my import a lot, as I've import very oft

  • Apple Software update

    Today I received a software update message from Apple. I went ahead and downloaded upgrades - amongst them OS 10.4.11... Also Quicktime, Pro, some others I don't remember... After downloading and restart, neither Mail nor Safari open - not from the d

  • Help in enhancements

    Hi ALL, I believe that all are doing fine! Im new to enhancements(may be like normal report or thru badis) concept and i have got some objects assignment(s) in my company..... I need help from u folks in providing some material and some good real tim

  • Ipad 2 Broken Screen

    I have two ipad2's both with broken screens. Only the glass is broken and I have so far there has been no issue with the software. I am wondering what apple does with ipad such as mine, the cost and what I get. I am also wondering if they offer somet