Java + debian + postgresql

hey all!!!
i ve got a problem with connecting postresql on debian with (to) java application. this problem is quite common (i have done my research on the internet) and there is a lot about it on the net but i just don't seem to be able to resolve this.
anyway
os = debian sarge
java =
nikdo@debil:~/java/postres$ java -version
java version "1.5.0_10"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_10-b03)
Java HotSpot(TM) Client VM (build 1.5.0_10-b03, mixed mode, sharing)
postgres =
nikdo@debil:~/java/postres$ psql --version
psql (PostgreSQL) 7.4.7
contains support for command-line editing
i have downloaded postgresql-8.0-319.jdbc3.jar postgresql-8.1-409.jdbc3.jar postgresql-8.2-505.jdbc3.jar and have tried to use them one by one (from 8.2 to 8.0) and nothing
so then i downloaded the source of the driver (via cvs) and compiled it into postgresql.jar and tried again and again nothing.
so i looked on the internet and found all the $CLASSPATH vars and so (actually i already knew about those due to the first build failure) and set those, tried my luck number of times and nothing so i unset them again and tried with javac -cp <path to the file> and have made sure that it is the whole path (the *.jar file included) and again nothing. so i have tried
java -Djdbc.drivers=org.postgresql.Driver neco.java option when compiling and again nothing. well simply i don't know what else to do. if anyone can help me.... i would really appreciate that!!!!
the only lead i have got is this...
code:
import java.sql.*;
public class neco{
public static void main(String[] vik){
try{
Class.forName("org.postgresql.Driver");
System.out.println("ok");
}catch(ClassNotFoundException cnfe){
System.out.println("no good");
//cnfe.printStackTrace();
when i compile like
javac neco.java = then no error
when run
java neco = then it throws the exception text 'no good'
when i compile like
javac -cp <path to *.jar file> neco.java = no error
when run
java -cp <path to *.jar file> neco = then no exception text but 'Exception in thread "main" java.lang.NoClassDefFoundError: neco'
that i suppose is quite the same thing but it confuses me why it gives 2 different types of error text.
well that's about all
thanks
vella

hey dcminter!!
i'm just in the middle of exam period so i didn't
have time to check this forum straight away....
well i have just tried
javac -cp ./<path to *.jar file>:. neco.javaHere it's unnecessary - that's a file, not a class, that you're compiling, so you provide the path to the file. If it's in your working directory it's in your path. You do need a classpath, but only so that the compiler can find the classes that it hasn't been told to compile.
by the way i'm very lazy that's why no capital
letters with classes (:I'm very lazy, that's why I use the capital letter convention to distinguish between variables and Classes without having to go and look to see where they're declared.

Similar Messages

  • Java and Postgresql

    I have a postgresql database setup on a server machine and have written a java program in netbeans that accesses it. The problem i have is that running the jar created by netbeans from any other machine on the network has really slow database access but running the program from netbeans itself is fine. Running the jar on the server machine is also fine.
    Anyoner got any idea as to why this could be?
    Tom

    I have a postgresql database setup on a server machine and have written a java program in netbeans that accesses it. The problem i have is that running the jar created by netbeans from any other machine on the network has really slow database access but running the program from netbeans itself is fine. Running the jar on the server machine is also fine.
    Anyoner got any idea as to why this could be?
    Tom

  • Java 3D + PostgreSQL + which technology to make access through web page

    Hello,
    I wrote application which connects to psql db using jdbc driver, gets some data and shows results in 3D using Java3D library.
    I'd like to make it accessible through web page. What technology I shoul use? I read a little about Java Web Start. JWS + Java3D should work fine, but can I connect to database using JWS?
    Thanks for any help.
    Chojny

    You're running Java3D on the server or on the client?

  • Please help in JDBC with postgresql

    Hi
    I am trying to connect java to postgresql. my code is working fine on RHEl4 but there is
    problem on Fedora core 4. i am not able to understand what could be the reason. All my settings are same as i did on linux. The exception came is
    java.net.SocketException: Invalid argument or cannot assign address
    Can anyone plz help??? its very very urgent
    Thanks
    Shweta

    Please stop crossposting.
    http://forum.java.sun.com/thread.jspa?threadID=5182135&messageID=9709934#9709934
    http://forum.java.sun.com/thread.jspa?threadID=5182140&messageID=9709955#9709955
    One topic per problem is enough otherwise you (and we!) are losing the overview of the provided answers and the eventual questions-on-answers.

  • PostgreSQL & JDBC - ClassNotFoundException

    I'm trying to get my servlet to play nicely with postgresql, but I keep getting a ClassNotFoundException at compile time. I have added only one line (Class.forName("org.postgresql.Driver");) to a previously working servlet - it should initialize the driver as per the postgresql documentation, but it keeps throwing this error.
    I recognize that this should have to do with the classpath, but I've tried many different configurations and it's still broken. $CLASSPATH currently looks like this:
    :/usr/local/tomcat/webapps/test/WEB-INF/servlet-api.jar:/usr/local/tomcat/webapps/test/WEB-INF/postgresql-8.1-405.jdbc3.jar:/usr/local/tomcat/webapps/test/WEB-INF/classes/i looked into that postgresql-8.1-405.jdbc3.jar file, and the org.postgresql.Driver is present. running simply "java org.postgresql.Driver" successfully finds the class. I've tried setting the classpath at the command line when running javac too, and i still get the same error. I'm out of ideas!
    Below is (the relevant part of) my code. Any help is most appreciated!
    package mypackage;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.*;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.sql.*;
    public final class Map extends HttpServlet {
       List<Location> aList = new ArrayList<Location>(2);
       Location a = new Location("Apartment #1","Residence"," West 4th St", -74.001634, 40.732889);
       Location b = new Location("Apartment #2","Residence","Bank St", -74.003161, 40.737430);
       public void doGet(HttpServletRequest request,
                          HttpServletResponse response)
          throws IOException, ServletException {
             aList.add(0, a);
             aList.add(1, b);
         Class.forName("org.postgresql.Driver");
         response.setContentType("text/html");
         PrintWriter writer = response.getWriter();
         writer.println("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"");
    //And it goes on for a while like that, then ends with...
    }

    I'm trying to get my servlet to play nicely with
    postgresql, but I keep getting a
    ClassNotFoundException at compile time. "at compile time" - now I see.
    Putting the JAR file in the WEB-INF/lib of your app or Tomcat's common/lib only affects runtime behavior. At compile time you have to tell the compiler where to find what you need.
    The Class.forName() call doesn't actually cause the PostgreSQL driver class to be loaded - that's runtime behavior. The compiler was complaining about the lack of the try/catch block.
    The thing is that javac.exe doesn't give a hoot about your system CLASSPATH. Use the -classpath option to add paths to classes and JAR files that you need.
    I kept thinking that you were having a runtime problem.
    %

  • Apparent port conflict using LCDS with JBoss

    Hi,<br />I am somewhat new to this so please bear with me.  On my server I have lcds installed and sample.war working in JBoss 4.0.5.  I have written a datatier in Java against PostgreSQL 8.x and am writing simple mxml programs to test it.  I have had some success with this. All of the new code is installed in a copy of samples.war because I do not understand the configuration files well enough to toss the examples out.  My latest problem is that my recent versions of the war file get this error in my JBoss log file:<br />Exception in thread "RTMP-Server" <br />flex.messaging.endpoints.rtmp.RTMPException: The RTMP server has encountered a fatal exception starting up: Address already in use<br />     at flex.messaging.endpoints.rtmp.BaseNIORTMPServer.run(BaseNIORTMPServer.java:317)<br />     at java.lang.Thread.run(Thread.java:595)<br />The port specified in the services-config.xml in my war is 2038, and I see JBoss also has an identical services-config.xml at:<br /> <jboss root>/server/default/flex/WEB-INF/flex.  <br />Has anyone else seen this?  Do I just need to change the port?  In both places?  Or is there something else I need to do?<br />Thanks!

    Robert,
    Thanks for responding. Here is my Ant script, comments and all.
    Jerry
    =======================
    <?xml version="1.0" ?>
    <project default="main" >
    <!-- basedir. Hmm. we could actually put this Ant script IN THE ROOT of the sbda eclipse project, as it is mapped to svn.
    Then we could have a separate script that checks out all of that stuff from svn, cd's to the root of the checked out
    code, then runs Ant. In that case the basedir IS ".", because it is all run relative to wherever that checked out
    code will lives. This also gets this script into ANT, which is a safe place for it.
    So where does the 'first' script live? We have to use it before we check out from svn...
    And what about the php code to handle uploads, sb_upload.php? For now that is separate, not directly in svn.
    At least until we can get the eclipse for php to also use Subclipse.
    Note: we also need to do a plain vanilla copy of the WEB-INF from basedir to the war dir. We do NOT wish
    to create the WEB-INF from scratch!!
    -->
    <taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask"> </taskdef>
    <target name="main" depends="checkout, initvars, initdirs, compile, war, deploy"/>
    <target name="mainxxxx" depends="initvars, compile"/>
    <property name="checkout_target" value="C:\dev\sb\BuildScience\ant_dev\root3"/>
    <property name="checkedout_project" value="${checkout_target}"/>
    <target name="checkout" >
    <svn javahl="true" description="use svn-ant to checkout from our svn -- destPath is 'basedir' for all else">
    <checkout url="http://sb001.com/dev/sbda"
    destPath="${checkout_target}"/>
    </svn>
    </target>
    <target name="initvars">
    <property name="src" value="${checkedout_project}/src"/> <!-- this works! -->
    <property name="bin" value="${checkedout_project}/output"/> <!-- this works! First we compile to 'bin', then later copy to WEB-INF/classes. Yes.-->
    <property name="web" value="${checkedout_project}\WebContent"/> <!-- this works! Because all of the webby stuff (in our case the mxml and as in their folders) IS at basedir-->
    <property name="descriptors"
    value="${checkedout_project}/output/deploymentdescriptors"/>
    <property name="wardir" value="${checkedout_project}/output/war"/>
    <property name="warfile" value="sbda.war"/>
    <property name="warfinaldir" value="${checkedout_project}/finalwar"/>
    <property name="deploydir" value="${checkedout_project}/fakojbossdeploydir"/>
    <property name="morejarsdir" value="${web}\WEB-INF\lib"/>
    <property name="morejarsdir2" value="${web}\WEB-INF\flex\jars"/>
    <echo> "checkout_target is: ${checkout_target}" </echo>
    <echo> "checkedout_project is: ${checkedout_project}" </echo>
    <echo> "src is: ${src}" </echo>
    <echo> "bin is: ${bin}" </echo>
    <echo> "web is: ${web}" </echo>
    <echo> "descriptors is: ${descriptors}" </echo>
    <echo> "wardir is: ${wardir}" </echo>
    <echo> "warfile is: ${warfile}" </echo>
    <echo> "warfinaldir is: ${warfinaldir}" </echo>
    <echo> "deploydir is: ${deploydir}" </echo>
    <echo> "morejarsdir is: ${morejarsdir}" </echo>
    <echo> "morejarsdir2 is: ${morejarsdir2}" </echo>
    <!--
    <path id="classpath">
    <fileset dir="${morejarsdir}" includes="**/*.jar"/>
    <fileset dir="${morejarsdir2}" includes="**/*.jar"/>
    </path>
    -->
    </target>
    <target name="initdirs">
    <!-- <mkdir dir="${wardir}/WEB-INF"/> MUST do a straight copy of this from basedir. Do NOT create from scratch.-->
    <mkdir dir="${wardir}/WEB-INF/classes"/> <!-- But this one is a keeper, since our WEB-INF does NOT have a classes directory. -->
    <!-- A new directory: a place to put the finished WAR file -->
    <mkdir dir="${warfinaldir}" />
    <mkdir dir="${deploydir}" />
    </target>
    <!-- Looks good. Will compile from 'src' and place the results in 'bin', which is /output. The war target will copy them from there to the appropriate place in the WAR file.
    Damn. javac cannot find our classpath lib. It should be able to figure out the Postgres and Flex stuff but it does not yet. This classpath ref is the likeliest culprit.
    -->
    <!-- <target name="compile">
    <javac destdir="${bin}" srcdir="${src}" includes="**/*.java" classpathref="classpath" verbose="true" />
    </target> -->
    <target name="compile">
    <javac destdir="${bin}" srcdir="${src}" includes="**/*.java" verbose="true" >
    <classpath>
    <fileset dir="${morejarsdir}">
    <include name="**/*.jar"/>
    </fileset>
    <fileset dir="${morejarsdir2}">
    <include name="**/*.jar"/>
    </fileset>
    </classpath>
    </javac>
    <!-- <classpath refid="build.classpath" /> -->
    </target>
    <target name="war">
    <!-- This big copy will also copy all of the supporting flex stuff we need, especially the stuff in WEB-INF/flex (in svn) -->
    <copy todir="${wardir}">
    <fileset dir="${web}" >
    <include name="**/*.*" />
    <exclude name="**/junit.jar" />
    <exclude name="**/javax.servlet.jar" />
    <exclude name="**/commons-logging.jar" />
    <!-- <exclude name="**/postgresql-8.1-410.jdbc3.jar" /> -->
    <!--
    -->
    </fileset>
    <!-- postgresql-8.1-410.jdbc3.jar junit.jar javax.servlet.jar -->
    </copy>
    <!-- <copy file="${descriptors}/web.xml" todir="${wardir}/WEB-INF" /> Don't need this because the web.xml file will be capied by the previous copy step.-->
    <!-- Copy the class files to the special location in the war file -->
    <copy todir="${wardir}/WEB-INF/classes">
    <fileset dir="${bin}" includes="**/*.class" />
    <fileset dir="${src}" >
    <!--<include name="**/*.java"/> -->
    <!-- Very special inclusion: This line will pull in commons-logging.properties from the root of 'src' dir
    We absolutely MUST have it to fix Adobe FDS bug 179227 which will otherwise cause the war to fail in JBoss with an error like:
    "Caused by org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: Invalid class loader hierarchy. You have more than one version of 'org.apache.commons.logging.Log' visible, which is not allowed."
    In fact we don't need the Java files but we need this!
    -->
    <include name="**/*.properties"/>
    </fileset>
    </copy>
    <!-- war it up: -->
    <jar jarfile="${warfinaldir}/${warfile}" basedir="${wardir}" />
    </target>
    <target name="deploy">
    <copy file="${warfinaldir}/${warfile}" todir="${deploydir}" />
    </target>
    <!-- <target name="ear">
    <copy file="${descriptors}/application.xml" todir="${eardir}/META-INF" />
    <jar jarfile="${basedir}/${earfile}" basedir="${eardir}" />
    </target>
    -->
    </project>

  • System.out.println() problem

    When I use operator + for concatenate the following Strings
    md.getDriverName() + md.getDriverVersion()
    as follow in a try block:
    try {
    con = DriverManager.getConnection(sourceURL,user,pass);
    md = con.getMetaData();
    System.out.println(md.getDriverName().+md.getDriverVersion());
    when I have tried run java -cp postgresql.jar errors message appers :
    Exception in thread "main" java.lang.NoClassDefFoundError: while resolving class: conx
    at java.lang.VMClassLoader.transformException(java.lang.Class, java.lang.Throwable) (/usr/lib/libgcj.so.6.0.0)
    at java.lang.VMClassLoader.resolveClass(java.lang.Class) (/usr/lib/libgcj.so.6.0.0)
    at java.lang.Class.initializeClass() (/usr/lib/libgcj.so.6.0.0)
    at java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.lang.MainThread.run() (/usr/lib/libgcj.so.6.0.0)
    Caused by: java.lang.ClassNotFoundException: java.lang.StringBuilder not found in gnu.gcj.runtime.SystemClassLoader{urls=[file:postgresql.jar,file:./], parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}}
    at java.net.URLClassLoader.findClass(java.lang.String) (/usr/lib/libgcj.so.6.0.0)
    at java.lang.ClassLoader.loadClass(java.lang.String, boolean) (/usr/lib/libgcj.so.6.0.0)
    at java.lang.ClassLoader.loadClass(java.lang.String) (/usr/lib/libgcj.so.6.0.0)
    at java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) (/usr/lib/libgcj.so.6.0.0)
    But when I have used netBeans IDE v 4.0 it works fine.
    Might somebody help me for solve it.

    Caused by: java.lang.ClassNotFoundException: java.lang.StringBuilder not found in
    gnu.gcj.runtime.SystemClassLoader{urls=[file:postgresql.jar,file:./],
    As I noted in your other post, your computer is configured to use gnu.gcj, not Sun's Java - and it appears that gcj doesn't have the StringBuilder class; it was added to Sun Java in Java 5.

  • Create a testimonial

    Hey everyone
    I am looking at create a testimonial feed on my website made in java. I have 20 testimonials in my database already and they are labeled 0 - 19. How would i go about displaying the 3 most recent on my webpage. I understand how to iterate through the database to get the most recent 3. I don't know how to display them on the screen though. Should i use servlets, JSP, html and how would i go about it? thanks in advance!

    TjHodge wrote:
    Hello, Thank you for replying.
    Probably best to say up-front "this is for an assignment", because a good number of us on here will answer as we see most pragmatic which might be incongruent with an assignment!Its not an assignment. Im only looking at ideas which will help me decide my final project. Im working on snipets of code so that when I decide what I want to do I will not have to do all the research then. Forward thinking. By assignment, I really meant academic work as opposed to something commercial. Apologies for being vague.
    I see that the blogs are stored in a database but I will be attempting to to make my own miniature version in java, JSP and html.
    Could be. Since this is for an assignment, you presumably won't be hosting it on the actual Internet? Because hosting that costs noticeably more than, say, PHP or RubyAs i said, this isn't an assignment. I have the hosting capabilities at my service so Im pretty lucky there.Yeh that is lucky. Java is a non-option for a lot of things purely because of hosting costs.
    I was looking at PHP but i would know (if possible) how i would integrate this with java and postgresql.
    Well, "integrate" is an overloaded term here!
    Would there be a way that I could use, maybe servlets or jsp, to display data pulled out of the database on the screen. Well, yeh. That's what they're for, really. For something like this, though, I'd still maybe not be bothering too much with actual Java. Groovy on Grails, maybe? How married to Java are you? For views, JSP is an option, as is XML and XSLT, as is a templating engine like Apache Velocity. There's a wealth of choice, really. I don't know how to advise, because I don't know a) your exact aim and b) your cabability. But fundamentally, you probably want some sort of MVC going on, where something pulls posts out of a database, and uses something else to render them. What those bits are, that's where the variety lies. Get hold of Struts2, and have a play with that. It's pretty simple.

  • GIS web service for map personalisation: what platform/framework/standard?

    (apologies for cross-posting)
    Hi everybody,
    I'm working on a research project and I have to find out a suitable technology to set up a GIS web service.
    Basically this web service has to interact with map clients (e.g. Google Maps, Virtual Earth) and log every interaction, such as clicks, mouse movements, pan, zoom, etc.
    On this information, the web service has to perform certain mathematical analysis, and then provide access to the results via web service.
    To do so I'm sure I need to send AJAX calls from javascript to a web service, where I can log everything in a specific user profile and then use other AJAX calls to fetch the results and display them on the web page.
    Typical user session:
    web geo-client interacts with map --> ajax --> log interaction --> server analysis --> return personalised content to client
    Given the nature of the project, I want to stick to open source technologies and, if possible, to implement some well known web service standards.
    That's the architecture I have in mind:
    GUI (html javascript + Cloudmade, Google Maps, etc) <->+
    +<-> Web Service <->+
    +<-> Backend (e.g. Java servlet, PostgreSQL)+
    Requirements of the Web Service:
    - support for postgreSQL backend
    - based on java or python
    - ajax support
    - suitable for GIS applications
    - high interoperability with other applications and web services
    My questions are:
    - What set-up can you recommend for this scenario? I don't want to reinvent the wheel, I'm sure this is a pretty common web service to design.
    - What web standards could suit the project? e.g. SOAP, WSDL and UDDI
    - Could you recommend any framework? Basically I'd like to keep the web service separate from the front-end/GUI. I've found Apache Axis, what do you think of it?
    Many thanks for any hints, comments and advice!
    Mulone

    My error.  I needed to generate the WSDL with different parameters from the R/3 side to get one that is JAX-WS compliant.

  • Java Server crash in Debian Linux

    Debian Linux
    Pentium 4 2.8
    1024 Ram
    java version "1.5.0_09"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_09-b03)
    Java HotSpot(TM) Client VM (build 1.5.0_09-b03, mixed mode)
    The Java Server crash after from Begin or after 1-2 hours
    im user to java server no develope and no have gnosis
    please help me. what is problem? :(
    any solution to fix?
    try to reinstall operator system but same problem
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0xb777edb2, pid=26766, tid=2384333744
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_09-b03 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0xa2db2]
    # An error report file with more information is saved as hs_err_pid26766.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    hs log file
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGILL (0x4) at pc=0xb770650a, pid=27377, tid=2384006064
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_09-b03 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x7750a]
    --------------- T H R E A D ---------------
    Current thread (0x080c7fe0): JavaThread "CompilerThread0" daemon [_thread_in_native, id=27382]
    siginfo:si_signo=4, si_errno=0, si_code=2, si_addr=0xb770650a
    Registers:
    EAX=0xb7a1bac8, EBX=0xb7a16aec, ECX=0x080ce380, EDX=0x00000028
    ESP=0x8e18fa50, EBP=0x8e18fb08, ESI=0x08137530, EDI=0x00000027
    EIP=0xb770650a, CR2=0x00000000, EFLAGS=0x00010206
    Top of Stack: (sp=0x8e18fa50)
    0x8e18fa50: 080e165c 080e152c 8e18fa98 08137250
    0x8e18fa60: 8e18fbe0 080e1530 080ce5a0 08136f90
    0x8e18fa70: 08137430 00007ff4 8e18fa98 08137210
    0x8e18fa80: 08137210 0000004b 8e18fae8 b794ab6a
    0x8e18fa90: b7a16aec 08137488 8e18fac8 b77563fd
    0x8e18faa0: 00000004 8e18fab0 00000000 b76ba7ba
    0x8e18fab0: b7a16aec 080ce6b4 8e18fae8 b7a16aec
    0x8e18fac0: 08137488 8e18fbd0 8e18fb08 b7756836
    Instructions: (pc=0xb770650a)
    0xb77064fa: 04 8b 10 42 89 10 8b 83 24 0a 00 00 10 01 08 ff
    0xb770650a: ff ff ff c7 ff ff 00 00 00 00 c7 46 00 83 00 00
    Stack: [0x8e111000,0x8e191000), sp=0x8e18fa50, free space=506k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x7750a]
    V [libjvm.so+0x79c09]
    V [libjvm.so+0x79f4c]
    V [libjvm.so+0x83f49]
    V [libjvm.so+0x84944]
    V [libjvm.so+0x852c2]
    V [libjvm.so+0x6be52]
    V [libjvm.so+0x6c559]
    V [libjvm.so+0x6cc01]
    V [libjvm.so+0x6d0a7]
    V [libjvm.so+0x6dc0b]
    V [libjvm.so+0x109a6e]
    V [libjvm.so+0x1093f3]
    V [libjvm.so+0x2f9da6]
    V [libjvm.so+0x2f43d3]
    V [libjvm.so+0x28bbe8]
    C [libpthread.so.0+0x5ced]
    Current CompileTask:
    HotSpot Client Compiler: 72 b java.util.AbstractCollection.toArray([Ljava/lang/Object;)[Ljava/lang/Object; (75 bytes)
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x080c9540 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=27383]
    =>0x080c7fe0 JavaThread "CompilerThread0" daemon [_thread_in_native, id=27382]
    0x080c7100 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=27381]
    0x080bcbc8 JavaThread "Finalizer" daemon [_thread_blocked, id=27380]
    0x080bbf48 JavaThread "Reference Handler" daemon [_thread_blocked, id=27379]
    0x0805c9c8 JavaThread "main" [_thread_in_vm, id=27377]
    Other Threads:
    0x080b9298 VMThread [id=27378]
    0x080ca9e0 WatcherThread [id=27384]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 240K [0x8e5c0000, 0x8e660000, 0x90d20000)
    eden space 512K, 44% used [0x8e5c0000, 0x8e5f8970, 0x8e640000)
    from space 64K, 21% used [0x8e650000, 0x8e6537a0, 0x8e660000)
    to space 64K, 0% used [0x8e640000, 0x8e640000, 0x8e650000)
    tenured generation total 1408K, used 431K [0x90d20000, 0x90e80000, 0xae5c0000)
    the space 1408K, 30% used [0x90d20000, 0x90d8bd70, 0x90d8be00, 0x90e80000)
    compacting perm gen total 8192K, used 3677K [0xae5c0000, 0xaedc0000, 0xb25c0000)
    the space 8192K, 44% used [0xae5c0000, 0xae957450, 0xae957600, 0xaedc0000)
    No shared spaces configured.
    Dynamic libraries:
    08048000-08057000 r-xp 00000000 03:02 6521931 /usr/lib/j2se1.4-sun/jre/bin/java
    08057000-08059000 rwxp 0000e000 03:02 6521931 /usr/lib/j2se1.4-sun/jre/bin/java
    08059000-08253000 rwxp 08059000 00:00 0 [heap]
    8d9b7000-8d9c8000 r-xp 00000000 03:02 6537244 /usr/lib/j2se1.4-sun/jre/lib/i386/libnet.so
    8d9c8000-8d9c9000 rwxp 00011000 03:02 6537244 /usr/lib/j2se1.4-sun/jre/lib/i386/libnet.so
    8d9c9000-8dc22000 r-xs 00000000 03:02 7766468 /root/lineage2server160/gameserver/l2j-gameserver.jar
    8dc22000-8dc89000 r-xs 00000000 03:02 7766471 /root/lineage2server160/gameserver/mysql-connector-java-3.1.10-bin.jar
    8dc89000-8dd01000 r-xs 00000000 03:02 7766462 /root/lineage2server160/gameserver/c3p0-0.9.0.4.jar
    8dd01000-8de28000 r-xs 00000000 03:02 7766467 /root/lineage2server160/gameserver/jython.jar
    8de28000-8de6d000 r-xs 00000000 03:02 7766461 /root/lineage2server160/gameserver/bsh-2.0.jar
    8de6d000-8deb4000 r-xs 00000000 03:02 7766466 /root/lineage2server160/gameserver/javolution.jar
    8deb4000-8dedf000 r-xs 00000000 03:02 7766460 /root/lineage2server160/gameserver/bsf.jar
    8dedf000-8deee000 r-xs 00000000 03:02 7766465 /root/lineage2server160/gameserver/ibmaio.jar
    8deee000-8df19000 r-xs 00000000 03:02 6522080 /usr/lib/j2se1.4-sun/jre/lib/ext/sunpkcs11.jar
    8df19000-8df40000 r-xs 00000000 03:02 6521992 /usr/lib/j2se1.4-sun/jre/lib/ext/sunjce_provider.jar
    8df40000-8e004000 r-xs 00000000 03:02 6521991 /usr/lib/j2se1.4-sun/jre/lib/ext/localedata.jar
    8e004000-8e011000 r-xs 00000000 03:02 6521990 /usr/lib/j2se1.4-sun/jre/lib/ext/ldapsec.jar
    8e011000-8e012000 ---p 8e011000 00:00 0
    8e012000-8e091000 rwxp 8e012000 00:00 0
    8e091000-8e094000 ---p 8e091000 00:00 0
    8e094000-8e111000 rwxp 8e094000 00:00 0
    8e111000-8e114000 ---p 8e111000 00:00 0
    8e114000-8e191000 rwxp 8e114000 00:00 0
    8e191000-8e194000 ---p 8e191000 00:00 0
    8e194000-8e211000 rwxp 8e194000 00:00 0
    8e211000-8e214000 ---p 8e211000 00:00 0
    8e214000-8e291000 rwxp 8e214000 00:00 0
    8e291000-8e294000 ---p 8e291000 00:00 0
    8e294000-8e311000 rwxp 8e294000 00:00 0
    8e311000-8e312000 ---p 8e311000 00:00 0
    8e312000-8e396000 rwxp 8e312000 00:00 0
    8e396000-8e3b2000 rwxp 8e396000 00:00 0
    8e3b2000-8e3b3000 rwxp 8e3b2000 00:00 0
    8e3b3000-8e49f000 rwxp 8e3b3000 00:00 0
    8e49f000-8e4a0000 rwxp 8e49f000 00:00 0
    8e4a0000-8e4b2000 rwxp 8e4a0000 00:00 0
    8e4b2000-8e4b4000 rwxp 8e4b2000 00:00 0
    8e4b4000-8e59f000 rwxp 8e4b4000 00:00 0
    8e59f000-8e5a3000 rwxp 8e59f000 00:00 0
    8e5a3000-8e5bf000 rwxp 8e5a3000 00:00 0
    8e5bf000-8e660000 rwxp 8e5bf000 00:00 0
    8e660000-90d20000 rwxp 8e660000 00:00 0
    90d20000-90e80000 rwxp 90d20000 00:00 0
    90e80000-ae5c0000 rwxp 90e80000 00:00 0
    ae5c0000-aedc0000 rwxp ae5c0000 00:00 0
    aedc0000-b25c0000 rwxp aedc0000 00:00 0
    b25c0000-b25c6000 r-xp 00000000 03:02 6537245 /usr/lib/j2se1.4-sun/jre/lib/i386/libnio.so
    b25c6000-b25c7000 rwxp 00005000 03:02 6537245 /usr/lib/j2se1.4-sun/jre/lib/i386/libnio.so
    b25c7000-b25ca000 rwxp b25c7000 00:00 0
    b25ca000-b2647000 rwxp b25ca000 00:00 0
    b2647000-b26ef000 rwxp b2647000 00:00 0
    b26ef000-b4647000 rwxp b26ef000 00:00 0
    b4647000-b4eb7000 r-xs 00000000 03:02 6521980 /usr/lib/j2se1.4-sun/jre/lib/charsets.jar
    b4eb7000-b4ecc000 r-xs 00000000 03:02 6522045 /usr/lib/j2se1.4-sun/jre/lib/jce.jar
    b4ecc000-b4f51000 r-xs 00000000 03:02 6522046 /usr/lib/j2se1.4-sun/jre/lib/jsse.jar
    b4f51000-b4f67000 r-xs 00000000 03:02 6522054 /usr/lib/j2se1.4-sun/jre/lib/sunrsasign.jar
    b4f67000-b4fd0000 rwxp b4f67000 00:00 0
    b4fd0000-b75e6000 r-xs 00000000 03:02 6522053 /usr/lib/j2se1.4-sun/jre/lib/rt.jar
    b75e6000-b75f5000 r-xp 00000000 03:02 6537248 /usr/lib/j2se1.4-sun/jre/lib/i386/libzip.so
    b75f5000-b75f7000 rwxp 0000e000 03:02 6537248 /usr/lib/j2se1.4-sun/jre/lib/i386/libzip.so
    b75f7000-b7618000 r-xp 00000000 03:02 6537233 /usr/lib/j2se1.4-sun/jre/lib/i386/libjava.so
    b7618000-b761a000 rwxp 00020000 03:02 6537233 /usr/lib/j2se1.4-sun/jre/lib/i386/libjava.so
    b761a000-b7625000 r-xp 00000000 03:02 6537247 /usr/lib/j2se1.4-sun/jre/lib/i386/libverify.so
    b7625000-b7626000 rwxp 0000b000 03:02 6537247 /usr/lib/j2se1.4-sun/jre/lib/i386/libverify.so
    b7626000-b7630000 r-xp 00000000 03:02 6980699 /lib/tls/libnss_files-2.3.6.so
    b7630000-b7632000 rwxp 00009000 03:02 6980699 /lib/tls/libnss_files-2.3.6.so
    b7632000-b763a000 r-xp 00000000 03:02 6980703 /lib/tls/libnss_nis-2.3.6.so
    b763a000-b763c000 rwxp 00008000 03:02 6980703 /lib/tls/libnss_nis-2.3.6.so
    b763c000-b7643000 r-xp 00000000 03:02 6980695 /lib/tls/libnss_compat-2.3.6.so
    b7643000-b7645000 rwxp 00006000 03:02 6980695 /lib/tls/libnss_compat-2.3.6.so
    b7645000-b7657000 r-xp 00000000 03:02 6980693 /lib/tls/libnsl-2.3.6.so
    b7657000-b7659000 rwxp 00012000 03:02 6980693 /lib/tls/libnsl-2.3.6.so
    b7659000-b765b000 rwxp b7659000 00:00 0
    b7661000-b7669000 rwxs 00000000 03:02 8552508 /tmp/hsperfdata_root/27377
    b7669000-b768d000 r-xp 00000000 03:02 6980690 /lib/tls/libm-2.3.6.so
    b768d000-b768f000 rwxp 00023000 03:02 6980690 /lib/tls/libm-2.3.6.so
    b768f000-b79fb000 r-xp 00000000 03:02 6537222 /usr/lib/j2se1.4-sun/jre/lib/i386/client/libjvm.so
    b79fb000-b7a1a000 rwxp 0036b000 03:02 6537222 /usr/lib/j2se1.4-sun/jre/lib/i386/client/libjvm.so
    b7a1a000-b7e31000 rwxp b7a1a000 00:00 0
    b7e31000-b7f5f000 r-xp 00000000 03:02 6980682 /lib/tls/libc-2.3.6.so
    b7f5f000-b7f64000 r-xp 0012e000 03:02 6980682 /lib/tls/libc-2.3.6.so
    b7f64000-b7f67000 rwxp 00133000 03:02 6980682 /lib/tls/libc-2.3.6.so
    b7f67000-b7f69000 rwxp b7f67000 00:00 0
    b7f69000-b7f6b000 r-xp 00000000 03:02 6980688 /lib/tls/libdl-2.3.6.so
    b7f6b000-b7f6d000 rwxp 00001000 03:02 6980688 /lib/tls/libdl-2.3.6.so
    b7f6d000-b7f6e000 rwxp b7f6d000 00:00 0
    b7f6e000-b7f7c000 r-xp 00000000 03:02 6980708 /lib/tls/libpthread-2.3.6.so
    b7f7c000-b7f7e000 rwxp 0000d000 03:02 6980708 /lib/tls/libpthread-2.3.6.so
    b7f7e000-b7f80000 rwxp b7f7e000 00:00 0
    b7f83000-b7f85000 r-xs 00000000 03:02 6521989 /usr/lib/j2se1.4-sun/jre/lib/ext/dnsns.jar
    b7f85000-b7f8b000 r-xp 00000000 03:02 6537250 /usr/lib/j2se1.4-sun/jre/lib/i386/native_threads/libhpi.so
    b7f8b000-b7f8c000 rwxp 00006000 03:02 6537250 /usr/lib/j2se1.4-sun/jre/lib/i386/native_threads/libhpi.so
    b7f8c000-b7f8d000 rwxp b7f8c000 00:00 0
    b7f8d000-b7f8e000 r-xp b7f8d000 00:00 0
    b7f8e000-b7f90000 rwxp b7f8e000 00:00 0
    b7f90000-b7fa5000 r-xp 00000000 03:02 6964464 /lib/ld-2.3.6.so
    b7fa5000-b7fa7000 rwxp 00015000 03:02 6964464 /lib/ld-2.3.6.so
    bf6c3000-bf6c6000 ---p bf6c3000 00:00 0
    bf6c6000-bf8c3000 rwxp bf6c6000 00:00 0 [stack]
    ffffe000-fffff000 ---p 00000000 00:00 0 [vdso]
    VM Arguments:
    jvm_args: -Xmx512m
    java_command: net.sf.l2j.gameserver.GameServer
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin:/usr/games
    LD_LIBRARY_PATH=/usr/lib/j2se1.4-sun/jre/lib/i386/client:/usr/lib/j2se1.4-sun/jre/lib/i386:/usr/lib/j2se1.4-sun/jre/../lib/i386
    SHELL=/bin/bash
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x325bd0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x325bd0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x28a010], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x28a010], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x28a010], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x28c460], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x28be90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: [libjvm.so+0x28be90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x28be90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGTERM: [libjvm.so+0x28be90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    --------------- S Y S T E M ---------------
    OS:testing/unstable
    uname:Linux 2.6.17 #4 SMP PREEMPT Wed May 10 13:53:45 CEST 2006 i686
    libc:glibc 2.3.6 NPTL 2.3.6
    rlimit: STACK 8192k, CORE 0k, NPROC infinity, NOFILE 1024, AS infinity
    load average:0.00 0.11 0.08
    CPU:total 1 (cores per cpu 1, threads per core 1) family 15 model 2 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1003220k(219224k free), swap 2096440k(2096360k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_09-b03) for linux-x86, built on Oct 12 2006 10:54:08 by java_re with gcc 3.2.1-7a (J2SE release)
    Message was edited by:
    PantelisKap

    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0xb279fb2c, pid=16446, tid=3084670656
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_09-b03 mixed mode, sharing)
    # Problematic frame:
    # J net.sf.l2j.gameserver.skills.DocumentSkill.parseSkill(Lorg/w3c/dom/Node;)V
    --------------- T H R E A D ---------------
    Current thread (0x0805c9c8): JavaThread "main" [_thread_in_Java, id=16446]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x004f964e
    Registers:
    EAX=0x6cae9ef8, EBX=0x00000000, ECX=0xfffffffc, EDX=0x8cdbc580
    ESP=0xbf871400, EBP=0xbf871498, ESI=0x0036574e, EDI=0x00000000
    EIP=0xb279fb2c, CR2=0x004f964e, EFLAGS=0x00010207
    Top of Stack: (sp=0xbf871400)
    0xbf871400: 00000000 8cdbc568 6cae9cf8 ffffffff
    0xbf871410: 708cb1d8 b76df649 8ca83a58 00000002
    0xbf871420: 00000000 00000023 bf871478 b26b3084
    0xbf871430: 00000023 b278513f 6cae61b0 708cfb00
    0xbf871440: 708ca048 bf871458 6cae9da8 b27936fa
    0xbf871450: 00000073 00000023 00000023 00000d41
    0xbf871460: ffffffff 8cdbc568 6cae9cf8 ffffffff
    0xbf871470: 00000000 708cb1d8 bf871498 00000001
    Instructions: (pc=0xb279fb2c)
    0xb279fb1c: 4f 0f 85 f1 ff ff ff 8b 75 b0 89 46 10 c1 ee 09
    0xb279fb2c: c6 86 00 3f 0e b2 00 8b 75 0c 8b 76 10 89 75 b0
    Stack: [0xbf675000,0xbf875000), sp=0xbf871400, free space=2033k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    J net.sf.l2j.gameserver.skills.DocumentSkill.parseSkill(Lorg/w3c/dom/Node;)V
    J net.sf.l2j.gameserver.skills.DocumentSkill.parseDocument(Lorg/w3c/dom/Document;)V
    j net.sf.l2j.gameserver.skills.DocumentBase.parse()Lorg/w3c/dom/Document;+66
    j net.sf.l2j.gameserver.skills.SkillsEngine.loadSkills(Ljava/io/File;)Ljava/util/List;+44
    j net.sf.l2j.gameserver.skills.SkillsEngine.loadAllSkills(Ljava/util/Map;)V+35
    j net.sf.l2j.gameserver.SkillTable.<init>()V+27
    j net.sf.l2j.gameserver.SkillTable.getInstance()Lnet/sf/l2j/gameserver/SkillTable;+10
    j net.sf.l2j.gameserver.skills.DocumentBase.attachSkill(Lorg/w3c/dom/Node;Ljava/lang/Object;Lnet/sf/l2j/gameserver/skills/Condition;)V+86
    J net.sf.l2j.gameserver.skills.DocumentBase.parseTemplate(Lorg/w3c/dom/Node;Ljava/lang/Object;)V
    J net.sf.l2j.gameserver.skills.DocumentItem.parseItem(Lorg/w3c/dom/Node;)V
    J net.sf.l2j.gameserver.skills.DocumentItem.parseDocument(Lorg/w3c/dom/Document;)V
    j net.sf.l2j.gameserver.skills.DocumentBase.parse()Lorg/w3c/dom/Document;+66
    j net.sf.l2j.gameserver.skills.SkillsEngine.loadData(Ljava/util/Map;Ljava/util/List;)Ljava/util/List;+52
    j net.sf.l2j.gameserver.skills.SkillsEngine.loadWeapons(Ljava/util/Map;)Ljava/util/List;+14
    J net.sf.l2j.gameserver.ItemTable.<init>()V
    v ~OSRAdapter
    j net.sf.l2j.gameserver.ItemTable.getInstance()Lnet/sf/l2j/gameserver/ItemTable;+10
    j net.sf.l2j.gameserver.GameServer.<init>()V+213
    j net.sf.l2j.gameserver.GameServer.main([Ljava/lang/String;)V+70
    v ~StubRoutines::call_stub
    V [libjvm.so+0x17a75c]
    V [libjvm.so+0x28afd8]
    V [libjvm.so+0x17a58f]
    V [libjvm.so+0x1a4e32]
    V [libjvm.so+0x196042]
    C [java+0x1873]
    C [libc.so.6+0x14ea8] __libc_start_main+0xc8
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x083d9568 JavaThread "GerenalSTPool-3" [_thread_blocked, id=16463]
    0x083d99b0 JavaThread "GerenalSTPool-2" [_thread_blocked, id=16462]
    0x083a6738 JavaThread "GameTimeController" daemon [_thread_blocked, id=16461]
    0x082574d0 JavaThread "GerenalSTPool-1" [_thread_blocked, id=16460]
    0x08235a18 JavaThread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2" daemon [_thread_blocked, id=16458]
    0x0822c690 JavaThread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1" daemon [_thread_blocked, id=16457]
    0x0822bd18 JavaThread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0" daemon [_thread_blocked, id=16456]
    0x0822b570 JavaThread "Timer-0" daemon [_thread_blocked, id=16454]
    0x080a53f0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=16452]
    0x080a3e90 JavaThread "CompilerThread0" daemon [_thread_blocked, id=16451]
    0x080a2db0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=16450]
    0x0809cb30 JavaThread "Finalizer" daemon [_thread_blocked, id=16449]
    0x0809be40 JavaThread "Reference Handler" daemon [_thread_blocked, id=16448]
    =>0x0805c9c8 JavaThread "main" [_thread_in_Java, id=16446]
    Other Threads:
    0x080992e0 VMThread [id=16447]
    0x080a6890 WatcherThread [id=16453]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 3072K, used 840K [0x6ca20000, 0x6cd70000, 0x6f180000)
    eden space 2752K, 30% used [0x6ca20000, 0x6caf23b0, 0x6ccd0000)
    from space 320K, 0% used [0x6cd20000, 0x6cd20000, 0x6cd70000)
    to space 320K, 0% used [0x6ccd0000, 0x6ccd0000, 0x6cd20000)
    tenured generation total 40172K, used 31252K [0x6f180000, 0x718bb000, 0x8ca20000)
    the space 40172K, 77% used [0x6f180000, 0x710051d8, 0x71005200, 0x718bb000)
    compacting perm gen total 8192K, used 4319K [0x8ca20000, 0x8d220000, 0x90a20000)
    the space 8192K, 52% used [0x8ca20000, 0x8ce57d68, 0x8ce57e00, 0x8d220000)
    ro space 8192K, 68% used [0x90a20000, 0x90f9ed48, 0x90f9ee00, 0x91220000)
    rw space 12288K, 48% used [0x91220000, 0x917e9e68, 0x917ea000, 0x91e20000)
    Dynamic libraries:
    08048000-08057000 r-xp 00000000 03:02 6996556 /usr/lib/j2sdk1.5-sun/bin/java
    08057000-08059000 rwxp 0000e000 03:02 6996556 /usr/lib/j2sdk1.5-sun/bin/java
    08059000-084e8000 rwxp 08059000 00:00 0 [heap]
    6ca20000-6cd70000 rwxp 6ca20000 00:00 0
    6cd70000-6f180000 rwxp 6cd70000 00:00 0
    6f180000-718bb000 rwxp 6f180000 00:00 0
    718bb000-8ca20000 rwxp 718bb000 00:00 0
    8ca20000-8d220000 rwxp 8ca20000 00:00 0
    8d220000-90a20000 rwxp 8d220000 00:00 0
    90a20000-90f9f000 r-xs 00001000 03:02 6980776 /usr/lib/j2sdk1.5-sun/jre/lib/i386/client/classes.jsa
    90f9f000-91220000 rwxp 90f9f000 00:00 0
    91220000-917ea000 rwxp 00580000 03:02 6980776 /usr/lib/j2sdk1.5-sun/jre/lib/i386/client/classes.jsa
    917ea000-91e20000 rwxp 917ea000 00:00 0
    91e20000-91ef0000 rwxp 00b4a000 03:02 6980776 /usr/lib/j2sdk1.5-sun/jre/lib/i386/client/classes.jsa
    91ef0000-92220000 rwxp 91ef0000 00:00 0
    92220000-92224000 r-xs 00c1a000 03:02 6980776 /usr/lib/j2sdk1.5-sun/jre/lib/i386/client/classes.jsa
    92224000-92620000 rwxp 92224000 00:00 0
    b1560000-b1563000 ---p b1560000 00:00 0
    b1563000-b15e0000 rwxp b1563000 00:00 0
    b15e0000-b15e3000 ---p b15e0000 00:00 0
    b15e3000-b1660000 rwxp b15e3000 00:00 0
    b1660000-b1663000 ---p b1660000 00:00 0
    b1663000-b16e0000 rwxp b1663000 00:00 0
    b16e0000-b16e3000 ---p b16e0000 00:00 0
    b16e3000-b1760000 rwxp b16e3000 00:00 0
    b1760000-b1763000 ---p b1760000 00:00 0
    b1763000-b17e0000 rwxp b1763000 00:00 0
    b17e0000-b17e3000 ---p b17e0000 00:00 0
    b17e3000-b1860000 rwxp b17e3000 00:00 0
    b1860000-b1863000 ---p b1860000 00:00 0
    b1863000-b18e0000 rwxp b1863000 00:00 0
    b18e0000-b18e3000 ---p b18e0000 00:00 0
    b18e3000-b1960000 rwxp b18e3000 00:00 0
    b1960000-b1966000 r-xp 00000000 03:02 6980787 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libnio.so
    b1966000-b1967000 rwxp 00005000 03:02 6980787 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libnio.so
    b1967000-b1978000 r-xp 00000000 03:02 6980786 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libnet.so
    b1978000-b1979000 rwxp 00011000 03:02 6980786 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libnet.so
    b1979000-b1bd2000 r-xs 00000000 03:02 7766468 /root/lineage2server160/gameserver/l2j-gameserver.jar
    b1bd2000-b1c39000 r-xs 00000000 03:02 7766471 /root/lineage2server160/gameserver/mysql-connector-java-3.1.10-bin.jar
    b1c39000-b1cb1000 r-xs 00000000 03:02 7766462 /root/lineage2server160/gameserver/c3p0-0.9.0.4.jar
    b1cb1000-b1dd8000 r-xs 00000000 03:02 7766467 /root/lineage2server160/gameserver/jython.jar
    b1dd8000-b1e1d000 r-xs 00000000 03:02 7766461 /root/lineage2server160/gameserver/bsh-2.0.jar
    b1e1d000-b1e64000 r-xs 00000000 03:02 7766466 /root/lineage2server160/gameserver/javolution.jar
    b1e64000-b1e8f000 r-xs 00000000 03:02 7766460 /root/lineage2server160/gameserver/bsf.jar
    b1e8f000-b1e9e000 r-xs 00000000 03:02 7766465 /root/lineage2server160/gameserver/ibmaio.jar
    b1e9e000-b1f62000 r-xs 00000000 03:02 6995979 /usr/lib/j2sdk1.5-sun/jre/lib/ext/localedata.jar
    b1f62000-b1f8d000 r-xs 00000000 03:02 6995977 /usr/lib/j2sdk1.5-sun/jre/lib/ext/sunpkcs11.jar
    b1f8d000-b1fb4000 r-xs 00000000 03:02 6995976 /usr/lib/j2sdk1.5-sun/jre/lib/ext/sunjce_provider.jar
    b1fb4000-b1fb5000 ---p b1fb4000 00:00 0
    b1fb5000-b2034000 rwxp b1fb5000 00:00 0
    b2034000-b2037000 ---p b2034000 00:00 0
    b2037000-b20b4000 rwxp b2037000 00:00 0
    b20b4000-b20b7000 ---p b20b4000 00:00 0
    b20b7000-b2134000 rwxp b20b7000 00:00 0
    b2134000-b2137000 ---p b2134000 00:00 0
    b2137000-b21b4000 rwxp b2137000 00:00 0
    b21b4000-b21b7000 ---p b21b4000 00:00 0
    b21b7000-b2234000 rwxp b21b7000 00:00 0
    b2234000-b2237000 ---p b2234000 00:00 0
    b2237000-b22b4000 rwxp b2237000 00:00 0
    b22b4000-b22b5000 ---p b22b4000 00:00 0
    b22b5000-b2340000 rwxp b22b5000 00:00 0
    b2340000-b235c000 rwxp b2340000 00:00 0
    b235c000-b2370000 rwxp b235c000 00:00 0
    b2370000-b2449000 rwxp b2370000 00:00 0
    b2449000-b244b000 rwxp b2449000 00:00 0
    b244b000-b245c000 rwxp b244b000 00:00 0
    b245c000-b2471000 rwxp b245c000 00:00 0
    b2471000-b2549000 rwxp b2471000 00:00 0
    b2549000-b254d000 rwxp b2549000 00:00 0
    b254d000-b2569000 rwxp b254d000 00:00 0
    b2569000-b257c000 rwxp b2569000 00:00 0
    b257c000-b25f4000 rwxp b257c000 00:00 0
    b25f4000-b27ec000 rwxp b25f4000 00:00 0
    b27ec000-b45f4000 rwxp b27ec000 00:00 0
    b45f4000-b4e64000 r-xs 00000000 03:02 6980848 /usr/lib/j2sdk1.5-sun/jre/lib/charsets.jar
    b4e64000-b4e79000 r-xs 00000000 03:02 6980813 /usr/lib/j2sdk1.5-sun/jre/lib/jce.jar
    b4e79000-b4efe000 r-xs 00000000 03:02 6980846 /usr/lib/j2sdk1.5-sun/jre/lib/jsse.jar
    b4efe000-b4f67000 rwxp b4efe000 00:00 0
    b4f67000-b757d000 r-xs 00000000 03:02 6980850 /usr/lib/j2sdk1.5-sun/jre/lib/rt.jar
    b757d000-b758c000 r-xp 00000000 03:02 6980783 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libzip.so
    b758c000-b758e000 rwxp 0000e000 03:02 6980783 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libzip.so
    b758e000-b75af000 r-xp 00000000 03:02 6980781 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libjava.so
    b75af000-b75b1000 rwxp 00020000 03:02 6980781 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libjava.so
    b75b1000-b75bc000 r-xp 00000000 03:02 6980780 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libverify.so
    b75bc000-b75bd000 rwxp 0000b000 03:02 6980780 /usr/lib/j2sdk1.5-sun/jre/lib/i386/libverify.so
    b75bd000-b75c6000 r-xp 00000000 03:02 6980876 /lib/tls/libnss_files-2.3.6.so
    b75c6000-b75c8000 rwxp 00008000 03:02 6980876 /lib/tls/libnss_files-2.3.6.so
    b75c8000-b75d0000 r-xp 00000000 03:02 6980878 /lib/tls/libnss_nis-2.3.6.so
    b75d0000-b75d2000 rwxp 00007000 03:02 6980878 /lib/tls/libnss_nis-2.3.6.so
    b75d2000-b75d9000 r-xp 00000000 03:02 6980874 /lib/tls/libnss_compat-2.3.6.so
    b75d9000-b75db000 rwxp 00006000 03:02 6980874 /lib/tls/libnss_compat-2.3.6.so
    b75db000-b75ed000 r-xp 00000000 03:02 6980873 /lib/tls/libnsl-2.3.6.so
    b75ed000-b75ef000 rwxp 00011000 03:02 6980873 /lib/tls/libnsl-2.3.6.so
    b75ef000-b75f1000 rwxp b75ef000 00:00 0
    b75f5000-b75f7000 r-xs 00000000 03:02 6995978 /usr/lib/j2sdk1.5-sun/jre/lib/ext/dnsns.jar
    b75f7000-b75ff000 rwxs 00000000 03:02 8552461 /tmp/hsperfdata_root/16446
    b75ff000-b7622000 r-xp 00000000 03:02 6980871 /lib/tls/libm-2.3.6.so
    b7622000-b7624000 rwxp 00022000 03:02 6980871 /lib/tls/libm-2.3.6.so
    b7624000-b7990000 r-xp 00000000 03:02 6980774 /usr/lib/j2sdk1.5-sun/jre/lib/i386/client/libjvm.so
    b7990000-b79af000 rwxp 0036b000 03:02 6980774 /usr/lib/j2sdk1.5-sun/jre/lib/i386/client/libjvm.so
    b79af000-b7dc6000 rwxp b79af000 00:00 0
    b7dc6000-b7eee000 r-xp 00000000 03:02 6980867 /lib/tls/libc-2.3.6.so
    b7eee000-b7ef3000 r-xp 00127000 03:02 6980867 /lib/tls/libc-2.3.6.so
    b7ef3000-b7ef5000 rwxp 0012c000 03:02 6980867 /lib/tls/libc-2.3.6.so
    b7ef5000-b7ef8000 rwxp b7ef5000 00:00 0
    b7ef8000-b7efa000 r-xp 00000000 03:02 6980870 /lib/tls/libdl-2.3.6.so
    b7efa000-b7efc000 rwxp 00001000 03:02 6980870 /lib/tls/libdl-2.3.6.so
    b7efc000-b7efd000 rwxp b7efc000 00:00 0
    b7efd000-b7f0b000 r-xp 00000000 03:02 6980864 /lib/tls/libpthread-2.3.6.so
    b7f0b000-b7f0d000 rwxp 0000d000 03:02 6980864 /lib/tls/libpthread-2.3.6.so
    b7f0d000-b7f14000 rwxp b7f0d000 00:00 0
    b7f14000-b7f1a000 r-xp 00000000 03:02 6980769 /usr/lib/j2sdk1.5-sun/jre/lib/i386/native_threads/libhpi.so
    b7f1a000-b7f1b000 rwxp 00006000 03:02 6980769 /usr/lib/j2sdk1.5-sun/jre/lib/i386/native_threads/libhpi.so
    b7f1b000-b7f1c000 rwxp b7f1b000 00:00 0
    b7f1c000-b7f1d000 r-xp b7f1c000 00:00 0
    b7f1d000-b7f1f000 rwxp b7f1d000 00:00 0
    b7f1f000-b7f34000 r-xp 00000000 03:02 6964594 /lib/ld-2.3.6.so
    b7f34000-b7f36000 rwxp 00014000 03:02 6964594 /lib/ld-2.3.6.so
    bf675000-bf678000 ---p bf675000 00:00 0
    bf678000-bf875000 rwxp bf678000 00:00 0 [stack]
    ffffe000-fffff000 ---p 00000000 00:00 0 [vdso]
    VM Arguments:
    jvm_args: -Xmx512m
    java_command: net.sf.l2j.gameserver.GameServer
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin:/usr/games
    LD_LIBRARY_PATH=/usr/lib/j2sdk1.5-sun/jre/lib/i386/client:/usr/lib/j2sdk1.5-sun/jre/lib/i386:/usr/lib/j2sdk1.5-sun/jre/../lib/i386
    SHELL=/bin/bash
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x325bd0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x325bd0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x28a010], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x28a010], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x28a010], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x28c460], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x28be90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: [libjvm.so+0x28be90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x28be90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGTERM: [libjvm.so+0x28be90], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    --------------- S Y S T E M ---------------
    OS:4.0
    uname:Linux 2.6.17 #4 SMP PREEMPT Wed May 10 13:53:45 CEST 2006 i686
    libc:glibc 2.3.6 NPTL 2.3.6
    rlimit: STACK 8192k, CORE 0k, NPROC infinity, NOFILE 1024, AS infinity
    load average:1.31 0.62 0.38
    CPU:total 1 (cores per cpu 1, threads per core 1) family 15 model 2 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1003220k(251136k free), swap 2096440k(2096396k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_09-b03) for linux-x86, built on Oct 12 2006 10:54:08 by java_re with gcc 3.2.1-7a (J2SE release)

  • How to install Sun Java System Application Server PE 9 in debian

    Hi,
    I have ubuntu installed on my system. I wanted to install the Sun Java System Application Server PE 9 on it. I didn't see any debian package for it on Sun's downloads. I downloaded the linux version and tried to install it. I got the following result...
    root@vineet :/usr/src# ./java_ee_sdk-5-linux.bin
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Error: Could not find the required version of the Java(TM) 2 Runtime Environment.
    This application needs version 1.5 or higher of the Java(TM) 2 Runtime
    Environment. If the required Java(TM) 2 Runtime Environment is not installed,
    you can download it from the following website:
    http://java.sun.com/j2se
    Or if you already have the required Java(TM) 2 Runtime Environment
    installed, try rerunning this application with the following usage:
    'java_ee_sdk-5-linux.bin' -javahome <Java(TM) installation directory>
    root@vineet:/usr/src# ./java_ee_sdk-5-linux.bin -javahome /usr/lib/j2re1.5-sun
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Launching Java(TM) 2 Runtime Environment...
    Error: There are no files requiring installation.
    Deleting temporary files...
    Any suggestions will be highly appreciated.
    Thanks,
    Vineet

    Hi,
    I have ubuntu installed on my system. I wanted to
    install the Sun Java System Application Server PE 9
    on it. I didn't see any debian package for it on
    Sun's downloads. I downloaded the linux version and
    tried to install it. I got the following result...
    root@vineet :/usr/src# ./java_ee_sdk-5-linux.bin
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Error: Could not find the required version of the
    Java(TM) 2 Runtime Environment.
    This application needs version 1.5 or higher of the
    Java(TM) 2 Runtime
    Environment. If the required Java(TM) 2 Runtime
    Environment is not installed,
    you can download it from the following website:
    http://java.sun.com/j2se
    f you already have the required Java(TM) 2 Runtime
    Environment
    installed, try rerunning this application with the
    following usage:
    'java_ee_sdk-5-linux.bin' -javahome <Java(TM)
    installation directory>
    oot@vineet:/usr/src# ./java_ee_sdk-5-linux.bin
    -javahome /usr/lib/j2re1.5-sun
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Launching Java(TM) 2 Runtime Environment...
    Error: There are no files requiring installation.
    Deleting temporary files...
    Any suggestions will be highly appreciated.
    Thanks,
    VineetDo you have java 5 sdk on your machine (Or at the very least java 5 re) ?
    Have you tried the command that they gave ?

  • JAVA Browser Plugin for Mozilla on Linux Debian

    Hi!
    I run a Mozilla Firefox (iceWeasel) on a DEBIAN.
    It does NOT display german or french special characters like "Umlaute öäüÄÖÜß" and alike properly.
    The text is displayed within an Applet from a 3rd Party, so i can only change the text which is displayed but no java sourcecode.
    The stuff is displayed properly on Windows with IE and Firefox.
    Any idea is appreciated!
    Best regards,
    Roland
    Edited by: xibeaga on 23.09.2009 10:18

    what it has to do with java ?

  • Installing Java 8 SE on Debian - Linux

    What is the recommended way to install Java 8 SE on Debian (32-bit or 64-bit):
    1) As explained on this page JDK Installation for Linux Platforms
    Installation of the 32-bit JDK on Linux Platforms
    This procedure installs the Java Development Kit (JDK) for 32-bit Linux, using an archive binary file (.tar.gz).
    These instructions use the following file:
    jdk-8uversion-linux-i586.tar.gz
    Download the file.Before the file can be downloaded, you must accept the license agreement. The archive binary can be installed by anyone (not only root users), in any location that you can write to. However, only the root user can install the JDK into the system location.
    Change directory to the location where you would like the JDK to be installed, then move the .tar.gz archive binary to the current directory.
    Unpack the tarball and install the JDK.% tar zxvf jdk-8uversion-linux-i586.tar.gz
    The Java Development Kit files are installed in a directory called jdk1.8.0_version in the current directory.
    Delete the .tar.gz file if you want to save disk space.
    or
    2) su -
    echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee /etc/apt/sources.list.d/webupd8team-java.list
    echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
    apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886 apt-get update
    apt-get
    install oracle-java8-installer
    exit
    Thanks.

    The recommended way to install Java 8 on Debian is apt-get install openjdk-8-jre, but you'll have to wait until that package actually exists, which is not the case yet. Neither of the above ways you mention are recommended on Debian, but both should be working.

  • Java GUI freezes in Debian/Sarge

    Hi,
    I am running a Debian/Sarge
    #uname -a
    Linux jukebox 2.6.14.2 #5 PREEMPT Mon Nov 28 20:28:54 CET 2005 i686 GNU/Linux
    I have a java casino game created by jdk (1.6.0_02) netbeans(5..5.1) . If I run it in development machine (windows) it runs okay. It also runs okay in (fedora)
    But I got problme when I run it in the Debian. after some clickings and typings it gets frozen. just frozen. I can not work with it. I though I would compile it with netbeans. then I install netbeans. But Netbeans also shows the same behavior. To bo sure, I tried jEdit. The result was same. hang. the GUI.
    I am sure its about Debian vs JDK
    Can you please help me?

    casta2k wrote:
    I tried running a very simple "Hello World" program and it did not work either. The problem is the same: once I place the pointer on top of the window, it freezes and then an error message appears. The code can be found at the following link:
    http://java.sun.com/docs/books/tutorial/uiswing/examples/start/HelloWorldSwingProject/src/start/HelloWorldSwing.java
    Does anybody know any similar case? ThanksI suspect that your Ubuntu is defaulting to OpenJDk or some other Java/JDK . Remove all Java installations and then install Sun JDK 6 using sun-java6-bin .

  • 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

Maybe you are looking for

  • Save graph shown by cl_gui_html_viewer into pdf file

    hello, i am creating graph through cl_igs_chart and display it by using cl_gui_html_viewver. now i have a requirment to save graph in pdf file format. when righ click on graph and click on save picture as than graph save as bmp file but i want to sav

  • How do I extract pages from my original PDF?

    Hi, I have a longer PDF (15 pages) that I need to create a new PDF from with just a few pages (pages 3-5, 7). How can I do this? The only way I've been able to figure out is to take a snapshot, paste it into Publisher or Word, and then convert it bac

  • Problem with Authorize

    Hi everyone, i keep getting this message when i'm trying to authorise my computer in iTunes : The required file was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions

  • Email contents using ABAP

    Hi, I am using FM 'SO_NEW_DOCUMENT_SEND_API1' to send an email to internet address. Problem is even after populating the content internal table in table interface of FM, I am not seeing any contents in actual email. Here is the sample code: lt_object

  • Import subtitles for slide show

    I have two slide shows, each with 50 slides. I would like to generate a text file with the subtitle definitions and import it, but apparently subtitles can only be imported for timelines. Why is that? I have the names of the slides (the texts that sh