The server committed a protocol violation. Section=ResponseStatusLineSection=ResponseStatusLine
We have an issue when calling HistoricalReference (1 ident per call, but mulit-threaded)
2017-11-19 14:51:36,708 ERROR
RetrieveRicFromHistoricalReference - Account: 0
xxx.CalculationEngine.Logic.RetrieveRicFromHistoricalReferenceJob - Cannot
retrieve RIC for 301768793
ThomsonReuters.Dss.Api.TransportException:
An error occurred while sending the request. --->
System.Net.Http.HttpRequestException: An error occurred while sending the
request. ---> System.Net.WebException: The server committed a protocol
violation. Section=ResponseStatusLineSection=ResponseStatusLine
any help appreciated
/// <summary>
/// Equities the search.
/// </summary>
/// <param name="transaction">The transaction.</param>
/// <param name="identifier">The identifier.</param>
/// <param name="identifierType">Type of the identifier.</param>
/// <param name="exchange">The exchange.</param>
/// <param name="date">The date.</param>
/// <returns>The searched rics with status</returns>
private RicsWithStatus EquitySearch(Transaction transaction, string identifier, IdentifierType identifierType, string exchange, DateTime date, ExtractionsContext context)
{
// Setup the request...
var extractionResult = context.ExtractWithNotes(
new HistoricalReferenceExtractionRequest
{
IdentifierList = new InstrumentIdentifierList()
{
InstrumentIdentifiers = new[] { new InstrumentIdentifier { Identifier = identifier, IdentifierType = identifierType } },
UseUserPreferencesForValidationOptions = false,
ValidationOptions = new InstrumentValidationOptions
{
AllowHistoricalInstruments = true,
AllowOpenAccessInstruments = true
}
},
Condition = new HistoricalReferenceCondition
{
StartDate = date.ToUniversalTime(),
EndDate = date.ToUniversalTime()
},
ContentFieldNames = new[]
{
"ISIN", "RIC", "Market MIC", "Currency Code", "Exchange Code"
}
});
var contents = extractionResult.Contents;
var withRic = contents
.Select(x => x.DynamicProperties)
.Where(x => x.ContainsKey("RIC"))
.Where(x => !string.IsNullOrEmpty(x["RIC"] as string));
if (contents.Count == 0)
{
BusinessExceptionManager.AddError(Functionality.RICRETRIEVE, SubFunctionality.HISTORICALREFERENCE, BusinessObjectType.TRANSACTION, BusinessExceptionType.NO_RIC, null, transaction.Id);
return new RicsWithStatus
{
Status = "NH"
};
}
else if (withRic.Count() == 0)
{
BusinessExceptionManager.AddError(Functionality.RICRETRIEVE, SubFunctionality.HISTORICALREFERENCE, BusinessObjectType.TRANSACTION, BusinessExceptionType.NO_RIC, null, transaction.Id);
return new RicsWithStatus
{
Status = "NT"
};
}
else
{
return CreateRicWithStatus(transaction.TradeCurrency, exchange, withRic);
}
}
Best Answer
-
we have resolved the issue.
to resume: we needed to fix outgoing proxy settings.
we are using AWS to get faster downloads, so the AWS Ip's/urls needed to be white-listed in our configs.
Thanks for your support-MWA
0
Answers
-
Can you use a fiddler as a proxy?
Then, set the proxy to the extraction context.
WebProxy proxy = new WebProxy("http://127.0.0.1:8888/", true);
extractionsContext.Options.Proxy = proxy;
extractionsContext.Options.UseProxy = true;I would like to see the HTTP request and response messages when the problem occurred.
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
- 621 Eikon COM
- 5.2K Eikon Data APIs
- 11 Electronic Trading
- Generic FIX
- 7 Local Bank Node API
- 4 Trading API
- 2.9K Elektron
- 1.4K EMA
- 254 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
- 669 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
- 193 TREP Infrastructure
- 229 TRKD
- 917 TRTH
- 5 Velocity Analytics
- 9 Wealth Management Web Services
- 90 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 48 中文论坛