NoClassDefFoundError when creating instance of Server

This is a JDOM issue but I am new to using java on the command line.
I was able to compile all classes using
I have all files in one dir, along with my jdom.jar
javac -classpath "./jdom.jar" *.java
I then ran rmic -v1.2 ServerName
And the stubs are created.
But when I try to run my Regester class
java RegesterIt [or] java -classpath "./jdom.jar" RegesterIt
I get the following error.
Exception in thread "main" java.lang.NoClassDefFoundError: org/jdom/JDOMException
at RegesterIt.main(RegesterIt.java :7)
Line 7 is where I create the instance of my Server class.
I think I have issues with classpath or something but could just use some help at this point.
Everything worked fine before I brought JDOM into the mix.

I was able to solve this one myself with more and more searching.
While its working now Im still somewhat confused.
I added
%JAVA_HOME%\lib
to my PATH env variable in windows. Everyone tells you to add %JAVA_HOME%\bin, but without the lib dir you miss out on many of those jars. I put jdom.jar in that folder and it all works now sorta.
The really wierd part though, is I have 3 cmd windows open currently, and 1 of them runs the RegesterIt without the exception, and the other two do not. I brought all three of them up after I updated the variable.
Is that wierd? How could the cmd windows be working differently?

Similar Messages

  • Error in Adaptive WebService Model when creating instance of Node

    Hi All,
    I have created an Adaptive WebService Model which calls a WebService. This WebService has been generated in the CAF and represents an Application Service. One of the Methods of this Application Service returns a Complex Type which contains a list of BOs.
    However, when creating an instance of the Request Node, I receive an exception. The coding is:
           JobAppModel model = new JobAppModel();
           Request_GetAllJobApplications requestMO = new Request_GetAllJobApplications(model); <==
    The exception is
    com.sun.jdi.InvocationException occurred invoking
    The exception is not shown on the screen, only in the debugger in the field where you can see the variables.
    Does anybody know where thgis exception ma ycome from or where my mistake is?
    Thanks, Johannes

    Hi
    Have u define the system property path and return type ?
    Have a look on this threads
    [Test|Problem with XI web service,;
    Best Regards
    Satish Kumar

  • No connection to ESB when creating to Integration Server Connection

    Attempting to test a connection to Integration Server in JDev 10.1.3.4 which is deployed to RH Linux. Have OAS10g 10.1.3.3 deployed. When test get the following mesage:
    Application Server: OK
    BPEL Process Manager Server: OK
    ESB Server: Failed
    The application server connection tests with Success.
    Can access the esb console and look at what has been registered into the ESB Server.
    Any ideas as to why the ESB Server fails when tested?
    Thanks - Casey

    Hi, I am facing the same problem when connecting to integration server. initially even BPEL process manager server failed, once I changed the port to the port used for BPEL consol the error was resolved for BPEL process manager. Now I still see the error for ESB Server, How do I get the correct port:
    soa_windows_x86_bpel_101310
    Oracle JDeveloper SE 10.1.3
    Application Server: OK
    BPEL Process Manager Server: OK
    ESB Server: FAILED

  • Error when creating a linked server to IBM iSeries AS/400

    I am migrating databases from SQL Standard 2005 (32 bit) to SQL Standard
    2012 (64 bit) and getting errors when I create the needed Linked Servers to our IBM as/400. I scripted the as400 linked server from the 2005 server and created it on the 2012 server:
    EXEC master.dbo.sp_addlinkedserver @server = N'AS400', @srvproduct=N'DB2 UDB for iSeries', @provider=N'MSDASQL', @datasrc=N'AS400'
    EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'AS400',@useself=N'False',@locallogin=NULL,@rmtuser=N'USER_NAME',@rmtpassword='PSSWD'
    (plus various sp_serveroptions)
    I then verified that the MSDASQL Provider "Allow Inprocess" was checked and the Linked Server is listed as using the provider but when I try to view the objects under the "AS400" Linked Server I get an error saying: Cannot initialize the
    data source object of OLE DB provider "MSDASQL" for linked server "AS400". (Microsoft SQL Server, Error: 7303)
    I was told to download and install OLEDB provider for DB2.  I downloaded DB2OLEDBV4 but when I try to install it I try to install it I get a OK Box saying: "Microsoft OLE DB Provider for DB2 requires the Microsoft SQL Server 2008 or later
    version.  Ensure that this version is fullfilled before installing Microsoft OLE DB Provider for DB2." when I click OK, I get "Setup was interrupted before Microsoft OLE DB Provider for DB2 could be completely installed" and the install
    exists.  I am installing on SQL 2012!
    Can anyone please advise...

    Hi,
    Based on your description, we know that you got an error when you installed the OLEDB provider for DB2. Microsoft OLE DB Provider for DB2 V4.0 is needed If you use SQL Server 2008 R2 or SQL Server 2012 to connect to IBM DB2 databases.When you install the
    OLEDB provider for DB2 V4.0, we need to make sure that the system meets the following requirements:
    • Windows Server 2008 R2 SP1 or Windows 7 SP1 or Windows Server 2008 SP2.
    • Microsoft SQL Server 2012 (Enterprise, Developer or Evaluation Edition) or Microsoft SQL Server 2008 R2 (Datacenter, Enterprise, Developer or Evaluation Edition) is installed.
    • Microsoft .NET Framework 4.0.             
    As your post,it seems that you have installed SQL Server 2012 Standard Edition,this edition is not supported by Microsoft OLEDB Provider for DB2 V4.0. I recommend you to upgrade the standard edition to enterprise edition and reinstall the OLEDB Provider.You
    can try this method and if you have any questions,please feel free to revert.
    For more detailed information, you can review the following link.http://msdn.microsoft.com/en-us/library/hh873008(v=sql.110).aspx  
    Thanks
    Lydia Zhang

  • Exception when creating instance of a class with native method by JNI

    I am trying to use JNI - I want to have a Java class Foo have a
    method, that is a native C function.
    I follow the Sun's tutorial
    http://java.sun.com/developer/onlineTraining/Programming/JDCBook/jnie...
    exactly, and everything compiles fine, and I have compiled my C .dll
    as well (on Win XP). So I am ready to run - ...
    Now when I finally try to run the Java application, it throws this
    exception when it tries to create the Foo instance:
    at Foo.<init>(Foo.java:11)
    at
    sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at
    sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at
    sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:
    513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:786)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:715)
    at sun.applet.AppletPanel.run(AppletPanel.java:369)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.security.AccessControlException: access denied
    (java.lang.Runtim
    ePermission loadLibrary.Foo)
    Why would this be so??? Thank you for your insights

    Mark_Galeck wrote:
    I am trying to use JNI - I want to have a Java class Foo have a
    method, that is a native C function.
    I follow the Sun's tutorial
    http://java.sun.com/developer/onlineTraining/Programming/JDCBook/jnie...
    exactlyNot quite exactly. Yours is an applet, theirs is an application.
    Applets are not allowed many things that applications can do.
    Among them, loading native libraries.

  • 0x80070569 Error When Creating Second Virtual server in Hyper-v 2012

    I get this error when I try to create a second VM from Hyper-v Manager on windows 8 / server 2012 / server 2008 R2.
    Hyper-v is running on a new install of server 2012 core.
    I was able to create the first VM (server 2012 with a GUI) and is running fine.
    I have tried adding the local administrator account to the logon as a batch job and doing a gpupdate /force with not luck.
    Both the server 2012 core and the server 2012 VM are joined to the same domain.  I am logged into server 2012 and server 2008 R2 as the domain administrator.
    Any ideas would help!

    Hi,
    Error Message: The user has not been granted the requested logon type at this computer, this problem typically occurs when the user does not have the permissions to log on locally on the computer.
    By default, members of the Users group have the ability to log on locally, but an administrator can deny the right to specific user or group accounts. An explicitly denied right always overrides an allowed right.
    This can be caused by either of the following:
    Neither the user account nor any of the groups it belongs to has been granted the Allow log on locally user right.
    The user account or one or more of the groups it is a member of has been listed in the Deny log on locally user right.
    Ensure that the user, or a group the user belongs to has the right to log on locally. Ensure that the user, and all groups that the user belongs to, are not denied the right to log on locally.
    Also, have you tied to restart to restart the Hyper-V host server? Restart it and check the result.
    You may also try to create VM using PowerShell command:
    Sample Scripts for Managing Virtual Machines
    http://technet.microsoft.com/en-us/library/bb963748.aspx
    For more information please refer to following MS articles:
    Error Message: The user has not been granted the requested logon type at this computer
    http://technet.microsoft.com/en-us/library/cc732593(v=WS.10).aspx
    Windows 8 Hyper-V Virtual Machine Management Service
    http://social.technet.microsoft.com/Forums/lv/winserverhyperv/thread/4b3e7582-dc20-4dcb-8e71-fef9fecce19c
    Lawrence
    TechNet Community Support

  • Static error when creating instances

    I have 3 classes, one is my Apple, one is my Tree that makes Apples, one is my AppleBuffer which my apples go into, waiting their turn to fall off the tree.
    There are many Apples, but there is only one Tree, and one AppleBuffer.
    Apple Class:
    public class Apple {
        private String col;
    }AppleBuffer Class (Stores the apples in a vector queue):
    public class AppleBuffer{
        public Vector<Apple> queue = new Vector<Apple>();
        public void add(Apple a){
             list.add(a);
    }Tree Class (Apple generator):
    public class Tree{
        public Apple a;
        public void create(){
            for(i=0;i<=10;i++){
                a = new Apple()
                AppleBuffer.add(a);
    }Apologies if some of the syntax is off, I just wrote the parts that needed mentioning of the top of my head.
    The error produced is compiling the Tree class:
    Cannot make a static reference to the non-static method add(Apple) from the type AppleBuffer
    I'm sure this is because I'm still new and don't really understand the use of objects properly.
    The way I see it, Apple is the only class which needs multiple instances of itself, thus is the only class that needs creating objects for.
    Would making a single object instance of AppleBuffer solve this problem? Would I need to do it for Tree aswell? It just all sounds a bit messy.
    I don't really want to start making certain methods static because I know it would just confuse me later.
    Please could someone tell me what I'm doing wrong, and provide me with a short and simple terminology to correct my view on OO programming.
    Thankyou.

    public class Tree{
        public Apple a;
        private AppleBuffer buffer;
        public void create(){
            for(i=0;i<=10;i++){
                a = new Apple()
                buffer.add(a);
    }You cannot access a non-static method ( add() in your case) in a static manner (AppleBuffer.add()) you need to create an instance of the AppleBuffer class first, then add apples to it. Another way to make it work, but NOT recommended by me, is to make the add() method static, and the queue as well
    public class AppleBuffer{
        public static Vector<Apple> queue = new Vector<Apple>();
        public static void add(Apple a){
             queue.add(a);
    }

  • Create a BOE Server Definition have an error

    Hi,
    today  i  install and configure the BO with BI 7.0 following ingo's doc,everything is right ,but when Create a BOE Server Definition i have an error !
    when i click Verify BOE Definition ,there is an error "unable to call out destination,Verrify destination in sm59"! i test my RFC Connection ,it's all right.
    thanks

    Hi ingo,
        thanks for your quick reply and sorry for my yesterday's disappear because of my bad network.
    - is the BW publishing service started ?
    yes, i have started the  BW publishing service on the BOE Server Side  from the CCM.
    - did you configure the SAP Authentication on your BusinessObjects system ?
    yes,i have Configured the SAP Authentication including "Enable SAP authentication","Configure Global Options for the SAP Authentication" and "Import SAP Users and Roles" the three steps on my  BusinessObjects system. and the role that imported to BOE is created as the pdf -"BusinessObjects XI Integration for SAP Solutions Installation and Administration Guide"  in BI 7.0 system. even i have give the role sap_all ,i think the Authentication is no problem and they work well.
    - when you go to SM59 and run a connection test on your destination - does everything work ?
    yes, i have tested  the connection on my destination and it work well ,30 kb only need 7 second. the programid is the same with the BW Publish Service.
    and before installing BusinessObjects XI Integration, there are something need to  alert:
    - SAP Frontend Installation? i have installed sapgui710 as the doc!
    - SAP Java Connector? i have downloaded jco 2.1.8 for 32 bit because my BOE Server Side  is 32 bit.
    - SAP Transports?i ask for sap basis  importing  them to BI 7.0 system.
    - SAP Single-Sign-On? the two tickets have configured on  BI 7.0 system.
    - BOE Server Side requirements? i have added the saplogon.ini file to the saplogon_ini_file environment   variable.
    as to eliminate the error ,i have configured something else:
    - "Configuring the SAP HTTP Request Handler" have no error!
    - "Configure the SAP Source Parameters" have no error!
    at last, i have some puzzles:
    - now i use the program id that configured by others.whether it need to be seted only for BOE connect BI 7.0?and how to set the program id?
    - the pdf -"BusinessObjects XI Integration for SAP Solutions Installation and Administration Guide" tell me there are two ways to configure BW publisher ,Configuring the BW Publisher as a service now we are using and the other way is configure BW publisher with a local sap gateway.
    is there  one possibility   :maybe my BW system now are seted not to support using the first way- "Configuring the BW Publisher as a service "but the second way.
    thanks for a lot

  • Error when creating a new Reports Server instance

    Hi,
    I have tried to create and start a new reports server instance using the following method:
    1- Creating the report server instance:
    rwserver server=%newrepserver% start
    2- Stopping the OPMN:
    *%ORACLEHOME%\opmn\bin\opmnctl stopall*
    3- Adding a new server target to OPMN.XML
    *%ORACLEHOME%\bin\addNewServerTarget.bat %newrepserver%*
    4- Updating the configuration with new OPMN settings:
    *%ORACLEHOME%\dcm\bin\dcmctl.bat updateconfig -ct opmn -v -d*
    *%ORACLEHOME%\dcm\bin\dcmctl.bat resyncinstance -v -d*
    5- Starting the OPMN again:
    *%ORACLEHOME%\opmn\bin\opmnctl startall*
    However, when I try to start the OPMN again, I receive the following error:
    opmn id="##########:6200 5 of 6 processes started
    ias-instance id=red.########.########.lan
    ++++++++++++++++++++++++++++++++++
    ias-component/process-type-process-set:
    *%newrepserver%/ReportsServer/%newrepserver%*
    Error --> Process (pid=6888) failed to start a managed process after the maximum retry limit.
    Log: %ORACLEHOME%\opmn\logs\%newrepserver%~ReportsServer~%newrepserver%
    Any ideas as to why the reports server instance cannot be started?
    I have tried rebooting the server many times and have recreated other reports server instances but with no luck.
    Many thanks in advance,
    Chris

    On Windows this is caused most often by the temporary directory setting.
    Change the temporary directory to some fixed directory writable by anybody, e.g. "C:\temp".
    Change this in:
    Registry entry: hkey_local_machine\software\oracle\key_<oashome>\REPORTS_TMP
    <oashome>\opmn\conf\opmn.xml: search for environment variable TEMP (under ias-instance)
    Good luck!

  • (500) Internal Server Error when create storage table use development account

    Yesterday, our team suddenly cannot use storage emulator all, it always said 'can not create database' when start the emulator. Finally, we found a issue may affect this, we delete the WAStorageEmulatorDb30.mdf file in C:\Users\[User], and create manully
    in localdb, and so we can start the storage emulator later.
    But we still can not use it, since it always throw exception when creating Tables/Blobs/Queues, the exception like this:
    Microsoft.WindowsAzure.Storage.StorageException was caught
    HResult=-2146233088
    Message=The remote server returned an error: (500) Internal Server Error.
    Source=Microsoft.WindowsAzure.Storage
    StackTrace:
    at Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync[T](RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext)
    at Microsoft.WindowsAzure.Storage.Table.TableOperation.Execute(CloudTableClient client, CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext)
    at Microsoft.WindowsAzure.Storage.Table.CloudTable.Exists(Boolean primaryOnly, TableRequestOptions requestOptions, OperationContext operationContext)
    at Microsoft.WindowsAzure.Storage.Table.CloudTable.CreateIfNotExists(TableRequestOptions requestOptions, OperationContext operationContext)
    at WorkerRole1.TableService..ctor() in c:\Users\<user>\Documents\Visual Studio 2013\Projects\WindowsAzure8\WorkerRole1\TableService.cs:line 21
    InnerException: System.Net.WebException
    HResult=-2146233079
    Message=The remote server returned an error: (500) Internal Server Error.
    Source=System
    StackTrace:
    at System.Net.HttpWebRequest.GetResponse()
    at Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync[T](RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext)
    InnerException:
    And if we visit this url: http://127.0.0.1:10002/devstoreaccount1, it said Internal Error:
    <error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
    <code>InternalError</code>
    <message xml:lang="en-US">
    Server encountered an internal error. Please try again after some time. RequestId:e9637e04-76ad-4237-8df0-31a511e4c116 Time:2014-04-25T00:56:16.9990136Z
    </message>
    </error>
    Any ideas of this? We still don't know what caused this whole trouble from yesterday, is it possible affect the storage emulator just by code? We were coding, not configuring anything. Strange.

    I have tried it before, but not works.
    Finally, I solved this issue by delete LocalDB instance, uninstall storage emulator and install LocalDB instance / storage emulator again, it works now. Quite strange.

  • Error when create UDS instance

    Dear All,
    I got an error message when creating UDS instance, the message is "Error:0x80040153 Invalid value for registry".
    The UDS server and OPC server is running on different windows PC. In the UDS Admin Console, I create a new OPC-DA instance. Then I was trying to point the OPC server to Matrikon Simulation Server on another PC. I input the machine name and then key enter. Then above error message appeared. When I pointed OPC server to the Matrikon Simulation Server on localhost. It worked well.
    Please advice if you had ever experience on it before.
    THanks & Regards,
    James

    James,
    Did you look closely at the Planning section on page 2 in the UDS Installation Guide:  http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000705232&_SCENARIO=01100035870000000112&_OBJECT=012002523100006323502008E
    Did you account for the OPC Foundation portion of this which would be required by the UDS in order to communicate to the other server (uses DCOM)?  This is not part of the UDS installation, but is necessary (similar to needing the PI-API installed before using the PI UDS s/w).
    Regards,
    Jeremy

  • Creating New (multiple) server instance for a single domain

    Hi,
    I am trying to create a new server instance under a domain and deploy a web application under that.
    Ex:
    I have domain: ABC
    default admin server: Admin_server
    New server Instance: server2
    New server instance: server3
    I deployed a webapplication on "Admin_server" and when i try to access the webapplication it works fine.
    But when i try to deploy the same webapplication(or a new webapplication) i do get a nullpointerexception error.
    I am new to weblogic and hence a bit lost here.
    Also when the admin server "Admin_server" is created for domain "ABC" a new folder called "Admin_server" would be created under "ABC" [EX: C:\bea\user_domains\ABC\Admin_server]
    the "Admin_server" would have a upload dir under which the webapplication files/folder would be deployed.
    I was under the impression when u create a new server instance "Server1" a simliar dir structure would be created but this is not the case.
    I am new to weblogic and this seems to a minor config which i am missing.
    Any suggestions , hints would be appreciated

    The node manger is installed as a service. I am using Nodemanager to start the managed server.
    Actually now i have created a new domain DCM and the admin server is DCM_ADMIN. i deplyed a web app called DCM on this and do get the error. This is what exactly i got when deployed on a managed server [tested this on a different domain - but then it did work on the admin server]
    ERROR:
    Error 500--Internal Server Error
    java.lang.NullPointerException
         at com.documentum.web.formext.config.ConfigService.(ConfigService.java:565)
         at com.documentum.web.formext.config.ConfigService.getInstance(ConfigService.java:68)
         at com.documentum.web.formext.config.ConfigService.getConfigLookup(ConfigService.java:83)
         at com.documentum.web.formext.config.ClientEnvQualifier.bindHttpRequest(ClientEnvQualifier.java:142)
         at com.documentum.web.env.WDKController.setBindings(WDKController.java:372)
         at com.documentum.web.env.WDKController.doStartRequest(WDKController.java:150)
         at com.documentum.web.env.WDKController.processRequest(WDKController.java:88)
         at com.documentum.web.env.WDKController.doFilter(WDKController.java:79)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6987)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    MY config.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    - <Domain ConfigurationVersion="8.1.5.0" Name="DCM">
    - <Server ListenAddress="" ListenPort="1120" Name="DCM_ADMIN" NativeIOEnabled="true" ReliableDeliveryPolicy="RMDefaultPolicy" ServerVersion="8.1.5.0">
    <SSL Enabled="false" HostnameVerificationIgnored="false" IdentityAndTrustLocations="KeyStores" Name="DCM_ADMIN" />
    </Server>
    <JMSFileStore Directory="rmfilestore" Name="FileStore" />
    <WSReliableDeliveryPolicy DefaultRetryCount="10" DefaultTimeToLive="60000" Name="RMDefaultPolicy" Store="FileStore" />
    <Security Name="DCM" PasswordPolicy="wl_default_password_policy" Realm="wl_default_realm" RealmSetup="true" />
    <EmbeddedLDAP CredentialEncrypted="{3DES}f42Gd5I8pTqrAXW1bntpvYdF9kQxUOm0+Sf9Liq9Wrg=" Name="DCM" />
    <SecurityConfiguration CredentialEncrypted="{3DES}yA8jh/8xZqf+6HyuA5YesVFLKkpMBpCfOgJ7Gf0G+qOce7Pr8dtby+FnJY3lYu/7p5vqYw7Yw36vk98Vqb6P3ZE/bnahPhwu" Name="DCM" RealmBootStrapVersion="1" />
    <Realm FileRealm="wl_default_file_realm" Name="wl_default_realm" />
    <FileRealm Name="wl_default_file_realm" />
    <PasswordPolicy Name="wl_default_password_policy" />
    - <JMSServer Name="WSStoreForwardInternalJMSServerDCM_ADMIN" Store="FileStore" Targets="DCM_ADMIN">
    <JMSQueue CreationTime="1141142209450" JNDIName="jms.internal.queue.WSStoreForwardQueue" JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSStoreForwardQueueDCM_ADMIN" />
    <JMSQueue CreationTime="1141142209653" JNDIName="jms.internal.queue.WSDupsEliminationHistoryQueue" JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSDupsEliminationHistoryQueueDCM_ADMIN" />
    </JMSServer>
    - <Server ListenPort="9201" Name="DCM_TEST" ServerVersion="8.1.5.0">
    <ServerDebug Name="DCM_TEST" />
    <SSL IdentityAndTrustLocations="KeyStores" Name="DCM_TEST" />
    <KernelDebug Name="DCM_TEST" />
    <Log Name="DCM_TEST" />
    <ServerStart Name="DCM_TEST" OutputFile="C:\dev\bea\weblogic81\DOMAINS\DCM\.\NodeManagerClientLogs\DCM_DCM_TEST\startServer_02_28_2006-10_58_26-1.log" PasswordEncrypted="{3DES}zluy0BrZ/DYTcUwAKEgovg==" Username="elisadmin" />
    <WebServer Name="DCM_TEST" />
    <COM Name="DCM_TEST" />
    <IIOP Name="DCM_TEST" />
    <JTAMigratableTarget Name="DCM_TEST" UserPreferredServer="DCM_TEST" />
    <JTARecoveryService Name="DCM_TEST" />
    </Server>
    - <Application Name="da" Path="C:\dev\bea\weblogic81\DOMAINS\DCM\DCM_ADMIN\upload" StagingMode="nostage" TwoPhase="true">
    <WebAppComponent Name="da" Targets="DCM_ADMIN" URI="da.war" />
    </Application>
    </Domain>

  • Problem when we created the managed server to configure different ports.

    I am trying to configure different ports for admin console and my communication service as we can’t share admin port to the outside world.
    So that only admin can access admin console using admin port.
    And out side clients can access my webapplication using different port.
    For this i have created the managed server in weblogic.and I deployed the application on managed server.
    Now admin server is running on 8001 port and my Communication Service application is running on 7001 port.
    But when I tried to configure MBeans related to myCommunicationServiceApplication those were disapper on admin console. And the other wlng services are appearing on admin console.
    1. Since my application deployed on managed server MBeans registration happened from myapplication hence it’s disappear on admin console.
    Now If I want to configure Mbeans (related to my communication service) how can I configure it?
    2. My communication service using configurationStore module and other wlng services.
    When I tried to start my application on managed server I got the below error:
    <Apr 28, 2009 12:22:44 PM IST> <Error> <Deployer> <BEA-149231> <dscp11166.TechMahindra.com> <Unable to set the activation state to true for the application 'wlng_nt_qualcomm_active_mediation [Version=1.0]'.
    com.bea.wlcp.wlng.api.storage.configuration.ConfigurationException: Configuration store module is not available.
    3. I tried to target all wlngResources to manged server by editing config.xml file.
    Then all wlng services disappears on admin console. If this is the case how can I configure container/account services on wlng?
    I have created the Basicweblogic domain.
    Below is the config.xml for reference.
    "QualcommServer" is managed server name.
    Can any one please suggest me how to configure this kind of scenarios?
    <server>
    <name>AdminServer</name>
    <machine>new_Machine_1</machine>
    <listen-port>8001</listen-port>
    <default-iiop-user>weblogic</default-iiop-user>
    <default-iiop-password-encrypted>{3DES}W8nBdoJPRZ8TkwcXwAZoxA==</default-iiop-password-encrypted>
    <listen-address>localhost</listen-address>
    </server>
    <server>
    <name>QualcommServer</name>
    <machine>new_Machine_1</machine>
    <listen-address>localhost</listen-address>
    <server-start>
    <java-vendor>Sun</java-vendor>
    <java-home>C:\Program Files\Java\jdk1.6.0</java-home>
    <class-path>C:\bea\wlng400\server\lib\weblogic.jar;C:\bea\wlng_pds400\lib\wlng\wlng.jar</class-path>
    <bea-home>C:\bea</bea-home>
    <username>weblogic</username>
    <password-encrypted>{3DES}W8nBdoJPRZ8TkwcXwAZoxA==</password-encrypted>
    </server-start>
    </server>
    <embedded-ldap>
    <name>managedserver</name>
    <credential-encrypted>{3DES}9q80YuFJueVVJxoWduJA1OGhbqk14EpgQWWyTrzlmxo=</credential-encrypted>
    </embedded-ldap>
    <configuration-version>10.0.1.0</configuration-version>
    <app-deployment>
    <name>wlng_nt_session#4.0</name>
    <target>QualcommServer</target>
    <module-type>ear</module-type>
    <source-path>C:\bea\wlng400/applications/wlng_nt_session.ear</source-path>
    <security-dd-model>CustomRolesAndPolicies</security-dd-model>
    </app-deployment>
    <app-deployment>
    <name>interceptors</name>
    <target>QualcommServer</target>
    <module-type>ear</module-type>
    <source-path>C:\bea\wlng400/applications/interceptors.ear</source-path>
    <security-dd-model>CustomRolesAndPolicies</security-dd-model>
    </app-deployment>
    <app-deployment>
    <name>wlng_prm</name>
    <target>QualcommServer</target>
    <module-type>ear</module-type>
    <source-path>C:\bea\wlng400/applications/wlng_prm.ear</source-path>
    <security-dd-model>CustomRolesAndPolicies</security-dd-model>
    </app-deployment>
    <app-deployment>
    <name>wlng_nt_qualcomm_active_mediation#1.0</name>
    <target>QualcommServer</target>
    <module-type>ear</module-type>
    <source-path>servers\AdminServer\upload\wlng_nt_qualcomm_active_mediation.ear</source-path>
    <security-dd-model>DDOnly</security-dd-model>
    </app-deployment>
    <machine>
    <name>new_Machine_1</name>
    <node-manager>
    <name>new_Machine_1</name>
    <listen-address>localhost</listen-address>
    </node-manager>
    </machine>
    <jms-server>
    <name>JMSServer-AdminServer</name>
    <target>AdminServer</target>
    </jms-server>
    <jms-system-resource>
    <name>WLNGJMSResource</name>
    <target>QualcommServer</target>
    <descriptor-file-name>jms/wlng-jms.xml</descriptor-file-name>
    </jms-system-resource>
    <custom-resource>
    <name>networktier</name>
    <target>AdminServer</target>
    <descriptor-file-name>custom/nt.xml</descriptor-file-name>
    <resource-class>com.bea.wlcp.wlng.management.descriptor.resource.WlngTierResource</resource-class>
    <descriptor-bean-class>com.bea.wlcp.wlng.management.descriptor.bean.WlngTierBean</descriptor-bean-class>
    </custom-resource>
    <custom-resource>
    <name>wlng-edr</name>
    <target>AdminServer</target>
    <descriptor-file-name>custom/wlng-edr.xml</descriptor-file-name>
    <resource-class>com.bea.wlcp.wlng.management.descriptor.resource.WlngEdrResource</resource-class>
    <descriptor-bean-class>com.bea.wlcp.wlng.management.descriptor.bean.WlngEdrBean</descriptor-bean-class>
    </custom-resource>
    <admin-server-name>AdminServer</admin-server-name>
    <jdbc-system-resource>
    <name>wlng.datasource</name>
    <target>QualcommServer</target>
    <descriptor-file-name>jdbc/wlng-jdbc.xml</descriptor-file-name>
    </jdbc-system-resource>
    <jdbc-system-resource>
    <name>wlng.localTX.datasource</name>
    <target>QualcommServer</target>
    <descriptor-file-name>jdbc/wlng-localTX-jdbc.xml</descriptor-file-name>
    </jdbc-system-resource>
    Thanks,
    Srinu Babu P

    Dear Nariharan,
    Today I faced a simlar issue, and this SAP Note helped me fix it: 1966807 - Duplication of AET table records in change processing
    In my case, cardinality of AET table was 1:1, and I was getting duplicate PARENT_ID every time when trying to create a subsequent service request for my activity.
    Regards,
    Andrew

  • Cannot enter URL or use advanced tab when creating a (local) testing server

    Hi,
    I have created a site in Dreamweaver and I have tried creating a testing server. However everytime I try to create a test server Dreamweaver does not allow me to enter the Web URL in the server window. I knnow its local (localhost) but it seems it should still need a URL - http://localhost/...
    It allows me put in the name of the server the connection  type - Local/Network and allows me to browse to the server folder and select it but does not allow me to put any data in to Web URL: field.
    Additionally, it does not allow me to select the Advanced tab to specify my Server Model - PHP MySQL.
    When I click save with these settings I can see all the necessary files and folders in the Dreameaver Testing Server window but when I go to create a database connection I get an error saying "The URL prefix http:// for this site's testing server could not be resolved"  - on hitting the Select button to select the database.
    I am running WAMP (in Windows 7) and I can see the database in phpMyAdmin. I know the username and password are correct.
    Any help would be appreciated - Thanks

    Does this help?
    http://helpx.adobe.com/dreamweaver/kb/cant-select-some-items-site.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • When connecting to a server farm in sharepoint foundation 2013 cannot create new farm error: One or more types failed to load

    When trying to create a new server farm in the sharepoint foundation 2013 we get a following error :
    The local farm is not accessible. Cmdlets with FeatureDependencyId are not registered.
    PS C:\Users\Administrator> New-SPConfigurationDatabase
    cmdlet New-SPConfigurationDatabase at command pipeline position 1
    Supply values for the following parameters:
    DatabaseName: SharePoint_Config
    DatabaseServer: PC78\SQLEXPRESS,25111
    FarmCredentials
    Passphrase: *********
    New-SPConfigurationDatabase : One or more types failed to load. Please refer
    to the upgrade log for more details.
    At line:1 char:1
    + New-SPConfigurationDatabase
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidData: (Microsoft.Share...urationDatabase:
    SPCmdletNewSPConfigurationDatabase) [New-SPConfigurationDatabase], SPUpgra
    deException
    + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletNewSPCon
    figurationDatabase
    And the error log is shown below :
    Microsoft.SharePoint.Upgrade.SPUpgradeException: One or more types failed to load.
    Please refer to the upgrade log for more details.
    at Microsoft.SharePoint.Upgrade.SPActionSequence.LoadUpgradeActions()
    at Microsoft.SharePoint.Upgrade.SPActionSequence.get_ActionsInternal()
    at Microsoft.SharePoint.Upgrade.SPUtility.GetLatestTargetSchemaVersionByMajorVersion(Type typeActionSequence, Int32 majorVer)
    at Microsoft.SharePoint.Upgrade.SPUtility.get_CurrentSPSiteWssTargetSchemaVersion()
    at Microsoft.SharePoint.Administration.SPSiteCollection.Add(SPContentDatabase database, SPSiteSubscription siteSubscription, String siteUrl, String title, String description, UInt32 nLCID, Int32 compatibilityLevel, String webTemplate, String ownerLogin, String ownerName, String ownerEmail, Strin... b712a522-fa85-49eb-b59c-dedf55295504
    ...g secondaryContactLogin, String secondaryContactName, String secondaryContactEmail, String quotaTemplate, String sscRootWebUrl, Boolean useHostHeaderAsSiteName, Boolean overrideCompatibilityRestriction)
    at Microsoft.SharePoint.Administration.SPSiteCollection.Add(SPSiteSubscription siteSubscription, String siteUrl, String title, String description, UInt32 nLCID, Int32 compatibilityLevel, String webTemplate, String ownerLogin, String ownerName, String ownerEmail, String secondaryContactLogin, String secondaryContactName, String secondaryContactEmail, Boolean useHostHeaderAsSiteName)
    at Microsoft.SharePoint.Administration.SPAdministrationWebApplication.CreateDefaultInstance(SqlConnectionStringBuilder administrationContentDatabase, SPWebService adminService, IdentityType identityType, ... b712a522-fa85-49eb-b59c-dedf55295504
    ...String farmUser, SecureString farmPassword)
    at Microsoft.SharePoint.Administration.SPFarm.CreateAdministrationWebService(SqlConnectionStringBuilder administrationContentDatabase, IdentityType identityType, String farmUser, SecureString farmPassword)
    at Microsoft.SharePoint.Administration.SPFarm.CreateBasicServices(SqlConnectionStringBuilder administrationContentDatabase, IdentityType identityType, String farmUser, SecureString farmPassword)
    at Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuilder configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase, IdentityType identityType, String farmUser, SecureString farmPassword, SecureString masterPassphrase)
    at Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuil... b712a522-fa85-49eb-b59c-dedf55295504
    ...der configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase, String farmUser, SecureString farmPassword, SecureString masterPassphrase)
    at Microsoft.SharePoint.PowerShell.SPCmdletNewSPConfigurationDatabase.InternalProcessRecord()
    at Microsoft.SharePoint.PowerShell.SPCmdlet.ProcessRecord() b712a522-fa85-49eb-b59c-dedf55295504
    Error Category: InvalidData Target Object Microsoft.SharePoint.PowerShell.SPCmdletNewSPConfigurationDatabase Details NULL RecommendedAction NULL b712a522-fa85-49eb-b59c-dedf55295504
    Leaving ProcessRecord Method of New-SPConfigurationDatabase. e9ae5ba6-c499-0000-d35c-aee999c4cf01
    we are using server 2012 R2 and we don't have office 2010 installed

    Yes,SQL server is on the same server as SharePoint 
    SQL has both the permissions Securityadmin
    and  DBcreator roles on SQL Server.
    When we run those sharepoint management shell commands the database  will be created with the error
    msg (shown in attachment)

Maybe you are looking for

  • Scanning multiple pages from 5520 to iPad.

    I can scan single pages on 5520 to iPad using AiO Remote app but cannot figure out how to get them into one file.  Any suggestions would be appreciated.

  • IPad & iPod sync issues with new iTunes

    Since the latest iTunes update, 1. My iPad Mini won't allow me to swap out TV episodes. I routinely change what episodes to carry around with me. It will add and remove mp4 video files without a problem. One time I even saw a download progress bar as

  • How to install the jar files for the cf extensions

    Hi, In adobe labs I saw some extensions you can download for cf/flex. They seem to be a bunch of jar files and a plugins directory. How do I use these. I did not see any documentation? Where do these files go? I think a web-inf dir or something like

  • Mail doesn't show me the e-mail address

    Mail should show me the e-mail address, but it doesn't. I mean.. if I receive a mail from a my friend and Mail thinks it's a spam mail, it put it in the spam directory. I drag and drop it in the inbox mails, but if I do that, the e-mail address and o

  • Some songs listed in my iTunes Library won't play

    I'm running iTunes 8.0.2.20 on Windows XP SP3. My iTunes library is set to be located in the default place, i.e. C:\Documents and Settings\<my user name>\My Documents\My Music\iTunes\iTunes Music It's fairly large (11833 songs to date). I regularly s