How can i drop a file a file on a folder accros internet from within C# code?

  • Thread starter Thread starter Bredal Jensen
  • Start date Start date
B

Bredal Jensen

I need to send an xml file to biztalk to trigger an orchestration.
I know the folder and i have write acces to it. how can i write the file
this folder from within my program?


Many thanks in advance
JB
 
Bredal,

You can easily do this using an XmlDocument class in the System.Xml
namespace. You can output the document to a file by passing it a FileStream
instance, instantiated with the full path of the file you want to write.

Hope this helps.
 
Back
Top