Hello,
Is there a way somehow to read only part of the file via Http ? (Here is
the code that reads the whole file)
HttpWebRequest req =
(HttpWebRequest )HttpWebRequest .Create("http://x:8080/axis2/axis2-web/log
s/aaa.out");
req.Proxy.Crede ntials =
CredentialCache .DefaultNetwork Credentials;
HttpWebResponse resp =
(HttpWebRespons e)req.GetRespon se();
Stream streamReader = resp.GetRespons eStream();
How can I have in the final stream just part of the file according to
some index?
Thanks
*** Sent via Developersdex http://www.developersdex.com ***
Is there a way somehow to read only part of the file via Http ? (Here is
the code that reads the whole file)
HttpWebRequest req =
(HttpWebRequest )HttpWebRequest .Create("http://x:8080/axis2/axis2-web/log
s/aaa.out");
req.Proxy.Crede ntials =
CredentialCache .DefaultNetwork Credentials;
HttpWebResponse resp =
(HttpWebRespons e)req.GetRespon se();
Stream streamReader = resp.GetRespons eStream();
How can I have in the final stream just part of the file according to
some index?
Thanks
*** Sent via Developersdex http://www.developersdex.com ***
Comment