Skip to search.
xml-rpc · XML-RPC Discussion

Group Information

  • Members: 564
  • Category: XML
  • Founded: Jul 15, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 4213 - 4242 of 6912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4213 webmaster@... Send Email Mar 1, 2002
8:36 pm
A new message was posted: Address: http://www.xmlrpc.com/discuss/msgReader$2193 By: Carol Braxton (CarolBraxton@...) We are creating skills...
4214 theruzzman Offline Send Email Mar 2, 2002
12:27 am
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@... Send Email 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...
4216 David Bovill
munity_2000 Offline Send Email
Mar 3, 2002
11:29 am
Sure... ... Can you post this collated information back to the list - so we can all learn from it?...
4217 Dave Winer
dwiner Offline Send Email
Mar 5, 2002
3:05 pm
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...
4218 Eric Kidd
emk1024 Offline Send Email
Mar 5, 2002
4:13 pm
... <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@... Send Email Mar 5, 2002
11:50 pm
... I don't think this is a consensus view. Cite, please. Jay...
4220 Adam Megacz
megacz Offline Send Email
Mar 6, 2002
3:31 am
... 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...
4221 Adam Megacz
megacz Offline Send Email
Mar 6, 2002
4:07 am
... I'm actually much more interested in a standard for human-friendly search syntax, especially one that formalizes handling of wierd characters. Google's...
4222 awahani Offline Send Email Mar 6, 2002
8:45 am
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...
4223 Adam Megacz
megacz Offline Send Email
Mar 6, 2002
11:10 am
... 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@... Send Email
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...
4225 Adam Megacz
megacz Offline Send Email
Mar 6, 2002
6:12 pm
... 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@... Send Email
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...
4227 John Wilson
tug123uk Offline Send Email
Mar 6, 2002
8:07 pm
... From: <nop@...> To: <xml-rpc@yahoogroups.com> Sent: Tuesday, March 05, 2002 5:33 PM Subject: Re: [xml-rpc] Re: encoding for newbies ... Message from...
4228 S. Alexander Jacobson
alex@... Send Email
Mar 6, 2002
8:16 pm
Then implementations that don't support CDATA are not really implementations. And, if CDATA is allowed, base64encoded serves no purpose. -Alex- ...
4229 John Wilson
tug123uk Offline Send Email
Mar 6, 2002
9:23 pm
... 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@... Send Email
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...
4231 John Wilson
tug123uk Offline Send Email
Mar 6, 2002
11:50 pm
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@... Send Email
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...
4233 Codepunk
codepunk2000 Offline Send Email
Mar 7, 2002
1:40 am
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@... Send Email
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 ...
4235 Adam Megacz
megacz Offline Send Email
Mar 7, 2002
8:24 am
... Unfortunately, the spec directly contradicts itself: "Payload format: The payload is in XML" - and - "What characters are allowed in strings? Non-printable...
4236 Adam Megacz
megacz Offline Send Email
Mar 7, 2002
8:26 am
... 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...
4237 Adam Megacz
megacz Offline Send Email
Mar 7, 2002
8:28 am
... 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@... Send Email
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...
4239 Adam Megacz
megacz Offline Send Email
Mar 7, 2002
8:41 am
... 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...
4240 Alain K
awahani Offline Send Email
Mar 7, 2002
10:27 am
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...
4241 kristfin1971 Offline Send Email Mar 7, 2002
1:58 pm
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@... Send Email
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. ...
Messages 4213 - 4242 of 6912   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help