Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. henpat123

    Q on Split-directory-structure..

    Hi Sedj, I am using weblogic 8.1. Everytime you make a change to a HTML file or a JSP file..we need to rebuild the entire web module , build the ear file and then redeploy. To avoid rebuilding and redeploying...one can use a split-directory structure..but I wasn't sure that applies to JSP pages...
  2. henpat123

    Q on Split-directory-structure..

    Hi, In a split directory structure , can we make changes to the JSP pages and test the app without having to build and re-deploy? henry
  3. henpat123

    converting dataset to an xml.in java

    Hi, is there a way to convert a DataSet/ResultSet from the database to an XML. I microsoft's ADO recordset there is a Recordset method that does it for us....was wondering if there is anything like that in java? henry
  4. henpat123

    XML parser in java

    Hi, By Default what XML parser comes with Java2 SDK? And what is the jar file name/location to set it in the CLASSPATH? henry
  5. henpat123

    specifying relative path of html page from servlet..

    Hi, I have a servlet that needs to redirect the request to a login page in the html directory. My directory structure is lime this: build\html build\WEB-INF\classes my servlets are in the classes directory under web-inf and the login page is in the html directory. I created a .ear file from...
  6. henpat123

    Getting Error while deploying simple servlet

    Hi, I am new to weblogic 8.1.I wrote a simple servlet and followed all the instruction to create a .war files and web.xml and weblogic.xml. When I am trying to deploy the Web Application module from the Weblogic 8.1 console, I select the WAR file, and I get this Error...
  7. henpat123

    Servlet basics

    Sorry, I realized that I first posted it in the Java Forum and then later found that there is one for Servlet/JSP..so posted it here again. henry
  8. henpat123

    Servlet basics

    HI, I am new to Java and I am doing my First Servelt. In the init function in a Servlet defined as below: public void init(ServletConfig config) throws ServletException What exactly is the ServletConfig Object and what is it used for? Is there a External XML Configuration file from where this...
  9. henpat123

    My First Servlet....

    HI, I am new to Java and I am doing my First Servelt. In the init function in a Servlet defined as below: public void init(ServletConfig config) throws ServletException What exactly is the ServletConfig Object. Is there a External XML Configuration file from where this objet gets initialized...
  10. henpat123

    VB.net console application...

    Hi, I am new to VB.net . I just wanted to know why do we have a Console application? Where in real time is it used for? Can someone give a real-time application of console application. Henry
  11. henpat123

    deployment of RMI client...

    Maybe I don't know. But I guess my questions is if you have 100 client machines..how do we copy over these jar file (if that is the way..) and set up the client machines for classpath etc... Is there a Easy way to install these on the client machines? For Example, Microsoft has technology...
  12. henpat123

    deployment of RMI client...

    Hi, How do we deploy a RMI client...I mean after creating the stub class and the skeleton class (using rmic)...is there a standard way of deploying the client stub's to the client machines? henry
  13. henpat123

    diff between JNDI and RMI registry?

    Sedj, Here we are not comparing JNDI and RMI. We are comparing JNDI and rmiregistry...so don't they provide a similar service..like the ability to store named-object-instances..!! Correct me if I am wrong. Henry
  14. henpat123

    question on RMI..

    sedj, here is the entire context link from where I was reading.. http://www.cs.auc.dk/~kleist/Courses/ds-e01/Java_RMI_Tutorial/ can someone explain now why java.rmi.sever.UnicastRemoteObject is used for? henry
  15. henpat123

    diff between JNDI and RMI registry?

    Sedj, So sounds like both are primarily used for similar purposes..may be JNDI provides more services than just registry and lookups (like rmiregistry)? Did I understand right? henry
  16. henpat123

    diff between JNDI and RMI registry?

    Hi, Can someone tell me the dfference rmiregistry and jndi? henry
  17. henpat123

    question on RMI..

    Hi, I was reading about JAVA RMI Programming on the web and did not understand what the following statement means: "The only practical advantage of inheriting from java.rmi.sever.UnicastRemoteObject is that it will preserve the usual semantics of the methods hashCode(), equals() and toString()...
  18. henpat123

    EJB Server - EJB Container

    That's what I thought.... that they can be used both interchangeable...although I agree that a EJB Container lies within an EJB Server (per timw)...! And then I did talk about the EJB contract between the bean-developer and the EJB container per EJB specification that brings portablility of EJB...
  19. henpat123

    EJB Server - EJB Container

    Hi, Does anyboody know the difference between EJB Server and EJB Container...I was asked in one of the interview for Sr.Developer position, but I could not give a convincing answer? henry
  20. henpat123

    My First program in VB.net

    HI, I started my first VB.net program, by starting a Console Application.By Default it created a Module1.vb file and in the content editor there was a Module declared as follows: Module Module1 Sub Main() End Sub End Module I changed the name of the Module in the content Editor from Module1...

Part and Inventory Search

Back
Top