Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,18 @@ GXRouting GetRouting()
return gxRouting;
}
#endif
#if NETCORE
public override async void webExecute()
public override void webExecute()
{
#if NETCORE
GxRestWrapper handler = null;
#else
public override void webExecute()
{
Utils.GxRestService handler = null;
#endif
try
{
HttpRequest req = context.HttpContext.Request;
string gxobj = GetNextPar().ToLower();
#if NETCORE
string jsonStr = await new StreamReader(req.GetInputStream()).ReadToEndAsync();
#else
string jsonStr = (new StreamReader(req.GetInputStream())).ReadToEnd();
#endif
GxSimpleCollection<JArray> parmsColl = new GxSimpleCollection<JArray>();
if (!string.IsNullOrEmpty(jsonStr))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,4 @@ public override PipeWriter BodyWriter
}
}
}
public static class GxHttpAzureResponseExtension
{
public static void Write(this GxHttpAzureResponse response, string value)
{
response.Body.Write(Encoding.UTF8.GetBytes(value));
}
}
}