Cannot create windows driver project

Hello,
I'm using Visual Studio 2013 Professional and I'm still in the trial period.
I'm attempting to create a windows driver project, however it's not available in my new project (File -> New -> Project) menu: http://imgur.com/Bk4afkI
I also have installed WDK 8.0 and the 8.1 update.
I can see the "Driver" drop-down menu: http://imgur.com/ovYBuHj
Any help is appreciated.
Cheers,
Ben

Hi,
Welcome to MSDN forum.
I am afraid that the issue is out of support range of VS General Question forum which mainly discusses the usage of Visual Studio IDE such as
WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
and Visual Studio Editor.
I suggest opening a thread on Windows Hardware WDK and Driver Developmentforum like this thread with the same issue:
http://social.msdn.microsoft.com/Forums/en-US/c2e6cee1-cf25-4be8-96ab-2a61dae13e7d/cannot-create-device-driver-project-in-vs2013-professional?forum=wdk for better support.
Thanks,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Why if i disconnect my external drive, i cannot create a new project,

    why if i disconnect my external drive, i cannot create a new project, I've got, message : the operation couldn't be completed cannot allocate memory,
    what i want is to create m "scratch disk" on my internal hard disk.

    It works i reinstalled it properly and repaired permissions too. but how come now it doesn' t display h264 files before to have transcoded them. Yesterday i had h264 displayed immediately

  • "cannot create jbcd driver of class " for connect URL 'null'" error

    I am trying to get an application that is currently working fine on a Windows platform to work in a Linux environment.
    One thing that is different from my setup in Windows, and also one that I have no experience with, is the Linux-Ubuntu default install of Apache uses Virtual Hosts and Tomcat's equivalent multiple sessions.
    I'm running the app out of the usr/share/tomcat6/webapps/msgboard instance of Tomcat vs var/lib/tomcat6.
    I am calling the application from Apache Virtual Host port 80 using mod_jk. The application cannot run under native Tomcat because of the extensive use of PHP. Everything else in the application is working correctly including a DWR (Ajax) servlet. However I also tried a simple test app from native Tomcat and got the same results.
    I also tried connecting with jdbc:mysql://localhost:3306/msgboard?autoreconnect=true&user=root&password=password at the terminal prompt and got
    bash: jdbc:mysql://localhost/msgboard?autoreconnect=true: No such file or directory
    [1]7074
    [2] 7048
    [1] Exit 127 jdbc:mysql://localhost/msgboard?autoreconnect=true
    [2]+ Donesyslog error is
    Feb 23, 2009 3:01:51 PM org.directwebremoting.util.CommonsLoggingOutput info INFO: Exec: Online.getPosts()
    Feb 23 15:01:51 ubuntu jsvc.exec[6779]: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Feb 23 15:01:51 ubuntu jsvc.exec[6779]: Caused by: java.sql.SQLException: No suitable driverFollowing is all the pertinent setup info for reference and critique. Any suggestions would be greatly appreciated.
    Apache2.2
    Tomcat6
    JDBC
    mod_jk
    Java (not sure what ver, it's the default Ubuntu install ver.)
    PHP
    Currently I am pointing to mysql-connector-java.jar in my CLASSPATH at /usr/share/java/mysql-connector-java.jar added symlinks commons-dbcp.jar, commons-logging.jar to usr/share/tomcat6/lib
    Application is deployed from usr/share/tomcat6/webapps/msgboard
    The basic code snippet in class calling the jdbc
    WEB-INF/classes/dbLink.class
    Context ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("java:comp/env/jdbc/msgboardDB");
    WEB-INF/web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app id="msgboard">
    <display-name>Message Board</display-name>
    <resource-ref>
    <description>DB Connection</description>
    <res-ref-name>jdbc/msgboardDB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    META-INF/context.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <Context path="/msgboard" docBase="msgboard"
    debug="5" reloadable="true" crossContext="true">
    <Resource name="jdbc/msgboardDB"
    auth="Container"
    type="javax.sql.DataSource"
    maxActive="100"
    maxIdle="30"
    maxWait="10000"
    username="root"
    password="thePassword"
    driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/msgboard?autoReconnect=true"/>
    </Context>
    I also included a symlink to this in var/lib/tomcat6/config named msgboard.xml
    per instruction at http://ubuntuforums.org/showthread.php?t=430133 and have since removed it.
    my.cnf
    [client]
    port = 3306
    bind-address = 127.0.0.1
    permissions set in /etc/tomcat6/policy.d/04webapps.policy
    permission java.net.SocketPermission "127.0.0.1:3306", "connect,resolve,listen,accept";
    per instruction at http://ubuntuforums.org/showthread.php?t=430133
    other permiissions set /etc/tomcat6/policy.d/50local.policy
    grant codeBase "file:/usr/share/tomcat6/webapps/msgboard/-" {
    permission java.net.SocketPermission "127.0.0.1:3306", "connect,resolve,listen,accept";
    grant codeBase "file:/usr/share/tomcat6/webapps/msgboard/WEB-INF/classes/-" {
    permission java.io.FilePermission "/usr/share/tomcat6/webapps/msgboard/WEB-INF/classes/logging.properties", "read";
    grant codeBase "jar:file:/usr/share/tomcat6/webapps/msgboard/WEB-INF/lib/mysql-connector-java-5.1.6.jar!/-" {
    permission java.net.SocketPermission "127.0.0.1:3306", "connect,resolve,listen,accept";
    I even tried setting Tomcat Security to "no" per instruction at
    http://webui.sourcelabs.com/ubuntu/mail/user/threads/Tomcat_connecting_to_MySQL_-Ubuntu8.10_Server.meta
    http://ubuntuforums.org/showthread.php?t=1034957&highlight=apache+tomcat+jdbc
    http://ubuntuforums.org/showthread.php?t=66615
    http://ubuntuforums.org/showthread.php?t=33601&highlight=java+mysql
    http://ubuntuforums.org/showthread.php?t=430133
    http://programminglinuxblog.blogspot.com/2008/03/connection-pooling-with-java-all.html
    http://webui.sourcelabs.com/ubuntu/mail/user/threads/Tomcat_connecting_to_MySQL_-Ubuntu8.10_Server.meta

    SOLUTION
    I had to add
    <Resource name="jdbc/webappDB"
         auth="Container"
         type="javax.sql.DataSource"
            maxActive="100"
         maxIdle="30"
         maxWait="10000"
            username="root"
         password="password"
         driverClassName="com.mysql.jdbc.Driver"
            url="jdbc:mysql://localhost:3306/webapp?autoReconnect=true"/>into /var/lib/tomcat6/conf/Catalina/localhost/ webapp.xml
    Note: the above context file was created automatically after deploying the webapp. I had to add the <resource> to it.
    The context I created in usr/share/tomcat_home/webapp/META_INF/context.xml is still there and has the same <resource>.defined in it. I did not verify whether or not it still needs to be there.
    After that I had to add two policies
    /var/lib/tomcat6/conf/policy.d/03catalina.policy
    grant {
    permission java.lang.RuntimePermission "accessClassInPackage.org.apache.tomcat.dbcp.*";
    and 04webapps.policy
    permission java.net.SocketPermission "127.0.0.1:3306", "connect,resolve,listen,accept";
    That did the trick!
    Other things that were done but have not been verified as to have any bearing on this issue.
    I changed the active java from openjdk to java-sun
    I added $tomcat_home/lib:$tomcat_home/lib/mysql-connector.jar:$tomcat_home/lib/commons-dbcp.jar to PATH
    Changed CLASSPATH=usr/share/classpath:usr/share/java/commons-dbcp.jar:usr/share/java/mysql-connector.jar
    Edited by: wlbragg on Feb 25, 2009 12:58 AM
    Edited by: wlbragg on Feb 25, 2009 12:59 AM
    Edited by: wlbragg on Feb 25, 2009 1:11 AM

  • How to find out the cause of "Cannot create JDBC driver"?

    A small Java web application constantly runs into a problem of "Cannot of create JDBC driver of class 'org.postgresql.Driver' for connect URL 'jdbc:postgresl://localhost:5432/myapp'". The problem still exists after upgrading the driver. After recycling the server, this problem will be resolved. It, however, will come back after a while.
    Any suggestions to solve this problem?
    Thanks a lot.

    jschell wrote:
    vwuvancouver wrote:
    Any suggestions to solve this problem?To start with get the full and complete stack trace.
    However since it is an intermittent problem there are only two possibilities
    1. You have some code that is written correctly and some that is not.
    2. It is a resource not code usage problem. Such as that you are not closing all result sets, statements and connections.Here is related log messages:
    2009-04-30 09:29:21,386  INFO XmlWebApplicationContext:601: - Closing application context [WebApplicationContext for namespace 'mybookmarks-servlet']
    2009-04-30 09:29:21,387  INFO DefaultListableBeanFactory:273: - Destroying singletons in {org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [messageSource,viewResolver,localeResolver,untapedUrlMapping,urlMapping,localeChangeInterceptor,errorsController,myBookmarksController,bookmarkController,reminderController,accountController,userControllerMethodResolver,userFormController,searchFormController,directoryController,directoryControllerMethodResolver,secureHandlerMapping,signonInterceptor,addBookmarkFromListFormController,addBookmarkFormController,bookmarkValidator,editWebSiteEntryFormController,addCommentFormController,reminderFormController,genericReminderFormController,alterReminderDateFormController,contactFormController,invitationFormController,propertyConfigurer,mailSender]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [propertyConfigurer,mailSender,userValidator,bookmarkService,dataSource,sessionFactory,transactionManager,accountDao,categoryDao,webSiteDao,siteVisitDao,reminderDao,commentDao,bookmarkDao]; root of BeanFactory hierarchy}
    2009-04-30 09:29:21,388  INFO GenericWebApplicationContext:601: - Closing application context [org.springframework.web.context.support.GenericWebApplicationContext;hashCode=15954072]
    2009-04-30 09:29:21,389  INFO DefaultListableBeanFactory:273: - Destroying singletons in {org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [modelView,addCommentFormView,discoveryFormView,mostVisitedView,bookmarkListView,contactFormView,actionResultView,accountView,reminderFormView,reminderDateFormView,searchList2View,helpView,homeView,taggedListView,searchFormView,reminderListView,webSiteEntryFormView,reminderForm2View,categorizedList2View,invitationFormView,myHomeView,taggedList2View,contactListView,aboutView,bookmarkFormView,bookmarkForm2View,newEntries2View,categorizedListView,signinFormView,accountActionResultView,userFormView,siteActionResultView,searchListView,mostVisited2View,newEntriesView,errorHttp404View]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [messageSource,viewResolver,localeResolver,untapedUrlMapping,urlMapping,localeChangeInterceptor,errorsController,myBookmarksController,bookmarkController,reminderController,accountController,userControllerMethodResolver,userFormController,searchFormController,directoryController,directoryControllerMethodResolver,secureHandlerMapping,signonInterceptor,addBookmarkFromListFormController,addBookmarkFormController,bookmarkValidator,editWebSiteEntryFormController,addCommentFormController,reminderFormController,genericReminderFormController,alterReminderDateFormController,contactFormController,invitationFormController,propertyConfigurer,mailSender]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [propertyConfigurer,mailSender,userValidator,bookmarkService,dataSource,sessionFactory,transactionManager,accountDao,categoryDao,webSiteDao,siteVisitDao,reminderDao,commentDao,bookmarkDao]; root of BeanFactory hierarchy}
    2009-04-30 09:29:21,391  INFO GenericWebApplicationContext:601: - Closing application context [org.springframework.web.context.support.GenericWebApplicationContext;hashCode=29369879]
    2009-04-30 09:29:21,392  INFO DefaultListableBeanFactory:273: - Destroying singletons in {org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [modelView,addCommentFormView,discoveryFormView,mostVisitedView,bookmarkListView,contactFormView,accountView,actionResultView,reminderFormView,reminderDateFormView,searchList2View,helpView,homeView,configView,taggedListView,searchFormView,reminderListView,webSiteEntryFormView,reminderForm2View,categorizedList2View,invitationFormView,taggedList2View,myHomeView,contactListView,aboutView,bookmarkFormView,bookmarkForm2View,newEntries2View,categorizedListView,signinFormView,accountActionResultView,userFormView,siteActionResultView,searchListView,mostVisited2View,newEntriesView,errorHttp404View]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [messageSource,viewResolver,localeResolver,untapedUrlMapping,urlMapping,localeChangeInterceptor,errorsController,myBookmarksController,bookmarkController,reminderController,accountController,userControllerMethodResolver,userFormController,searchFormController,directoryController,directoryControllerMethodResolver,secureHandlerMapping,signonInterceptor,addBookmarkFromListFormController,addBookmarkFormController,bookmarkValidator,editWebSiteEntryFormController,addCommentFormController,reminderFormController,genericReminderFormController,alterReminderDateFormController,contactFormController,invitationFormController,propertyConfigurer,mailSender]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [propertyConfigurer,mailSender,userValidator,bookmarkService,dataSource,sessionFactory,transactionManager,accountDao,categoryDao,webSiteDao,siteVisitDao,reminderDao,commentDao,bookmarkDao]; root of BeanFactory hierarchy}
    2009-04-30 09:29:21,394  INFO XmlWebApplicationContext:601: - Closing application context [Root WebApplicationContext]
    2009-04-30 09:29:21,395  INFO DefaultListableBeanFactory:273: - Destroying singletons in {org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [propertyConfigurer,mailSender,userValidator,bookmarkService,dataSource,sessionFactory,transactionManager,accountDao,categoryDao,webSiteDao,siteVisitDao,reminderDao,commentDao,bookmarkDao]; root of BeanFactory hierarchy}
    2009-04-30 09:29:21,396  INFO LocalSessionFactoryBean:184: - Closing Hibernate SessionFactory
    2009-04-30 09:29:21,397  INFO SessionFactoryImpl:767: - closing
    2009-04-30 09:29:21,408  WARN JDBCExceptionReporter:71: - SQL Error: 0, SQLState: null
    2009-04-30 09:29:21,410 ERROR JDBCExceptionReporter:72: - Cannot create JDBC driver of class 'org.postgresql.Driver' for connect URL 'jdbc:postgresql://localhost:5432/homepage'
    2009-04-30 09:29:21,411  WARN JDBCExceptionReporter:71: - SQL Error: 0, SQLState: null
    2009-04-30 09:29:21,414 ERROR JDBCExceptionReporter:72: - Cannot create JDBC driver of class 'org.postgresql.Driver' for connect URL 'jdbc:postgresql://localhost:5432/homepage'
    ...Your analysis seems very reasonable. As the above log messages, this application is built on Hibernate and Spring. All back end is taken care by Hibernate. I don't have a direct control on it. I should ask the Hibernate crowd about this issue. The Hibernate forum is still down at this moment.
    Edited by: vwuvancouver on Apr 30, 2009 1:12 PM

  • Cannot create JDBC driver of class '' for connect URL 'null'

    HI,
    Can any one help why i am getting the below error:
    Cannot create JDBC driver of class '' for connect URL 'null'
    The Error Stack Trace is:
    Cannot create JDBC driver of class '' for connect URL 'null'
    java.lang.NullPointerException
        at sun.jdbc.odbc.JdbcOdbcDriver.getProtocol(Unknown Source)
        at sun.jdbc.odbc.JdbcOdbcDriver.knownURL(Unknown Source)
        at sun.jdbc.odbc.JdbcOdbcDriver.acceptsURL(Unknown Source)
        at java.sql.DriverManager.getDriver(Unknown Source)
        at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createConnectionFactory(BasicDataSource.java:1437)
        at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1371)
        at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
        at com.crystaldecisions.reports.queryengine.driverImpl.jdbc.JDBCConnection.Open(Unknown Source)
        at com.crystaldecisions.reports.queryengine.JDBConnectionWrapper.Open(SourceFile:123)
        at com.crystaldecisions.reports.queryengine.Connection.br(SourceFile:1786)
        at com.crystaldecisions.reports.queryengine.Connection.bs(SourceFile:505)
        at com.crystaldecisions.reports.queryengine.Connection.t4(SourceFile:3020)
        at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.a(SourceFile:697)
        at com.businessobjects.reports.sdk.requesthandler.DatabaseRequestHandler.a(SourceFile:309)
        at com.businessobjects.reports.sdk.requesthandler.DatabaseRequestHandler.long(SourceFile:264)
        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1150)
        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:660)
        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:166)
        at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:528)
        at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:526)
        at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)
        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:524)
        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:423)
        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:351)
        at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)
        at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)
        at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)
        at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)
        at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)
        at com.crystaldecisions.sdk.occa.report.application.ds.a(SourceFile:186)
        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:878)
        at com.crystaldecisions.sdk.occa.report.application.ReportSource.getPromptDatabaseLogOnInfos(SourceFile:815)
        at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.getPromptDatabaseLogOnInfos(SourceFile:338)
        at com.businessobjects.report.web.a.e.a(SourceFile:174)
        at com.businessobjects.report.web.a.e.a(SourceFile:97)
        at com.businessobjects.report.web.a.e.a(SourceFile:343)
        at com.businessobjects.report.web.a.t.a(SourceFile:1726)
        at com.businessobjects.report.web.event.bw.broadcast(SourceFile:97)
        at com.businessobjects.report.web.event.am.a(SourceFile:53)
        at com.businessobjects.report.web.a.t.if(SourceFile:2104)
        at com.businessobjects.report.web.e.a(SourceFile:300)
        at com.businessobjects.report.web.e.a(SourceFile:202)
        at com.businessobjects.report.web.e.a(SourceFile:135)
        at com.crystaldecisions.report.web.ServerControl.a(SourceFile:607)
        at com.crystaldecisions.report.web.ServerControl.processHttpRequest(SourceFile:342)
        at org.apache.jsp.CrystalReport_jsp._jspService(CrystalReport_jsp.java:205)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:728)
        at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:728)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123)
        at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:502)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99)
        at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)
        at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1023)
        at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589)
        at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)
    Cannot create JDBC driver of class '' for connect URL 'null'
    java.lang.NullPointerException
        at sun.jdbc.odbc.JdbcOdbcDriver.getProtocol(Unknown Source)
        at sun.jdbc.odbc.JdbcOdbcDriver.knownURL(Unknown Source)
        at sun.jdbc.odbc.JdbcOdbcDriver.acceptsURL(Unknown Source)
        at java.sql.DriverManager.getDriver(Unknown Source)
        at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createConnectionFactory(BasicDataSource.java:1437)
        at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1371)
        at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
        at com.crystaldecisions.reports.queryengine.driverImpl.jdbc.JDBCConnection.Open(Unknown Source)
        at com.crystaldecisions.reports.queryengine.JDBConnectionWrapper.Open(SourceFile:123)
        at com.crystaldecisions.reports.queryengine.Connection.br(SourceFile:1786)
        at com.crystaldecisions.reports.queryengine.Connection.
    Thanks
    Penchal

    HI Shailendra,
    I think your expecting code. The Code is as follows. and also for few reports i am getting Unexpected Database Error help me in this also
    if(reportName != null && !"".equals(reportName) && reportSource==null){
            //Initializing report
            ReportClientDocument boReportClientDocument = new ReportClientDocument();
            boReportClientDocument.open(reportName, 0);
              Fields<IParameterField> parameterFields = boReportClientDocument.getDataDefController().getDataDefinition().getParameterFields();
              System.out.println("Param Fields Size:"+parameterFields.size());
         if (parameterFields.size() > 0) {
            ParameterFieldController paramController = boReportClientDocument.getDataDefController().getParameterFieldController();
            for (int i = 0; i < parameterFields.size(); i++) {
                String paramName = parameterFields.getField(i).getName().trim();
                System.out.println("                    -          "+paramName);
                if(request.getParameter(paramName) != null) {
                    paramController.setCurrentValue("", paramName, request.getParameter(paramName));
                    System.out.println(paramName+":"+request.getParameter(paramName));
                }else {
                    System.out.println("Param is Null:"+paramName+":"+request.getParameter(paramName));
                    paramController.setCurrentValue("", paramName, "");
        reportSource = boReportClientDocument.getReportSource();
        //session.setAttribute("ReportSource", reportSource);
        boReportClientDocument.close();
        CrystalReportViewer crystalReportViewer = new CrystalReportViewer();
        crystalReportViewer.setName(reportName);
        crystalReportViewer.setOwnPage(true);
        crystalReportViewer.setBestFitPage(true);
        crystalReportViewer.setToolPanelWidth(0);
        crystalReportViewer.setHasToggleParameterPanelButton(false);
        crystalReportViewer.setHasToggleGroupTreeButton(false);
        crystalReportViewer.setReportSource(reportSource);
        crystalReportViewer.setEnableDrillDown(false);
                crystalReportViewer.processHttpRequest(request, response,getServletConfig().getServletContext(),null);
    Thanks
    Penchal

  • Tomcat 6.0.18, Cannot create JDBC driver of class '' for connect URL 'null'

    hi,
    I have searched through the web, none of the solution works for me. Hope I could get some suggestion from you.
    I am running tomcat 6.0.18 + eclipse 3.4.1 + jre 1.6 + jsp + jsf + mysql 5.0 on Ubuntu 8.10.
    The <GlobalNamingResources> configuration of TOMCAT_HOME/conf/server.xml
    <GlobalNamingResources>
        <!-- Editable user database that can also be used by
             UserDatabaseRealm to authenticate users
        -->
        <Resource name="UserDatabase" auth="Container"
                  type="org.apache.catalina.UserDatabase"
                  description="User database that can be updated and saved"
                  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                  pathname="conf/tomcat-users.xml" />
    <Resource name="jdbc/db" auth="Container"
    type="javax.sql.DataSource"
    factory="org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory"
    driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/db?autoReconnect=true"
    username="xxx"
    password="xxx"
    maxActive="20"
    maxIdle="10"
    poolPreparedStatements="true" />
      </GlobalNamingResources>TOMCAT_HOME/conf/context.xml
    <Context>
        <!-- Default set of monitored resources -->
        <WatchedResource>WEB-INF/web.xml</WatchedResource>
        <!-- Uncomment this to disable session persistence across Tomcat restarts -->
        <!--
        <Manager pathname="" />
        -->
        <!-- Uncomment this to enable Comet connection tacking (provides events
             on session expiration as well as webapp lifecycle) -->
        <!--
        <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
        -->
    <ResourceLink global="jdbc/db" name="jdbc/db" type="javax.sql.DataSource"/>                
    </Context>An additional context.xml at eclipse'sworkspace/MyApplication/WebContent/META-INF
    <?xml version="1.0" encoding="UTF-8"?>
    <Context>
    <ResourceLink global="jdbc/db" name="jdbc/db" type="javax.sql.DataSource"/>                  
    </Context>web.xml of my application
      <resource-ref>
          <description>DB Connection</description>
          <res-ref-name>jdbc/db</res-ref-name>
          <res-type>javax.sql.DataSource</res-type>
          <res-auth>Container</res-auth>
      </resource-ref>This is the current configuration of the application, before this, I have followed the guidance of:
    [Apache Tomcat 6.0 JNDI Datasource HOW-TO|http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html#Database%20Connection%20Pool%20(DBCP)%20Configurations]
    and all the solutions from
    [Cannot create JDBC driver of class..|http://www.theserverside.com/discussions/thread.tss?thread_id=25459]
    Please advice, what's going wrong?

    hi,
    I have searched through the web, none of the solution works for me. Hope I could get some suggestion from you.
    I am running tomcat 6.0.18 + eclipse 3.4.1 + jre 1.6 + jsp + jsf + mysql 5.0 on Ubuntu 8.10.
    The <GlobalNamingResources> configuration of TOMCAT_HOME/conf/server.xml
    <GlobalNamingResources>
        <!-- Editable user database that can also be used by
             UserDatabaseRealm to authenticate users
        -->
        <Resource name="UserDatabase" auth="Container"
                  type="org.apache.catalina.UserDatabase"
                  description="User database that can be updated and saved"
                  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                  pathname="conf/tomcat-users.xml" />
    <Resource name="jdbc/db" auth="Container"
    type="javax.sql.DataSource"
    factory="org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory"
    driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/db?autoReconnect=true"
    username="xxx"
    password="xxx"
    maxActive="20"
    maxIdle="10"
    poolPreparedStatements="true" />
      </GlobalNamingResources>TOMCAT_HOME/conf/context.xml
    <Context>
        <!-- Default set of monitored resources -->
        <WatchedResource>WEB-INF/web.xml</WatchedResource>
        <!-- Uncomment this to disable session persistence across Tomcat restarts -->
        <!--
        <Manager pathname="" />
        -->
        <!-- Uncomment this to enable Comet connection tacking (provides events
             on session expiration as well as webapp lifecycle) -->
        <!--
        <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
        -->
    <ResourceLink global="jdbc/db" name="jdbc/db" type="javax.sql.DataSource"/>                
    </Context>An additional context.xml at eclipse'sworkspace/MyApplication/WebContent/META-INF
    <?xml version="1.0" encoding="UTF-8"?>
    <Context>
    <ResourceLink global="jdbc/db" name="jdbc/db" type="javax.sql.DataSource"/>                  
    </Context>web.xml of my application
      <resource-ref>
          <description>DB Connection</description>
          <res-ref-name>jdbc/db</res-ref-name>
          <res-type>javax.sql.DataSource</res-type>
          <res-auth>Container</res-auth>
      </resource-ref>This is the current configuration of the application, before this, I have followed the guidance of:
    [Apache Tomcat 6.0 JNDI Datasource HOW-TO|http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html#Database%20Connection%20Pool%20(DBCP)%20Configurations]
    and all the solutions from
    [Cannot create JDBC driver of class..|http://www.theserverside.com/discussions/thread.tss?thread_id=25459]
    Please advice, what's going wrong?

  • Cannot create PAL DV projects in iMovie HD6

    I'm wondering if anyone else is having this issue - or if I've missed something obvious! After having worked with iMovie for several years, always with DV-PAL camcorders, I suddenly find that when I create a new project it defaults to DV-NTSC. In the video format drop down menu of the new project dialog, DV-PAL is no longer available. Thus the only way I can now use the program is to open an existing project, save a copy and delete all the content, which is a tad annoying to say the least.
    Any thoughts appreciated!

    Sometimes permissions and preferences can get corrupted. Whenever iMovie starts acting funny, a common maintenance procedure is to do the following: Delete preferences by closing iMovie and trashing the file com.apple.iMovie.plist found in User (the House icon)/Library/Preferences. Then do a permissions repair using the Utilities/Disk Utility App on your Mac. Open the Disk Utilities window and select the Mac hard drive icon at the top of the side pane at the left. Then click on the Repair Permissions button. When you have repaired permissions and deleted preferences, restart your computer and launch iMovie. iMovie will replace the .plist file that you deleted. Be sure also that you have sufficient free disk space on your hard drive for iMovie to function correctly. 25GB often is recommended by users of this forum. After doing all of the above, relaunch iMovie and see whether you still have the problem.

  • Cannot extract Window driver for MAC

    I have windows installed in my MacBookPro. The problem is I do not have Window driver for Mac. This is the reason why :-
    I created a partition of Fat32 (that was my mistake). When I tried to load Windows using BootCamp - it did not work. It is asking me to go to Disk Utility anc conver the partition to Mac file system whcih I am unable to do that. To go round -
    I have installed XP in the Fat32 partion without using Boot Camp. The problem is getting the Windows driver for Mac beucase I cannot use the Boot Camp.
    Are there any way of getting Windows driver for Mac ?

    You need a boot loader and that's what BootCamp establishes.

  • JNDI-Tomcat 5.5.17, Cannot create JDBC driver of class '' for connect URL '

    I wrote a jsp program using JNDI to get connected to MySql DB, but i got the error " Cannot load JDBC driver class 'com.mysql.jdbc.Driver' " while running the program.
    I'm using NetBean5.5 which has bundled TomCat5.5.17.
    I've refered to many tutorials and websites, but i still can't solve it, here's my configuration and codes:
    Imported mysql-connector-java-5.0.5-bin into lib directory.
    context.xml:
    <Context path="/WebApplication1">
    <Resource name="jdbc/jsp" auth="Container" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/jsp">
    <parameter>
    <name>driverClassName</name>
    <value>com.mysql.jdbc.Driver</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:mysql://localhost:3306/jsp</value>
    </parameter>
    <parameter>
    <name>username</name>
    <value>root</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>malaysia</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>20</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>10</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>-1</value>
    </parameter>
    </ResourceParams>
    </Context>
    i included the following in Web.xml:
    <resource-ref>
    <res-ref-name>jdbc/jsp</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    My JSP Code:
    Context initContext = new InitialContext();
    Context envContext = (Context)initContext.lookup("java:/comp/env");
    DataSource ds = (DataSource)envContext.lookup("jdbc/jsp");
    Connection conn = ds.getConnection();
    Thanks~~~~

    I think mysql jdbc library should add to the class library path of your project.
    Hope this helps.

  • Cannot create a new project with iMovie. Operation could not be completed. No solution to the problem is available.

    Every time I go to create a new project in the latest version of iMovie for mac OS X yosemite, I get the following information. "The operation could not be completed. No further information is available about the problem.
    I have tried restarting the computer, that didn't work. I also tried also, to reinstall the app. That didn't work. I even tried updating all the software, and that still didn't work. I am very frustrated and feel the mac was not a good gift, if a major essential app will refuse to work. Nothing I do, seems to work.   

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take the action that isn't working the way you expect. Select any lines that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.
    When you post the log extract, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the text on Pastebin, then post a link here to the page you created.

  • NetBeans - Cannot create new Java project

    Hello all,
    I've been trying to create new Java projects in NetBeans 6 for about a week now and it just won't work. First, I receive a nullPointerException when I start the software. Then, I come to my home screen, head to File ->New Project. I'm able to specify the Java Project type. When I want to specfiy the Name and Location of the file, I get "Project Folder exists and is not empty", but the folder never existed at all. It's as if the prompt creates the folder then verifies the folder exists and repeats that error message over and over; even if I change the file name. I've reinstalled the software and the JDK many times but, I' still can't seem to get working.
    Any help would be appreciated.
    Thanks
    -Pengu

    Delete your old downloads of your JDK and NetBeans, then Download a new copy of the JDK and NetBeans, uninstall what you have go and delete all of the folders that were involved in the original install and then reboot.
    Once you have done this, then reinstall from your freshly downloaded copies.
    Windows does not yield it's ruined programs very easily--you just have to remove every last bit of it and start again. If the above does not work, then it may be time to go int and edit the registry to remove all reference to the JDK and NetBeans.

  • Cannot create a new project in iDVD

    Hi,
    Wondering if anyone can help with this? This was working fine but for some reason when I now open iDVD and try to create a new project,nothing appears on screen. When I click iDVD it gives me the options and I can click create new project and enter a title and click create, but nothing?? Any suggestions. Thanks

    Hi
    • Either an old project is corrupted or interferes - or -
    • the free space on Start Up (Mac OS) Hard disk is too low - or -
    • You moved over the iDVD application from an old Mac to a new one
    (this doesn't work so - it must be installed in the right way (from DVD))
    Free Space - I never let go less than 25GB - EVER - and it's just this hard disk that matters !
    If OK then try
    Start iDVD - BUT KEEP alt-key down during the full Start-Up process.
    Now select a Brand New iDVD project - DO NOT open an old one
    That's what I can figure out - BUT it can be something completely different as I know nothing about.
    Yours Bengt W

  • Cannot Create A New Project In imovie

    When i want to create a new project in I movie, i cant because it says "Please check the disk to esure there is enough free space and you have permission to write projects" ive got plenty of space so what is the problem??? please help!!!!!!!!!!!!

    Hi
    How much free space is there on Your MAIN Start-Up Hard disk ?
    • I never let this go less than 25Gb - YES Gb
    This is due to two things
    • Mac OS X = UNIX
    • The Application used - here iMovie
    Both of them creates lot's and lot's of .temp files - You don't see them - but they need hard disk space.
    And when this goes scars - all kind of bad behavior appears.
    Yours Bengt W

  • Cannot retrieve iCloud Drive project from GarageBand on iPhone 6

    I created a GarageBand (2.0.5) project on the iPhone 6 (iOS 8.1.1) and saved it to iCloud. I then imported it to GarageBand (10.0.3) on my iMac (OS X 10.10.1 (14B25)), applied modifications, then saved it to iCloud Drive, however I cannot to retrieve this modified file from the iPhone, I can only see the first file I uploaded to iCloud from the iPhone.

    Hey fillmoreranger,
    If you are having an issue with getting iCloud Drive connected with your MacBook Pro, I would suggest that you troubleshoot using the steps in this article - 
    Get help using iCloud Drive - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L 

  • Cannot create a new project

    Here's my problem. When I want to create a new application, all works but when I create a project, the JDeveloper program closes at once.
    And I can't open this project... so I can't do anything!
    Who could help me?

    I've reinstalled it but the same error occurs :(
    I opened the error log but I don't understand how to correct the problem...
    Her's the error log:
    ================================================================
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x2ef035d0, pid=-534165, tid=4294290819
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # C [JDEVNATIVE.DLL+0x35d0]
    --------------- T H R E A D ---------------
    Current thread (0x2f8cfe70): JavaThread "Native Directory Watcher" [_thread_in_native, id=-676477]
    siginfo: ExceptionCode=0xc0000005, reading address 0xffffffff
    Registers:
    EAX=0x00000000, EBX=0x3028fb30, ECX=0xd6d3d630, EDX=0xbffbb490
    ESP=0x3028fad4, EBP=0x00000000, ESI=0x2ef20f60, EDI=0x000003e9
    EIP=0x2ef035d0, EFLAGS=0x00010246
    Top of Stack: (sp=0x3028fad4)
    0x3028fad4: 2ef20f30 2ef20f60 3028fb28 00000000
    0x3028fae4: 00000000 00000000 2ef03a00 2f784240
    0x3028faf4: 2f8cfe70 24123ad8 24123ad8 014d826f
    0x3028fb04: 2f8cff30 3028fb30 3028fb0c 24123ad8
    0x3028fb14: 3028fb34 24124128 00000000 24123ad8
    0x3028fb24: 3028fb38 3028fb54 014d2923 24124070
    0x3028fb34: 014d6449 3028fb38 2532b2f8 3028fb5c
    0x3028fb44: 2532b568 00000000 2532b310 3028fb5c
    Instructions: (pc=0x2ef035d0)
    0x2ef035c0: 15 50 e0 f0 2e 89 2d 50 5c f1 2e a1 4c 5c f1 2e
    0x2ef035d0: 8b 30 3b f0 74 14 56 e8 94 fc ff ff 8b 36 a1 4c
    Stack: [0x30180000,0x302a0000), sp=0x3028fad4, free space=1086k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [JDEVNATIVE.DLL+0x35d0]
    [error occurred during error reporting, step 120, id 0xc0000005]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j oracle.ide.natives.NativeHandler.enterWatcherThread()V+0
    j oracle.ide.natives.NativeHandler$1.run()V+0
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x2f8cfe70 JavaThread "Native Directory Watcher" [_thread_in_native, id=-676477]
    0x2f8cad00 JavaThread "Image Fetcher 1" daemon [_thread_blocked, id=-676209]
    0x2f8c9090 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=-699645]
    0x00867490 JavaThread "AuditExecutor-1" daemon [_thread_blocked, id=-529045]
    0x00844010 JavaThread "Timer queue for AWT thread" daemon [_thread_blocked, id=-605909]
    0x0082c300 JavaThread "WaitCursorTimer" daemon [_thread_blocked, id=-596461]
    0x00823b60 JavaThread "IconOverlayTracker Timer" [_thread_blocked, id=-191629]
    0x007a30b0 JavaThread "TimerQueue" daemon [_thread_blocked, id=-603653]
    0x0079a530 JavaThread "AWT-EventQueue-0" [_thread_in_native, id=-602913]
    0x0079a900 JavaThread "AWT-Shutdown" [_thread_blocked, id=-591669]
    0x00795030 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=-592921]
    0x00793290 JavaThread "AWT-Windows" daemon [_thread_in_native, id=-592233]
    0x007811c0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=-637865]
    0x00780540 JavaThread "CompilerThread0" daemon [_thread_blocked, id=-637205]
    0x0077f5a0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=-636033]
    0x0077ddf0 JavaThread "Finalizer" daemon [_thread_blocked, id=-626265]
    0x0077c9b0 JavaThread "Reference Handler" daemon [_thread_blocked, id=-626117]
    0x00773b20 JavaThread "main" [_thread_blocked, id=-642017]
    Other Threads:
    0x0077bca0 VMThread [id=-625457]
    0x00783d70 WatcherThread [id=-638013]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1280K, used 1222K [0x03550000, 0x036b0000, 0x05cb0000)
    eden space 1152K, 95% used [0x03550000, 0x03661a10, 0x03670000)
    from space 128K, 100% used [0x03690000, 0x036b0000, 0x036b0000)
    to space 128K, 0% used [0x03670000, 0x03670000, 0x03690000)
    tenured generation total 15980K, used 7708K [0x05cb0000, 0x06c4b000, 0x23550000)
    the space 15980K, 48% used [0x05cb0000, 0x06437220, 0x06437400, 0x06c4b000)
    compacting perm gen total 30720K, used 30573K [0x23550000, 0x25350000, 0x2d550000)
    the space 30720K, 99% used [0x23550000, 0x2532b5f0, 0x2532b600, 0x25350000)
    No shared spaces configured.
    Dynamic libraries:
    0x2e870000 - 0x2e878000      C:\PROGRAM FILES\GENIUS WIRELESS TWINTOUCH+ OPTICAL\KBHOOK.DLL
    0x6d230000 - 0x6d253000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\DCPR.DLL
    0x7b580000 - 0x7b58c000      C:\WINDOWS\SYSTEM\IPHLPAPI.DLL
    0x7ce60000 - 0x7ce67000      C:\WINDOWS\SYSTEM\DHCPCSVC.DLL
    0x7bb40000 - 0x7bb46000      C:\WINDOWS\SYSTEM\ICMP.DLL
    0x79ea0000 - 0x79eaa000      C:\WINDOWS\SYSTEM\MSAFD.DLL
    0x76570000 - 0x7657e000      C:\WINDOWS\SYSTEM\RNR20.DLL
    0x2ef00000 - 0x2ef1a000      C:\JDEV\JDEV\LIB\JDEVNATIVE.DLL
    0x6d550000 - 0x6d559000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\NIO.DLL
    0x6d530000 - 0x6d543000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\NET.DLL
    0x734e0000 - 0x734f1000      C:\WINDOWS\SYSTEM\WS2_32.DLL
    0x7f770000 - 0x7f7af000      C:\WINDOWS\SYSTEM\RASAPI32.DLL
    0x734a0000 - 0x734a9000      C:\WINDOWS\SYSTEM\WSOCK32.DLL
    0x77c40000 - 0x77c54000      C:\WINDOWS\SYSTEM\MSWSOCK.DLL
    0x7f750000 - 0x7f761000      C:\WINDOWS\SYSTEM\SECUR32.DLL
    0x7f850000 - 0x7f858000      C:\WINDOWS\SYSTEM\SVRAPI.DLL
    0x7fa60000 - 0x7fa6a000      C:\WINDOWS\SYSTEM\MSPWL32.DLL
    0x7f860000 - 0x7f87e000      C:\WINDOWS\SYSTEM\TAPI32.DLL
    0x7f890000 - 0x7f895000      C:\WINDOWS\SYSTEM\NETAPI32.DLL
    0x7f720000 - 0x7f728000      C:\WINDOWS\SYSTEM\NETBIOS.DLL
    0x734d0000 - 0x734d5000      C:\WINDOWS\SYSTEM\WS2HELP.DLL
    0x6d2b0000 - 0x6d2ed000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\FONTMANAGER.DLL
    0x56660000 - 0x56740000      C:\WINDOWS\SYSTEM\D3DIM700.DLL
    0x7d9f0000 - 0x7d9fd000      C:\WINDOWS\SYSTEM\CRYPTNET.DLL
    0x77950000 - 0x7797a000      C:\WINDOWS\SYSTEM\WLDAP32.DLL
    0x7ca00000 - 0x7ca1b000      C:\WINDOWS\SYSTEM\RSAENH.DLL
    0x73fc0000 - 0x73feb000      C:\WINDOWS\SYSTEM\WINTRUST.DLL
    0x7b8d0000 - 0x7b8f3000      C:\WINDOWS\SYSTEM\IMAGEHLP.DLL
    0xbaaa0000 - 0xbab03000      C:\WINDOWS\SYSTEM\DDRAW.DLL
    0xbfe70000 - 0xbfe75000      C:\WINDOWS\SYSTEM\NTDLL.DLL
    0x6d070000 - 0x6d1d7000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\AWT.DLL
    0x7f2d0000 - 0x7f30d000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\UNICOWS.DLL
    0x7e420000 - 0x7e432000      C:\WINDOWS\SYSTEM\AVICAP32.DLL
    0x77db0000 - 0x77dd4000      C:\WINDOWS\SYSTEM\MSVFW32.DLL
    0xbfdc0000 - 0xbfdc5000      C:\WINDOWS\SYSTEM\WOW32.DLL
    0x7d120000 - 0x7d126000      C:\WINDOWS\SYSTEM\DCIMAN32.DLL
    0x7fe50000 - 0x7fe77000      C:\WINDOWS\SYSTEM\OLEDLG.DLL
    0x7fb40000 - 0x7fb85000      C:\WINDOWS\SYSTEM\MSVCRT20.DLL
    0xbfe50000 - 0xbfe56000      C:\WINDOWS\SYSTEM\VERSION.DLL
    0x7f110000 - 0x7f11e000      C:\WINDOWS\SYSTEM\MPR.DLL
    0xbfe00000 - 0xbfe04000      C:\WINDOWS\SYSTEM\IMM32.DLL
    0x7fe40000 - 0x7fe49000      C:\WINDOWS\SYSTEM\WINSPOOL.DRV
    0x6d6d0000 - 0x6d6df000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\ZIP.DLL
    0x6d370000 - 0x6d38d000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\JAVA.DLL
    0x6d6b0000 - 0x6d6bc000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\VERIFY.DLL
    0x6d2f0000 - 0x6d2f8000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\HPI.DLL
    0x6d6e0000 - 0x6d874000      C:\PROGRAM FILES\JAVA\JDK1.5.0_06\JRE\BIN\CLIENT\JVM.DLL
    0xbfdd0000 - 0xbfde0000      C:\WINDOWS\SYSTEM\WINMM.DLL
    0x63000000 - 0x63096000      C:\WINDOWS\SYSTEM\WININET.DLL
    0x7fe80000 - 0x7ff15000      C:\WINDOWS\SYSTEM\OLEAUT32.DLL
    0x7ff20000 - 0x7ffe2000      C:\WINDOWS\SYSTEM\OLE32.DLL
    0x5cf00000 - 0x5cf76000      C:\WINDOWS\SYSTEM\CRYPT32.DLL
    0x7faa0000 - 0x7faf4000      C:\WINDOWS\SYSTEM\RPCRT4.DLL
    0x79e70000 - 0x79e80000      C:\WINDOWS\SYSTEM\MSASN1.DLL
    0x00400000 - 0x0041d000      C:\JDEV\JDEV\BIN\JDEV.EXE
    0x7fe00000 - 0x7fe34000      C:\WINDOWS\SYSTEM\COMDLG32.DLL
    0x7fbc0000 - 0x7fdf4000      C:\WINDOWS\SYSTEM\SHELL32.DLL
    0xbfb70000 - 0xbfbf8000      C:\WINDOWS\SYSTEM\COMCTL32.DLL
    0x77290000 - 0x772f6000      C:\WINDOWS\SYSTEM\SHLWAPI.DLL
    0x78000000 - 0x78046000      C:\WINDOWS\SYSTEM\MSVCRT.DLL
    0x81f62000 - 0x81f73000      C:\WINDOWS\SYSTEM\USER32.DLL
    0xbff20000 - 0xbff4a000      C:\WINDOWS\SYSTEM\GDI32.DLL
    0xbfe60000 - 0xbfe70000      C:\WINDOWS\SYSTEM\ADVAPI32.DLL
    0xbff60000 - 0xbffe7000      C:\WINDOWS\SYSTEM\KERNEL32.DLL
    VM Arguments:
    jvm_args: -Dide.product=oracle.jdeveloper -Dide.splash.screen=splash.gif -Xverify:none -Xmx512M -XX:MaxPermSize=160M -XX:JavaPriority10_To_OSPriority=10 -XX:JavaPriority9_To_OSPriority=9 -Dice.browser.forcegc=false -Dice.pilots.html4.tileOptThreshold=0 -Xbootclasspath/p:../lib/lwawt.jar -Dreserved_filenames=con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout$ -DEDITOR_J2SE_VERSION=1.5 -DINSIGHT_OMIT_HIDDEN=true -Doracle.xdkjava.compatibility.version=9.0.4 -Doracle.translated.locales=ja -Dwindows.shell.font.languages=en -Dide.debug.controller.stack=false -Dceditor.java.parse.small=300 -Dceditor.java.parse.large=1500 -Dide.extension.cpmissing.nowarn=true -Dcompiler.vmargs=-mx512m -Doracle.soap.transport.noHTTPClient=true -Djbo.debugoutput=silent -Djbo.showdebugwarningbanner=false -Djava.library.path=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\Program Files\Java\jdk1.5.0_06\bin;..\lib\ext;..\..\lib -Dide.user.dir= -Dide.startingArg0=C:\JDEV\JDEV\BIN\JDEV.EXE -Dide.launcherProcessId=-534165 -Dide.config_pathname=C:\JDEV\JDEV\BIN\JDEV.conf -Dide.startingcwd=C:\JDev\jdev\bin -Dide.shell.fileTypeKeyDefined=true -Dide.shell.enableFileTypeAssociation=true -Djdev.class.path=..\..\..\classes;..\..\ide\lib\javax-ide.jar;..\..\ide\lib\javatools.jar;..\..\ide\lib\ide.jar;..\..\jlib\jewt4.jar;..\..\jlib\share.jar;..\..\jlib\help4.jar;..\..\jlib\inspect4.jar;..\..\lib\xmlparserv2.jar;..\..\jdbc\lib\orai18n.jar;..\lib\jdev-ep.jar;C:\Program Files\Java\jdk1.5.0_06\lib\tools.jar;C:\Program Files\Java\jdk1.5.0_06\lib\dt.jar -Djava.system.class.loader=oracle.ideimpl.IdeClassLoader
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\Program Files\Java\jdk1.5.0_06\bin
    --------------- S Y S T E M ---------------
    OS: Windows Me Build 73010104
    CPU:total 1 family 6, cmov, cx8, fxsr, mmx
    Memory: 4k page, physical 130552k(144k free), swap 1966596k(1761292k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_06-b05) for windows-x86, built on Nov 10 2005 11:12:14 by "java_re" with MS VC++ 6.0
    ================================================================
    Thanks in advance for your help.

Maybe you are looking for