Not to spam, but to alert. Today we released version 1.0 of our windows client using XML RPC. It was written in Delphi5 using Codepunks PHP Library. The news...
4215
webmaster@...
Mar 2, 2002 5:14 pm
A new message was posted: Address: http://www.xmlrpc.com/discuss/msgReader$2194 By: Carlo Strozzi (beebox@...) On Linux, I post XML-RPC requests to any...
I just wrote a technical document about a new feature we deployed over the weekend for Radio 8 users. It's called the Web Bug Simulator, because it does for...
... <random unicode musings> Note that UTF-8 decoders look simple, but are *very* hard to get correct (witness all the UTF-8 related security holes in IIS over...
4219
nop@...
Mar 5, 2002 11:50 pm
... I don't think this is a consensus view. Cite, please. Jay...
... I *wish* it were true! Does that count? =) - a -- "If I put copyrighted material into the 'chewy nougat center', I can claim the crunchy chocolate coating...
... I'm actually much more interested in a standard for human-friendly search syntax, especially one that formalizes handling of wierd characters. Google's...
Hello, We have large data to exchange between two modules. Therefor it's not possible to load data into memory before sending or after receiving. Is it...
... What else would you recommend? This summer I'm going to add a feature to XWT that allows it to do 'streaming' XML-RPC. In other words, if the return value...
4224
S. Alexander Jacobson
alex@...
Mar 6, 2002 5:49 pm
... I did something similar. The problem is that XML-RPC REQUIRES that a content-length header and in most applications of this sort of streaming you don't...
... Well, I was actually thinking of situations where the server has all the data at once, but (due to bandwidth constraints) cannot send it very quickly. ...
4226
S. Alexander Jacobson
alex@...
Mar 6, 2002 6:18 pm
... I assume you mean chunk-encoding. That is either illegal or has the same status as CDATA -- e.g. will break many implementations. ... The general problem...
... From: "S. Alexander Jacobson" <alex@...> To: <xml-rpc@yahoogroups.com> Sent: Wednesday, March 06, 2002 8:14 PM Subject: Re: [xml-rpc] Re: encoding for...
4230
S. Alexander Jacobson
alex@...
Mar 6, 2002 10:44 pm
The key point here is that, if you are correct about XML-RPC and XML, then all implementations MUST support CDATA and entity-refs. I think many don't. Do you...
Well, a CDATA section is defined as: [18] CDSect ::= CDStart CData CDEnd [19] CDStart ::= '<![CDATA[' [20] CData ::= (Char* - (Char* ']]>' Char*)) [21]...
4232
S. Alexander Jacobson
alex@...
Mar 7, 2002 1:01 am
This is all a side issue to the main point! If XML-RPC is XML, implementations MUST support entity-refs, CDATA &tc. I asked before and I ask again, do you...
Better yet will any of the implementations support a CDATA and entity refs neither of which show up in the spec. I can tell you for a fact that I will not, if...
4234
S. Alexander Jacobson
alex@...
Mar 7, 2002 3:49 am
Well you had better take it up with Eric Kidd, John Wilson and perhaps Dave (if he cares about this anymore). If you are right (and I think you are), the spec ...
... Unfortunately, the spec directly contradicts itself: "Payload format: The payload is in XML" - and - "What characters are allowed in strings? Non-printable...
... It depends how you interpret the two contradictory statements in the spec (see my previous post). If XML-RPC really is XML, you can't put NULL's in...
... If you know the size of the data, you don't need to load it all in memory. Just send the headers, then something like <?xml...
4238
Taisuke Yamada
tai@...
Mar 7, 2002 8:40 am
... This is not practical with many (if not most) XML-based implementation. each call to XML parser wouldn't return until it loads at least one element, which...
... Not quite. I mean open a TCP socket and make multiple, completely seperate HTTP requests before closing it. HTTP pipelining. Chunk encoding would be a...
The size won't be known. We want to avoid loading the data into memory first before sending and then receiving everything into memory. Is that possible in...
howdy, no i have a xmlrpc interface to my crm system which is lotus domino based. it's implemented usign apache xmlrpc and is served through lotus domino...
4242
S. Alexander Jacobson
alex@...
Mar 7, 2002 2:28 pm
No. It is not possible purely with XML-RPC. But, you can return a URL and then stream from the URL using regular HTTP or your favorite streaming protocol. ...