Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Upload xml file- HttpWebRequest

0 views
Skip to first unread message

Rob

unread,
May 12, 2008, 9:49:16 AM5/12/08
to
I'm trying to translate the following code in vb.net code to be used in a
web service. Really I can't understand well it. I would like to use
httpWebRequest but I don't know.... Do I have to use headers? How can I
translate the "requestbody" string?

The code sends an xml file and a command.


fso = new ActiveXObject("Scripting.FileSystemObject");
xmlFile = fso.OpenTextFile(AJobFile, 1);
xmlText = xmlFile.ReadAll();

var boundStr = 'h8w95k20d9';
var boundary = '--' + boundStr;

var requestbody = [boundary,
'Content-Disposition: file; name="F1";
filename="'+AJobFile+'"',
'Content-Type: text/xml',
'',
xmlText,

boundary,
'Content-Disposition: form-data; name="ImportJobs"',
'',
'0',
boundary
].join('\r\n');

xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
url='http://'+WODAddress+'/JTI';

xmlhttp.open("POST",url,false);
xmlhttp.setRequestHeader('Content-type', 'multipart/form-data; boundary="'
+ boundStr + '"');
xmlhttp.send(requestbody );


bruce barker

unread,
May 12, 2008, 11:45:20 AM5/12/08
to
yes. its a standard browser fileupload. check the w3c specs to understand the
format:

http://www.w3.org/Protocols/

or you can use webclient which has support for this (fileupload). just be
sure to set the content-type.


-- bruce (sqlwork.com)

0 new messages