Re: org.postgresql.util.PSQLException: Protocol error. Session setup failed - Mailing list pgsql-jdbc

From Mark Kirkwood
Subject Re: org.postgresql.util.PSQLException: Protocol error. Session setup failed
Date
Msg-id 4B9801A0.8080607@catalyst.net.nz
Whole thread Raw
In response to Re: org.postgresql.util.PSQLException: Protocol error. Session setup failed  (Major Services <services.major@gmail.com>)
Responses Re: org.postgresql.util.PSQLException: Protocol error. Session setup failed  (Mark Kirkwood <mark.kirkwood@catalyst.net.nz>)
List pgsql-jdbc
Oh dear - probably missing imports or something in your code.

Maybe try running a standalone java program from the command line (see
below), as thats what I used to check this:

$ export CLASSPAT=path-to-your-postgresql.jar:.
$ java test1

---- test1.java ---

import java.sql.*;
import java.util.*;

public class test1 {
public static void main( String args[] ) throws Exception {

    Class.forName("org.postgresql.Driver");
    String url =
"jdbc:postgresql://localhost:5432/postgres?user=postgres&password=major";

    Properties props = new Properties();
    props.setProperty("loglevel","2");

    Connection conn = DriverManager.getConnection(url, props);
    System.out.println( "Connected to: " + url  );

    conn.close ();
  }
}



Major Services wrote:
> Hi,
> Following is the error report:
>
> org.apache.jasper.JasperException: Unable to compile class for JSP:
>
> An error occurred at line: 13 in the jsp file: /jsp/pgtest.jsp
> Properties cannot be resolved to a type
>
> 10: {
> 11: Class.forName("org.postgresql.Driver");
> 12:  String url = "jdbc:postgresql://localhost:5432/postgres?user=postgres&password=major";
> 13:  Properties props = new Properties();
> 14:  props.setProperty("loglevel","2");
>
> 15:  Connection conn = DriverManager.getConnection(url, props);
> 16: }
>


pgsql-jdbc by date:

Previous
From: Maciek Sakrejda
Date:
Subject: Re: org.postgresql.util.PSQLException: Protocol error. Session setup failed
Next
From: Mark Kirkwood
Date:
Subject: Re: org.postgresql.util.PSQLException: Protocol error. Session setup failed