Tagged Questions
1
vote
2answers
30 views
Got “javax.ejb.EJBException: error unmarshalling arguments java.io.EOFException” when calling an ejb method
I am running an ejb method belongs to a EJB located in weblogic 10.3.6 server. This server is located in a Solaris-10 64bit machine. EJB client is located in Windows XP 32bit machine.
When I am ...
0
votes
0answers
20 views
Error while starting Oracle Weblogic: Assertion failed: ia_addressID, file Net.c
I installed oracle weblogic 10.3 on Sun Sparc with jrockit 1.6.045. When i start with command ./startWebLogic.sh, i am facing following error
Jun 13, 2013 3:32:50 PM PKT> <Notice> ...
0
votes
1answer
33 views
debugging java on solaris
I have a standalone java app which will connects to DASTABASE and then call SP and send a mail. I am calling the app through Shell Script , the problem i am facing is java code is struck, it is ...
-2
votes
0answers
25 views
Call of jar or .class file from java program [duplicate]
1 . How to cause execution of jar file from java program(i.e. from it the call of other java of the program will be carried out)? (it would be desirable to see an example)
2 . How to cause execution ...
0
votes
1answer
237 views
java 7 error: Unable to load native library: ld.so.1: java: fatal: libscf.so.1: open failed: No such file or directory
I need to run java 7 in a solaris 5.9 sparc 64 bits, but when I run it, I get next error:
$java -version
Error occurred during initialization of VM
Unable to load native library: ld.so.1: java: ...
0
votes
0answers
24 views
Java, Solaris : canExecutable function of File class returns true even if execute perms are not set
Following is the sample program I tried on a Solaris machine -
public class FileHandling {
private static FileWriter fstream;
/**
* @param args the command line arguments
*/
public static void ...
0
votes
2answers
56 views
ZipOutputStream complains of FileNotFoundException [closed]
new_file_name is something like 2013-03-15-08:59:10_65.zip
fileZip = new ZipOutputStream(new FileOutputStream(new File(new_file_name)));
byte[] buffer = new byte[1024];
try{
...
0
votes
1answer
52 views
XML Transform results in FileNotFoundException
The earlier question I posted is closed because of lack of information. Please let me know if I am missing something here. The transformer seems to be adding file:/ to the beginning of my file path.
...
0
votes
3answers
430 views
Connecting to sybase using jdbc in solaris
I am trying to learn how to use jdbc.
Normally to connect to sybase db on solaris I use:
isql -Usa -Psybase11 -Dbsmdb
its gets connected to the db by the above.and i can rightaway execute the ...
0
votes
0answers
46 views
panel refreshing issues when jcombobox changes in solaris
I am having a strange problem, where using a jComboBox is causing screen repaint issues on the portion of the panel below the panel.
Specifically:
I have a panel with a table that is located below a ...
0
votes
1answer
67 views
Abstracting Batch Process SFTP Multiple Destination & Automatic Retries
I do a lot of batch processing work using an in house Java framework. One of the activities that is particularly troublesome for us is SFTP where we run into two problems:
Sending files to multiple ...
0
votes
0answers
51 views
Looking for a reproducible test case for java.lang.UNIXProcess.forkAndExec(Native Method) hanging [closed]
I'm looking for a reproducible test case for a problem discussed in this thread:
Why is java.lang.UNIXProcess.forkAndExec(Native Method) hanging
0
votes
0answers
43 views
Solaris KSSL and a Java web server
I'm trying to setup a Solaris KSSL proxy (http://www.c0t0d0s0.org/archives/5575-Less-known-Solaris-Features-kssl.html) as a frontend to a Jetty web server.
I'm able to make KSSL work with Apache web ...
0
votes
2answers
77 views
tomcat - solaris getRequestURI() returns a partially decoded uri
I have some code running on my dev machine a regular mac running tomcat and
HttpServletRequest.getRequestURI()
returns a fully encoded uri.
However in Solaris running apache-tomcat-7.0.32 ...
1
vote
1answer
90 views
How to analyze a memory leak in Java 1.3
I have a WebLogic 7 server, running under j2sdk1_3 on a Solaris platform.
Since Java5, I know the jmap command is very usefull for analyzing and troubleshooting a memory leak.
Is there a similar tool ...
-1
votes
2answers
189 views
Log4j Multithreading in Solaris
I have a multithreaded application and im using log4j for the logging. When i test my application on my windows 7/intel laptop, it works just fine. But when i deploy the same application to the ...
-1
votes
1answer
49 views
activate jre7 on solaris 10 [closed]
I installed jre7 on solaris 10 at the location /usr/jre7.
jdk1.5 and jre is already there at /usr/java
I want jre7 to run instead of jre5. how can I do that?
and also how do I find out which ...
5
votes
1answer
222 views
Does FileChannel tryLock() method checks for locks or just breaks them?
I have two processes that may access the same file concurently and wanted to implement file locking. The trouble seems to be that one process is written in java and the other in C and it is not clear ...
3
votes
0answers
157 views
I want to find average memory usage over time in solaris from vmstat log [closed]
Are you aware of any application like this http://www.michenux.net/vmstax/ which gives average memory usage. I want to get some application which can process the log file and give me the average ...
1
vote
1answer
117 views
Java,JVM and OS and swap
I wonder if i start a java virtual machine with:
-Xms2048m -Xmx2048m -XX:PermSize=256m -XX:MaxPermSize=256m
-XX:+UseParallelGC -XX:ParallelGCThreads=4 -XX:+UseParallelOldGC
...
0
votes
1answer
137 views
EhCache Weblogic Deadlock?
There is a webservice client which uses ehcache in order to cache some results and avoid too many ws calls.
Apparently the server from where this ws client is called (on Weblogic OSB) just hangs and ...
0
votes
0answers
55 views
Solaris: Getting different write speed on two system
I am reading a file and after checking its elements writing file's elements to other files.I have two development solaris systems. On first system i am getting conversion performance good(15 min) but ...
0
votes
1answer
32 views
Is it possible to find description of XToolkit?
I try to migrate our project from jre1.6 to jre1.7. We use uspec4j to test swing GUI on Solaris. And uspec don't work normaly with jre1.7. So, I am fixing Uspec4j and it help for some tests. But some ...
4
votes
6answers
730 views
How to get a list of all running processes on Linux and Solaris with Java?
Does anyone know how to get a list of all running processes on Linux and Solaris with Java? I don't want to use external programs like ps and I don't want to use proc. I want to do it with native ...
0
votes
1answer
140 views
Default laf doesn't load
we run builds on server with solaris. After changing jre 1.6 to jre 1.7 the utility which run all tests start to throw an exception(sorry for my English):
[java] Exception in thread "main" ...
0
votes
1answer
142 views
How can i downgrade the version of java from 1.6.0 to java 1.5.0 on Sun Solaris 11
I have my system configuration on live server of Joyent
Sun Solaris 11
Ram 8 GB
HD 240 GB
VM 16 GB
I have already installed Java 1.6.0 on my server machine
and i am running my Ruby on rails ...
3
votes
2answers
90 views
Unexpected String concat behaviour
I'm in trouble with some simple Java code :
// the env var is set
public final String METACHEK_pref = System.getenv().get("MCHK_DIR");
// the env var should be :
public String tempMP = ...
0
votes
3answers
224 views
Monitor a process in java
I have java process which uses process builder and calls a perl script.
The perl script internally calls a binary in background and i have its process id in that perl script.Now i can return this ...
2
votes
0answers
91 views
custom ListCellRenderer on Solaris (with jre5)
I have a JList containing instances of a class Operation which contains a boolean flag "enabled". When this flag is set to false, I want the text representation of the Operation instance in the JList ...
0
votes
0answers
81 views
Syntax of option -files in hadoop script
I wrote this hadoop program
package org.myorg;
import java.io.*;
import java.util.*;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.conf.*;
import org.apache.hadoop.io.*;
import ...
1
vote
1answer
792 views
Reading a file in Java hdfs
I ran into a problem running the program on a cluster and decided to read from hdfs file in functions map and reduce. How to read line by line hdfs file and burn to read rows in ArrayList?
0
votes
0answers
126 views
Jboss 7 as service on Solaris [closed]
How to launch jboss 7 as service on solaris?
jboss_home/bin/init.d has some scripts, but where do i place those and how to launch?
I use SunOS 5.10.
0
votes
1answer
125 views
Error: no classes specified
I wrote this Java hadoop program which will execute parallel indexation of files.The file was created in eclipse
package org.myorg;
import java.io.*;
import java.util.*;
import ...
1
vote
1answer
1k views
Issues with CORBA communication
This maybe too localized, but I am hoping someone can help me articulate my questions properly.
So, we have a front end web server that communicates with a back end app server using CORBA. I have ...
1
vote
1answer
202 views
CORBA ORB runtime define local IP interface usage
We have an existing application which has set up a CORBA ORB runtime environment as client.
At the moment we don't specify any local interface (IP/Ethernet) to use and the runtime seems to get some ...
1
vote
4answers
281 views
Creating a simple gui in java for running a background process
Well, I had this question in mind for a long time.
Even though i have a complex requirement,i will keep it as simple as possible.
I have background process which takes two arguments which i use to ...
0
votes
0answers
210 views
Hanging java Process on solaris
We have a problem where our java process is hanging forever,
Unless a Kill -9 is issued against it.
The same Process is running successfully in the Other Solaris Envs,
Java process consist single ...
0
votes
1answer
204 views
Solaris : TOP command, RES mem not coing down ( java program )
I am running load through my java program and analyzing memory consumption through jconsole and top command.
"uname -a" machine on which i am working is :
SunOS 5.10 Generic_142909-17 sun4v sparc ...
1
vote
1answer
154 views
How to access file system of windows from war solaris server?
I need to access file system or path a txt file of windows from solaris server. I have a deployment .war into server weblogic solaris, but I don't ability for get out txt file from server to client, ...
0
votes
2answers
277 views
How to collect directory listing along with each file CRC checksum?
I use the following command to get dir listing in nix(Linux, AIX, Sunos, HPUX) platforms
Command
ls -latr
Ouput
drwxr-xr-x 2 ricky support 4096 Aug 29 11:59 lib
-rwxrwxrwx 1 ricky support ...
4
votes
2answers
2k views
How to reduce JVM virtual memory usage?
I have a Java program to run on Solaris 10 X86 with 2GB physical memory and 2GB swap.
The program runs fine in Linux 64-bit, it consumes only about 450MB memory.
However when it runs in Solaris, it ...
0
votes
1answer
611 views
JAVA_HOME in Solaris sparcv9
I am trying to install a java based application on Solaris 10 (Sparc) which is requesting for the JAVA_HOME path. I noticed that the files in JAVA_HOME for Solaris Sparc varies from Solaris Intel. ...
1
vote
1answer
283 views
How to connect to Oracle DB in Solaris OS using JDBC?
I'm trying to write a java code to connect to an Oracle9i Enterprise Edition Release 9.2.0.4.0. My machine is windows XP. The Oracle DB OS is Solaris 8. What I've done currently are:
...
0
votes
1answer
191 views
How to add library/jar files in java application when deployed in solaris server?
I have developed a java application which run's perfectly in local server. But When I upload it on a solaris server it gives the error were not found where indicated: lib/ojdbc6.jar lib/jstl-1.2.jar ...
0
votes
1answer
299 views
javac: file not found in Solaris
I want to run javac to compile muiltiple files in a Solaris zone and I can do it manually but my code below isn't working:
try {
File directory = new File(dir);
ProcessBuilder builder ...
0
votes
0answers
53 views
Application migration from iPLANET server to IBM WebSphere 6.1 server
We have a web application which runs on iPLANET aplication server 6.0 on Solaris 8. We need to migrate that application from iPLANET to IBM WebSphere server on Solaris 9/10. Did anybody have some ...
0
votes
2answers
252 views
How to profile swap space with JConsole
I've got a Java web app (WAR) deployed to Tomcat on a remote Solaris machine that is throwing IOExceptions claiming "Not enough space". After spending several days painfully researching the issue, I ...
0
votes
1answer
58 views
Solaris Dependency Walker?
Is there a Dependency Walker sort of tool in Solaris.
My objective is to verify these:-
From Java native(c++) function invocation happens?
From Java all parameter passed is received at native(c++) ...
1
vote
0answers
331 views
Installation of java 1.6.31 on a sun solaris 8
I have installed java 1.6.0.31 on a Solaris 8 Sparc but when I enter the command :
Ingres > java -jar Monitor.jar c
Exception in thread "main" java.lang.StackOverflowError
at ...
0
votes
1answer
133 views
How to get back focus on my Swing Java GUI running on a Solaris machine?
Hi guys i am working on a java swings GUI on the Solaris platform, I want my application to have the focus at all times and change only when I click a button I am having to do it for a reqirement ...
