Fast Infoset is a binary encoding for the XML Infoset which provides an alternative serialization to the XML markup. This tag is NOT related to "InfoSets" from "SAP Query" - use [sap-query] instead in that case.
Questions tagged [fastinfoset]
15 questions
5
votes
1 answer
Can I have the XML in the log when sending FastInfoset request with Apache CXF?
I need to to have the requests and responses in the logs of the application but the requests sent by Apache CXF are in FastInfoset (Content-Type: application/fastinfoset) which results in the log of the request and response being unreadable (since…

Nyamiou The Galeanthrope
- 1,178
- 9
- 23
4
votes
2 answers
How do you use FastInfoset with JAXWS?
I've got code that looks like it should be correct based on what I can find, but the spewed output doesn't indicate that it's using FastInfoset. My understanding is the Accept should indicate it can accept Fastinfoset and the response would actually…

Chris Kessel
- 5,583
- 4
- 36
- 55
3
votes
1 answer
Is there a Fast Infoset implementation for Python?
I've seen libraries for C++ and Java, but no Python.

Travis Christian
- 2,412
- 2
- 24
- 41
3
votes
1 answer
Disable FastInfoset (force XML) on Apache CXF when using the client
I need to force Apache CXF to send XML requests and handle only XML responses when I'm client and I have no control over the server or the configuration (I saw this but it only apply to the server). Right now it's always using FastInfoset which is…

Nyamiou The Galeanthrope
- 1,178
- 9
- 23
2
votes
2 answers
Is there a "Fast Infoset" XML compression library for Delphi?
I would like to support Fast Infoset in some enterprise applications to reduce network traffic for XML and SOAP exchanges.
As documented on Wikipedia, there are Fast Infoset implementations for C# and Java.
According to OSS Fast Infoset Tools,…

mjn
- 36,362
- 28
- 176
- 378
2
votes
2 answers
Fast Infoset decoder in Android
I am implementing an Android web service client to consume a SOAP based web service. One of the output format is application/soap+fastinfoset, and I would like to take advantage of the data compression because of the relative high data rate.
Is…

Alan
- 36
- 2
2
votes
1 answer
Getting hold of FastInfoset readers and writers
JDK 1.6 includes the capability for using FastInfoset web services via the JAX-WS API. The implementations of these are hidden deep inside com.sun.xml.internal, with package names designed to put the fear of god into any sensible java developer…

skaffman
- 398,947
- 96
- 818
- 769
2
votes
1 answer
Parse Fast Infoset documents in PHP?
Is there a library which allows PHP to decode application/fastinfoset binary XML?

Annika Backstrom
- 13,937
- 6
- 46
- 52
1
vote
2 answers
Disabling string interning within Jaxb2 speeds up unmarshalling from a Fastinfoset stream. Why is it so hard to disable?
I've measured the time cost of unmarshalling XML to objects using Jaxb2 using a large (1.7mb) XML payload with somewhat long (48 character) tag names. I observed via JProfiler running in sampling mode that string interning work was a solid portion…

Gordon Daugherty
- 141
- 1
- 5
1
vote
0 answers
Has anyone else seen the Java XML FastInfoset library corrupt text?
I read the claims from Sun people about the wonderful space economy of not only using FastInfoSet, but using it with an external vocab. The code for this purpose is include in the most recent version (1.2.8) but it is not exactly fully…

bmargulies
- 97,814
- 39
- 186
- 310
0
votes
1 answer
C# XML conversion to Fast-Infoset document trims whitespace and CR char unexpectedly
I need to encode normal XML file to Fast Infoset XML document. In Nuget package, I installed LiquidTechnologies.FastInfoset package (which is the only one I found)
My XML doc to convert as below
…

Hai Nguyen
- 25
- 4
0
votes
2 answers
migrate to Jersey 2.x with fastinfoset
I'm trying to migrate a Jersey 1.0 Client application to Jersey 2.0. So far everything work except with the content-type : /application/fastinfoset
I used Jeysey 2.21.1 BOM so jersey fastinfoset is included in the dependencies.
My problem is that…

Sebastien Dionne
- 757
- 2
- 19
- 34
0
votes
1 answer
How to Disable fastinfoset in JAX-WS and always return XML results
I have implemented a Java 8 native JAX-WS webservice that is returning xml responses as binary XML. However, the client unfortunately does not support fastinfoset. Is there a configuration I can use that switches off fastinfoset, and make the…

futureelite7
- 11,462
- 10
- 53
- 87
0
votes
2 answers
Axis2 and fastinfoset - cannot get content-type to change
I've been trying to enable fastinfoset compression on my web services. However, I'm having a problem getting the content-type to change on the request from the client. At least, I think that's why it's not compressing.
I've tried a lot of different…

Jack BeNimble
- 35,733
- 41
- 130
- 213
0
votes
1 answer
How to check whether a byte array corrupted FastInfoSet Document
How to check whether a byte array is a corrupted FastInfoSet Document or just binary garbage?
I mean maybe exists some binary "header" that we can check this.

CAMOBAP
- 5,523
- 8
- 58
- 93