コード例 #1
0
        public static void GetUnReadMessageCount()
        {
            string serviceUrl = Program.ROOT_URL + "InboxService.svc/messages/unread";
            var    myRequest  = (HttpWebRequest)WebRequest.Create(serviceUrl);

            myRequest.Method      = "GET";
            myRequest.ContentType = "application/xml";
            myRequest.Headers.Add(DataLoadHelper.GetApIKeyToken());
            //post the request and get the response details
            using (var response = myRequest.GetResponse())
            {
                if (response.ContentLength > 0)
                {
                    using (var reader = new StreamReader(response.GetResponseStream()))
                    {
                        int count = Convert.ToInt32(DataLoadHelper.GetNodeValue(reader, "ResponseData"));
                        if (count > -1)
                        {
                            Console.WriteLine("Method successfully called.");
                        }
                        else
                        {
                            {
                                Console.WriteLine("Method called but result is not accurate.");
                            }
                        }
                    }
                }
                else
                {
                    Console.WriteLine("Method called but result is not accurate.");
                }
            }
        }
コード例 #2
0
        public static void GetMessageThreads()
        {
            string serviceUrl = Program.ROOT_URL + string.Format("InboxService.svc/messages/threads?startPage={0}&numberOfRecords={1}", 1, 25);
            var    myRequest  = (HttpWebRequest)WebRequest.Create(serviceUrl);

            myRequest.Method      = "GET";
            myRequest.ContentType = "application/xml";
            myRequest.Headers.Add(DataLoadHelper.GetApIKeyToken());

            myRequest.Headers.Add(string.Format("Rest-Impersonate-User:{0}", 4));

            //post the request and get the response details
            using (var response = myRequest.GetResponse())
            {
                if (response.ContentLength > 0)
                {
                    using (var reader = new StreamReader(response.GetResponseStream()))
                    {
                        var messageThreads = DataLoadHelper.GetNodeValue(reader, "ResponseData");
                        //Assert.AreEqual(true, Convert.ToBoolean(DataLoadHelper.GetNodeValue(reader, "IsActive")));
                        Console.WriteLine("Method successfully called.");
                    }
                }
                else
                {
                    Console.WriteLine("Method called but result is not accurate.");
                }
            }
        }
コード例 #3
0
        public static void GetMesesageThread()
        {
            string xmlPath    = "TestData/MessageData.xml";
            string threadID   = DataLoadHelper.GetNodeValue(DataLoadHelper.GetXmlDocument(xmlPath), "ThreadID");
            string serviceUrl = Program.ROOT_URL + string.Format("InboxService.svc/messages/thread/{0}", threadID);
            var    myRequest  = (HttpWebRequest)WebRequest.Create(serviceUrl);

            myRequest.Method      = "GET";
            myRequest.ContentType = "application/xml";
            myRequest.Headers.Add(DataLoadHelper.GetApIKeyToken());
            //post the request and get the response details
            using (var response = myRequest.GetResponse())
            {
                if (response.ContentLength > 0)
                {
                    using (var reader = new StreamReader(response.GetResponseStream()))
                    {
                        if (threadID == DataLoadHelper.GetNodeValue(reader, "ThreadID"))
                        {
                            Console.WriteLine("Method successfully called.");
                        }
                        else
                        {
                            Console.WriteLine("Method called but result is not accurate.");
                        }
                    }
                }
                else
                {
                    Console.WriteLine("Method called but result is not accurate.");
                }
            }
        }
コード例 #4
0
        public static void AddThreadParticipants()
        {
            try
            {
                string apikey       = DataLoadHelper.GetApIKeyToken();
                int    threadID     = 20;
                string participants = "12";
                string postData     =
                    string.Format(
                        "<AddThreadParticipants xmlns=\"http://tempuri.org/\"><threadID>{0}</threadID><participants>{1}</participants></AddThreadParticipants>",
                        threadID, participants);

                //set the RESTful URL
                string serviceUrl = string.Format("{0}InboxService.svc/messages/thread/participants", Program.ROOT_URL);
                //set the content header type. Note: use "json" for JSON
                //create a new HttpRequest
                var myRequest = (HttpWebRequest)WebRequest.Create(serviceUrl);
                myRequest.Method      = "POST";
                myRequest.ContentType = "application/xml";
                byte[] data = Encoding.UTF8.GetBytes(postData);
                myRequest.ContentLength = data.Length;
                //add the API key
                myRequest.Headers.Add(apikey);
                //add the data to be posted in the request stream
                var requestStream = myRequest.GetRequestStream();
                requestStream.Write(data, 0, data.Length);
                requestStream.Close();

                //post the request and get the response details
                using (var response = myRequest.GetResponse())
                {
                    if (response.ContentLength > 0)
                    {
                        using (var reader = new StreamReader(response.GetResponseStream()))
                        {
                            Console.WriteLine("Method successfully called.");;
                        }
                    }
                    else
                    {
                        Console.WriteLine("Method called but result is not accurate.");
                    }
                }
            }
            catch (Exception exception)
            {
                Console.WriteLine(string.Format("Failed because:{0}", exception.Message));
            }
        }
コード例 #5
0
        public static void DeleteMessageThread()
        {
            try
            {
                string apikey = DataLoadHelper.GetApIKeyToken();

                //set the RESTful URL
                string serviceUrl = string.Format("{0}InboxService.svc/messages/thread/19", Program.ROOT_URL);
                //create a new HttpRequest
                var myRequest = (HttpWebRequest)WebRequest.Create(serviceUrl);
                myRequest.Method = "DELETE";
                //add the API key
                myRequest.Headers.Add(apikey);

                //post the request and get the response details
                using (var response = myRequest.GetResponse())
                {
                    if (response.ContentLength > 0)
                    {
                        using (var reader = new StreamReader(response.GetResponseStream()))
                        {
                            //read the results string
                            string result = reader.ReadToEnd();
                            //check the results assuming XML is returned: note for JSON: use JSON stringfy
                            XmlDocument resultsXml = new XmlDocument();
                            resultsXml.LoadXml(result);
                            bool isError = Convert.ToBoolean(resultsXml.GetElementsByTagName("IsError")[0].InnerText);
                            if (isError)
                            {
                                Console.WriteLine("Failed");
                            }
                            else
                            {
                                Console.WriteLine("Method successfully called.");
                            }
                        }
                    }
                    else
                    {
                        Console.WriteLine("Method called but result is not accurate.");
                    }
                }
            }
            catch (Exception exception)
            {
                Console.WriteLine(string.Format("Failed because:{0}", exception.Message));
            }
        }
コード例 #6
0
        public static void MarkNotificationsAsRead()
        {
            try
            {
                string notificationIDCSV = "29,30";

                string postData =
                    string.Format("<MarkNotificationsAsRead xmlns=\"http://tempuri.org/\"><notificationIDCSV>{0}</notificationIDCSV></MarkNotificationsAsRead>", notificationIDCSV);

                //set the RESTful URL
                string serviceUrl = string.Format("{0}NotificationsService.svc/notifications/status", Program.ROOT_URL);
                //set the content header type. Note: use "json" for JSON
                //create a new HttpRequest
                var myRequest = (HttpWebRequest)WebRequest.Create(serviceUrl);
                myRequest.Method      = "PUT";
                myRequest.ContentType = "application/xml";
                byte[] data = Encoding.UTF8.GetBytes(postData);
                myRequest.ContentLength = data.Length;
                //add the API key
                myRequest.Headers.Add(DataLoadHelper.GetApIKeyToken());
                //add the data to be posted in the request stream
                var requestStream = myRequest.GetRequestStream();
                requestStream.Write(data, 0, data.Length);
                requestStream.Close();


                //post the request and get the response details
                using (var response = myRequest.GetResponse())
                {
                    if (response.ContentLength > 0)
                    {
                        using (var reader = new StreamReader(response.GetResponseStream()))
                        {
                            Console.WriteLine("Success");
                        }
                    }
                    else
                    {
                        Console.WriteLine("Method called but result is not accurate.");
                    }
                }
            }
            catch (Exception exception)
            {
                Console.WriteLine(string.Format("Failed because:{0}", exception.Message));
            }
        }
コード例 #7
0
        public static void UpdateMessageReadStatus()
        {
            try
            {
                string xmlPath  = "TestData/MessageRecipientData.xml";
                string postData = DataLoadHelper.GetXmlAsString(xmlPath);
                //set the RESTful URL
                string serviceUrl = string.Format("{0}InboxService.svc/messages/message/status", Program.ROOT_URL);
                //set the content header type. Note: use "json" for JSON
                //create a new HttpRequest
                var myRequest = (HttpWebRequest)WebRequest.Create(serviceUrl);
                myRequest.Method      = "PUT";
                myRequest.ContentType = "application/xml";
                byte[] data = Encoding.UTF8.GetBytes(postData);
                myRequest.ContentLength = data.Length;
                //add the API key
                myRequest.Headers.Add(DataLoadHelper.GetApIKeyToken());
                //add the data to be posted in the request stream
                var requestStream = myRequest.GetRequestStream();
                requestStream.Write(data, 0, data.Length);
                requestStream.Close();


                //post the request and get the response details
                using (var response = myRequest.GetResponse())
                {
                    if (response.ContentLength > 0)
                    {
                        using (var reader = new StreamReader(response.GetResponseStream()))
                        {
                            Console.WriteLine("Method successfully called.");
                        }
                    }
                    else
                    {
                        Console.WriteLine("Method called but result is not accurate.");
                    }
                }
            }
            catch (Exception exception)
            {
                Console.WriteLine(string.Format("Failed because:{0}", exception.Message));
            }
        }