Parse Fast Infoset documents in PHP?
Is there a library which allows PHP to decode application/fastinfoset binary XML? ...
Is there a library which allows PHP to decode application/fastinfoset binary XML? ...
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, implementations are already available on several platforms including Microsoft .NET and .NET...
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 (e.g. com.sun.xml.internal.fastinfoset.stax.StAXDocumentParser (which implements XMLStreamRe...
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 use it, meaning it's not text/xml as the response type. Any idea what I'm doing wrong? I'...
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 things, but the content-type always remains "text/xml". I'm pretty sure that it's suppo...