util/HttpHelper.cs
@@ -5,7 +5,7 @@
using System.Net;
using System.Text;
namespace HH.WCS.Mobox3.AnGang.config {
namespace HH.WCS.Mobox3.AnGang.util {
    public class HttpHelper {
        public string WebPost(string url, string postData, string cotentType = "application/json")
        {
@@ -101,9 +101,8 @@
                if (stream != null) stream.Close();
                if (rsp != null) rsp.Close();
            }
        }
        public string Post(string url, string postData, string contentType = "application/json", string sessionId = "") {
            Console.WriteLine(url);
            WebRequest request = WebRequest.Create(url);