Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
bpross-52n committed Nov 11, 2013
2 parents 2161800 + 529719c commit 1f45445
Show file tree
Hide file tree
Showing 3 changed files with 664 additions and 2 deletions.
Expand Up @@ -126,7 +126,7 @@ public static IDatabase getInstance() {

@Override
public synchronized void insertRequest(String id, InputStream inputStream, boolean xml) {
insertResultEntity(inputStream, id, "ExecuteRequest", xml ? "text/xml" : "text/plain");
insertResultEntity(inputStream, "REQ_" + id, "ExecuteRequest", xml ? "text/xml" : "text/plain");
}

/**
Expand All @@ -138,7 +138,7 @@ public synchronized void insertRequest(String id, InputStream inputStream, boole
*/
@Override
public synchronized String insertResponse(String id, InputStream inputStream) {
return insertResultEntity(inputStream, "REQ_" + id, "ExecuteResponse", "text/xml");
return insertResultEntity(inputStream, id, "ExecuteResponse", "text/xml");
}

/**
Expand Down

0 comments on commit 1f45445

Please sign in to comment.