aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/WebUtil.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/WebUtil.cs')
-rw-r--r--OpenSim/Framework/WebUtil.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs
index 1feeeb3..4f5add9 100644
--- a/OpenSim/Framework/WebUtil.cs
+++ b/OpenSim/Framework/WebUtil.cs
@@ -139,17 +139,17 @@ namespace OpenSim.Framework
139 /// </summary> 139 /// </summary>
140 public static OSDMap PutToService(string url, OSDMap data) 140 public static OSDMap PutToService(string url, OSDMap data)
141 { 141 {
142 return ServiceOSDRequest(url,data,"PUT",10000); 142 return ServiceOSDRequest(url,data,"PUT",20000);
143 } 143 }
144 144
145 public static OSDMap PostToService(string url, OSDMap data) 145 public static OSDMap PostToService(string url, OSDMap data)
146 { 146 {
147 return ServiceOSDRequest(url,data,"POST",10000); 147 return ServiceOSDRequest(url,data,"POST",20000);
148 } 148 }
149 149
150 public static OSDMap GetFromService(string url) 150 public static OSDMap GetFromService(string url)
151 { 151 {
152 return ServiceOSDRequest(url,null,"GET",10000); 152 return ServiceOSDRequest(url,null,"GET",20000);
153 } 153 }
154 154
155 public static OSDMap ServiceOSDRequest(string url, OSDMap data, string method, int timeout) 155 public static OSDMap ServiceOSDRequest(string url, OSDMap data, string method, int timeout)
@@ -276,7 +276,7 @@ namespace OpenSim.Framework
276 /// </summary> 276 /// </summary>
277 public static OSDMap PostToService(string url, NameValueCollection data) 277 public static OSDMap PostToService(string url, NameValueCollection data)
278 { 278 {
279 return ServiceFormRequest(url,data,10000); 279 return ServiceFormRequest(url,data,20000);
280 } 280 }
281 281
282 public static OSDMap ServiceFormRequest(string url, NameValueCollection data, int timeout) 282 public static OSDMap ServiceFormRequest(string url, NameValueCollection data, int timeout)