Questions tagged [fpml]

FpML (Financial products Markup Language) is an XML message standard.

FpML (Financial products Markup Language) is an message standard for the Over-the-counter(OTC) Derivatives industry.

More Information:

22 questions
245
votes
17 answers

No @XmlRootElement generated by JAXB

I'm trying to generate Java classes from the FpML (Finanial Products Markup Language) version 4.5. A ton of code is generated, but I cannot use it. Trying to serialize a simple document I get this: javax.xml.bind.MarshalException - with linked…
robinr
  • 4,376
  • 2
  • 20
  • 18
5
votes
1 answer

JSON financial protocol?

Does a json financial protocol exist? I've seen FIX, FpML, and SWIFT, but none seem to have a json version. Is there a protocol in existence no matter how experimental that relies upon JSON or something else human readable & lightweight? If so, what…
user1382306
3
votes
1 answer

Calculation on FPML

I am new to FPML, and our system is new to swap trading and handling. The FPML examples show that there are lot of fields where we can also enter the formulas for its calculations. We are saving these FPML xmls with the information directly into our…
Ishan070692
  • 513
  • 4
  • 22
2
votes
4 answers

Quickfix support for fpml

I am trying to figure out if quickfix supports fpml. I am guessing not , since i could not tell by googling.
Pradyot
  • 2,897
  • 7
  • 41
  • 58
1
vote
1 answer

Parsing XML with encoding to python

I have some python experience not a lot. I have not worked on XML with python but now I have to. I have a XML within a string that I am trying to Parse in Python. I want to store this XML in a dataframe but I am unable to parse it to python. import…
Varun
  • 125
  • 1
  • 2
  • 11
1
vote
2 answers

How can I make SWAPS using FPML

I want to design an efficient & flexible architecture to process Swaps based on a standard financial protocol - FPML (Financial products markup language). I've researched on internet but didn't find much information. The definitions which I found…
Satyam
  • 13
  • 2
1
vote
1 answer

Custom xsd.exe tool and case sensitive xml serialization

I have following xsd:
Lukas Pirkl
  • 1,417
  • 3
  • 15
  • 31
0
votes
0 answers

Parsing and Saving FpML data to SQL Server

I am working with FpML messages and looking to parse them and save them to SQL Server, I have the xsd's and I'm using version 5.5. I have generated the c# entities and most of the data (apart from the Product) is deserializing to the c#…
Christian Phillips
  • 18,399
  • 8
  • 53
  • 82
0
votes
1 answer

CURL API call working but PYthon requests Post call gets no response

I am trying to call the FPML validate API. I got the API call to work via CURL successfully. curl -i -w '\n' -H "x-api-key:MY_KEY" -H "Content-Type:text/xml" https://gvtumr1txd.execute-api.eu-west-1.amazonaws.com/production/validate --data…
GabT
  • 33
  • 5
0
votes
1 answer

validation of sample fpml message by making a CURL call to the fpml.org api for fpml validation is failing with error content not allowed in prolog

CURL Call - curl -i -w '\n' -H "x-api-key:$MY_KEY" -H "Content-Type:text/xml" https://gvtumr1txd.execute-api.eu-west-1.amazonaws.com/production/validate --data @SampleFileValuationReportIRS.xml \ --trace-ascii - Points to Note I am able to…
GabT
  • 33
  • 5
0
votes
0 answers

XML schema - extending complexType within same namespace

I'm using FpML schemas, but I also want to extend it by custom elements. Due to some constraints I dont want to use different namespace for my extensions XSD. So let's say default FpML schema has this:
Radek
  • 15
  • 5
0
votes
1 answer

FpML - how to replace a text in the namespace after copy the whole fpml?

I am facing trouble when try to replace the namespace after copy the fpml. I need to replace
0
votes
2 answers

XML replacement with XSL

Hi I am trying to convert an XML file of FpML 4 to FpML 5. The only thing I have to change is the FpML header Here follows an example: input file FpML 4
inglor
  • 327
  • 1
  • 3
  • 12
0
votes
1 answer

Hibernate: merge gives null values in DB

Here is how the problem occurs: let's say I have an object A that contains a list of objects B. I first persist an A containing 1 B. Then I retrieve this object A (using find), I add a new object B to its list and I do a merge on A. When I do a find…
Oleg
  • 161
  • 1
  • 14
0
votes
1 answer

Using JAXB to load FpML 5.7 using Maven

I have been struggling to generate java files from FpML 5.7 recordkeeping recommendation. Any help is appriciated. I have followed http://www.stephennimmo.com/generate-java-objects-for-fpml-using-jaxb-and-maven-the-easy-way/ and FpML 5.3 JAXB…
mediumpike
  • 33
  • 7
1
2