Re: how to create a file uploader that is not html-based or jsp-based

2010-03-31 Thread maikeru8
Thanks for replying. I have just implemented it successfully without the use of any plugin. I studied a few functions (that seemed necessary for me) from apache.commons.httpclient and com.oreilly.servlet and a few examples using both packages as well :) -- View this message in context:

how to implement login using httpclient?

2010-03-31 Thread maikeru8
I'm still a beginner with regards to Apache Commons, and I wish to implement the login for a plugin in Eclipse. The user does not log in via the browser but rather Eclipse instead. And I found out about httpclient and I was wondering if I could use it to implement the client-side, and then I

RE: how to implement login using httpclient?

2010-03-31 Thread Steve Cole
Here's some snippet code how we implemented HttpClient using the MultiThreadedHttpConnectionManager... import java.io.*; import java.util.*; import java.text.*; import java.security.Security; import org.apache.commons.httpclient.*; import org.apache.commons.httpclient.auth.*; import

Re: how to implement login using httpclient?

2010-03-31 Thread Niall Pemberton
On Wed, Mar 31, 2010 at 6:37 PM, maikeru8 msantos.my...@gmail.com wrote: I'm still a beginner with regards to Apache Commons, and I wish to implement the login for a plugin in Eclipse. The user does not log in via the browser but rather Eclipse instead. And I found out about httpclient and I