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 @@ -45,7 +45,7 @@ public GXRestAPIClient()
public string ResponseMessage { get => responseMessage; set => responseMessage = value; }
public string HttpMethod { get => httpMethod; set => httpMethod = value; }

public string protocol = "REST";
public int protocol = 1;

private string httpMethod = "GET";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace GeneXus.Application
public class GxObjectProperties
{
private GxLocation location = null;
private string protocol = "rest";
private int protocol = 1;
private string errorMessage = String.Empty;
private int errorCode = 0;
private int statusCode = 0;
Expand All @@ -19,7 +19,7 @@ public class GxObjectProperties
public string ErrorMessage { get => errorMessage; set => errorMessage = value; }
public int ErrorCode { get => errorCode; set => errorCode = value; }
public int StatusCode { get => statusCode; set => statusCode = value; }
public string Protocol { get => protocol; set => protocol = value; }
public int Protocol { get => protocol; set => protocol = value; }
}

public class GxObjectsConfiguration {
Expand Down