hi,
one short question: there seems to a difference wether i do a post from
my
applet to my servlet running on ie5.0 and netscape4.5.
running from ie, everything just works fine, my servlet gets the data.
running from netscape, servlet gets ...just nothing...
can someone help me out of this ? there is the code i am using:
[..snip..]
StringBuffer strBuffer = "name=nameX&Cmd=cmdX";
strBuffer.append("&" + (String)keys.elementAt(i) + "="
URLEncoder.encode((String)values.elementAt(i)));
String query = strBuffer.toString();
con = url.openConnection();
con.setUseCaches(false);
con.setDoOutput(true);
con.setDoInput(true);
con.setAllowUserInteraction(false);
DataOutputStream dos = new DataOutputStream(con.getOutputStream());
dos.writeBytes(query);
dos.close();
[..snip...]
thanks,
christian
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html