FXD5 in DSS standard solution has different file size via API download versus GUI Download.

1) Download FXD5-2022-08-09-NORMALIZEDMP-Data-1-of-1.csv.gz from https://select.datascope.refinitiv.com/datascope/standard/extractions#
2) Use a c# client (Please dont use Postman as it is not capable of handling huge file size). Also, since we use .NEt console app using c#, it would be more close if you can download the same file using a C# client program.
3) Compare the file size downloaded from GUI and the file downloaded from C# Client program. The file downloaded from C# client program seems to be 4 times bigger than the file downloaded from GUI.
Best Answer
-
Hello @shwetha.krishnaiah02 ,
From my testing, the result for FXD5-2022-08-09-NORMALIZEDMP-Data-1-of-1.csv.gz download is consistent, across DSS GUI, Postman download and C# client code and is 22,014 KB.
To test, I have added to Dss.Net.Examples -> StandardExtractionExamples:
[EndToEndExampleAttribute(typeof(StandardExtractionsContext), typeof(UserPackageDelivery))]
[EndToEndExampleAttribute(typeof(StandardExtractionsContext))]
[Example("Download my Specific Package Delivery")]
public void DownloadMySpecificPackageDelivery()
Status.Notify(StandardExtractionsContext, "UserPackageDelivery", "GetReadStream", MethodType.Operation, Publish.Primary);
string testUserPackageDelivery = "0x081f7249558e1c7e";
string testFileName = "FXD5-2022-08-09-NORMALIZEDMP-Data-1-of-1.csv.gz";
using (var response = StandardExtractionsContext.UserPackageDeliveryOperations.GetReadStream(testUserPackageDelivery))
var breader = new BinaryReader(response.Stream);
var fileStream = File.Create("..\\" + testFileName);
const int bufferSize = 4096;
byte[] buffer = new byte[bufferSize];
int count;
while ((count = breader.Read(buffer, 0, buffer.Length)) != 0)
fileStream.Write(buffer, 0, count);
fileStream.Close();
Status.EndNotify(StandardExtractionsContext);
}
}
#region Tick HistoryAnd when I run from GSS NET Example GUI:
The resulting file is stored in bin folder, one up from the example and is of the exact same size. Once unzipped, the file is bigger, but is still consistent with DSS GUI download.
Hope that this information helps
0
Answers
-
The extraction from GUI or from API should result in exactly same data set. If you are seeing file differences, I am inclined to believe that your request in GUI is different from the API request. You should be able to confirm this by examining the content of both the files.
Can you post your extraction request and the GUI screenshots.
0
Categories
- All Categories
- 3 Polls
- 6 AHS
- 36 Alpha
- 166 App Studio
- 6 Block Chain
- 4 Bot Platform
- 18 Connected Risk APIs
- 47 Data Fusion
- 34 Data Model Discovery
- 687 Datastream
- 1.4K DSS
- 622 Eikon COM
- 5.2K Eikon Data APIs
- 10 Electronic Trading
- Generic FIX
- 7 Local Bank Node API
- 3 Trading API
- 2.9K Elektron
- 1.4K EMA
- 255 ETA
- 557 WebSocket API
- 38 FX Venues
- 14 FX Market Data
- 1 FX Post Trade
- 1 FX Trading - Matching
- 12 FX Trading – RFQ Maker
- 5 Intelligent Tagging
- 2 Legal One
- 23 Messenger Bot
- 3 Messenger Side by Side
- 9 ONESOURCE
- 7 Indirect Tax
- 60 Open Calais
- 276 Open PermID
- 44 Entity Search
- 2 Org ID
- 1 PAM
- PAM - Logging
- 6 Product Insight
- Project Tracking
- ProView
- ProView Internal
- 22 RDMS
- 1.9K Refinitiv Data Platform
- 678 Refinitiv Data Platform Libraries
- 4 LSEG Due Diligence
- LSEG Due Diligence Portal API
- 4 Refinitiv Due Dilligence Centre
- Rose's Space
- 1.2K Screening
- 18 Qual-ID API
- 13 Screening Deployed
- 23 Screening Online
- 12 World-Check Customer Risk Screener
- 1K World-Check One
- 46 World-Check One Zero Footprint
- 45 Side by Side Integration API
- 2 Test Space
- 3 Thomson One Smart
- 10 TR Knowledge Graph
- 151 Transactions
- 143 REDI API
- 1.8K TREP APIs
- 4 CAT
- 27 DACS Station
- 121 Open DACS
- 1.1K RFA
- 104 UPA
- 194 TREP Infrastructure
- 229 TRKD
- 918 TRTH
- 5 Velocity Analytics
- 9 Wealth Management Web Services
- 91 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 48 中文论坛