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: *

  • Users: LAMski
  • Order by date
  1. LAMski

    APPLET PLUGIN

    I think you need to install the jdk141x since the jdk installer sets up your browsers as well for running applets. You can also check that IE is using the sun jvm as well (look under tools->options).
  2. LAMski

    What causes a bean not bound error:

    You can open the jboss admin page then click on the jndi link. Then click on the list method. This should give you a list of all avaliable beans referenceable via jndi.
  3. LAMski

    JAVA IDE

    You can download the java SDK + netbeans bundle in the download options for the lates J2SE SDK downloads. Eclipse and Netbeans are decent enough for most types of development. And they're free.
  4. LAMski

    Progression from JSP to J2EE?

    fedtrain: The thing to take note of is that even if J2EE contains a lot of technologies (EJB, JSP, Servlets, JNDI, etc.), you don't have to use all of them to take advantage of J2EE. You can do your project in phases to coincide with you and your team's growing familiarity with JSP/servlet...
  5. LAMski

    J2EE and WebStart

    Forgot to mention the local references... It depends on what EJB spec you're using. EJB 1.0 doesn't have local references. But who still uses EJB 1.0 now anyway? [pipe]
  6. LAMski

    WebStart security issue

    You need to sign ALL your jar files. Even the libraries that your application uses. The webstart-ed application basically has a more lenient security restrictions than an applet. You can consult the webstart documentation for more info. If you've downloaded the J2SE documentation, it should be...
  7. LAMski

    Calling an EJB from another EJB

    You basically need to make sure that JNDI is properly configured on both servers. You need to make sure that the server names and the ports are that your pass to the jndi conext are correct. If not, your server applications won't be able to look up the ejbs from each other.
  8. LAMski

    J2EE and WebStart

    The standard way of accessing EJBs is through JNDI regardless whether your client is a standalone java application or a lightweight JSP web client. JSPs are generally faster since it just outputs text that's rendered by your browser. Standalone java apps are a bit slower when loading for the...
  9. LAMski

    What is a .java~ file?

    The Netbeans IDE makes *.*~ copies of files that you edit on it. It can be safely ignored or deleted.
  10. LAMski

    StringReader instead of StringBufferInputStream

    You can use an InputSource since it can be constructed from a Reader or an InputStream. There is a method: SAXParser.parse(InputSource, HandlerXXX); Hope this helps.
  11. LAMski

    Creating A DataSource From A Stream

    If you've solved the problem using Chad's solution above or by some other route then ignore this... Here's my 2 cents: You probably need to follow the JMF's package and naming conventions. The Manager looks for processors in: <content package-prefix>.media.processor.<content-type>.Handler...

Part and Inventory Search

Back
Top