Hi,

i try to send a message link this one:
http://tfromm.com/4A3_POST_RNIF20_SIGN.txt
over https using jsse.

the problem is, that the message is truncated after ~16k.
this not happens when i use plain http.
i tried different jdk versions, also different tomcats (3.2.1 and 4.x )and i 
tried the actual jsse release.

the source snipped looks like:
URL url = new 
URL("https://localhost:8443/ibis/servlet/IBISHTTPUploadServlet/FRIWO";);
URLConnection urlConnection = (HttpsURLConnection)url.openConnection();
((HttpsURLConnection) urlConnection).setSSLSocketFactory(sslSF);
urlConnection.setDoOutput (true);
urlConnection.setDoInput (true);
urlConnection.setUseCaches (false);
urlConnection.setAllowUserInteraction(false);
((HttpsURLConnection) urlConnection).setRequestMethod("POST");
urlConnection.getOutputStream().write(mimeMessage);

mimeMessage represents in this case a message like shown in the link at top.

Has somebody a solution for that problem or can give me a hint?

Thanks,
Thomas


-- 

inubit -   the integration experts        Web: http://www.inubit.com
Thomas Fromm, inubit AG                      mailto:[EMAIL PROTECTED]
L�tzowstra�e 105-106, D-10785 Berlin
Freecall 0800-GoInUBIT, Tel +49(30)726112-135, Fax -100


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to