77 messaggi dal 17 gennaio 2003
il problema è che cerco di mandare in post da una windows application dei dati verso un server:

System.Net.WebClient oClient;

oClient = new System.Net.WebClient();

System.Collections.Specialized.NameValueCollection oParams = new System.Collections.Specialized.NameValueCollection();
oParams.Add("txtExecutionID","109");
oParams.Add("txtAction","OK");
string sURL = System.Configuration.ConfigurationSettings.AppSettings["URL"].ToString() ;
byte[] bResponse = null;

try
{
bResponse = oClient.UploadValues(sURL,"POST",oParams);
}
catch (WebException e)
{
MessageBox.Show(e.Message);
}

string sResult = System.Text.Encoding.ASCII.GetString(bResponse);

il server mi ritorna :
the remote server returned an error:(400) bad request

Qualcuno sa aiutarmi??

grazie a tutti.
saluti

Grande Nyquist!!!

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.