﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - Lounge - HTTP Post using Intersoft</title><link>http://www.intersoftsolutions.com/Community/Lounge/HTTP-Post-using-Intersoft/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>HTTP Post using Intersoft</title><link>http://www.intersoftsolutions.com/Community/Lounge/HTTP-Post-using-Intersoft/</link><pubDate>Wed, 20 May 2015 08:43:46 GMT</pubDate><dc:creator>leo.c</dc:creator><description>&lt;p&gt;Hi Agus,&lt;/p&gt;&lt;p&gt;For a detail regarding server data access, you could refer to&amp;nbsp;http://developer.intersoftpt.com/display/crosslight/Server+Data+Access.&lt;/p&gt;&lt;p&gt;Btw, could you tell me what the specific topic that you would like to hear in regard to HTTP Post request. That way I may be able to provide you with the information that you want.&lt;/p&gt;&lt;p&gt;Best Regards,&lt;br&gt;Leo&lt;/p&gt;</description></item><item><title>HTTP Post using Intersoft</title><link>http://www.intersoftsolutions.com/Community/Lounge/HTTP-Post-using-Intersoft/</link><pubDate>Tue, 19 May 2015 06:16:08 GMT</pubDate><dc:creator>Sudfunk</dc:creator><description>Thanks For The Reply ..&lt;br&gt;I Think The Explaination can be more ...&lt;br&gt;&lt;br&gt;Regards&lt;br&gt;Agus&lt;br&gt;</description></item><item><title>HTTP Post using Intersoft</title><link>http://www.intersoftsolutions.com/Community/Lounge/HTTP-Post-using-Intersoft/</link><pubDate>Tue, 19 May 2015 02:49:38 GMT</pubDate><dc:creator>leo.c</dc:creator><description>&lt;p&gt;Hi Agus,&lt;/p&gt;&lt;p&gt;To make a HTTP Post request, you will need to create a RestRequest with Post HTTP Method that will be handled by the RestClient. Bellow will be a simple example code:&lt;/p&gt;&lt;pre&gt;// Create a RestClient with specified baseURLstring baseUrl = "http://baseURL/";IRestClient client = new RestClient(baseUrl);
// Create a request that use Htpp POST Method.
string resource = "resourcename"
RestRequest request = new RestRequest(&lt;span style="font-size: 9pt;"&gt;resource&lt;/span&gt;&lt;span style="font-size: 9pt;"&gt;, HttpMethod.POST);&lt;/span&gt;&lt;br&gt;// Set Request Data Format to Json
request.RequestFormat = RequestDataFormat.Json;

// Serializes obj to data format specified by RequestFormat and adds it to the request body.
request.AddBody(Data);

// Execute the RestRequest
IRestResponse response = await client.ExecuteAsync(request);
&lt;/pre&gt;&lt;p&gt;For your information, you could send a file in your request with request.AddFile:&lt;br&gt;&lt;/p&gt;&lt;pre&gt;request.AddFile("parameter name", byteData, "filename.jpg");&lt;/pre&gt;&lt;p&gt;For your information, you could also change your repository behaviour to use RestRequest with Post HTTP method by overwriting the request initialization process of your repository. Example, if you want to use RestRequest with Post HTTP method for GetAllAsync, please overwrite the InitializeGetAllAsyncRequest and return a RestRequest with POST HTTP method.&lt;/p&gt;&lt;p&gt;Hope that this will help you.&lt;/p&gt;&lt;p&gt;Best Regards,&lt;br&gt;Leo&lt;/p&gt;</description></item><item><title>HTTP Post using Intersoft</title><link>http://www.intersoftsolutions.com/Community/Lounge/HTTP-Post-using-Intersoft/</link><pubDate>Mon, 18 May 2015 10:43:49 GMT</pubDate><dc:creator>Sudfunk</dc:creator><description>&lt;p&gt;Dear Master..,&lt;/p&gt;&lt;p&gt;Have You any idea to dev the android app that handle the HTTP Post by using the crosslight ?,&lt;/p&gt;&lt;p&gt;please give me the info ..&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;thanks&lt;/p&gt;&lt;p&gt;Agus&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>