Bug fix on POST asset so that the new asset service connector can talk to the old asset server.

0.6.6-post-fixes
diva 2009-05-15 21:11:37 +00:00
parent c11e047410
commit 99167c68b1
1 changed files with 5 additions and 2 deletions

View File

@ -89,11 +89,14 @@ namespace OpenSim.Framework.Servers.HttpServer
try try
{ {
using (WebResponse resp = request.GetResponse()) using (WebResponse resp = request.GetResponse())
{
if (resp.ContentLength > 0)
{ {
XmlSerializer deserializer = new XmlSerializer(typeof(TResponse)); XmlSerializer deserializer = new XmlSerializer(typeof(TResponse));
deserial = (TResponse)deserializer.Deserialize(resp.GetResponseStream()); deserial = (TResponse)deserializer.Deserialize(resp.GetResponseStream());
} }
} }
}
catch (System.InvalidOperationException) catch (System.InvalidOperationException)
{ {
// This is what happens when there is invalid XML // This is what happens when there is invalid XML