Hi,
I have a package which reads an XML file from a certain folder and parses it.
I deployed my package onto the server. Copied XML files on the D:\ drive the following folder on the server.
Dim reader As New Xml.XmlTextReader("D:\Apps\Request\Clients\ClientsStatus.xml") is fine.But
Do While (reader.Read())generates "The Device is not ready"
I think it is still trying to read it from my desktop on which I don't have a D drive.
Any help is appreciated.