Jdbc for cach�

hi
i'm developing an application with a jdbc connection to a cach� database
i get the following error message:
getDatabase() failed
com.intersys.objects.CacheServerException: Failed to connect to URL: jdbc:Cache:
//130.60.48.138:1972 caused by: java.sql.SQLException: No suitable driverUnderly
ing exception: java.sql.SQLException: No suitable driver
here some extracts of the code:
import com.intersys.classes.ArrayOfDataTypes;
import com.intersys.classes.ListOfObjects;
import com.intersys.objects.CacheDatabase;
import com.intersys.objects.CacheException;
import com.intersys.objects.Database;
import com.intersys.objects.Oid;
import com.intersys.objects.SList;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.Statement;
// the strings url, userName and userPwd are extracted from jtextfields (getText()) and are not empty
               Database db= null;
               CacheDatabase cacheDB= null;
               Connection con= null;
               try {
                    cacheDB= (CacheDatabase)Class.forName("com.intersys.objects.CacheDatabase").newInstance();
               } catch (Exception e) {
                    System.err.println("Class.forName() failed\n" + e);
                    return;
               try {
                    db= cacheDB.getDatabase(url, userName, userPwd);
               } catch (Exception e) {
                    System.err.println("getDatabase() failed\n" + e);
                    return;
               try {
                    con= DriverManager.getConnection(url, userName, userPwd);
               } catch (Exception e) {
                    System.err.println("getConnection() failed\n" + e);
                    return;
this application uses an external jar file, which contains all the com.intersys classes.
thank you for helping me

The URL you're giving isn't correct. That's the message you get when the URL you pass to the driver doesn't parse according to the expected format.
I'd look at the docs to see what the format had to be and fix it.

Similar Messages

  • Does j2me support jdbc for Palm Oracle Lite(8i/9i)

    I have a requirement to develop an application in Java for PALM OS with Oracle Lite 8i/9i connectivity. does j2me support jdbc for Palm Oracle Lite(8i/9i). Please help me to know what all java VM available in the market which have oracle connectivity(jdbc/odbc/whatever) for Oracle Lite for PALM.
    thanks
    dk

    Pleae some one reply, if j2me/kvm supports jdbc/odbc connectivity to oracle lite 9i/8i on palm
    thanks
    dk

  • JDBC for Postgresql(on Linux): java.lang.NullPointerExceptio--Please HELP!

    I'm trying to build a JSP web application with Apache Tomcat 4.0 on Linux, using PostgreSQL database.
    The test page for building a connection to the database is very simple.
    However, unfortunately, I always get the following error message from the web server.
    The code is also show below.
    I have another Tomcat server working on Window2000 with Oracle. So I change the JDBC driver to Oracle on that machine, and it works fine.
    I guessed I might have some problem with the Tomcat setting, but I'm not sure what I need to change.
    The directory of my web application is built under the webapps.
    And I've added JAVA_HOME, JAVA_HOME/lib/tool.jar, and JDBC for PostgreSQL to my CLASSPATH.
    Is there any other configuration that I missed?
    Please help if you see the problem.
    Thanks a lot in advance.
    Error message:
    type: Exception report
    message: Internal Server Error
    description: The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
         at org.apache.jsp.index$jsp._jspService(index$jsp.java:231)
         at org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(Unknown Source)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(Unknown Source)
         at org.apache.jasper.servlet.JspServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Unknown Source)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(Unknown Source)
         at org.apache.catalina.core.StandardWrapperValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
         at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
         at org.apache.catalina.core.StandardContextValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
         at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
         at org.apache.catalina.core.StandardContext.invoke(Unknown Source)
         at org.apache.catalina.core.StandardHostValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.valves.ErrorReportValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.valves.AccessLogValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
         at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
         at org.apache.catalina.core.StandardEngineValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
         at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
         at org.apache.catalina.connector.http.HttpProcessor.process(Unknown Source)
         at org.apache.catalina.connector.http.HttpProcessor.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:484)
    Here's my code:
    <%@ page language="java" import="java.io.*, java.sql.*, java.util.*, java.lang.*" %>
    <HTML>
    <HEAD>
    <TITLE>TEST</TITLE>
    </HEAD>
    <BODY>
    <b> City </b><br>
    <%
         Class.forName("org.postgresql.Driver");
         String sqlurl = "jdbc:postgresql://localhost:5432/customer";
         String username = "guest";
         String passwd = username;
         Connection conn = DriverManager.getConnection(sqlurl, username, passwd);
         Statement st = conn.createStatement();
         String queryStr = "select CITY from WEATHER";
         ResultSet rs = st.executeQuery(queryStr);
         if (rs != null){
              while(rs.next()){
                   String strCity = rs.getString(1);
    %>
    -- <%=strCity %> --<br>
    <%
         st.close();
         conn.close();
    %>
    </BODY>
    </HTML>

    Error is not there in the code what you are showing. Can you edit index$jsp.java and see what is there in line 231?
    You may find it in tomcat_home\work\your_application directory.
    Sudha

  • JDBC for Oracle 8i (8.1.5)in JRE 1.2

    I'm trying to connect to Oracle 8i dbms (8.1.5) thru an applet.
    In JDeveloper 2.0 environment (with JDK1.2) it works fine, but
    at netscape 4.5 with JRE plug-in version 1.2, it throws an
    exception from oracle connection "No Suitable Drive".
    I've read the FAQ regarding the issue and tried to use the
    following JDBC versions, facing the same problem:
    JDBC for 8.0.5 (classes111.zip)
    JDBC for 8.1.5 (classes111.zip)
    JDBC for 8.1.6 (classes12.zip)
    JDBC for 8i - 8.1.5 (of Jdeveloper 1.1)
    BTW, All of the above JDBC versions connects fine under netscape
    to oracle 7.3, oracle 8.0.5.
    (I've tried JRE 1.2.2 as well but no success)
    PLEASE HELP !!!!
    null

    Have you tried setting the CLASSPATH and related JDBC environment
    variables so that your JDBC app recognizes the Driver that you're
    calling when registering? Have you done a version string check
    on that driver's class itself from the command line?
    (java jdbc.xxxx.Driver)
    HTH
    Avi (guest) wrote:
    : I'm trying to connect to Oracle 8i dbms (8.1.5) thru an applet.
    : In JDeveloper 2.0 environment (with JDK1.2) it works fine, but
    : at netscape 4.5 with JRE plug-in version 1.2, it throws an
    : exception from oracle connection "No Suitable Drive".
    : I've read the FAQ regarding the issue and tried to use the
    : following JDBC versions, facing the same problem:
    : JDBC for 8.0.5 (classes111.zip)
    : JDBC for 8.1.5 (classes111.zip)
    : JDBC for 8.1.6 (classes12.zip)
    : JDBC for 8i - 8.1.5 (of Jdeveloper 1.1)
    : BTW, All of the above JDBC versions connects fine under
    netscape
    : to oracle 7.3, oracle 8.0.5.
    : (I've tried JRE 1.2.2 as well but no success)
    : PLEASE HELP !!!!
    null

  • How to establish a trusted connection with JDBC for SQL SERVER 2000

    Hi!I am using jdk 1.4 and eclipse 3.3.
    I create a servlet in eclipse with in-build tomcat.
    When I run it ,it was working perfectlly has it was suppose to work.
    In this servlet I connect to a sql 2000 database using jdbc-odbc bridge driver.
    But when I tried to deploy the servlet on tomcat 5.5 manully on the same machine ,it gave me error saying
    [Microsoft][SQLServer JDBC Driver][SQLServer]Login failed
    for user 'sa'
    I searched around some post and found that ok ,I need trusted connection
    But I have 2 Questions
    1). Why was in eclipse I was able to connect to the SQL server and why not in the servlet which I deployed manully on tomcat.
    2). How do I create a trusted connection with JDBC for SQL server 2000
    Thnaks for your help in advance.

    Hi! duffymo ,QussayNajjar ,dvohra09 .
    Thank for help.
    The ideas are really great.
    I am trying generate reports for my company.
    When I used eclipse the code worked perfectly.
    below is code which I used
    out.println("Calling For Class Name<br>");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    out.println("Calling For Class Name success Now calling database <br>");
    1). jdbcConnection = DriverManager.getConnection("jdbc:odbc:SQLJasper");
    2). jdbcConnection = DriverManager.getConnection("jdbc:odbc:Driver={SQL Server};Server=ServerName;Database=tempdb");
    3). jdbcConnection = DriverManager.getConnection("jdbc:odbc:Driver={SQL Server};Server=ServerName;Database=tempdb","UID=UserName","Password=Password");
    out.println("connecting to database success<br>");
    I had tried to connect the database using this three way.
    In 1st I tried using DSN name .
    Next 2 self explainer for expert like you.
    I used to 2nd variant to connect in eclipse and it worked fine.
    I not an expert in java ,I just doing some research on jasperReport.
    My best guest is that eclipse is using some library files of which I have no clue.
    Thank's for your help,I appretiate it.
    Once again thank a billion.
    Sorry for the messy righting.

  • JDBC for MS SQL Server 2000

    Hi all, i'm newbie here and i have some problems doing with Java for my Final Project, just for my graduation...
    Here's the problem ...
    First i install the JDK 1.5 and MS SQL Server 2000. And then i also install JDBC for MS SQL Server 2000 sp3. Than i'm doing some experiments with JDBC, but its result error that i couldnt understand how to fixed it...
    I'm asking is JDBC for MS SQL Server 2000 sp3 doesn't support j2ee 1.5.0 and where i can find native driver jdbc for MS SQL Server 2000.
    Please help me....

    Than i'm doing some experiments with JDBC, but
    its result error that i couldnt understand This is the most important part of your post yet you don't seem to recognize it as such.
    Tell us what the error is. Not what you think it is. Exactlly what it says. And please provide a relevent, formatted snippet of code.

  • Best Use of one SSD  for cache drives

    Hello...  Months ago I added two Physical  Momentus XT drives to be used  as Cache only drives:  One as a Cache disk, and one as a Cache Database disk.  This is the only function these drives do...
    Doing this really sped up large session loads...
    I'm going to be getting one SSD soon, and was wondering.... Of the Two Caches....  Cache, or Cache Database...
    Which would benifit the most from an SSD over a hybrid hard drive??
    Seeing that the Controller is a 3Gb/sec controller only....  That's why I used two separate Cache disks..
    Now that I'll have the benifit of a SSD speed over a Hybrid Drive (Faster Reads only)... Should I combine both in the SSD or still keep them separate?
    Thanks!    Jan

    I have replaced 2 Momentus XT drives (One with Media Cache, and other with Cache Database)  with 1 Samsung 840 SSD, which has 2 folders: CS6 Cache, and CS6 Cache Database.
    Prior to pulling the drives, I tested the time it took to load a 45 min 1080i AVCHD session that had over 400 scenes, 600 2k JPEG's and about 25 pieces of music.  From clicking on the session to load, until "All Media Loaded" took about 34 seconds (This is with the Cache's on separate Hard drives).  Shut system down, pulled the two drives, added the one SSD drive, power up, formatted the drive and added the above mentioned folders...  Then launched PPRO and pointed the Media Cache and Cache Database at these new locations... Then launched the 45 min session, and walked away while it created the data locations, peek files, etc, to the new SSD Cache Drive folders.
    When It was finished, I closed, rebooted the system, Launched PPRO, and timed from the Click on the session, till the end of "All Media Loaded"...     19 seconds...
    Will be watching this intently......  
    EDIT:   SO far, I'm happy with the change.... I am interested in anyone else who has done this sort of thing before.... and in paticular, if you found any negatives of putting both cache's on the same physical drive, even if it is a SSD....
    I did find my prior notes, and going from Cache's on raid (Different directory than media, though media was on same raid) to separate Momentus XT Drives decreased load time of this same 45 min project by ~ 15 seconds..
    $$$ Available was only enough for one SSD, and I'm not certain if multiple SSD's for cache's would be worth the $$.... Which is pretty much why I posted here....
    Looking forward to your comments...

  • Use the jdbc for oracle

    Hello folks,
    I have this issue:
    i develop a java application using JBUILDER 9 under windows where the application use jdbc for connection to oracle,i add the jdbc package from the tools>configure jdk...... and so, under windows everything works fine.
    what i want is to run my program under unix, also when trying to compile the program under unix i got the error on the jdbc package, please can anyone help with how to import the jdbc package, where i must put it on unix under which folders, and how to import to my class, a small example will help a lot, and thank you...

    Just make sure your Oracle JDBC is on your class path!

  • Where can i find the Oracle JDBC for Oracle RDBMS 8.1.7 ? Thanks.

    Where can i find the Oracle JDBC for Oracle RDBMS 8.1.7 ? Thanks.

    http://otn.oracle.com/software/tech/java/sqlj_jdbc/content.html

  • LiveCycle unable to access Cache Controller. Exception message - Error accessing the cache container - Error on GET action for cache Replicated:UM_CLUSTER_INVALIDATION_CACHE

    The incident starts after all the members are removed from the DCS Stack DefaultCoreGroup view and added back again by WebSphere Application Server. Following exceptions are seen after LiveCycle was added back in again to the view.
    We have a clustered environment with two nodes 2A and 2B. Server 2A crashed and therefore all members on 2B node were removed from the DCS view. Later the new core group view was installed but LiveCycle did resume operations as expected.
    Errors below:
    Exception caught while dealing with cache : Action - Get, ObjectType - UM_CLUSTER_INVALIDATION_CACHE, Exception message - Error accessing the cache container - Error on GET action for cache Replicated:UM_CLUSTER_INVALIDATION_CACHE
    ServiceRegist W   Cache get failed for service EncryptionService Reason: Error accessing the cache container - Error on GET action for cache
    Error accessing the cache container - Error on GET action for cache Local:SERVICE_FACTORY_CACHE
    The following message appeared for several different services:
    Cache put failed for service [CredentialService, ReaderExtensionsService,EncryptionService, etc]
    SSOSessionCle W   Error in cleaning stale sessions from the database. These sessions would be deleted in next trigger
                                     java.lang.RuntimeException: com.adobe.livecycle.cache.CacheActionException: Error accessing the cache container - Error on ENTRYSET action for cache Local:UM_ASSERTION_CACHE
      at com.adobe.idp.um.businesslogic.authentication.AssertionCacheManager.removeExpiredResults( AssertionCacheManager.java:125)
      at com.adobe.idp.um.scheduler.SSOSessionCleanupJob.execute(SSOSessionCleanupJob.java:69)
      at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
      at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    Caused by: com.adobe.livecycle.cache.CacheActionException: Error accessing the cache container - Error on ENTRYSET action for cache Local:UM_ASSERTION_CACHE
      at com.adobe.livecycle.cache.adapter.GemfireLocalCacheAdapter.entrySet(GemfireLocalCacheAdap ter.java:219)
      at com.adobe.idp.um.businesslogic.authentication.AssertionCacheManager.removeExpiredResults( AssertionCacheManager.java:99)
      ... 3 more
    Caused by: com.gemstone.gemfire.distributed.DistributedSystemDisconnectedException: GemFire on 2B<v1>:9057/51073 started at Sun Aug 17 08:57:23 EDT 2014: Message distribution has terminated, caused by com.gemstone.gemfire.ForcedDisconnectException: This member has been forced out of the distributed system.  Reason='this member is no longer in the view but is initiating connections'
      at com.gemstone.gemfire.distributed.internal.DistributionManager$Stopper.generateCancelledEx ception(DistributionManager.java:746)
      at com.gemstone.gemfire.distributed.internal.InternalDistributedSystem$Stopper.generateCance lledException(InternalDistributedSystem.java:846)
      at com.gemstone.gemfire.internal.cache.GemFireCacheImpl$Stopper.generateCancelledException(G emFireCacheImpl.java:1090)
      at com.gemstone.gemfire.CancelCriterion.checkCancelInProgress(CancelCriterion.java:59)
      at com.gemstone.gemfire.internal.cache.LocalRegion.checkRegionDestroyed(LocalRegion.java:669 4)
      at com.gemstone.gemfire.internal.cache.LocalRegion.checkReadiness(LocalRegion.java:2587)
      at com.gemstone.gemfire.internal.cache.LocalRegion.entries(LocalRegion.java:1815)
      at com.gemstone.gemfire.internal.cache.LocalRegion.entrySet(LocalRegion.java:7941)
      at com.adobe.livecycle.cache.adapter.GemfireLocalCacheAdapter.entrySet(GemfireLocalCacheAdap ter.java:209)
      ... 4 more
    Caused by: com.gemstone.gemfire.ForcedDisconnectException: This member has been forced out of the distributed system.  Reason='this member is no longer in the view but is initiating connections'
      at com.gemstone.org.jgroups.protocols.pbcast.ParticipantGmsImpl.handleLeaveResponse(Particip antGmsImpl.java:106)
      at com.gemstone.org.jgroups.protocols.pbcast.GMS.up(GMS.java:1289)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.VIEW_SYNC.up(VIEW_SYNC.java:202)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:276)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:625)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:187)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:504)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.FD.up(FD.java:438)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.Discovery.up(Discovery.java:258)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.TP.handleIncomingMessage(TP.java:1110)
      at com.gemstone.org.jgroups.protocols.TP.handleIncomingPacket(TP.java:1016)
      at com.gemstone.org.jgroups.protocols.TP.receive(TP.java:923)
      at com.gemstone.org.jgroups.protocols.UDP$UcastReceiver.run(UDP.java:1320)
      at java.lang.Thread.run(Thread.java:773)
    [22/08/14 0:28:10:237 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:29:10:252 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:30:10:268 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:31:10:283 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:32:10:298 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:33:10:313 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:34:10:328 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:35:10:343 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:36:10:358 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:37:10:373 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:38:10:389 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerExceptionor
    I have tried looking for the root cause about why LiveCycle was not able to resume normally, didn't find anything related.

    LiveCycle uses Gemfire as distributed cache for cluster members. If you are using TCP Locators (caching based on TCP instead of UDP), below are the possible situations which might lead to “ForcedDisconnectException” :
    - There is time difference between two nodes.
    - These is network connectivity issues.
    - The high CPU usage by the member crashed.
    -Wasil

  • JDBC for non-relational Databases.

    Hi All,
    correct me if I am wrong in my understanding,
    1. JDBC are a set of specifications (as interfaces etc..) which each
    vendor is expected to provide implementation.
    2. JDBC is for relationsla databases only (like oracle,MySQL etc..) it
    does not take into account the access to non-relational databases.
    3. If 2 is true, is there an equivalent of JDBC for non-relational
    databases?
    TIA.

    1. JDBC are a set of specifications (as interfaces etc..) which each
    vendor is expected to provide implementation.
    Broadly speaking, yes. It doesn't have to be the vendor that provides the implementation, and an ODBC driver (to be used via the JdbcOdbc bridge) is adequate if a native JDBC driver is not available.
    2. JDBC is for relationsla databases only (like oracle,MySQL etc..) it
    does not take into account the access to non-relational databases.
    It expects tabular results. Aside from that I don't think it mandates anything about the design of the underlying system. Certainly it's entirely agnostic about syntactic issues.
    For example, it can talk to Excel spreadsheets, via the JdbcOdbc bridge, and Excel is by no stretch of the imagination a relational database. IMS is not a relational database, but that has a JDBC driver.
    3. If 2 is true, is there an equivalent of JDBC for non-relational
    databases?
    2 is not true, and I'm not aware of any "non relational" database connection standard, probably for this very reason. There may well be vendor specific tools for talking to some systems.

  • Drivers JDBC for Windows CE

    I want to develop an application using java which works in a PDA. I whish to access to the Oracle8i Lite installed in the same PDA.
    Exist drivers JDBC for Windows CE? It is possible?
    Thanks.

    Hello-
    National Instruments currently does not have any Windows CE drivers and do not, at this time, have plans to develop a driver.
    Ray K
    NI Applications Engineer

  • Multiple Calls for Cached Applet Jars

    Hi,
    We have applet which uses Viewer.jar. Even though Viewer.jar is cached on client machine JRE makes calls to server for Viewer.jar. Why it makes call to server for cached jars? Is there any way by which we can avoid server call when jar is already cached on client machine.
    Here is extract of java console:
    network: Cache entry found [url: https://viewer1.qa.asite.com/IGC/Viewer.jar, version: 0005.0000.0023.0012]
    network: Cache entry not found [url: https://viewer1.qa.asite.com/IGC/Viewer.jar?version-id=0005.0000.0023.0012, version: null]
    network: Cache entry not found [url: https://viewer1.qa.asite.com/IGC/Viewer.jar, version: null]
    network: Connecting https://viewer1.qa.asite.com/IGC/Viewer.jar?version-id=0005.0000.0023.0012 with proxy=DIRECT
    network: Connecting https://viewer1.qa.asite.com/IGC/Viewer.jar?version-id=0005.0000.0023.0012 with cookie "__utma=193285949.559965713.1252938991.1252938991.1252938991.1; __utmz=193285949.1252938991.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=186816424.512568576.1252937835.1252937835.1252937835.1; __utmz=186816424.1252937835.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); JSESSIONID=61B8442537C1901DA1DA1B38D4983715"
    network: Connecting https://viewer1.qa.asite.com/IGC/Viewer.jar with proxy=DIRECT

    Hi,
    We have applet which uses Viewer.jar. Even though Viewer.jar is cached on client machine JRE makes calls to server for Viewer.jar. Why it makes call to server for cached jars? Is there any way by which we can avoid server call when jar is already cached on client machine.
    Here is extract of java console:
    network: Cache entry found [url: https://viewer1.qa.asite.com/IGC/Viewer.jar, version: 0005.0000.0023.0012]
    network: Cache entry not found [url: https://viewer1.qa.asite.com/IGC/Viewer.jar?version-id=0005.0000.0023.0012, version: null]
    network: Cache entry not found [url: https://viewer1.qa.asite.com/IGC/Viewer.jar, version: null]
    network: Connecting https://viewer1.qa.asite.com/IGC/Viewer.jar?version-id=0005.0000.0023.0012 with proxy=DIRECT
    network: Connecting https://viewer1.qa.asite.com/IGC/Viewer.jar?version-id=0005.0000.0023.0012 with cookie "__utma=193285949.559965713.1252938991.1252938991.1252938991.1; __utmz=193285949.1252938991.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=186816424.512568576.1252937835.1252937835.1252937835.1; __utmz=186816424.1252937835.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); JSESSIONID=61B8442537C1901DA1DA1B38D4983715"
    network: Connecting https://viewer1.qa.asite.com/IGC/Viewer.jar with proxy=DIRECT

  • DS/SAP - DATAFLOW - This is less than(or equal to) the virtual memory 1609564160 bytes available for caches.

    Hello,
    my project is displaying the following error, when you generate a TXT record with 3 million.
    I have a project that when executato DS goes to a Z table in SAP selects every record in this table (+ 3 million), and on DS it generates a TXT file separated by semicolons (;). But the DS is not getting serar this file with more than 3 million record, the DS displays the following error:
    (12.2) 02-21-14 10:06:27 (2996:2952) PRINTFN: INFO - Definicao da $G_FF_Diretorio_OUT = C:\DS_Neogrid\Upload\QAS
    (12.2) 02-21-14 10:06:27 (2996:2952) PRINTFN: INFO - Definicao da $G_FF_Diretorio_OUT = C:\DS_Neogrid\UpLoad\QAS
    (12.2) 02-21-14 10:06:27 (5928:3040) DATAFLOW: Process to execute data flow <DF_TransfArq_035> is started.
    (12.2) 02-21-14 10:06:27 (5928:3040) DATAFLOW: Data flow <DF_TransfArq_035> is started.
    (12.2) 02-21-14 10:06:27 (5928:3040) DATAFLOW: Cache statistics determined that data flow <DF_TransfArq_035> uses <0> caches with a total size of <0> bytes. This is less
      than(or equal to) the virtual memory <1609564160> bytes available for caches. Statistics is switching the cache type to IN
      MEMORY.
    (12.2) 02-21-14 10:06:27 (5928:3040) DATAFLOW: Data flow <DF_TransfArq_035> using IN MEMORY Cache.
    Can anyone help me...
    Thank you.
    at.
    Wagner

    Error of the border of error of job.
    (12.2) 03-06-14 08:41:54 (W) (1392:6492) SYS-170114: /JB_35_Neogrid_DimDemPrimaria/DF_TransfArq_035
      Warning: Your system is running low on process virtual memory space. Available virtual memory is <22> megabytes.
    (12.2) 03-06-14 08:41:55 (W) (1392:6492) SYS-170114: /JB_35_Neogrid_DimDemPrimaria/DF_TransfArq_035
      Warning: Your system is running low on process virtual memory space. Available virtual memory is <22> megabytes.
    (12.2) 03-06-14 08:41:56 (W) (1392:6492) SYS-170114: /JB_35_Neogrid_DimDemPrimaria/DF_TransfArq_035
      Warning: Your system is running low on process virtual memory space. Available virtual memory is <22> megabytes.
    (12.2) 03-06-14 08:41:57 (W) (1392:6492) SYS-170114: /JB_35_Neogrid_DimDemPrimaria/DF_TransfArq_035
      Warning: Your system is running low on process virtual memory space. Available virtual memory is <22> megabytes.
    (12.2) 03-06-14 08:41:58 (W) (1392:6492) SYS-170114: /JB_35_Neogrid_DimDemPrimaria/DF_TransfArq_035
      Warning: Your system is running low on process virtual memory space. Available virtual memory is <22> megabytes.
    Characteristics of our server.
    It will be necessary to increase the virtual memory virtual?
    at.
    Wagner

  • Will a 256 gig SSD be enough for caches or should i go for 500?

    I'm getting a laptop for AE which will come with a terabyte HDD. Im going to put the OS and AE on an SSD. Do you think 256 gigs will be enough or should i go for 500? How much space would be enough for caching? I dont want to get a 500GB SSD and then realize it was overkill. thanks

    Yes, you're right about the boot and application start.  
    And that's just the point for putting user files on the SSD.  SSD's are far faster at reading & writing than a hard drive... with no physical wear & tear.  And when you're reading a hundred layers of HD footage and a hundred more layers of Photoshop & Illustrator documents -- for each and every frame of your AE composition -- you stand to boost the machine's performance significantly with shorter read times multiplied by 200... to say nothing of the absence of physical wear & tear.
    You might also consider putting media files on an external hard drive.

Maybe you are looking for

  • SLM 2008 fails to work

    I have 2 SLM 2008. One of the bought in 2008 still under Linksys while the second is already Cisco labeled I got in 2010 to extend my home network. Both are firmwared to 2.0.0.10. The first one yesterday failed to work. When I switch it off nad in a

  • How do I share wifi data between iMac and windows based computer on wifi network?

    I have an unsecured wifi network at home and need to easily share photos between computers>  I have an iMac and a couple window based computer> Is ther an easy way instead of using a thumb drive?

  • How Do I create a Hyperlink back to a keynote file on a certain slide

    In my Keynote presentation I have a demo on (say for example) slide 30 which contains a hyperlink to another keynote file, at the end of this keynote file I want to create a hyperlink back to the original presentation from slide 30 or 31. Any ideas?

  • ALDSP 3.0 Integration with ALSB 2.6

    Hi All, I tried integrating ALDSP 3.0 data service with ALSB 2.6 using the WSDL generated by me using ALDSP 3.0. However as soon as I try to import the WSDL into ALSB 2.6, I am getting the below exception: One of the WSDL dependencies is invalid. - h

  • Valuation type not available in Production Order

    Hi experts, We are unable to settle production order ,because In CO03,under "Goods Receipt block",no valution type mentioned in "valuation type block". Please advise. Regards, Samar