JDK 1.2.2 / JDK 1.3 Update

2000-05-25 Thread Riyad Kalla



Blackdown Team,
    Noticed the webpage has been in 
limbo for almost 2 months now on JDK 1.2.2/1.3 status/jck information. Can you 
update us with anything? Are you leaving the 1.2.2 port up to Sun now and 
concentrating on 1.3? Or are you stepping out totally from the porting 
scene?
 
-Riyad Kalla


Re: JavaOne?

2000-05-25 Thread Levente Farkas

SHUDO Kazuyuki wrote:
> 
> Mo DeJong wrote:
> 
> > I would be interested in going to JavaGrande, but I hear bad things
> > about JavaOne.
> 
> JavaOne costs us very expensive fee to attend it, at
> least US$ 1295. I'll attend Java Grande Conference but
> not JavaOne.
> 
> > Where can I find more info about JavaGrande?
> 
>   ACM Java Grande 2000 Conference
> http://www.extreme.indiana.edu/java00/

I'll be there on both:-) 
Where and when can we meet ? rh office is ok for me, but ...

 -- lfarkas
 "The only thing worse than not knowing the truth is
  ruining the bliss of ignorance."


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Unidentified subject!

2000-05-25 Thread peter . pilgrim

>From [EMAIL PROTECTED]  Thu May 25 
>04:54:00 2000
Received: from scam.xcf.berkeley.edu (scam.XCF.Berkeley.EDU [128.32.43.201]) by 
lgs-systems.com (8.8.5) id EAA05695; Thu, 25 May 2000 04:54:00 -0600 (MDT)
Received: (qmail 12931 invoked by alias); 25 May 2000 10:49:32 -
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 12920 invoked from network); 25 May 2000 10:49:27 -
Received: from imr3.srv.uk.deuba.com (194.205.246.162)
  by scam.xcf.berkeley.edu with SMTP; 25 May 2000 10:49:27 -
Received: from bmr1-e1.srv.uk.deuba.com by imr3.srv.uk.deuba.com 
  id LAA15650; Thu, 25 May 2000 11:48:24 +0100 (BST)
Received: from pow.srv.uk.deuba.com by bmr1-e1.srv.uk.deuba.com 
  id LAA00118; Thu, 25 May 2000 11:48:27 +0100 (BST)
Received: from db.com by pow.srv.uk.deuba.com 
  id LAA24592; Thu, 25 May 2000 11:48:26 +0100 (BST)
Message-ID: <[EMAIL PROTECTED]>
Date: Thu, 25 May 2000 11:48:26 +0100
From: Peter Pilgrim <[EMAIL PROTECTED]>
Organization: Deutsche Bank (UK)
X-Mailer: Mozilla 4.7 [en] (WinNT; I)
X-Accept-Language: en
MIME-Version: 1.0
To: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: Problem Connecting between applet and servlet
References: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-UIDL: 6fd21cc9abb60114a4d0fce5c4a3a6c1

I would say your problem is getting the web page to update from
a applet. This is a nonsense because you will force the enitre applet 
to also reload as the web page reload!!

But if you use frames then you need to force the applet to display
the web frame after invoking the servlet. I don't think there is a way
to request a servlet and redirect the output to go a separate HTML Frame.

A better way is to make applet display the info from the servlet.
You could use HTTP Tunnelling to transmit Java objects to and from
the applet and servlet.



[EMAIL PROTECTED] wrote:
> 
> Hi,
> 
>   I was trying to connect to a servlet through an applet.I created an html
> page with two frame.At the top frame the applet was embedded and in the bottom
> frame the servlet was server side included.I used the GET method to
> communicate to the servlet.So in the init method of the applet I added the
> following code to get a connection to the servlet.And pass information through
> the URL.
> 
> 
>  String
> 
>servletLocation="http://172.100.8.213:8080/servlet/serv.HelloWorldServlet1?LastName='Jones'";
> try{
>  testServlet = new URL( servletLocation );
> }
> catch (MalformedURLException e){
> }
> 
> try{
> servletConnection = testServlet.openConnection();
> }
> catch(IOException e){
> }
> 
> ///
> The code of the servlet is shown below,where I tried to get the information
> passed from the applet
> 
> public class HelloWorldServlet1 extends HttpServlet {
> 
> 
> public void doGet (HttpServletRequest req, HttpServletResponse res)
> throws ServletException, IOException
> {
> PrintWriter out;
> 
> res.setContentType("text/html");
> out = res.getWriter();
>   String name=req.getParameter("LastName");
> 
> out.println("");
> out.println("Hello World");
> out.println("");
> out.println("LastName="+name+"");
> out.println("");
> }
> }
> /
> 
> The output is showing a null value for the name.Is it wrong to send the
> information to the servlet from the init method.Can you suggest some other
> method or simple code for the communication.
> 
> regards,
> Rakesh.
> 
> 
> Get free email and a permanent address at http://www.netaddress.com/?N=1
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

-- 

mfg
Peter

==
"The greatest trick the devil ever pulled was making everyone in the
world believe he didn't exist." Kevin Spacey as Kaiser Soze

---
To unsubscribe, mail [EMAIL PROTECTED]
To get help, mail [EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Problem Connecting between applet and servlet

2000-05-25 Thread Peter Pilgrim

I would say your problem is getting the web page to update from
a applet. This is a nonsense because you will force the enitre applet 
to also reload as the web page reload!!

But if you use frames then you need to force the applet to display
the web frame after invoking the servlet. I don't think there is a way
to request a servlet and redirect the output to go a separate HTML Frame.

A better way is to make applet display the info from the servlet.
You could use HTTP Tunnelling to transmit Java objects to and from
the applet and servlet.



[EMAIL PROTECTED] wrote:
> 
> Hi,
> 
>   I was trying to connect to a servlet through an applet.I created an html
> page with two frame.At the top frame the applet was embedded and in the bottom
> frame the servlet was server side included.I used the GET method to
> communicate to the servlet.So in the init method of the applet I added the
> following code to get a connection to the servlet.And pass information through
> the URL.
> 
> 
>  String
> 
>servletLocation="http://172.100.8.213:8080/servlet/serv.HelloWorldServlet1?LastName='Jones'";
> try{
>  testServlet = new URL( servletLocation );
> }
> catch (MalformedURLException e){
> }
> 
> try{
> servletConnection = testServlet.openConnection();
> }
> catch(IOException e){
> }
> 
> ///
> The code of the servlet is shown below,where I tried to get the information
> passed from the applet
> 
> public class HelloWorldServlet1 extends HttpServlet {
> 
> 
> public void doGet (HttpServletRequest req, HttpServletResponse res)
> throws ServletException, IOException
> {
> PrintWriter out;
> 
> res.setContentType("text/html");
> out = res.getWriter();
>   String name=req.getParameter("LastName");
> 
> out.println("");
> out.println("Hello World");
> out.println("");
> out.println("LastName="+name+"");
> out.println("");
> }
> }
> /
> 
> The output is showing a null value for the name.Is it wrong to send the
> information to the servlet from the init method.Can you suggest some other
> method or simple code for the communication.
> 
> regards,
> Rakesh.
> 
> 
> Get free email and a permanent address at http://www.netaddress.com/?N=1
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

-- 

mfg
Peter

==
"The greatest trick the devil ever pulled was making everyone in the
world believe he didn't exist." Kevin Spacey as Kaiser Soze


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: official linux j2ee sun release

2000-05-25 Thread jknutson

That's great, only you follow their links to find the download page which
hasn't been updated in months, hence, no linux download


I don't suppose anyone out there has any idea when IBM's WebSphere
application server version 3 *advanced* is going to be made available for
linux... Or is it not going to be made available?  Or is it already
available, and simply not advertised anywhere?




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




signals

2000-05-25 Thread Ashis Rout

Hi,

I want to know more about the signals and the doccumentation in Linux, where
can I get it???

I looked at the  signal.h in the /usr/include directory does not have all
the info.

I get signals 32 and 38, while running my applications. 

let me know if any one has some info for me.

regards
Ashis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Segmentation Fault with JDK 1.1.8

2000-05-25 Thread Chad Lemmen

Ok I installed 1.2.2 RC3 and it seems some files are missing here is
what its telling me.

chad:/$ /usr/local/jdk1.2.2/bin/java -version
/usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory
/usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory
java was not found in /bin/i386/native_threads/java
chad:/$ 


Ashis Rout wrote:
> 
> download the latest from www.blackdown.com  1.2.2 RC3... and try it.
> This is the quickest way to know if they have fixed the problem or not.
> because this segmentation fault is just coming from all over the places.
> let me know
> 
> -Original Message-
> From: Chad Lemmen [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, May 24, 2000 7:23 PM
> To: [EMAIL PROTECTED]
> Subject: Segmentation Fault with JDK 1.1.8
> 
> I'm running JDK 1.1.8 and I am getting a segmentation fault.  I'm not
> able to run anything.  Just typing java -version returns "Segmentation
> Fault".  I'm running Corel Linux 1.1 kernel version 2.2.12.
> ldconfig -D 2>&1 | grep libc | tail -1 gives this: libcom_err.so.2 =>
> libcom_err.so.2.0
> ldconfig -D 2>&1 | grep ld | tail -1 gives this:  ld-linux.so.1 =>
> ld-linux.so.1.9.10
> XFree86 Version 3.3.5
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Apllet not running in IE ,JDBC exception with MySQL

2000-05-25 Thread Rakesh Raveendran

Hi,

 I am using an applet which has backend connectivity to a MySQL database
running on a Linux server.I am using exgwe JDBC driver.The applet is running
fine in Netscape but in Internet Explorer it is throwing exceptions.I have the
stack trace below.Can anybody help me.

///com.ms.security.SecurityExceptionEx[exjava/sql/DriverManager.loadInitialDrivers]:
Unable to access system property: jdbc.drivers
at com/ms/security/permissions/PropertyPermission.check
at com/ms/security/PolicyEngine.shallowCheck
at com/ms/security/PolicyEngine.checkCallersPermission
at com/ms/security/StandardSecurityManager.chk
at com/ms/security/StandardSecurityManager.checkPropertyAccess
at java/lang/System.getProperty
at exjava/sql/DriverManager.loadInitialDrivers
at exjava/sql/DriverManager.initialize
at exjava/sql/DriverManager.getConnection
at exjava/sql/DriverManager.getConnection
at OnlineDialog.
at Online.actionPerformed
at java/awt/Button.processActionEvent
at java/awt/Button.processEvent
at java/awt/Component.dispatchEventImpl
at java/awt/Component.dispatchEvent
at com/ms/awt/WUIPeer.handleEvent
at com/ms/awt/WButtonPeer.handleEvent
at java/awt/Component.postEvent
at com/ms/ui/AwtUIHost.postEvent
at com/ms/awt/WUIPeer.postEvent
at com/ms/ui/UIRoot.postEvent
at com/ms/ui/UIComponent.postEvent
at com/ms/ui/UIStateContainer.postEvent
at com/ms/ui/UIButton.¤
at com/ms/ui/UIButton.mouseClicked
at com/ms/ui/UIComponent.handleEvent
at com/ms/ui/UIComponent.postEvent
at com/ms/ui/UIStateContainer.postEvent
at com/ms/ui/UIComponent.postEvent
at com/ms/ui/UIStateComponent.postEvent
at com/ms/ui/UIRoot.Ä
at com/ms/ui/UIRoot.forwardEvent
at com/ms/ui/AwtUIHost.postEvent
at com/ms/awt/WUIPeer.postEvent
at com/ms/ui/AwtUIHost.processEvent
at java/awt/Component.dispatchEventImpl
at java/awt/Container.dispatchEventImpl
at java/awt/Component.dispatchEvent
at java/awt/EventDispatchThread.run
/

There is no problem whatsoever in Netscape that baffles me.


Regards,
Rakesh



Get free email and a permanent address at http://www.netaddress.com/?N=1


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Unidentified subject!

2000-05-25 Thread nr_rakesh

>From [EMAIL PROTECTED]  Thu May 25 
>11:54:54 2000
Received: from scam.xcf.berkeley.edu (scam.XCF.Berkeley.EDU [128.32.43.201]) by 
lgs-systems.com (8.8.5) id LAA27747; Thu, 25 May 2000 11:54:54 -0600 (MDT)
Received: (qmail 82364 invoked by alias); 25 May 2000 17:51:56 -
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 70804 invoked from network); 25 May 2000 16:48:37 -
Received: from nwcst282.netaddress.usa.net (204.68.23.27)
  by scam.xcf.berkeley.edu with SMTP; 25 May 2000 16:48:37 -
Received: (qmail 29984 invoked by uid 60001); 25 May 2000 16:48:59 -
Message-ID: <[EMAIL PROTECTED]>
Received: from 204.68.23.27 by nwcst282 for [203.129.246.18] via 
web-mailer(34FM1.4.02C) on Thu May 25 16:48:59 GMT 2000
Date: 25 May 00 20:48:59 SMT
From: Rakesh Raveendran <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Apllet not running in IE ,JDBC exception with MySQL
CC: [EMAIL PROTECTED], [EMAIL PROTECTED]
X-Mailer: USANET web-mailer (34FM1.4.02C)
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: quoted-printable
X-UIDL: 60180cda0fbaefba76a968c78aed9c46

Hi,

 I am using an applet which has backend connectivity to a MySQL database
running on a Linux server.I am using exgwe JDBC driver.The applet is runn=
ing
fine in Netscape but in Internet Explorer it is throwing exceptions.I hav=
e the
stack trace below.Can anybody help me.

///com.ms=
=2Esecurity.SecurityExceptionEx[exjava/sql/DriverManager.loadInitialDrive=
rs]:
Unable to access system property: jdbc.drivers
at com/ms/security/permissions/PropertyPermission.check
at com/ms/security/PolicyEngine.shallowCheck
at com/ms/security/PolicyEngine.checkCallersPermission
at com/ms/security/StandardSecurityManager.chk
at com/ms/security/StandardSecurityManager.checkPropertyAccess
at java/lang/System.getProperty
at exjava/sql/DriverManager.loadInitialDrivers
at exjava/sql/DriverManager.initialize
at exjava/sql/DriverManager.getConnection
at exjava/sql/DriverManager.getConnection
at OnlineDialog.
at Online.actionPerformed
at java/awt/Button.processActionEvent
at java/awt/Button.processEvent
at java/awt/Component.dispatchEventImpl
at java/awt/Component.dispatchEvent
at com/ms/awt/WUIPeer.handleEvent
at com/ms/awt/WButtonPeer.handleEvent
at java/awt/Component.postEvent
at com/ms/ui/AwtUIHost.postEvent
at com/ms/awt/WUIPeer.postEvent
at com/ms/ui/UIRoot.postEvent
at com/ms/ui/UIComponent.postEvent
at com/ms/ui/UIStateContainer.postEvent
at com/ms/ui/UIButton.=A4
at com/ms/ui/UIButton.mouseClicked
at com/ms/ui/UIComponent.handleEvent
at com/ms/ui/UIComponent.postEvent
at com/ms/ui/UIStateContainer.postEvent
at com/ms/ui/UIComponent.postEvent
at com/ms/ui/UIStateComponent.postEvent
at com/ms/ui/UIRoot.=C4
at com/ms/ui/UIRoot.forwardEvent
at com/ms/ui/AwtUIHost.postEvent
at com/ms/awt/WUIPeer.postEvent
at com/ms/ui/AwtUIHost.processEvent
at java/awt/Component.dispatchEventImpl
at java/awt/Container.dispatchEventImpl
at java/awt/Component.dispatchEvent
at java/awt/EventDispatchThread.run
/=


There is no problem whatsoever in Netscape that baffles me.


Regards,
Rakesh



Get free email and a permanent address at http://www.netaddress.com/?N=3D=
1

---
To unsubscribe, mail [EMAIL PROTECTED]
To get help, mail [EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Persistency for java on Linux

2000-05-25 Thread Gerrit Cap

Hello,


Does anybody has some good virbations on a persistency storage product 
(preferable freeware) that can be used on Linux from java for quick 
prototyping ?

Regards,

Gerrit.
 Marble Consulting --
Gerrit Cap  http://www.ping.be/marble
OO Solutions Engineer   mailto:[EMAIL PROTECTED]
Marble Consulting
Blauwe Gaanweg, 53  tel : +32 75 72.94.36
B-9150 Kruibeke-Bazel   fax : +32 3 744.19.17
Belgium
 Marble Consulting --
There is only one thing in the world worse than being witty,
and thats not being witty.  (Monthy Python)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Persistency for java on Linux

2000-05-25 Thread Vincent Trussart



JDBM : JDBM aims to be a gdbm-style persistence library for Java. It
   offers a simple interface based on java.util.Hashtable, simple
   semantics, transactions, and comes as a small jar.

http://jdbm.sourceforge.net

Or you could setup a postgresql 7 server and connect to it using JDBC
(postgresql 7 is great... it finally has foreign keys support and 
it is much faster that previous versions)

Hope this helps...

Vincent


> Hello,
> 
> 
> Does anybody has some good virbations on a persistency storage product 
> (preferable freeware) that can be used on Linux from java for quick 
> prototyping ?
> 
> Regards,
> 
> Gerrit.
>  Marble Consulting --
> Gerrit Cap  http://www.ping.be/marble
> OO Solutions Engineer   mailto:[EMAIL PROTECTED]
> Marble Consulting
> Blauwe Gaanweg, 53  tel : +32 75 72.94.36
> B-9150 Kruibeke-Bazel   fax : +32 3 744.19.17
> Belgium
>  Marble Consulting --
> There is only one thing in the world worse than being witty,
> and thats not being witty.  (Monthy Python)
> 
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Segmentation Fault with JDK 1.1.8

2000-05-25 Thread Urban Widmark

On Thu, 25 May 2000, Chad Lemmen wrote:

> Ok I installed 1.2.2 RC3 and it seems some files are missing here is
> what its telling me.
> 
> chad:/$ /usr/local/jdk1.2.2/bin/java -version
> /usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory
> /usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory
> java was not found in /bin/i386/native_threads/java
> chad:/$ 

bin/java is a (link to a) script that among other things does:

if [ "x${jre}" = "x" ]; then
echo "Error: can't find libjava.so."
exit 1
fi

# Get the canonicalized absolute pathnames
jre="`$jre/bin/realpath $jre`"

If you get it to do /bin/realpath and not /somepath/bin/realpath something
is strange. Is /bin/sh not /bin/sh? :)

realpath is a script in jdk1.2.2/jre/bin, so you could try to debug both
scripts in your environment. You could also try RC4.


> > I'm running JDK 1.1.8 and I am getting a segmentation fault.  I'm not
> > able to run anything.  Just typing java -version returns "Segmentation
> > Fault".  I'm running Corel Linux 1.1 kernel version 2.2.12.
> > ldconfig -D 2>&1 | grep libc | tail -1 gives this: libcom_err.so.2 =>
> > libcom_err.so.2.0
> > ldconfig -D 2>&1 | grep ld | tail -1 gives this:  ld-linux.so.1 =>
> > ld-linux.so.1.9.10
> > XFree86 Version 3.3.5

Do you have a /lib/libc-2.1.2.so (or a libc-2.1.x.so anywhere else)?

Try the 'ldconfig' without 'tail -1'. You need glibc, and not just
libc-5.x. I have no idea what Corel Linux 1.1 uses.

It is ok to have more than one libc version:
tcsh% ldconfig -D | & grep libc\\.so
libc.so.5 => libc.so.5.3.12
ldconfig: warning: /lib/libc-2.1.2.so has inconsistent soname (libc.so.6)
libc.so.6 => libc-2.1.2.so

/Urban


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Segmentation Fault with JDK 1.1.8

2000-05-25 Thread Chad Lemmen

I tried RC4 and that gives the same results.  I downloaded JDK 1.2 and
that works.  Why is it that 1.1.8 and 1.2.2 don't but 1.2 does?  With
1.2 if I type java -version it will return the version number so I
assume its working, but it won't work with the java app I'm trying to
use.  If you have time to look at it you can download it at
http://www.mytrack.com on the left side of the screen click on java and
then linux.  Anyway they say to use JDK 1.1.8, which is why I was trying
to get that version working.  Here is the startup script they use:

cd /mytrack
JAVA=/jdk118_v1/bin/java
CLASSPATH=/jdk118_v1/lib/classes.zip:./xTrack001.jar:./jctable362.jar
$JAVA -classpath $CLASSPATH xTrack  


JDK versions 1.2 and 1.2.2 don't have classes.zip in the lib dir, but
1.1.8 does.  This might be why even though 1.2 seems to work on my
system it won't run this app properly.

It looks to me like I have glibc 2.0.7 is that right?

chad:/home/chad# ldconfig -D | grep libc.so
ldconfig: warning: /usr/lib/libstdc++-2-libc6.0-1-2.9.0.so has
inconsistent soname (libstdc++-libc6.0-1.so.2)
ldconfig: warning: /usr/lib/libstdc++-2-libc6.1-1-2.9.0.so has
inconsistent soname (libstdc++-libc6.1-1.so.2)
ldconfig: warning: /usr/lib/libexpect5.28.so.1 has inconsistent soname
(libexpect5.24.so.1)
ldconfig: warning: /lib/ld-2.0.7.so has inconsistent soname
(ld-linux.so.2)
ldconfig: warning: /lib/libBrokenLocale-2.0.7.so has inconsistent soname
(libBrokenLocale.so.1)
ldconfig: warning: /lib/libc-2.0.7.so has inconsistent soname
(libc.so.6)
ldconfig: warning: /lib/libcrypt-2.0.7.so has inconsistent soname
(libcrypt.so.1)
ldconfig: warning: /lib/libdb-2.0.7.so has inconsistent soname
(libdb.so.2)
ldconfig: warning: /lib/libdl-2.0.7.so has inconsistent soname
(libdl.so.2)
ldconfig: warning: /lib/libm-2.0.7.so has inconsistent soname
(libm.so.6)
ldconfig: warning: /lib/libnsl-2.0.7.so has inconsistent soname
(libnsl.so.1)
ldconfig: warning: /lib/libnss_compat-2.0.7.so has inconsistent soname
(libnss_compat.so.1)
ldconfig: warning: /lib/libnss_db-2.0.7.so has inconsistent soname
(libnss_db.so.1)
ldconfig: warning: /lib/libnss_dns-2.0.7.so has inconsistent soname
(libnss_dns.so.1)
ldconfig: warning: /lib/libnss_files-2.0.7.so has inconsistent soname
(libnss_files.so.1)
ldconfig: warning: /lib/libnss_nis-2.0.7.so has inconsistent soname
(libnss_nis.so.1)
ldconfig: warning: /lib/libresolv-2.0.7.so has inconsistent soname
(libresolv.so.2)
ldconfig: warning: /lib/libutil-2.0.7.so has inconsistent soname
(libutil.so.1)
ldconfig: warning: /lib/libpthread-0.7.so has inconsistent soname
(libpthread.so.0)
libc.so.5 => libc.so.5.4.46
libc.so.6 => libc-2.0.7.so




Urban Widmark wrote:
> 
> On Thu, 25 May 2000, Chad Lemmen wrote:
> 
> > Ok I installed 1.2.2 RC3 and it seems some files are missing here is
> > what its telling me.
> >
> > chad:/$ /usr/local/jdk1.2.2/bin/java -version
> > /usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory
> > /usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory
> > java was not found in /bin/i386/native_threads/java
> > chad:/$
> 
> bin/java is a (link to a) script that among other things does:
> 
> if [ "x${jre}" = "x" ]; then
> echo "Error: can't find libjava.so."
> exit 1
> fi
> 
> # Get the canonicalized absolute pathnames
> jre="`$jre/bin/realpath $jre`"
> 
> If you get it to do /bin/realpath and not /somepath/bin/realpath something
> is strange. Is /bin/sh not /bin/sh? :)
> 
> realpath is a script in jdk1.2.2/jre/bin, so you could try to debug both
> scripts in your environment. You could also try RC4.
> 
> > > I'm running JDK 1.1.8 and I am getting a segmentation fault.  I'm not
> > > able to run anything.  Just typing java -version returns "Segmentation
> > > Fault".  I'm running Corel Linux 1.1 kernel version 2.2.12.
> > > ldconfig -D 2>&1 | grep libc | tail -1 gives this: libcom_err.so.2 =>
> > > libcom_err.so.2.0
> > > ldconfig -D 2>&1 | grep ld | tail -1 gives this:  ld-linux.so.1 =>
> > > ld-linux.so.1.9.10
> > > XFree86 Version 3.3.5
> 
> Do you have a /lib/libc-2.1.2.so (or a libc-2.1.x.so anywhere else)?
> 
> Try the 'ldconfig' without 'tail -1'. You need glibc, and not just
> libc-5.x. I have no idea what Corel Linux 1.1 uses.
> 
> It is ok to have more than one libc version:
> tcsh% ldconfig -D | & grep libc\\.so
> libc.so.5 => libc.so.5.3.12
> ldconfig: warning: /lib/libc-2.1.2.so has inconsistent soname (libc.so.6)
> libc.so.6 => libc-2.1.2.so
> 
> /Urban


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]