J3D in Eclipse

I found a plugin... It's not working...
I added PATH in Eclipse... Still not working...
I copied files from the dl to jdk /bin... Still not working...
But I can successfully run examples from cmd prompt... So I at least know it works... Just how to get it working in Eclipse?

hi!
I think first:
there is not many people going to help you here, I have been posted a few nicely explained posts, and got rare answers.
Then, pardon me to mention it but your question is very vague and unclear, how do you want anyone to answer?
What plugin is not working?
path in eclipse? what's that?
copied files? well done!...:|
etc...
what are you trying to do, etc....
does the code you have compile, etc...
Well... thats it!
Im using netbeans 5.5 and Java3d and it works fine, I mean I am able to render a java3d scene! (I cant create a .JAR though seems hard to sort that out).

Similar Messages

  • Setting up Java 3D in linux for Eclipse programming...

    I'm trying to start programming with Java 3D, but I think I'm having problems with the initial setup. I installed Java3D using the amd64 bin script into the active jre: /usr/lib/jvm/java-6-sun/jre/. I'm working in Eclipse and have included j3dcore.jar, j3dutils.jar, and vecmath.jar in the build path. It compiles just fine.
    My program is a very simple test from a tutorial:
    package tests;
    import com.sun.j3d.utils.universe.SimpleUniverse;
    import com.sun.j3d.utils.geometry.ColorCube;
    import javax.media.j3d.BranchGroup;
    public class Hello3d {
      public Hello3d()
        SimpleUniverse universe = new SimpleUniverse();
        BranchGroup group = new BranchGroup();
        group.addChild(new ColorCube(0.3));
        universe.getViewingPlatform().setNominalViewingTransform();
        universe.addBranchGraph(group);
      public static void main(String[] args) {
        new Hello3d();
        System.out.println("blah");
    }And I get the following exception when it runs:
    Exception in thread "main" java.lang.NoClassDefFoundError: javax.media.j3d.X11NativeConfigTemplate3D
       at java.lang.Class.initializeClass(libgcj.so.90)
       at java.lang.Class.forName(libgcj.so.90)
       at javax.media.j3d.NativeConfigTemplate3D$1.run(NativeConfigTemplate3D.java:60)
       at java.security.AccessController.doPrivileged(libgcj.so.90)
       at javax.media.j3d.NativeConfigTemplate3D.createNativeConfigTemplate3D(NativeConfigTemplate3D.java:55)
       at javax.media.j3d.NativePipeline.initialize(NativePipeline.java:107)
       at javax.media.j3d.Pipeline.createPipeline(Pipeline.java:151)
       at javax.media.j3d.MasterControl.loadLibraries(MasterControl.java:926)
       at javax.media.j3d.VirtualUniverse.<clinit>(VirtualUniverse.java:280)
       at java.lang.Class.initializeClass(libgcj.so.90)
       at java.lang.Class.initializeClass(libgcj.so.90)
       at tests.Hello3d.<init>(Hello3d.java:11)
       at tests.Hello3d.main(Hello3d.java:19)
    Caused by: java.lang.ClassNotFoundException: sun.awt.X11GraphicsDevice not found in gnu.gcj.runtime.SystemClassLoader{urls=[file:/home/max/Dropbox/Projects/Basic Java3D Linux AMD64/,file:/home/max/Dropbox/Projects/Basic Java3D Linux AMD64/Java3D/Linux AMD64/lib/ext/j3dcore.jar,file:/home/max/Dropbox/Projects/Basic Java3D Linux AMD64/Java3D/Linux AMD64/lib/ext/j3dutils.jar,file:/home/max/Dropbox/Projects/Basic Java3D Linux AMD64/Java3D/Linux AMD64/lib/ext/vecmath.jar], parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}}
       at java.net.URLClassLoader.findClass(libgcj.so.90)
       at java.lang.ClassLoader.loadClass(libgcj.so.90)
       at java.lang.ClassLoader.loadClass(libgcj.so.90)
       at java.lang.Class.forName(libgcj.so.90)
       at java.lang.Class.initializeClass(libgcj.so.90)
       ...12 moreI installed libgcj via Synaptic (I'm running Ubuntu) but still get the same error, so I'm unsure how I should proceed. Any ideas what's wrong?

    A late reply but I encountered the same issue. For anyone who googles this thread and everyone else I have a solution!
    Use Sun's JRE! It seems GCJ doesn't support the API 100% so what you need to do is
    $ sudo apt-get install sun-java6-jreand then in Eclipse change the default workspace JRE or the project JRE to the new one. Eclipse apparently only scans the system for installed JREs on first run so you need to add it manually:
    Right click on project, select Properties. Go to panel Java Build Path and select tab Libraries. Select your JRE from this list, it should be named similar to java-1.5.0-gcj-4.3-1.5.0.0, and click Edit. Click Installed JREs and then Add.
    Enter a descriptive JRE name, such as Java 6 Sun JRE 1.6.0.x and then enter the path where the JRE is installed - on my Ubuntu machine it's in +/usr/lib/jvm/java-6-sun/jre+.Select OK twice, select the new JRE as the default for all projects in the workspace or select it via the Alternate JRE setting which will only use Sun's JRE for this project.
    Good luck!

  • Installing java3D with eclipse

    Hi, am new to java and am using eclipse. Have downloaded all the files required and have built a path using them, ie. j3dcore.jar, j3dutils.jar and vecmath.jar.
    Problem is, i still cant run any example programs.
    things like;
    import com.sun.j3d.utils.universe.SimpleUniverse;
    import com.sun.j3d.utils.geometry.ColorCube;
    import javax.media.j3d.BranchGroup;
    import com.sun.j3d.utils.applet.MainFrame;
    are flagged, and all it says are things like
    Access restriction: The type MainFrame is not accessible due to restriction on required library C:\Program Files\Java\jre6\lib\ext\j3dutils.jar
    please help.
    Thank youuu

    I think you also need the jogl and gluegen-rt files as well. This is how I set up my system; I install my libraries in a separate place in my home directory (under ~/dev specifically), I never bother with "jre/lib/ext":
    jsemler@jsemler-desktop:~/dev$ ls -R java3d jogl-1.1.1-rc8-linux-i586
    java3d:
    lib
    java3d/lib:
    ext  i386
    java3d/lib/ext:
    j3dcore.jar  j3dutils.jar  vecmath.jar
    java3d/lib/i386:
    libj3dcore-ogl-cg.so  libj3dcore-ogl.so
    jogl-1.1.1-rc8-linux-i586:
    CHANGELOG.txt  COPYRIGHT.txt  lib  LICENSE-JOGL-1.1.1-rc8.txt  README.txt  Userguide.html
    jogl-1.1.1-rc8-linux-i586/lib:
    gluegen-rt.jar  jogl.jar  libgluegen-rt.so  libjogl_awt.so  libjogl_cg.so  libjogl.so
    jsemler@jsemler-desktop:~/dev$ In eclipse, under "<project name>...Properties...Java Build Path...Libraries" I add the following Jar files:
    /home/jsemler/dev/java3d/lib/ext/j3dcore.jar 
    /home/jsemler/dev/java3d/lib/ext/j3dutils.jar
    /home/jsemler/dev/java3d/lib/ext/vecmath.jar
    /home/jsemler/dev/jogl-1.1.1-rc8-linux-i586/lib/gluegen-rt.jar
    /home/jsemler/dev/jogl-1.1.1-rc8-linux-i586/lib/jogl.jarI set the native library path for j3dcore to: "/home/jsemler/dev/java3d/lib/i386".
    I set the native library path for gluegen-rt.jar and jogl.jar to: "/home/jsemler/dev/jogl-1.1.1-rc8-linux-i586/lib"
    You can pick up the jogl and gluegen-rt jar files from here:
    http://download.java.net/media/jogl/builds/archive/
    I can't personally vouch for any of the other versions. IIRC, I'm using version 1.1.1-rc8 for compatibility reasons involving NASA World Wind SDK.

  • Javax.media,j3d import problem

    Hi,
    I had one old project and have tried to run it today.
    I have downloaded jdse 1.5 and I have tried to compile with eclipse 3.1 but I can't import these classes, the errors are :
    Severity     Description     Resource     In Folder     Location     Creation Time
    2     The import javax.media cannot be resolved     Demoirb2000nonrealtime.java     RTEnvironment/Demo     line 15     8 de diciembre de 2005 10:49:38
    2     The import javax.vecmath cannot be resolved     Demoirb2000nonrealtime.java     RTEnvironment/Demo     line 16     8 de diciembre de 2005 10:49:38
    2     The import com.sun.j3d cannot be resolved     Receiver.java     RTEnvironment/Demo     line 4     8 de diciembre de 2005 10:39:33
    what can I do?

    try a search on google for javax.media and the others import I'm not sure but I think they are not standard java.

  • Eclipse Community Forums

    Hi,
    I have a problem using Xtext generated ecore files in both Eclipse and standalone Java. In a nutshell, Xtext generates relative ecore references which work fine in Eclipse for platform:/resource URIs which make it seem like all projects are siblings of each other, but break when loading resources via absolute file:/ URIs when projects are not physically situated in the same directory.
    For example, I have a few Xtext languages that import each other and refer to each other's elements. Xtext generates ecore files for these languages, and they wind up having relative references to each other. I have a com.mecha1.atom.model.query Xtext project whose language generates an AtomQuery.ecore with references to an imported AtomType.ecore that look like this:
    Quote:
    eType="ecore:EClass ../../../../../../../com.mecha1.atom.model.type/src/com/mecha1/atom/model/type/AtomType.ecore#//EntityDecl"
    This works ok in Eclipse because the actual absolute URIs are platform:/resource based and all of the workspace projects are directly referenced via platform:/resource/<project>:
    Quote:
    platform:/resource/com.mecha1.atom.model.query/src-gen/com/mecha1/atom/model/query/AtomQuery.ecore
    platform:/resource/com.mecha1.atom.model.type/src/com/mecha1/atom/model/type/AtomType.ecore
    However on the filesystem these projects exist in different subdirectories:
    Quote:
    file:/Users/esp/Code/mecha1/Atom/atom/data/com.mecha1.atom.model.query/bin/com/mecha1/atom/model/query/AtomQuery.ecore
    file:/Users/esp/Code/mecha1/Atom/atom/core/com.mecha1.atom.model.type/bin/com/mecha1/atom/model/type/AtomType.ecore
    So when the relative path is used to navigate from one ecore model to the other they do not resolve correctly. The relative URIs will also break if resources are loaded from archive:/ URIs e.g. when loaded from classpath bundles via org.eclipse.xtext.mwe.Reader.
    Is there a strategy deal with this? For instance, is there a way to force Xtext to generate absolute URIs for cross references? Then at least I could use the EMF URI map to remap things depending on what context the models are being loaded in.
    Thanks,
    Edwin

    Edwin,
    Comments below.
    On 12/10/2012 9:09 AM, Edwin Park wrote:
    > Hi Ed,
    >
    > Thanks, this helped to put me on the right track.
    >
    > I also moved my ecore/genmodel files into a non-source 'model'
    > directory in my plugin according to your suggestion. This avoids the
    > files being duplicated in the bin dir as you said, but when I take
    > them out of the classpath like this, I can no longer reference them in
    > the Xtext editor.
    Yes, because it doesn't index them until they commit this patch I provided:
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=390411
    >
    > For example, I modified the default mydsl sample to include a
    > reference to an EClass in the greeting:
    >
    >
    > grammar org.xtext.example.mydsl.MyDsl with
    > org.eclipse.xtext.common.Terminals
    >
    > generate myDsl "http://www.xtext.org/example/mydsl/MyDsl"
    >
    > import "http://www.eclipse.org/emf/2002/Ecore" as ecore
    >
    > Model:
    > greetings+=Greeting*;
    >
    > Greeting:
    > 'Hello' eClass=[ecore::EClass|QualifiedName] '!';
    >
    > QualifiedName:
    > ID ('.' ID)*;
    >
    >
    > And I have a plugin com.mecha1.atom.mysql that looks like this:
    >
    > com.mecha1.atom.mysql/model/mysqlConfig.ecore
    > com.mecha1.atom.mysql/model/MysqlConfig.genmodel
    >
    > com.mecha1.atom.mysql/plugin.xml:
    >
    > <?xml version="1.0" encoding="UTF-8"?>
    > <?eclipse version="3.0"?>
    >
    > <!--
    > -->
    >
    > <plugin>
    >
    > <extension point="org.eclipse.emf.ecore.generated_package">
    > <package
    > uri="http://www.mecha1.com/atom/mysql/MysqlConfig"
    > class="com.mecha1.atom.mysql.mysqlConfig.MysqlConfigPackage"
    > genModel="model/MysqlConfig.genmodel"/>
    > </extension>
    >
    > </plugin>
    >
    >
    > com.mecha1.atom.mysql/build.properties:
    >
    > #
    >
    > bin.includes = .,\
    > META-INF/,\
    > plugin.xml,\
    > plugin.properties,\
    > model/
    > jars.compile.order = .
    > source.. = src/,\
    > src-gen/,\
    > xtend-gen/
    > output.. = bin/
    >
    >
    > When I launch a hosted Eclipse and create a .mydsl file in a plug-in
    > project with the com.mecha1.atom.mydsl plugin specified as a
    > dependency, the content assist for the eClass attribute does not show
    > anything. However if the ecore files are in the classpath of the
    > dependency plugin, the content assist will show them.
    Yes, that's the bug I referred to.
    >
    > Another thing I noticed is that if I include the org.eclipse.emf.ecore
    > plugin, the Xtext content assist will correctly show the contents of
    > the Ecore.ecore, which is also in a model directory in the plugin.
    But it's an actual deployed bundle so it's actually on the classpath but
    the PDE doesn't properly put the model folder on the classpath, only the
    bin folder.
    > Is there something else I need to do to get Xtext to recognize the
    > ecore file for cross reference scoping/content assist if the ecore is
    > not in the classpath?
    >
    > Thanks,
    > Edwin
    >
    >

  • OEPE causes Eclipse Kepler to start with wrong workspace, overrides Eclipse's workspace configuration

    I'm a new OEPE user, and found that after installing it, Eclipse (Kepler) now starts up with the wrong workspace every time. I have to explicitly do File > Switch Workspace... to get Eclipse to restart with the correct workspace. Also, the workspace I want to use is the only one listed in the Workspaces preferences panel (Window > Preferences > General > Startup and Shutdown > Workspaces). So I can't figure out why Eclipse is using the wrong workspace, and why it's even finding this wrong one.
    I found that many other users of OEPE with Kepler are having this same problem:
    Eclipse Community Forums: Eclipse Platform &amp;raquo; Kepler: On start up, I no longer get prompted for workspace locat…
    And this sounds curiously like this old problem reported right here on the OTN Community site:
    https://forums.oracle.com/thread/2191740
    Any suggestions for how to get around this? I assume this is a bug, but don't know the correct process for reporting OEPE bugs.

    77e559c0-cd28-48cd-916f-3f755e9683b5 wrote:
    Hi.
    I suspect that some action by the OEPE code somehow modifies the OSGi Cache so that it no longer asks you what workspace you'd like to use (and forces usage of the workspace in top user directory.)  I found that if you put in "-clean" in your eclipse.ini, then you get asked what workspace you'd like to use.  This flag clears out the OSGi cache (hence my theory that it is this cache that is messed up)
    That said, there are arguments for not doing this all the time.  See this discussion: java - How to run eclipse in clean mode? and what happens if we do so? - Stack Overflow
    Finally, I suspect you have another workspace on your system now.  Presuming you are on a PC, go to your user dir - I'd wager there is a "workspace" dir there now.  That is where OEPE wants to work.
    Good Luck!
    OEPE should be able to work with any workspace; it has in the past!  If a specific workspace is required with this release, that is a step backward in my opinion.  That said, if that is the direction of the product, so be it.  I find it hard to believe that is the direction of the product, however!

  • Exception-Error when excecuting JSP-File in Crystal reports for Eclipse

    Hi,
    I have created a jsp-File from an rpt-File in Crystal report for Eclipse. When I start the jsp-File on Apache Tomact 5.5 then only errors occurs.
    Coud anyone help me?
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 6 in the generated java file
    Only a type can be imported. com.crystaldecisions.report.web.viewer.CrystalReportViewer resolves to a package
    An error occurred at line: 7 in the generated java file
    Only a type can be imported. com.crystaldecisions.reports.sdk.ReportClientDocument resolves to a package
    An error occurred at line: 8 in the generated java file
    Only a type can be imported. com.crystaldecisions.sdk.occa.report.application.OpenReportOptions resolves to a package
    An error occurred at line: 9 in the generated java file
    Only a type can be imported. com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase resolves to a package
    An error occurred at line: 10 in the generated java file
    Only a type can be imported. com.crystaldecisions.sdk.occa.report.reportsource.IReportSource resolves to a package
    An error occurred at line: 13 in the jsp file: /Bericht1-viewer.jsp
    ReportClientDocument cannot be resolved to a type
    10:      try catch (ReportSDKExceptionBase e)
    60:      
    An error occurred at line: 58 in the jsp file: /Bericht1-viewer.jsp
    e cannot be resolved
    55:
    56:
    57:      } catch (ReportSDKExceptionBase e)
    60:      
    61: %>
    Stacktrace:
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:93)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)
         org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:435)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:298)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:277)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:265)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:564)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:302)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.26 logs.
    Apache Tomcat/5.5.26
    Bericht1.jsp:
    <%@page import="com.crystaldecisions.report.web.viewer.CrystalReportViewer,
    com.crystaldecisions.reports.sdk.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase,
    com.crystaldecisions.sdk.occa.report.reportsource.IReportSource"%><%
         // This sample code calls methods from the JRCHelperSample class, which
         // contains examples of how to use the BusinessObjects APIs. You are free to
         // modify and distribute the source code contained in the JRCHelperSample class.
         try {
              String reportName = "Bericht1.rpt";
              ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
              if (clientDoc == null) {
                   // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
                   // tag can be removed to open the reports as Java resources or using an absolute path
                   // (absolute path not recommended for Web applications).
                   clientDoc = new ReportClientDocument();
                   // Open report
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                   // Store the report document in session
                   session.setAttribute(reportName, clientDoc);
                   // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
                        // Create the CrystalReportViewer object
                        CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
                        //     set the reportsource property of the viewer
                        IReportSource reportSource = clientDoc.getReportSource();                    
                        crystalReportPageViewer.setReportSource(reportSource);
                        // set viewer attributes
                        crystalReportPageViewer.setOwnPage(true);
                        crystalReportPageViewer.setOwnForm(true);
                        // Apply the viewer preference attributes
                        // Process the report
                        crystalReportPageViewer.processHttpRequest(request, response, application, null);
                   // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
         } catch (ReportSDKExceptionBase e) {
             out.println(e);
    %>
    Thanks
    Arnold

    According to the release notes, for the JRCHelperSample to compile, you must set the target runtime for the project.
    To do this, either create a project from scratch that uses the Tomcat 5.5 target runtime, or go to the properties menu and ensure that the target runtime is set to the application server you will be using.

  • Remote system JSP project not working in eclipse

    Hi
    I am developing a JSP project. My files are on a remote server and I want to configure it in Eclipse 3.3 with Lomboz. The problem is After adding the project it gives a warning that xml files can't be validated.The exact warning is
    The file cannot be validated as the XML Schema "\192.168.1.10\gunjan_share\workspace\Project1\WebContent\WEB-INF\web.xml (The system cannot find the path specified)" that is specified as describing the syntax of the file cannot be located.
    Due to this error JSP pages are not getting compiled.
    Plz help me
    Thanks

    Extracted from Note 1067696.1:
    You need to either adapt your code to remove the scriptlets in your JSP page,
    or you can use the following Java option to disable OJSP:
    -Dadfvdt.disableOjspDeployment=true
    You can add this option -Dadfvdt.disableOjspDeployment=true in your file "ide.conf" in the directory "<Middleware_Home>\jdeveloper\ide\bin"
    For your Production environment, you can have your Managed WLS ignoring the OJSP mode by adding the Java Option -Dadfvdt.disableOjspDeployment=true
    * in the "startManagedWebLogic" (if you want to limit it to a specific Managed Server)
    * or "setDomainEnv" (for all managed servers in a domain).

  • Error while running a Servlet program in Eclipse IDE

    Hi,
    I have tried running the following program in the Eclipse Editor. It doesnt compile. I have installed the Tomcat plugin too.
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class HTTPGetServlet extends HttpServlet {
         public void doGet(HttpServletRequest request,
                   HttpServletResponse response)
         throws ServletException, IOException
              PrintWriter output;
              response.setContentTe("text/html");
              output=response.getWriter();
              StringBufer buf=new StringBuffer();
              buf.append("<HTML><HEAD><TITLE>\n");
              buf.append("A simple servlet example\n");
              buf.append("</TITLE></HEAD><BODY>");
              buf.append("<H1>Welcome to the world</H1>\n");
              buf.append("</BODY></HTML>");
              out.println(buf.toString());
              output.close();
    On a closer look i realized that the IDE is showing as error any import statements i type in. Can anyone help me get over this problem? Thanks a lot in advance.
    bye
    V

    You need to add the JAR containing the servlet API in the external JARs for the project.
    Regards,
    Carol.

  • Running a java program outside eclipse...!

    Hi guys...!
    I wrote a java program that uses different classes. The program deals with xml documents and creates a new xml document. The problem is, the program works fine in eclipse, but when I run through the command line in windows, it complains that it can't see the different classes that I created. Here is one of the error messages:
    Test.java:44:cannont find symbol
    symbol : class Circuit
    location : class src.Test
    Circuit cir = new Circuit ();
    Note: Test.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details
    Does anyone know how to resolve this...?
    Any help from you guys will be very appreciated.
    Thanks..

    I think the problem is probably something like this:
    You have a path thus:
    C:\blahblahblah\With a subdirectory thus:
    C:\blahblahblah\srcIn which you have declared classes thus:
    package src;
    public class Foo {
    }And you have then used a classpath something like the
    following:
    javac -classpath C:\blahblahblah\src Foo.javaThis is incorrect. Your classpath needs to point to
    the root of the package hierarchy. If it's like the
    above, it will look in C:\blahblahblah\src for a
    package src, which results in a path like
    C:\blahblahblah\src\src which does not exist.
    You should set it to:
    C:\blahblahblah\Where that is the root from which your packages
    stem.
    Dave.Thanks Dave. It works man. I really appreciate your help.

  • ONE LAST HURRAH: Before saying Goodbye to my Beloved MSI Eclipse!!!

    I already posted this  article  in the motherboard thread but seems like this is the best place to post this
    ONE LAST HURRAH: Before saying Goodbye to my Beloved MSI Eclipse!!!
    Well it has been two months since I purchased this MSI Eclipse SLI board and while waiting for its bigger brother MSI Eclipse Plus, I would like to try out a new board from another manufacturer. Before I pass this board to its new owner, I decided to give it a little review to so that other people who will be upgrading to i7 platform will have some idea how good or how bad this board is.
    A few months ago and maybe until now, Eclipse is the flagship board of MSI in terms of i7 based motherboard. Its bigger brother MSI Eclipse Plus has already been sighted in some forums but no definite date yet on when it will be available in the market.
    The Box
    The size of the box was way bigger than my old P45 motherboards. It is actually almost 2x the size of the conventional ATX board box. 
    Upon opening the panel on the box, you will see a lot of information about the board! You will also see the added stuff from MSI like the Green Power Genie as well as the awesome Creative Xfi! Yes, a creative Xfi Extreme Audio PCIe sound card was included on the package.
    Upon opening the box, you will see a plastic container (I am assuming that this is anti-static) that contains the motherboard, DLED2, Green Power Genie and creative X-fi.
    There’s another box that contains a lot of stuff! MSI is as usual generous in giving their customers all the things the need to fully populate the board. This includes the  cables needed to populate all the sata and ide slots,  cross fire and SLI cable, additional USB bracket, ESATA bracket and the M connectors. All the manuals needed to setup the boards are also included.
    The Board and Layout:
    The board for me is pretty sexy!  It comes with a black PCB. The RAM slots and the other expansion slots are only blue and black in color which is a perfect combination for an intel based platform. The IOH and the ICH10R is actually covered by a copper heatsink with heatpipes connecting them. Well, personally I do not like this design since I do know that x58 generates a lot of heat. The VRMs also come with a copper heatsink but no heatpipe . As far as I understand from the box information, this is MSI’s split thermal design as well as protection from warping.
    MSI also provided 6 RAM slots and they come in blue and black sockets. Do yourself a favor by putting the ram in the black slots. I previously ran into problems of the system hanging in “ DDR ini “ and later found out from reading the manual and searching the web that the black slots should be populated first.
    The board came with 10 sata ports! 6 of them in 90 degrees are connected to the ICH10 and the 4 are actually by the jmicron chips attached to the board and also function as
    HW raid. Connect 2 HDD on sata 7 and 8 or sata 9 and 10, do some stuff in the BIOS and you are all set to run the system in raid 1 (mirror) or 0 (stripe). I have had no chance to test the raid 0 + 1 since I don’t have 4 identical drives.  It also comes with an IDE slot for your old parallel IDE HDD and/or ODD.
    The expansion slots come with 3 pci x16 slots, 2 pci and 2 pcie x1 which I believe is more than enough to suffice your daily needs. The bottom part of the board came with a power, reset and dled switch along with MSI’s OC jumper.
    The back panel is not that good looking. Well it’s the same back panel style of their P45 series board. It doesn’t matter anyway since it is at the back of the chassis and what concerns me the most is functionality. The board came with 8 usb ports at the back, 2  Gigabit lan, 2 esata ports, a 1394 connector, a cmos reset switch and the conventional PS/2 ports for mouse and keyboard.
    Bios and overclocking
    I  just captured the most important portion on the bios which is the Cell Menu. It is the overclocking tab on MSI’s BIOS
    Overclocking and Benchmarking Results
    Since I have not installed anything yet on my new board, I decided just to compare the stock and overclock result from this board.
    Below are the lists of components that I will be using
    Intel Core i7 920 2.66ghz  ( cooled by Thermalright HR 01 plus )
    MSI Eclipse SLI – Beta BIOS 1.45
    MSI 8800gtx (well a bit old but still reliable)
    Team Extreme ddr3 1600 @ 8-8-8-25 rated 1.65V
    Western digital Raptor 74gb 16MB cache
    I tried setting up this board one last time on my  DIY open system  using the components above. And Good thing that my ever energetic and reliable  assistant is always there to help … hahahaha
    SPI Stock and 4Ghz OC  Results
    Stock =  15.313s
    4Ghz = 10.405s
    PC Mark 05 Stock and 4 Ghz OC Result
    Stock = 9745
    4Ghz = 13136
    3DMark 05 Stock and  4Ghz OC results
    Stock = 13388
    4Ghz = 14289
    3DMark vantage Stock and 4Ghz OC Results
    Stock = 8160 ( 33530 on CPU score )
    4Ghz = 8315 ( 43567 CPU score )
    Aquamark Stock and Overclock
    Stock = 131812 ( 18685 CPU score )
    4Ghz =  179261 ( 23139 CPU score )
    I tried playing with bclock  since I have seen people in several forum saying that their boards( not specific to MSi eclipse ) / i7 proc cannot go above 200 or maybe just above 200 bclock. After doing some tweak I was able to get 215 bclock and the max I was able to get is 218,  All the test that had been done are just after vista installation. No tweaks done  on windows.
    SPI = 10.343 ( 19 x 215 )
    SPI = 10.030s (  19 x 218 )
    Wrap-up / Conclusion
    I really don’t want to let this board go but I don’t have extra budget to buy and try new boards from other manufacturer so that I can compare the result. So right now I am stuck with selling this just to buy another x58 board (of which I will try to post a mini review soon)
    I did encounter IOH temperature issue when I first bought this motherboard. IOH temperature is at 65C and this still goes up while running benchmarking tests. I made minor modifications on the board and as far as I know, it did not void the warranty. Below are the modifications that I have made:
    1.   Removed the violet thermal paste that MSI used and replaced it with Artic Silver 5.
    2.   Removed the plastic pushpin and replaced it with a bolt and plastic nut.
    3.   Added a 40mmfan that is just enough to take out the heat from the IOH
    Guess what, the temperature after these is just below 55C even under benchmarking (done during night time and I would expect that this will go to probably 60 degrees during daytime given the tropical climate in the Philippines).
    I was able to overclock my i920 at 3.6ghz without even adjusting anything on the voltages. Meaning they are at stock settings!  I managed to reach 4.0 ghz by simply adding 0.040v (around 1.29 Vcore only)
    Pros
    -   Easy to overclock board
    -   Supports both SLI and crossfire
    -   No issue on bigger after market cooling
    -   90 degrees placement of ICH10’s sata port
    -   Server grade VRM’s and Capacitors used
    -   Creative Xfi included
    Cons
    -   Only one SLI bridge included. It would have been better if a tri SLI connector was given by MSi.
    -   IOH temp an issue for my board.  Need to monitor and maybe try my modifications.
    -   Power/Reset/DLED Switches location will not be accessible if a 3rd video card is installed.
    Other thoughts
    -   It would have been better if the BIOS of the eclipse comes with nominal values on the Cell Menu. This is to serve as guide for the users if they are trying to alter the voltages.
    -   Maybe swap the ide and the sata 7 to 10 ports?  It is better looking if all 10 sata ports are on 90 degrees. It will also ensure that even if you use 2 or 3 video cards, it will not hit any of the sata 7-10 cables if you use them.

    I can see you got your use out of it.   I hope the new owner tortures it, too!

  • Eclipse indigo and weblogic 10.3- not able to download wl 10.3 to indigo

    Install new extension from eclipse indogo, it does not give option of weblogic 10.3. It gives
    BEA Weblogic Server v8.1
    BEA Weblogic Server v9.0
    BEA Weblogic Server v9.1
    BEA Weblogic Server v9.2
    BEA Weblogic Server v10.0
    It does not give
    BEA Weblogic Server v10.3
    How do I configure weblogic 10.3 to eclipse[indigo]?
    1.Change Eclipse memory settings by updating the properties of eclipse.ini file -Xmx768m -Xms256m
    2.Make sure this configuration (-Dsun.lang.ClassLoader.allowArraySyntax=true) is there, if not add it and save the file.
    3.Make sure you have configured your Weblogic server in "Development" mode. If node done, please change the configuration.
    4.Start Eclipse
    5.Go to Window -> Preferences -> Server -> Installed Runtimes -> Add
    6.In the dialog "New Server Runtime", there is a link "Download additional server adapters". Click it, and Eclipse will search on the Internet for additional server adapters. When it's done, select “Oracle Web Logic Server Tools” (or more appropriate one, if you get one) and install it.
    7.Alternate to step 5, you can add http://download.oracle.com/otn_software/oepe/galileo as updated site in Eclipse and install the Eclipse pack from Oracle.
    8.Restart your Eclipse after installation.
    9.Open server view as Window ->Open View -> Others -> Server ->Servers
    10.Right click on the pane, and select new server
    11.In the next screen, select your JRE e.g. JRE 1.5 and Weblogic installation directory e.g. C:\bea\weblogic.
    12.Click next
    13.In next screen, provide the Weblogic domain directory e.g. C:\bea\weblogic\myprojects\domains\mydomain, provide the Weblogic port e.g. 7001 and user id/password for the Weblogic server.
    14.Click finish.
    15.Double click on the server; it will open server details in the editor. Make sure publish automatically check box is check. If not checked, check it, save and close it.
    16.At this point, you can see Weblogic server listed in server pane.
    17.You can right click the server and add/remove projects from your workspace to this server.

    No it's different. It's different script.
    I got the below response from Oracle support, and I'm trying to see where this Servers tab is. I see a servers tab in preference, but I don't think that's what they mean because there's no domain item.. Any idea?
    Basically, OEPE connects to weblogic domain through admin server. When you create a new server in OEPE, you only choose domain instead of individual servers, and that server created maps to domain's admin server.
    If you want to deploy the application developed in OEPE to managed servers or cluster, you could try the following:
    1) browse to Servers tab
    2) right click on the domain
    3) choose 'Properties'
    4) choose 'WebLogic' -> 'Publishing' -> 'Advanced'
    5) move disired target from left to right

  • Eclipse loses installed software after update. How to manage?

    Whenever eclipse gets updated with `pacman -Syu` I lose all my installed software. As you can imagine, this is really annoying because when I start eclipse there are zombie buttons in the UI that no longer do anything because those plugins aren't installed anymore (at least not from eclipse's point of view). I'm assuming those buttons appear in the UI due to some eclipse-auto-generated configs that remain in my workspace. Is there a way to upgrade and *not* lose installed software? (I'm talking about software installed using update sites within eclipse)
    EDIT: The only way that I know how to solve the problem is to remove the .metadata folder from my workspace then recreate my perspective layout from scratch, redo all my settings in preferences, and reinstall all the plugins I want. That's obviously not something I want to keep doing every time eclipse gets updated.
    EDIT: After reinstalling Spring MVC plugins eclipse crashes after startup. I tried downgrading to the previous version of eclipse from pacman's cache, reinstalled Spring MVC, and now it's still crashing.
    Last edited by trusktr (2014-03-10 05:50:42)

    take back date setting to two-three days past
    power off
    power on
    open Settings-Game Center
    sign in
    correct date settings

  • Eclipse +flex 3 plugin crashes when trying to see mxml file in design mode

    Hi,
    I have strange problem I've been struggling with for 3 days.
    I have eclipse-jee-europa-fall2-win32(eclipse europa 3.3.1.1)
    + adobe flex 3 eclipse plugin.
    My workspace consists of several projects + one library.
    There is not problem when trying to edit any mxml file when
    my library is not imported yet. Once I import it to my workspace I
    cannot see any mxml file in design mode since it crashes with the
    following msg in log:
    Did anyone have similar problem and maybe knows the
    solutiuon? I've reinstalled/redownoaded eclipse, flex plugin, flash
    players and so on. What's more it happens only on my machine - same
    project on different one works without crushing.
    !ENTRY org.eclipse.osgi 2 0 2008-02-22 09:13:18.046
    !MESSAGE While loading class
    "org.eclipse.mylyn.tasks.ui.TasksUiPlugin", thread
    "Thread[main,6,main]" timed out waiting (5000ms) for thread
    "Thread[Worker-0,5,main]" to finish starting bundle
    "update@plugins/org.eclipse.mylyn.tasks.ui_2.1.0.v20070927-0900.jar
    [313]". To avoid deadlock, thread "Thread[main,6,main]" is
    proceeding but "org.eclipse.mylyn.tasks.ui.TasksUiPlugin" may not
    be fully initialized.
    !STACK 0
    org.osgi.framework.BundleException: State change in progress
    for bundle
    "update@plugins/org.eclipse.mylyn.tasks.ui_2.1.0.v20070927-0900.jar"
    by thread "Worker-0".
    at
    org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.j ava:1141)
    at
    org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:258)
    at
    org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at
    org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
    at
    org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
    at
    org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
    at
    org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at
    org.eclipse.mylyn.context.ui.ContextUiPlugin$5.run(ContextUiPlugin.java:258)
    at
    org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at
    org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
    at
    org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
    at
    org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
    at
    org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
    at
    org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
    at
    org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
    at
    org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
    at
    org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
    at
    org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at
    org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
    at
    org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
    Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
    Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at
    org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    Caused by:
    org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException
    ... 40 more
    Root exception:
    org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException
    at
    org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.j ava:1141)
    at
    org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:258)
    at
    org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at
    org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
    at
    org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
    at
    org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
    at
    org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at
    org.eclipse.mylyn.context.ui.ContextUiPlugin$5.run(ContextUiPlugin.java:258)
    at
    org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at
    org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
    at
    org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
    at
    org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
    at
    org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
    at
    org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
    at
    org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
    at
    org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
    at
    org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
    at
    org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at
    org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
    at
    org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
    Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
    Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at
    org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    !ENTRY org.eclipse.help 4 0 2008-02-22 09:18:14.375
    !MESSAGE Required attribute "label" missing from "topic"
    element in "/com.adobe.flexbuilder.help/tocAPI.xml" (skipping
    element)
    !ENTRY org.eclipse.help 4 0 2008-02-22 09:18:14.375
    !MESSAGE Required attribute "label" missing from "topic"
    element in "/com.adobe.flexbuilder.help/tocAPI.xml" (skipping
    element)
    !ENTRY org.eclipse.help 4 0 2008-02-22 09:18:14.375
    !MESSAGE Required attribute "label" missing from "topic"
    element in "/com.adobe.flexbuilder.help/tocAPI.xml" (skipping
    element)
    !ENTRY org.eclipse.help 4 0 2008-02-22 09:18:14.375
    !MESSAGE Required attribute "label" missing from "topic"
    element in "/com.adobe.flexbuilder.help/tocAPI.xml" (skipping
    element)

    I've found solution by myself so I'll present it here. Maybe
    someone will need it.
    The problem of such behaviour was that Flex plugin always (at
    least on my pc) wants to ustart eclipse using its own JRE from here
    C:\Program Files\Adobe\Flex Builder 3 Plug-in\jre (default dir).
    This environment is Java 5. When you go to
    eclipse>window>preferences>Java>Installed JREs and you
    delete default Flex JRE, add new to point to for example C:\Program
    Files\Java\jre1.6.0_04 eclipse still uses JRE from C:\Program
    Files\Adobe\Flex Builder 3 Plug-in\jre. Do not know why
    Flex/eclipse does that but if you simply overwrite C:\Program
    Files\Adobe\Flex Builder 3 Plug-in\jre files with newer JRE from
    C:\Program Files\Java\jre1.6.0_04 all works perfectly.
    Hope it helps somebody ;-)
    thanks Artur

  • [Eclipse&JBoss] JBoss doesn't start

    Hi there.
    I encountered a problem in starting JBoss with Eclipse. The strange thing is that I have the same configuration on my laptop and it works. On this second computer it doesn't work and I can't understand why.
    Here my configuration:
    - Eclipse Galileo
    - JDK 1.6
    - JBoss 5.0.0 for jdk6
    I inserted JBoss as a server in Eclipse and then I launched my Enterprise Application in there. The server starts correctly, in more or less 20 seconds. Then I find in the console something like:
    +22:32:07,937 INFO [ServerImpl] JBoss (Microcontainer) [5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812042120)] Started in 23s:111ms+
    It could make me think that JBoss actually started, because there aren't errors. But Eclipse doesn't recognise it, and the bar in the right corner says "Starting JBoss..." since it goes in timeout.
    I found a post in this forum that says to change the timeout, or to replace JBoss with a new copy, or to do the same thing with Eclipse. I have done all these things, pushing the timeout to 1000 seconds, deleting the JBoss folder and replacing it, and deleting the Eclipse folder (but not the workspace). Still getting the same error. And I can't understand why.
    It's weird because I would expect to find an error in the console, but it's error free...
    Could anyone help me? I would be very very grateful!!
    Thank you for your attention.
    Eleanore
    Edited by: Eleanore on May 31, 2010 2:06 PM

    you may want to install jboss-tools.
    [http://www.jboss.org/tools|http://www.jboss.org/tools]
    Among a pile of other helper plugins, it has JbossAS tools. Using the server runtime setup from JBoss Tools, I've never had any problems with any version of JBoss.
    btw: Jboss 5.0 was fairly broken; I would consider upgrading to JBoss 5.1-jdk6 which is far more stable.

Maybe you are looking for

  • How do i move a data file from my pc to my ipad

    How do I move a data file from my computer to my ipad? It is my product catalogue and it would help if it were on my ipad.

  • Once and for all, compression for web

    I have done a lot of research on this, when exporting what are the best settings to export to the web (size and quality) I know it depends on the type of video you have. The best settings I have so far are: Export to QT conversion Broadband High Chan

  • Error While Redeploying 11.1.2.2 EPMA essbase cube

    Hi , I have a EPMA esssbase application (11.1.2.2) and having problems while redeployment. The suppose the Hierarchy of a dimension is like this during 1st deployment : Dimension+ MemberA MemberA_1(Store) MemberA_2(Store) MemberB MemberB_1(Store) Mem

  • Request showing still running in Monitor after request status is made red

    Hi All, We have a delta load running from an ODS1 to 3 Targets - Cube1, ODS3 and ODS4 through a single delta infopackage. For handling a production data failure, we had to delete the data from these 3 Targets along with the inits. Afterwards we again

  • I need help with my nano p

    I have a ZEN nano plus GB I have used it meavy 0 times last year this week I started working out again and for some reason it is not turning on. I did the software upgrade and it didn't work. any help will be appreciated.