Authenticate via HTTP protocol

I have idea to make authenticate via HTTP protocol

for example

I define following URL to recieve id and password via query string

http://localhost:8080/auth.jsp?id=name&pwd=password

Client (Window application maybe Java or other language) call this url to authentication.

After recieve request from client, Server will do some step to authen (check with database or whatever)

and send response back to client. Client use result response to determine authenticate is pass or not.

I test with this concept with JSP/Serlvet and Java app, Seem it work

but I concern with some reason following

1. Performance issue becuase authenticate take by HTTP on port 8080

2. Concurrent

3. This is weird authenticate process?

Please suggest me

Thank you

[827 byte] By [mistwalkera] at [2007-11-27 1:24:50]
# 1

> 1. Performance issue becuase authenticate take by HTTP on port 8080

HTTP can use any port, the default is 80. Are you saying that you believe it is slower when it uses a non-standard port? What gave you that idea?

> 2. Concurrent

What?

> 3. This is weird authenticate process?

Not particularly. It would be more common to use the POST method rather than the GET method to transmit passwords, and if you cared at all about security you would be using SSL, but it isn't weird.

> Please suggest me

I don't see any problems here.

DrClapa at 2007-7-12 0:16:39 > top of Java-index,Java Essentials,Java Programming...
# 2
Sorry, Maybe I describe not clearI concern about this authenticate method becausegenerally it do by other protocol or use socket.That why I talking about performance, concurrent user.Did u ever see authenticate via http before?Thank you,
mistwalkera at 2007-7-12 0:16:39 > top of Java-index,Java Essentials,Java Programming...