EJB / EE :: Deploy Slow Using 3.1 And JPA In Rational Application Developer?

May 13, 2014

I have a large scale enterprise application (5 modules) project using RAD, WAS v7, Java EE 6 (EJB 3.1, JPA), ZK framework.

The project is using RAD as IDE. The problem is that it takes too long to deploy (more than 5 min) when changes are made to the EJB's (although the changes are minor in only one file) but when changes are made to zk framework (the web & presentation layer), it is fast to deploy.

Don't know what cause the problem. Is it because of EJB 3.1/ JPA or RAD/ WAS?

Is it happening in other IDE or applcation server also?

View Replies


ADVERTISEMENT

Servlets :: How To Deploy One Web Application On Multiple Server

Mar 14, 2014

I would like to know how we can deploy one Web application on multiple server to share the work between them? My first thought is that we just deploy the same war file on different servers that connect to the same database. However, what will happen when a user enter something like [URL]? How can multiple servers share the same domain name and how the requests from different users are redirected to these different server?

View Replies View Related

Deploy Android Application That Connects To Java Server

Aug 25, 2014

I am trying to deploy an android application that connects to a java server. I am doing an apointments system, so the client asks for an apointments with a specific office/doctor. What i did, was to create a java server, using object for the offices, and via sockets it communicates with the android client.

The problem is that when i tried to use my (very demo still) app on my phone and sent it to some friends for testing, i coulnt find a way to have my server on the internet.

So I changed to (or trying to) servlet. But, how to do a client server application with servlets. All tutorials i have seen are more on website clients, but thats not what i need.

View Replies View Related

Enterprise JavaBeans :: Deploy Sample Application To WebLogic Server

Jul 5, 2014

Deploy sample J2EE app to WebLogic server

A getting started app is fine, need to understand of deploying a sample application to WebLogic server. Any particular configuration during WLS install?

View Replies View Related

How To Deploy Java Swing Application For Windows Without Revealing Source Code

Feb 21, 2015

How to deploy Java Swing application as windows software. I have tried the following to do this :

I have created jar file for my project after that created exe file using Launch4j and Advanced installer, exe file produced by both software are working fine but those are placing the jar file inside that exe file, My problem is any one who has that exe file can extract and view the source code by decompiling java class file. Is there any way to deploy java application without decompiling the code.

View Replies View Related

Java Web Start - Deploy Application Including Required Folders And Files

May 30, 2014

I developed an application that is accessing some property files. The condition was that the user should be able to modify the content or parameters of those property file.How can I distribute the application using Java web start that also includes those property file in the client side?

View Replies View Related

Rational Class Code Reducing Fractions To GCD

Oct 29, 2014

// Lab09ast.java

import java.util.Scanner;
public class Lab9a {
static int ReducedNum, ReducedDen; // numerator and denominator of the rational number
public static void main (String args[]) {
enterData();
Rational r = new Rational(ReducedNum,ReducedDen);
r.displayData();

[Code] .....

The code already displays a fraction that is entered by the user in decimal format but I also need to reduce the fraction using gfc. I have tried a lot of different things, but it will only display null or infinity/infinity.

View Replies View Related

Rational Numbers - Class Not Printing Properly

Nov 10, 2014

I am creating a program for rational numbers but it does not work properly when I enter a negative number in the denominator. It works with every other number.

import java.io.*;
import java.util.Scanner;
public class RationalNumber {
private int numerator;
private int denominator;

[Code] ....

View Replies View Related

Rational Number Class - Java Client Code For Testing

Mar 7, 2014

We are making a Rational Number class. After that we must create client code to test it out. The instructions-

•Create 3 instances of RationalNumber. Remember every time you say “new” you are creating an instance.
oOne of them should use the default constructor
oOne of them should use the constructor with one parameter
oOne of them should use the concstructor with two parameters.
•Print out the int and double value of each Rational Number
•Print out the sum (as a double) of all the numbers.
•Print out the sum (as an int) of all the numbers.

My rational number class :

public class RationalNumber{
private int numerator;
private int denominator;
public RationalNumber()
{
numerator =1;
denominator = 4;

[Code] .....

View Replies View Related

Applets :: Loading Is Too Slow

Jan 31, 2014

We are using an applet in our web application. The applet of our application is dependent on bouncycastle jar,bcprov-jdk15.jar and few other jar's whose size comes around 4 mb. When using the appliaction on jre7, the applet is taking too long time to load than usual time. Is there any way to place these jar's in client machine? Will it improve the performance? Is there any other way to reduce the loading time of applet apart from placing jars in client machine?

View Replies View Related

X3D File Parser Is Way Too Slow

Nov 9, 2014

I've recently tried to write a file parser for the .x3d file type as it's one of the few 3d model types I can find written in easy to understand (and interpret) English. While it technically does work (or what I have so far), the issue is that it takes far too long (17 minutes) to parse just a part of the file (the vertices of the model).This is the code for the object itself:

import java.io.*;
import com.sun.j3d.utils.geometry.*;
import javax.media.j3d.*;
import javax.vecmath.*;
public class ModelLoader {
BranchGroup object = new BranchGroup();
BufferedReader reader;
String line = "start";

[code]....

Anyway, here are some observations I've made about the file:

-The line in the file itself that contains all the vertices is all one giant string according to the file.
-There are apparently 18,000 vertices in all (according to the command at line 18).
-Unless Netbeans automatically terminates infinite loops after a certain amount of time, it is most definitely NOT an infinite loop as I have seen the program terminate on its own (after 17 minutes, though).

I had a theory that maybe organizing each vertex into its own line and then having the program switch to the next line when it's done reading that vertex might make the program run faster, but I'm not sure why it would, so I thought I'd come here in case that theory turned out to be a dead end.

View Replies View Related

Class Is Moving Extremely Slow

Dec 8, 2014

I'm currently taking a computer science class but the class is moving extremely slow and I'm not learning much, so I've started to program on my own. The most recent project I've done is a tic tac toe game, and I'm looking for something else to do now. I can do with an increased difficulty from this project, but not extremely difficult.

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.lang.reflect.Array;

[code]...

View Replies View Related

I/O / Streams :: Java Reading And Output Is Too Slow

Sep 17, 2014

I have a code below that is reading large image size and writing them to file however the process is too slow. how can i refine this code in such a way that it will work faster?

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.HttpURLConnection;

[code]....

View Replies View Related

I/O / Streams :: Java Reading And Output Too Slow

Sep 17, 2014

I have a code below that is reading large image size and writing them to file however the process is too slow. how can i refine this code in such a way that it will work faster?

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.HttpURLConnection;

[code]...

View Replies View Related

Java Streaming Project Getting Slow After Hosting

May 20, 2014

I am working on a Java Streaming Networking ( Client Serve ) project , among remote client can:

1 ) chat,

2 ) Share files,

3 ) Share Screen live streaming,

4 ) Access the remote system.

All are working well faster & live on networking. But if i host on the Hosting server the all process are working but in deadly slow streaming is not live..,

View Replies View Related

JavaFX 2.0 :: Slow GUI Response When First Displaying Controls

Jun 15, 2015

I have been using JavaFX for some time now and have encountered many performance issues, mainly with the initial display of GUI elements.  For example, a simple stage with a table view (with about 10 columns) and chart takes about 5 seconds to display.  A color picker will take about 3 seconds from the time I click the control to when it displays the pallet.  This only happens when the controls are first displayed.  This can't be right.  I have searched and none seems to have a similar problem so I thought I would ask here just to make sure.  Here is a sample Hello world that shows the problem with the color picker (takes ~ 3 seconds to show pallet when clicked). 
 
public class HelloWorld extends Application
{
    @Override
    public void start(Stage primaryStage) {
        StackPane root = new StackPane();
        ColorPicker cp = new ColorPicker();
        root.getChildren().add(cp);

[Code] .....

View Replies View Related

Best Way To Deploy App With HTML And Images Files?

Feb 3, 2015

You basically paste a url Into a textarea and choose an Image for the link.The Image link Is then appended to a html file.

I'd like to put everything In a single jar file but I'm not sure what to do so the user can access the html file.

The only two options I can think of are:

a) create the html document on the fly when the jar runs.

b) Is to run a bat command when the jar Is executed that will extract the jar files.

The user can either choose from a number of Images In the logos folder for common websites or add new Images. Since the folder isn't empty , It seems like extracting the jar files Is necessary.

View Replies View Related

Applets :: Signed Jar - Deploy In ADF Project

May 26, 2014

I bought a certificate to sign my jars, if a deploy my applet in a html file with out framework, just html and js, the works great, I can call from javascript all public methods from the applet. The real problem is when I try to deploy the same signed jar on a adf project in Jdeveloper. Does not work at all and java execute some warnings and later applet is block, the message say something like "exist some jars signed and not signed" But I am sure that all jars are signed...

I got this:
applet console:
image

All jars are signed, dependencies too.

View Replies View Related

JSP :: Develop And Deploy A Java Project On Web

Mar 6, 2015

I want to develop a website using jsp and servlets.but i have a few questions:

1: I want to use oracle for database, can i use express edition?
2: After writing the code how do i transfer the code to the client
3: How to deploy the website on internet

I am doing for first time

View Replies View Related

JavaFX 2.0 :: Slow Performance On Linux For Visual Effects

Mar 6, 2015

Visual effects such as Transitions perform very poor on linux "wheezy" compared to windows. I noticed this on different PC's, checked for Java7 and Java8. If the UI contains many objects then the transition sometimes does not even appear.
 
I do not think this is graphic card related since videos play quite ok.
 
I use the default ATI driver without Xorg.conf file and  installed the xcompmgr
 
and tried several options, such as
 
Option "Composite" "Enable"
or
Option        "backingstore" "true"   
Option        "AllowGLXWithComposite" "true"
 
This did not speed up things, are there other things that I could do to improve the performance ?

View Replies View Related

Networking :: Socket Creation Too Slow Versus URLConnection

Oct 27, 2014

I'm trying to write a transparent proxy like polipo. Polipo is written in C and I want to have the same result in java.
 
A simple program that can filter/monitor all connections created and closed by the browser.
 
To do so, I've chosen to work with sockets, because that's the only way i know to read and write raw data to and from the browser in a completely transparent way.
 
In this moment my code reads and writes every couple of request/response but I've noticed profiling it that the time needed to create the socket is a bottleneck.

Using URLConnection to create the same connection I need much less time than sockets.
 
When socket creation implies 50ms URLConnection implies only 1ms.

View Replies View Related

Servlets :: Not Able To Deploy Project Due To Listener Class

Aug 1, 2014

I have data base connection which i have configured via a listener class i configured properly in DD but still i am not able to deploy the project and server log show that startL.java listener class was not found why is this so as config is proper with the name

here is my server log

[2014-08-01T20:53:59.112+0530] [glassfish 4.0] [SEVERE] [] [javax.enterprise.system.core] [tid: _ThreadID=34 _ThreadName=admin-listener(3)] [timeMillis: 1406906639112] [levelValue: 1000] [[
Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: contpack.startL.java]]

**if i remove the Listener tag then app runs fine**

View Replies View Related

EJB / EE :: Not Able To Deploy MDB - Services With Missing / Unavailable Dependencies

May 4, 2014

I am very new to EJB. Started with Session bean demo which was working fine. (created a jar file which had EJB and a WAR file which had servlet). But face some issues when created MDB . (For that also created a JAR file which had EJB and a WAR file which had servlet).

I have used @JMSDestinationDefinitions({

@JMSDestinationDefinition(name = "java:global/jms/mySalutationQueue", interfaceName = "javax.jms.Queue")
}) in servlet and @ActivationConfigProperty(propertyName = "destinationLookup", propertyValue = "java:global/jms/mySalutationQueue") in MDB. I hope that's fine.

I am using WildFly 8 application server in "standalone-full" mode. But while deploying it I got some errors of missing dependencies. Trace of my application server log is as follows:

09:00:28,511 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-4) JNDI bindings for session bean named Salutation in deployment unit deployment "SalutationProject.war" are as follows:

java:global/SalutationProject/Salutation!packt.Salutation
java:app/SalutationProject/Salutation!packt.Salutation
java:module/Salutation!packt.Salutation
java:global/SalutationProject/Salutation
java:app/SalutationProject/Salutation
java:module/Salutation

[Code] ....

This example is taken from the EJB 3.1 Cookbook's 1st Chapter. I have searched on [URL] .... but didnt get it. Have only used CDI annotations and no xml.

View Replies View Related

JavaFX 2.0 :: How To Deploy / Package Apps Nashorn Based

May 6, 2014

We can write JavaFX application in JavaScript using Nashorn Engine, but you have to run application with command line like:

> jjs app_all.js -fx

So I wont know how can I deploy application that let you click on and lunch application or make it self-contained application packaging using package tools of JDK 7 Update 6 or later.

View Replies View Related

Servlets :: Fetch Data From Backend (DB2) And Export To Excel - Slow File Download

Jan 31, 2014

Recently we got an issue about file download. We are using below code to fetch the data from backend(DB2) and export to excel.

Before Jan 15 it use to take 2 minutes to download the file (2 MB size). But now its taking half an hour to download.

response.setContentType("application/vnd.ms-excel");
response.setHeader("content-disposition","attachment; filename=Attendance_Report.xls");

We have restarted server, system but still problem exists. We found that there is no code level or data base level or network level issues.

Now we have to see server level issue. What are the factors which effects the file downloading at server level.
We are using websphere 6.1 ,java1.4

View Replies View Related

EJB / EE :: Convert Standalone Java Thread Application Into Web Application In Tomcat

Nov 17, 2014

convert or move standalone java thread application into Tomcat server container for accessing its JNDI services? Also is it possible to schedule this thread application in Tomcat server? is it possible to keep this app in tomcat as web application and schedule in window's scheduler.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved