Search:

Type: Posts; User: rameshiit19

Page 1 of 2 1 2

Search: Search took 0.19 seconds.

  1. How to determine minimum bandwidth required for a J2EE Application ?

    I want to determine the minimum bandwidth required for my J2EE Application (Struts & Hibernate) . I have deployed it in JBoss Server . I am running / accessing the application in a distributed...
  2. Unable hit J2EE Application Hosted in My JBoss Server

    Hi,

    I have hosted my J2EE application in my JBoss Server (Consider IP as , 172.20.91.64) . I am unable to hit it from a particular remote PC . When I hit http://172.20.91.64:8080/Welcome.jsp ,...
  3. Replies
    1
    Views
    1,918

    Problem with Session maintenance in IE 8

    I am creating a new Session in LoginAction.java while the user logs in as ,


    HttpSession session = request.getSession(true);

    Some values are being set in the session from my Login class as,
    ...
  4. Re: Accessing Remote PC in a different network with IP Address & Gateway

    :(
    I will try the same in some other PC where the firewall is not blocking it . Thanks a lot for your detailed explanations . :)
  5. Re: Accessing Remote PC in a different network with IP Address & Gateway

    Thanks for the detailed reply.

    I can access the site whatismyipaddress.com through my browser and I am unable to ping the same with the java program (PingIP) .My user account does not have...
  6. Jasper Reports - Error exporting the text file

    I have tried to export my content to the text file using Jasper but only a empty text file is getting generated. All other formats such as pdf,xls,csv & rtf are getting generated properly. My code is...
  7. Re: Accessing Remote PC in a different network with IP Address & Gateway

    I have tried pinging the Public IP , Localhost (127.0.0.1) and whats my IP Address but I am getting errors . I have added e.printStackTrace(); in catch block of the Program provided by you. I have...
  8. Re: Accessing Remote PC in a different network with IP Address & Gateway

    Thank you for the detailed explanation .I have tried to ping my own Public IP address shown in What Is My IP Address? Lookup IP, Hide IP, Change IP, Trace IP and more... but I am getting error as...
  9. Re: Accessing Remote PC in a different network with IP Address & Gateway

    I have referred Sourparno'd thread RMI Interface server. It was very useful . I am able to find out available sockets in same LAN but I am unable to ping the IP of remote PC , which is there in...
  10. Re: Accessing Remote PC in a different network with IP Address & Gateway

    I meant Remote PC as PC which is in some other network. Both PCs are connected only through internet and I want to know whether it is possible to access that remote PC & make some processes / tasks...
  11. Accessing Remote PC in a different network with IP Address & Gateway

    Is it possible to access remote PC in a different network with my Java Application ? How can I achieve the same ? Please give me some suggestions.

    Thanks !
  12. Replies
    1
    Views
    2,050

    SCJP 1.6 Dumps

    Hi,
    Can any one please tell me where can I get SCJP 1.6 Dumps ?? Will the dumps change year by year ?

    Please help !

    Thanks !!
  13. Replies
    5
    Views
    1,358

    Re: Time taken for execution is more

    You can remove jxl package and the associated lines because I have added those for future use to write the filetypes to excel file !






    Thanks !
  14. Replies
    5
    Views
    1,358

    Time taken for execution is more

    Hi,
    I have written the following code to extract the names of directories/files & their extensions to text files.I am using it to find out the number of files/directories in my eclipse workspace...
  15. Re: Problem Running J2EE Application - JRE Version Error

    Thanks for the reply !

    I am using jboss-4.0.5 server . I have installed jdk1.6.0_22 now and my error message is getting displayed as ,
  16. Problem Running J2EE Application - JRE Version Error

    When I run my Java application (Eclipse) , I am getting error in Java Console as follows :



    I tried Googling for the solution , it's mentioned like JRE Version error.


    My Command prompt...
  17. Replies
    8
    Views
    7,991

    Re: Error while running Applet

    Finally I have solved it ...

    I have added the following line in Java/jre6/lib/security/Java.policy , by specifying the folder where the JAR and DLL exists ...

    grant codeBase "file:/C:/PATH/*"...
  18. Re: Accessing an external JAR file using Applet

    That was the requirement I got :( Not they have accepted in making two independent jars and is working fine . Thanks !
  19. Replies
    8
    Views
    7,991

    Re: Error while running Applet

    Sample class is simply a dependant class of SampleApplet class and returns some string from a function !
  20. Replies
    8
    Views
    7,991

    Re: Error while running Applet

    / means that the dependant jar is in a different directory.I have read it in a forum and have implemented it here !
  21. Replies
    8
    Views
    7,991

    Re: Error while running Applet

    This is my exact problem.I have tried the same with the sample code as Posted above.

    We are trying to access JNative.jar from our TestApplet.jar. We have downloaded JNative.jar form some site....
  22. Replies
    8
    Views
    7,991

    Error while running Applet

    When ever I run my Applet , I am getting error as ,


    SampleApplet.Jar contains,

    SampleApplet.java

    Manifest.MF

    Sample.jar contains,
  23. Replies
    4
    Views
    3,670

    Re: Running an Applet With JAR file

    Found the bug.It's in manifest file.

    Specified Class-Path: C:/Sample.jar as . It's working fine now.

    Thanks !
  24. Replies
    4
    Views
    3,670

    Re: Running an Applet With JAR file

    I have modified my HTML code as follows,


    <html>
    <head>
    <title>Sample Applet</title>
    </head>
    <body>
    <applet name="sampleapplet" code="SampleApplet" archive="SampleApplet.jar" height="80"...
  25. Replies
    4
    Views
    3,670

    Running an Applet With JAR file

    Hi,
    I have created an Applet as follows and made it into a jar file (SampleApplet.jar).

    import java.applet.Applet;
    import java.awt.Graphics;
    public class SampleApplet extends Applet
    {
    public...
Results 1 to 25 of 32
Page 1 of 2 1 2