Extracting XML programmatically to communicate with TRKD API
Best Answer
-
Yes, you can do this programmatically.
Developers can print XML request/response of TRKD services in their applications just by adding a few code lines.
Below you can find information on how to catch SOAP messages in .NET, Java and PHP.
.NETThis simple code sample showing how to serialize TRKD XML request/response and output it wherever you want (console, xml file).
// Create request
// userName, password, appID should be initialized above
var request = new CreateServiceToken_Request_1
{
Username = userName,
Password = password,
ApplicationID = appID
};
// Serialize requestvar serializer = new XmlSerializer(request.GetType()); // using
//var serializer = new XmlSerializer(typeof(CreateServiceToken_Request_1)); // System.Xml.Serialization;
// Print to console
var builder = new StringBuilder(); // using System.Text;
var writer = new StringWriter(builder); // using System.IO;
serializer.Serialize(writer, request);
writer.Close();
Console.WriteLine(builder.ToString());
// Print to XML
var xmlDocument = new XmlDocument(); // using System.Xml;
var writer = new StringWriter(); // using System.IO;
serializer.Serialize(writer, request);
xmlDocument.LoadXml(writer.ToString());
writer.Close();
XmlTextWriter xwriter = new XmlTextWriter("request.xml", null); // using System.Xml;
xwriter.Formatting = Formatting.Indented;
xmlDocument.Save(xwriter);
Java (GlassFish Metro)
The following code sample shows MessageDumpingFeature class usage. Metro has this feature to provide the access to the SOAP messages. Using MessageDumpingFeature it is possible to get the content of SOAP messages at run-time and process them with your own code any way you like.
import com.sun.xml.ws.assembler.MessageDumpingFeature;
...
// Instantiate the web service client
TokenManagement1 tokenService = new TokenManagement1();
// get port
ITokenManagement1 tokenPort = tokenService.getHttpsAndAnonymousITokenManagement1HttpsAndAnonymous(
new AddressingFeature(true));// create request
// serviceUserApplicationID, serviceUserPassword, serviceUserName should be initialized above
CreateServiceTokenRequest1 serviceTokenRequest = new CreateServiceTokenRequest1();
serviceTokenRequest.setApplicationID(serviceUserApplicationID);
serviceTokenRequest.setPassword(serviceUserPassword);serviceTokenRequest.setUsername(serviceUserName);
// Prepare to plug in the code that allows to read SOAP messages
MessageDumpingFeature auth = new MessageDumpingFeature();
WSBindingProvider wsbp = (WSBindingProvider) tokenPort;
// call Token Management service
CreateTokenResponse tokenResponse = tokenPort.createServiceToken1(serviceTokenRequest);
// print the request to console
System.out.println(mdf.nextMessage());// print the response to console
System.out.println(mdf.nextMessage());
PHP
This code sample demonstrates SoapClient class usage.
The class contains 2 methods, which allow to extract SOAP XML request/response(__getLastRequest and __getLastResponse).
In order to enable your SoapClient to catch request and responses you need to set trace option to true in the options list that you pass to the constructor.// create request
// make sure the credentials are initialized here
$createTokenRequest = array(
'ApplicationID' => '','Username' => '',
'Password' => '');
// create SoapClient object specifying a WSDL required
$client = new SoapClient("http://api.rkd.reuters.com/schemas/wsdl/TokenManagement/TokenManagement_1_HttpsAndAnonymous.wsdl",
array('soap_version' => SOAP_1_2,
'trace' => true)); // <-- here enable trace to log SOAP messages// create request headrs array
$wsAddressingHeaders = array(new SoapHeader(
'http://www.w3.org/2005/08/addressing',
'To',
'https://api.rkd.reuters.com/api/2006/05/01/TokenManagement_1.svc/Anonymous'),
new SoapHeader(
'http://www.w3.org/2005/08/addressing',
'Action',
'http://www.reuters.com/ns/2006/05/01/webservices/rkd/TokenManagement_1/CreateServiceToken_1'));// call service and get response
$createTokenResponse = $client->__soapCall('CreateServiceToken_1',
array('parameters' => $createTokenRequest),
null,
$wsAddressingHeaders);// print request
// the htmlentities() function converts characters to HTML entities
echo htmlentities($client->__getLastRequest());
// print response
// the htmlentities() function converts characters to HTML entities
echo htmlentities($client->__getLastResponse());
0
Categories
- All Categories
- 6 AHS
- 36 Alpha
- 166 App Studio
- 6 Block Chain
- 4 Bot Platform
- 18 Connected Risk APIs
- 47 Data Fusion
- 34 Data Model Discovery
- 683 Datastream
- 1.4K DSS
- 613 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
- 248 ETA
- 552 WebSocket API
- 37 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
- 275 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
- 626 Refinitiv Data Platform Libraries
- 5 LSEG Due Diligence
- 1 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
- 26 DACS Station
- 121 Open DACS
- 1.1K RFA
- 104 UPA
- 191 TREP Infrastructure
- 228 TRKD
- 915 TRTH
- 5 Velocity Analytics
- 9 Wealth Management Web Services
- 84 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 46 中文论坛