Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 6 of 6

Thread: HTTP Status 500

  1. #1
    Junior Member
    Join Date
    Jan 2012
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default HTTP Status 500

    HTTP Status 500 -

    type Exception report

    message

    description The server encountered an internal error () that prevented it from fulfilling this request.

    exception

    java.lang.IllegalArgumentException: Could not get next sequenced ID for sequence name: Visitor
    org.ofbiz.entity.GenericDelegator.getNextSeqId(Gen ericDelegator.java:2916)
    org.ofbiz.entity.GenericDelegator.getNextSeqId(Gen ericDelegator.java:2905)
    org.ofbiz.entity.GenericEntity.setNextSeqId(Generi cEntity.java:571)
    org.ofbiz.entity.GenericDelegator.createSetNextSeq Id(GenericDelegator.java:755)
    org.ofbiz.webapp.stats.VisitHandler.getVisitor(Vis itHandler.java:239)
    org.ofbiz.webapp.control.ControlServlet.doGet(Cont rolServlet.java:209)
    javax.servlet.http.HttpServlet.service(HttpServlet .java:617)
    javax.servlet.http.HttpServlet.service(HttpServlet .java:717)
    org.ofbiz.webapp.control.ContextFilter.doFilter(Co ntextFilter.java:270)
    note The full stack trace of the root cause is available in the Apache Tomcat/6.0.26 logs.

    Apache Tomcat/6.0.26


  2. #2
    Think of me.... Mr.777's Avatar
    Join Date
    Mar 2011
    Location
    Pakistan
    Posts
    1,136
    My Mood
    Grumpy
    Thanks
    20
    Thanked 82 Times in 78 Posts
    Blog Entries
    1

    Default Re: HTTP Status 500

    Quote Originally Posted by giri121 View Post
    HTTP Status 500 -

    type Exception report

    message

    description The server encountered an internal error () that prevented it from fulfilling this request.

    exception

    java.lang.IllegalArgumentException: Could not get next sequenced ID for sequence name: Visitor
    org.ofbiz.entity.GenericDelegator.getNextSeqId(Gen ericDelegator.java:2916)
    org.ofbiz.entity.GenericDelegator.getNextSeqId(Gen ericDelegator.java:2905)
    org.ofbiz.entity.GenericEntity.setNextSeqId(Generi cEntity.java:571)
    org.ofbiz.entity.GenericDelegator.createSetNextSeq Id(GenericDelegator.java:755)
    org.ofbiz.webapp.stats.VisitHandler.getVisitor(Vis itHandler.java:239)
    org.ofbiz.webapp.control.ControlServlet.doGet(Cont rolServlet.java:209)
    javax.servlet.http.HttpServlet.service(HttpServlet .java:617)
    javax.servlet.http.HttpServlet.service(HttpServlet .java:717)
    org.ofbiz.webapp.control.ContextFilter.doFilter(Co ntextFilter.java:270)
    note The full stack trace of the root cause is available in the Apache Tomcat/6.0.26 logs.

    Apache Tomcat/6.0.26
    Welcome to Java Programming Forums. If you bothered to read the Forums Rules, you will definitely never posted like this.
    Well, what's the problem you are facing? How you are getting this exception?

  3. #3
    Junior Member
    Join Date
    Jan 2012
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: HTTP Status 500

    I downloaded the opentaps application from my server and i changed the settings according to my localhost..after changing and i run the application in command prompt and in browser i typed: http://localhost:8080/opentaps/ wen i hit enter i got this error.

  4. #4
    Think of me.... Mr.777's Avatar
    Join Date
    Mar 2011
    Location
    Pakistan
    Posts
    1,136
    My Mood
    Grumpy
    Thanks
    20
    Thanked 82 Times in 78 Posts
    Blog Entries
    1

    Default Re: HTTP Status 500

    The full stack trace of the root cause is available in the Apache Tomcat/6.0.26 logs.
    Paste the full stack trace from log file here.

  5. #5
    Junior Member
    Join Date
    Apr 2012
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: HTTP Status 500

    Any client (e.g. your Web browser or our CheckUpDown robot) goes through the following cycle when it communicates with the Web server:

    Obtain an IP address from the IP name of the site (the site URL without the leading 'http://'). This lookup (conversion of IP name to IP address) is provided by domain name servers (DNSs).
    Open an IP socket connection to that IP address.
    Write an HTTP data stream through that socket.
    Receive an HTTP data stream back from the Web server in response. This data stream contains status codes whose values are determined by the HTTP protocol. Parse this data stream for status codes and other useful information.

  6. #6
    Think of me.... Mr.777's Avatar
    Join Date
    Mar 2011
    Location
    Pakistan
    Posts
    1,136
    My Mood
    Grumpy
    Thanks
    20
    Thanked 82 Times in 78 Posts
    Blog Entries
    1

    Default Re: HTTP Status 500

    @Raja1: May i know the reason to bump this old thread after such a long time?
    Anyone who stops learning is old, whether at twenty or eighty. Anyone who keeps learning stays young. The greatest thing in life is to keep your mind young.

    - Henry Ford

Similar Threads

  1. HTTP Status 404-The requested resource is not available.
    By DeViLhUnTeR in forum Java Servlet
    Replies: 2
    Last Post: March 7th, 2011, 01:26 PM
  2. HTTP Status 404
    By Star_pro in forum Java Servlet
    Replies: 0
    Last Post: February 28th, 2011, 02:17 PM
  3. Checking the Status of a checkbox
    By michaelz in forum Object Oriented Programming
    Replies: 16
    Last Post: August 9th, 2010, 06:44 AM
  4. HTTP Status 500 -
    By mqt in forum What's Wrong With My Code?
    Replies: 3
    Last Post: April 6th, 2010, 01:09 AM
  5. Need java code to know the browser status
    By newnewgen in forum Java Theory & Questions
    Replies: 2
    Last Post: January 8th, 2010, 11:39 PM