Jump to content

Search the Community

Showing results for tags 'java'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General Discussion
    • Website Management and Coding
    • Technology and the Internet
    • Philosophy, Politics, and Science
    • Art and Entertainment
    • Other Discussion
  • HelioHost
    • Questions
    • Customer Service
    • How You Can Help
  • HelioNet
    • News
    • Contact HelioNet

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

  1. Where To Put Java Package In Public Html Directory? so that all jsp pages can successfully import package?
  2. I see that my request for Java access did not happen, although many later requests were fulfilled. This is not a complaint, just a concern. Was my request for Java in some way incorrect? I joined Helio for the expressed purpose of using JSP, so that feature is important to me. So, if there was something else I need to do, I would be more than happy to do that. And thank you all for such a great hosting service. Jack (jackfm)
  3. I requested Java and it was activated (http://www.helionet.org/index/topic/14205-request-for-java-rdipippo/page__hl__rdipippo__fromsearch__1) I can't get JSPs to work. in my public_html directory I have a file named test.jsp with this content: <%@ page contentType="text/html; charset=ISO-8859-1"%> <html> <body> Hello jsp world! The time is now <%= new java.util.Date() %> </body> </html> When I view the page in a browser, the jsp tags are shown instead of being interpreted. I've also tried putting the file in the cgi-bin directory with the same result. Also, in my control panel, there is still an icon labeled "Request java". Does this indicate something is wrong or is this expected? Thanks, Rdipippo
  4. Hello everybody I made a web service self contained in a runnable jar. I would like to run it as test on jonny server. I made a chron job invoking the jar located in a directory under home/anton1o. It is scheduled for today at 16 and 5 minutes. I need a java request for that? Moreover the jar is made by specifing a port to listen for the web service. There are some blocked ports? Thanks for help
  5. Hello, I've been trying to test a grails app... but I don't know if it's going to work. Grails is a Java framework based on J2EE and Spring. I uploaded the war, but nothing happened, then i tried to upload the files with the same luck as before... the grails site says I can put the war file in any J2EE container (tomcat, glassfish, etc...) and it should work. maybe the public_html folder is not a container? Any (relevant) thoughts, questions, tips, etc will be appreciated. Thanks Diego
  6. Hello, I have an account on Jhonny with java enabled. JSP is working fine but Servlets just won't work. I tried the most basic class I could find: import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class HelloWorld extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { res.setContentType("text/html"); PrintWriter out = res.getWriter(); out.println("<HTML>"); out.println("<HEAD><TITLE>Hello World</TITLE></HEAD>"); out.println("<BODY>"); out.println("<H1>Hello World</H1>"); out.println("Today is: " + (new java.util.Date().toString()) ); out.println("</BODY></HTML>"); } // doGet } // HelloWorld And compiled it. I uploaded it to /public_html/WebContent/WEB-INF/classes and added the needed info to web.xml. I could not reach the servlet HelloWorld. I uploaded it to /public_html/WEB-INF/classes and added the needed info to web.xml. I still could not reach the servlet HelloWorld. I tried any combination I could think of in order to get this servlet to work, but nothing did the trick. If anyone knows or has been able to activate the servlets, here are my three questions: Where did you put the compiled servlet class? Where did you put the "web.xml" (I know, in the WEB-INF, but there are two)? How did you do the servlet mapping in the "web.xml" (using the .class in the path or not)? What URL did you use to reach the servlet (with starting from the <name>.heliohost.org/)? I tried any combination I could think of but nothing did the trick. Thank
  7. Hi, I've already asked for enable java on my domain, it seems that the TomCat is working, but i tried to upload one jsp page to test but when I try to access the page I'm always redirect to the page with this message: "If you're seeing this, you've successfully installed Tomcat. Congratulations!", and if I try to put the direct link for some other jsp page I got this error: The requested resource is not available. There is any configuration I have to do?
  8. I was looking for a way to create a pop-up window at the center of the screen while the background is dimmed but the most that I got from my search is a new window less some bars and centered on the screen. What I wanted was something like the sign-in pop-up of Helionet. Could anyone help me with the codes? Thanks in advance
  9. how do we run a servelt in cpannel ??
×
×
  • Create New...