Once again, problems with my Jukebo

Well. I bought my jukebox 2, and I had loads of problems setting it up. In the end, after downlaoding loads of various stff, I had to give up on using the installation CD, and we discovered that if I simply clicked on a file and clicked send to, it came up with my jukebox and I could put files on it that way. However, we've since reformatted the computer, and it does not come up with that option anymore, so now I have absolutely no idea how to get files on my player. Anyone got any ideas?

I believe the Send To is part of Nomad Explorer, so make sure you install that.

Similar Messages

  • Once again problems with Adobe DPS

    Had several problems in the past to "log in" with the Folio Builder. After A LOT OF INSTALLATIONS it finally worked well.
    But now I wasn't even able to open the Folio Builder panel or the Overlay Creator Panel. Nothing happens if I choose it in the menu..
    Consequently I installed the new Update:
    1. The Digital Publishing Tools
    2. the separate Folio Builder panel
    Unfortunately it still didn't work.
    Installed the whole thing again. Does not work. Can't open the panels.
    As you can see in the screenshot, the Folio Builder panel is called "%MENU_NAME" in the menu. HMMMMMM......??????
    ANYONE HAS THIS BUG TOO? HAS ANYBODY A SOLUTION?
    I have a very strong timeline to finish a presentation for the iPad...

    You need to install the producer tools first, then folio builder. If you dont you get the error you are seeing.
    Lots of people have had this problem, but it is easily rectified, if you uninstall and then re-install the correct way.
    Hope that helps
    Alistair

  • Once Again, Problems with PDF Output in 3.0

    Sorry that i write another thread to this topic. i think i ´ve read all other posts (and oracle documents from oracle) but i can´t find the answer to my problem
    there a two things i wondering about:
    first: What is the right port (and how can i prove it, which one is used?)
    Some write use 8888 , some use the listener Port 1521 ???
    second: after copying the fop directory, do i have to use
    oc4j -install ?
    Bonus Questions :-)
    I always get 0 length pdf documents. Is there a logfile, where i can look in?
    At my first try i put the 3 lines at the of the file application.xml, but i got an error
    now i use this :
    <library path="../../../j2ee/fop-0.20.5/build/fop.jar"/>
    <library path="../../../j2ee/fop-0.20.5/lib/batik.jar"/>
    <library path="../../../j2ee/fop-0.20.5/lib/avalon-framework-cvs-20020806.jar" />
    </orion-application>#
    Is this the right position?
    Thanks
    marco

    Hi Marco,
    First: What is the right port (and how can i prove it, which one is used?)In your OC4J configuration there will be a line which specifies which port should be used. To check which port it is try doing this -
    [jes@db j2ee]$ grep "port=" home/config/http-web-site.xml
    <web-site host="localhost" port="8888"
    <web-site port="8888" display-name="Oracle9iAS Containers for J2EE HTTP Web Site">
        <!-- <frontend host="your_host_name" port="80" /> -->I ran that command whilst in the j2ee directory, you can see the output I got (3 lines), so in my case it is running on port 8888 (the third line is actually commented out).
    To check if the port is actually listening, try this -
    [root@db root]# lsof -i:8888
    COMMAND  PID USER   FD   TYPE  DEVICE SIZE NODE NAME
    java    9047 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9048 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9049 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9050 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9051 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9052 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9053 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9054 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9055 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9057 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9058 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9060 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9061 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    second: after copying the fop directory, do i have to use
    oc4j -install ?No, when you run OC4J it should automatically setup the files for you, you can start the OC4J container by doing this -
    [root@db home]# $ORACLE_HOME/jdk/bin/java -jar oc4j.jar
    07/03/29 07:05:43 Oracle Application Server Containers for J2EE 10g (9.0.4.0.0) initializedYou can change the path to the java command to suit your own installation.
    Is this the right position?This is what my application.xml looks like -
    [root@db config]# more application.xml
    <?xml version="1.0" standalone="yes"?>
    <!DOCTYPE orion-application PUBLIC "-//Evermind//DTD J2EE Application runtime 1.2//EN" "http://xmlns.oracle.com/ias/dtds/orion-application-9_04.dtd">
    <!-- The global application config that is the parent of all the other
            applications in this server. -->
    <orion-application autocreate-tables="true" default-data-source="jdbc/OracleDS">
        <web-module id="defaultWebApp" path="../../home/default-web-app"/>
        <web-module id="dms0" path="../../home/applications/dms0.war"/>
        <web-module id="dms" path="../../home/applications/dms.war"/>
        <commit-coordinator>
            <commit-class class="com.evermind.server.OracleTwoPhaseCommitDriver"/>
            <property name="datasource" value="jdbc/OracleDS"/>
            <!-- Username and password are the optional properties
               replace with your commit_co-ordinator_super_user
                 <property name="username"
                                   value="system" />
                 <property name="password"
                                   value="->£$@£@£$!£" />
      -->
        </commit-coordinator>
        <persistence path="../persistence"/>
        <!-- Path to the libraries that are installed on this server.
         These will accesible for the servlets, EJBs etc -->
        <library path="../applib"/>
        <library path="../../../sqlj/lib"/>
        <library path="../../../rdbms/jlib/xsu12.jar"/>
        <library path="../../../lib/dsv2.jar"/>
        <!-- Path to the taglib directory that is shared
             among different applications. -->
        <library path="../jsp/lib/taglib"/>
        <!-- Comment out the jazn element to use principals.
        When both jazn and principals are present jazn is used  -->
        <!-- libraries below added for FOP support -->
    <library path="../../../j2ee/fop-0.20.5/build/fop.jar"/>
    <library path="../../../j2ee/fop-0.20.5/lib/batik.jar"/>
    <library path="../../../j2ee/fop-0.20.5/lib/avalon-framework-cvs-20020806.jar" />
    <!-- above libraries added for FOP support -->
        <principals path="./principals.xml"/>
        <log>
            <file path="../log/global-application.log"/>
        </log>
        <jazn provider="XML" location="./jazn-data.xml"/>
        <data-sources path="data-sources.xml"/>
        <connectors path="./oc4j-connectors.xml"/>
        <namespace-access>
            <read-access>
                <namespace-resource root="">
                    <security-role-mapping>
                        <group name="administrators"/>
                    </security-role-mapping>
                </namespace-resource>
            </read-access>
            <write-access>
                <namespace-resource root="">
                    <security-role-mapping>
                        <group name="administrators"/>
                    </security-role-mapping>
                </namespace-resource>
            </write-access>
        </namespace-access>
    </orion-application>Hope this helps
    John.

  • Once again problems with Netscape 4

    Hi,
    I have an jsp with a form inside. The form request is handled by a servlet.
    But when running the jsp from Netscape4, there are no parameters sent with the request object. Why is this?
    With the Internet Explorer I have no problems. The parameters are accesible without problems from the request object.
    Has anyone an idea???

    It seems that there is some error with your HTML (Check it thoroughly for example for missing </form> tags,etc , etc . IE is correcting them automatically but netscape is not.
    This has nothing to do with JSP
    Shubhrajit

  • Again problem with stability of Adobe server

    Like last friday, today again we are encountering serious problem with uploading of folios from ID to server and then downloading to Chip. We are paid customer, we need to publish magazine on time AND THIS IS NIGHTMARE!!!

    Yes me too!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    I have had no problems since having a "provisioned account" a week ago, surely this cannot be starting over again. We to have a FINAL deadline this weekend.
    We can update using Folio Builder but we cannot update using Folio Producer Organizer:
    Error .... updating the folio on the distribution server
    Could not upload article.
    What on earth is going on this time?

  • Again problems with System Update

    Hello
    Yesterday I've newly setup my computer with Windows Vista. After this installation I have usually install Lenovo System Update first. I have installed the newest version (3.14.0008) and I'm trying now to use it, but it always tells me, that there are no packages available for my system.
    The strange thing is, that the package index (around 400 KB), which is normally downloaded, is never downloaded. The connection settings in Internet Explorer are correct.
    Does anyone else have the same problems? On saturday, everything went fine with System Update. Since yesterday, I'm unable to get any software or drivers.
    Maybe there's a problem with the package server?
    Thanks for any response.
    raftbone

    Yes, we here in Germany have also problems, the same message appears.
    The Update Server seems down, try again later or tomorrow.
    See on "thinkpad-forum.de" are also users with this problems.
    Greets
    Message Edited by Agotthelf on 07-21-2008 09:56 AM
    Follow @LenovoForums on Twitter! Try the forum search, before first posting: Forum Search Option
    Please insert your type, model (not S/N) number and used OS in your posts.
    I´m a volunteer here using New X1 Carbon, ThinkPad Yoga, Yoga 11s, Yoga 13, T430s,T510, X220t, IdeaCentre B540.
    TIP: If your computer runs satisfactorily now, it may not be necessary to update the system.
     English Community       Deutsche Community       Comunidad en Español

  • Again problems with server conecction

    Yesterday I started to  Sync, and for a few hours eveything looks great, but this morning I recive a message about problems with the server (and it is not my internet connection). Anyone else have this problem?

    Hi Antonio,
    Are you still having issues?

  • Here we go again - problems with sync files to CC

    Again I having trouble sync (uploading) files to CC.
    I get an error message saying that a file (every file) can not be synced - this is folloowed by an absolute nonsense error message - can't upload look at your file - really anoying!
    Is this the same problem as when the whole CC went down this spring and we all got stuck for months without this CC access?
    Does anyone know an effective way to escalate/report this error.
    Error
    CC sync does not work
    You only get a nonsense error message
    You're pretty much stuck ... again !

    Hi Søren,
    Does turning sync off and back on again make any difference? Can you post a screen shot of the error?
    Could you also upload the most recently copy of this log file to Creative Cloud, set the file as public, available for download, and post the link here?
    Mac:
    \Users\\Library\Application Support\CloudSync\acloud-YYYY-MM-DD.log
    (where YYYY-MM-DD indicate the date of the last log)
    Note: the Users Library user folder is hidden on starting with 10.7 or later
    see http://helpx.adobe.com/x-productkb/global/access-hidden-user-library-files.html
    Windows:
    The log file can be found here:
    C:\Users\\AppData\Roaming\CloudSync\CloudSync-YYYY-MM-DD.log
    (where YYYY-MM-DD indicate the date of the last log)
    Thanks,
    -Dave

  • Here we go again, problems with Email STILL/AGAIN.

    Now not only am I still having the same problem of the iPhone saving my deleted email, the iPhone is now deleting my email accounts ON ITS OWN. I went to bed last night with two distinct pop accounts and woke up with only one. I just can't believe this. How is this possible? Anyone else having difficulty in these areas? I would really appreciate some input. Thanks in advance.

    Hi Søren,
    Does turning sync off and back on again make any difference? Can you post a screen shot of the error?
    Could you also upload the most recently copy of this log file to Creative Cloud, set the file as public, available for download, and post the link here?
    Mac:
    \Users\\Library\Application Support\CloudSync\acloud-YYYY-MM-DD.log
    (where YYYY-MM-DD indicate the date of the last log)
    Note: the Users Library user folder is hidden on starting with 10.7 or later
    see http://helpx.adobe.com/x-productkb/global/access-hidden-user-library-files.html
    Windows:
    The log file can be found here:
    C:\Users\\AppData\Roaming\CloudSync\CloudSync-YYYY-MM-DD.log
    (where YYYY-MM-DD indicate the date of the last log)
    Thanks,
    -Dave

  • AppServer: again problem with DB configurations

    I have successfully configured a pooled Oracle data source and had it run, but I'm
    having problems establishing an XA Oracle connection. (Using admin console)
    The pooled source used the parameters:
    -- Datasource-classname oracle.jdbc.pool.OracleDataSource
    -- Resource type javax.sql.DataSource
    -- Pool settings - all as per defaults
    -- Connection-validation etc - as per defaults
    -- Transaction isolation - changed to "default for driver" (i.e. blank)
    -- Properties - user, password, and url
    it works;
    the XA connection I tried configuring as:
    -- Datasource-classname oracle.jdbc.xa.client.OracleXADataSource
    -- Resource type javax.sql.XADataSource
    -- the rest of parameters as for the pool connection
    When I try to test the connection via "Ping" (in admin console) I get an error
    with the server log recording:
    java.lang.ClassNotFoundException: oracle.jdbc.xa.client.OracleXADataSource
         at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
    Since both the oracle.jdbc.pool.OracleDataSource and oracle.jdbc.xa.client.OracleXADataSource
    classes are in the same ojdbc14.jar file this seems very odd.
    Any suggestions?
    Thanks.

    i just tested this and it works fine for me. Here are the properties that are set (from domain.xml):
    <jdbc-connection-pool connection-validation-method="auto-commit" datasource-classname="oracle.jdbc.xa.client.OracleXADataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="false" max-pool-size="32" max-wait-time-in-millis="60000" name="cts-oracle-xa-pool" pool-resize-quantity="2" res-type="javax.sql.XADataSource" steady-pool-size="8">
    <property name="Password" value="cts1"/>
    <property name="URL" value="jdbc:oracle:thin:@jsesun11:1521:cts1"/>
    <property name="User" value="cts1"/>
    </jdbc-connection-pool>

  • Sorry again Problem with ISO Images

    Hi all
    I have read the last 200 entries in this forum and I found many questions as mine but found no real answer to my problem.
    I want to install Solaris 8 on a SPARCstation 5 and downloaded it on a PC (x86/WinNT) via DSL.
    What has happened:
    1. i downloaded the 3 necessary files for sparc arch.
    2. i unziped them
    3. i renamed them to *.iso
    4. i opened nero and cd image option
    (4a i asserted that nero need extension *.nrg not iso renamed it to .nrg)
    5. i got an error message like "bad image file"
    6. i tried winoncd -> same effect
    What can I do? Where is my mistake? Can I write a CD with SparcCDimage on a PC (blocksize error?)? Is it absolutly necassary to use Easy CD creator to create these CD's??
    At the moment is NetBSD 1.5 installed on my SPARC5. Is Solaris 8 faster than NetBSD?
    bye
    Michael

    Hi,
    You are connected as SYS in this case, you need to qualify the table with apex schema name like this:
    select user_id , account_locked from APEX_030200.wwv_flow_fnd_user;Could you please send your installation log from your apex unzip directory?
    Or check it yourself, may be you need to reinstall if there are some errors.
    Could you copy-paste to your CMD sqlplus console the code (but connect SYS as SYSDBA first)
    ALTER session SET current_schema = APEX_030200;
    prompt ...changing password for ADMIN
    BEGIN
      wwv_flow_security.g_security_group_id  := 10;
      wwv_flow_security.g_user               := 'ADMIN';
      wwv_flow_security.g_import_in_progress := true;
      FOR c1                                 IN
      (SELECT user_id
      FROM wwv_flow_fnd_user
      WHERE security_group_id = wwv_flow_security.g_security_group_id
      AND user_name           = wwv_flow_security.g_user
      LOOP
        WWV_FLOW_FND_USER_API.EDIT_FND_USER(
        P_USER_ID => C1.USER_ID,
        P_USER_NAME => WWV_FLOW_SECURITY.G_USER,
        P_WEB_PASSWORD => 'password',
        p_new_password => 'password');
      END LOOP;
      wwv_flow_security.g_import_in_progress := false;
    END;
    COMMIT;This is taken from Apex change password script, I hardcoded your password to be password.
    What is the result of running this?
    Can you connect to Apex Internal workspace using Admin/password for username/password
    Regards,
    Oleg

  • Once again: Issue with Spaces in XSL

    Hi forum,
    I searched the forum and found several posts on this issue, yet no suggested solution seems to work for me:
    I'm having to instances of type XmlType, one being an XML instance and the other being an XSL instance.
    I set xml:space="preserve" at the stylesheet, added a space with <xsl:text> </xsl:text> and even tried various other options.
    When I then transform the XMLInstance like so:
    XMLInstance.transform(XSLInstance) the resulting XMLInstance is properly transformed, but all spaces are gone.
    Although trying hard, I wasn't able to find a working solution. Strange is that this seems to work without any issues in XMLSpy when I convert the stuff manually.
    Can anybody help?
    Thx, Jürgen

    Hi tp5harp,
    According to your description, your hyperlink is not working after exporting the report into Excel. Right?
    In Reporting Services, Hyperlinks that appear in text boxes are rendered as Excel hyperlinks in the cell in which the text is rendered. Hyperlinks for images and charts are rendered as Excel hyperlinks on the image when rendered. When clicked, the hyperlink
    opens the client’s default browser and navigates to the target URL. However, it still reported issues of Hyperlinks in Excel. Please see a similar threads here:
    Error message when clicking hyperlink in Excel file
    For you issue, we
    would recommend to submit a feedback to the Microsoft Connect at this link
    https://connect.microsoft.com/SQLServer/Feedback.
    This connect site will serve as a connecting point between you and Microsoft, and ultimately the large community for you and Microsoft to interact with. Your feedback enables Microsoft to offer the best software and deliver superior services, meanwhile
    you can learn more about and contribute to the exciting projects on Microsoft Connect.
    Best Regards,
    Simon Hou

  • Again problem with servlet and Tomcat

    My files are:
    webapps\greeting\src\GreetingServlet.java
    ................\index.html
    ................\WEB-INF\classes\GreetingServlet.class
    ........................\web.xml
    Url:http//:localhost:8080/greeting/ shows index.html but when i submit
    it showing
    HTTP Status 404 - /greeting/servlet/GreetingServlet
    type: Status report
    message: /greeting/servlet/GreetingServlet
    description: The requested resource (/greeting/servlet/GreetingServlet) is not available.
    Source code:
    1.index.html:
    <HTML>
         <HEAD>
              <TITLE>ProJava Registration</TITLE>
         </HEAD>
         <BODY>
              <H1>Welcome</H1>
              <FORM ACTION ="/greeting/servlet/GreetingServlet" METHOD= "POST">
                   <p>Your Name <INPUT TYPE= "text" SIZE= "40" NAME= "name" ></p>
                   <p>Your Email <INPUT TYPE= "text" SIZE= "40" NAME="email">
                   <INPUT TYPE= "submit" VALUE= "Submit" ></p>
              </FORM>
         </BODY>
    </HTML>
    2.GreetingServlet.java:
    import javax.servlet.* ;
    import javax.servlet.http.* ;
    import java.io.* ;
    import java.util.* ;
    public class GreetingServlet extends HttpServlet{
    protected void doPost (HttpServletRequest request,
                   HttpServletResponse response)
                        throws ServletException, IOException {
         String name = request.getParameter ("name");
         String email = request.getParameter ("email");
         String message = null;
         GregorianCalendar calendar = new GregorianCalendar();
         if (calendar.get(Calendar.AM_PM) == Calendar.AM) {
              message =" Good Morning";
         else {
              message = " Good Afternoon";
         response.setContentType("text/html");
         PrintWriter out = response.getWriter();
         out .println("<HTML>");
         out .println("<BODY>");
         out .println("<p>"+message +","+name+"</p>");
         out .println("<p> Thanks ("+email+")</p>");
         out .println("<p> -The Pro Java Team.</p>");
         out .println("</BODY>");
         out .println("</HTML>");
         out .close();
    Please help me
    Thanks in advance Also thanks to st.

    Hi,
    I think you have to change server.xml, which is in conf directory of your tomcat root directory.
    search context in server.xml
    and alter like this
    <Context path="/greetings" docBase="greetings" debug="0"
    reloadable="true" crossContext="true">
    Hope this will help
    Regards
    Sekhar

  • Sync problems with iPhoto (Last iTunes & iPhoto & iOS)

         Some people have problems to with the music sync but anyone has the same problem but with the photos? iTunes doesn´t count the number of photos that suposse to be listed when you select your album on itunes/device/photos... I have once the problem with the music but it cames right after delete and resync my playlists.
         Thnks!
         Tested on iPhone 5 and iPad2 Mavericks iTunes 11.1.2 and iOS 7.0.3 Same problem with iPhoto 9.4.3 and 9.5."

    I have the same issue - iTunes 11.1.2, iOS 7.0.3, Mac OS X Mavericks, iMac 2011, iPhone 5S - Aperture 3.5 and iPhoto 9.5 - iTunes does not sync pictures (not even counts them) between my iPhone 5S and either one of the programs. When I select iPhoto, it even shows information of a library I am not opening with iPhoto anymore.
    I have resorted for the time being, waiting for a bug fix, to copy what I am interested in, into a folder and sync from it - that at least works.
    Moreover, contrary to what said here in other threads, I can Wi-fi sync my iPhone 5S and iPad 2 to iTunes 11.1.2.
    And, about all the complaints of iTunes not showing the "Info" tab anymore, Mac OS X now supports natively more types of accounts (Gmail, Yahoo, Twitter, Facebook, AOL, etc.). Everything can still be also set up manually in any case - so I don't understand what everybody is bragging about - you can avoid using iCloud, if so one wishes.

  • Problem with reached maximum number of connections to database

    Dear Experts,
    Our Production system was not responding properly last week.
    The below was the reply from the Basis team.
    "It seems that we have again problem with reached maximum number of connections to database. We have extended this number to 100 this year and now it seems that it’s not enough again. It seems that something is running on Production, which takes over too many connections."
    They have increased the number to 200 as a work around.
    Do we have any means to find out, which component or application is causing the issue.
    Please advise me if any better way is available to correct the issue.
    Please see the below trace.
    From default trace:
    ======
    Caused by: com.sap.engine.services.dbpool.exceptions.BaseSQLException: ResourceException occurred in method ConnectionFactoryImpl.getConnection(): javax.resource.R
    esourceException: (Failed in component: dbpool, BC-JAS-TRH) Cannot create connection. Possible reasons: 1)Maximum allowed connections to DB or EIS is reached. You
    can apply CSN Note 719778 in order to check and resolve connection leaks. 2) Configuration to DB/EIS is wrong or DB/EIS is temporary unreachable. 3) Connections ar
    e not enough for current load.
            at com.sap.engine.services.dbpool.cci.ConnectionFactoryImpl.getConnection(ConnectionFactoryImpl.java:60)
            at com.sap.security.core.persistence.datasource.imp.J2EEConnectionPool.getConnection(J2EEConnectionPool.java:205)
            ... 61 more
    Caused by: javax.resource.ResourceException: (Failed in component: dbpool, BC-JAS-TRH) Cannot create connection. Possible reasons: 1)Maximum allowed connections to
    DB or EIS is reached. You can apply CSN Note 719778 in order to check and resolve connection leaks. 2) Configuration to DB/EIS is wrong or DB/EIS is temporary unr
    eachable. 3) Connections are not enough for current load.
            at com.sap.engine.services.connector.jca.ConnectionHashSet.match(ConnectionHashSet.java:230)
            at com.sap.engine.services.connector.jca.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:343)
            at com.sap.engine.services.connector.jca.ShareableConnectionManager.allocateConnection(ShareableConnectionManager.java:54)
            at com.sap.engine.services.dbpool.cci.ConnectionFactoryImpl.getConnection(ConnectionFactoryImpl.java:52)
            ... 62 more
    Caused by: com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException is thrown by the pooled connection: com.sap.sql.log.OpenSQLException: No c
    onnection to data source SAPEPPDB available. All 100 pooled connections are in use and 70 connection requests are currently waiting. The connection pool size might
    need to be adjusted.
            at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:192)
            at com.sap.engine.services.connector.jca.ConnectionHashSet.match(ConnectionHashSet.java:221)
            ... 65 more
    Caused by: com.sap.sql.log.OpenSQLException: No connection to data source SAPEPPDB available. All 100 pooled connections are in use and 70 connection requests are
    currently waiting. The connection pool size might need to be adjusted.
    ======
    Thanks and Kind Regards,
    Jelbin

    Stop all instances(including DB) and start again, Hope it should work.
    It may happened that jar has not been synchronized with the database and may be version mismatch with the java.
    719778 - Data Source fails to return connection
    1650472 - Transactions are interrupted due to database connection periodically failing to establish
    1138877 - How to Deploy External Drivers JDBC/JMS Adapters
    Change the connection pool so that it can connect to DB as per the note 719778
    Regards
    Vijay Kalluri

Maybe you are looking for