• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

AltME groups: search

Help · search scripts · search articles · search mailing list

results summary

worldhits
r4wp18
r3wp648
total:666

results window for this page: [start: 401 end: 500]

world-name: r3wp

Group: All ... except covered in other channels [web-public]
BrianH:
2-May-2006
Interesting. It would work with my XML data structure, assuming I 
used a block for the attributes rather than a hash (something I considered 
anyway).
Group: Ann-Reply ... Reply to Announce group [web-public]
Henrik:
17-Apr-2008
it looks to me as if he's creating some form of pseudo XML tags. 
my dialect looks like any other rebol code (yes, I care a lot about 
the appearance of the dialect), and I think his goal is more to be 
for template, where my dialect is not meant for templates at all. 
My goal is to describe webpages in as little code as possible in 
100% REBOL style.
Group: Core ... Discuss core issues [web-public]
Terry:
28-Jan-2006
and what's up with that xml you have wrapping your output?
Jarod:
27-Mar-2006
I like how rebol handles tagged data, xml, html, etc.
Jarod:
27-Mar-2006
I am surprised save can't serialize rebol datastructures in xml formats
Volker:
13-Sep-2006
IMO non-loadable things should not be moldable. So in this case make 
limits on mold, so that the mold fails with such values. Reason: 
IMO under no circumstances should a save destroy values (at least 
not from the inbuild side). Better throw the last changes away with 
a "cant save, internal error" than overwrite valid data with broken 
one. Specially if rebol is a "public" format like xml, where everyone 
can send data and trigger a broken save.
Group: I'm new ... Ask any question, and a helpful person will try to answer. [web-public]
Pekr:
31-May-2007
We have XML-RPC for intercommunication, my guess is - not used much, 
but fine when you want to connect to server, which does use it.


Rugby - RPC broker. VERY easy to use, you would be surprised! You 
simply start server, you define which functions you expose, something 
like server [my-func1 my-func2] and then you just connect. It uses 
functions stubs, so actually your source code is not revealed to 
client.
Geomol:
3-Jun-2007
I think, it is a plus to know functional programming. And if the 
programmer is used to do more than one thing in each line/statement, 
that will help also, when learning REBOL. Things like:

insert back tail serie somefunc + 1


is often seen in REBOL. Experience with scripting languages is probably 
also a plus. I too had a background on the Amiga, staring in 1987 
with an A500. In the 90'ies I started to explore the operating system 
more closely, and then it was natural to check out, what Carl was 
up to. Prior to REBOL, I've programmed in many languages incl. C, 
C++, 6502 ASM, PASCAL, COBOL, LOGO and sh and csh scripting. I develop 
many different things with REBOL from graphical applications, games 
and astronomical applications to tools, languages, databases, xml-stuff, 
word processor, etc. It's very few things, I would choose another 
language than REBOL to do.
Maarten:
3-Jun-2007
The fact that it's one small yet complete executable and rebol.org 
has scripts for things like XML etc. ... I have seen REBOL scale 
from netowrk management tools to e-bank prototypes to ...
SteveT:
20-Feb-2008
Hi all, can Rebol load XML structures straight into a block ?????
Geomol:
20-Feb-2008
You can with my RebXML found here:
http://home.tiscali.dk/john.niclasen/rebxml/


The script xml2rebxml.r read an XML structure into a block with content 
defined in the spec:
http://home.tiscali.dk/john.niclasen/rebxml/rebxml-spec.html
btiffin:
20-Feb-2008
Kinda ... out of the box XML is not 100% but   load/markup  may do 
what you want for some cases


If that is not sufficient, some rebols have written  extensions. 
  Umm, like John just posted.  :)
Sunanda:
20-Feb-2008
'parse-xml is a standard REBOL function in 'core that does some basic 
XML processing. It may be enough for you.

I use Gavin's XML-parse functions every day:

http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=xml-parse.r

Not tried John's yet :-)
Gregg:
20-Feb-2008
PARSE-XML is a built-in func as well. Not as complete as Gavin's, 
but works well for basic things. The biggest mod I've made to it 
is to swap the order of element value and attributes in the resulting 
block. That way you can address the value using path notation or 
SELECT. Working with attributes takes a little more work.
Group: Make-doc ... moving forward [web-public]
Andrew:
3-Jul-2005
Surrounding text with "\verse" and "/verse" looks just like XML.
Christophe:
1-Nov-2005
At work, we use those formats intensively: for project docs, for 
official documents, even for generating psychotechnical tests skelettons 
in XML dialects... So it would be great if a standadization could 
take place, keeping the best of the two worlds MD2 and MDP.
Geomol:
1-Nov-2005
In the same area, there is also my NicomDoc: http://home.tiscali.dk/john.niclasen/nicomdoc/

I think, my approach has some advantages over both MD2 and MDP. I 
convert to/from an internal XML-kind of format called RebXML, which 
is much easier to work with, when making importers/exporters to different 
formats. RebXML is defined here: http://home.tiscali.dk/john.niclasen/rebxml/

I'm not sure, if anyone else found my ideas to be usefull, when I 
talked about it here half a year ago, and I haven't have much time 
to do more with NicomDoc, but it's not a dead project.
Geomol:
1-Nov-2005
And don't let the XML part acare you away, it's NOT XML, as you know 
it, just the good thoughts from XML. RebXML is based on blocks, words 
and strings.
Robert:
1-Nov-2005
XML: Well, I choose to use a block based intermediate format coming 
from the MDP parser. It's because you can handle it the Rebol style 
and it makes writing a one-pass emitter quite easy.
Group: Parse ... Discussion of PARSE dialect [web-public]
Chris:
3-Jun-2008
I've been toying with this to obtain a very parsable "dialect" -- 
my goal being to scrape live game updates from a certain sports web 
site (for personal use, natch).  It's reliant on 'parse-xml though, 
so ymmv....

do http://www.ross-gill.com/r/scrape.r
probe load-xml some-xml
Graham:
3-Nov-2008
This is a result of using parse-xml and some cleanup

[document
	[soapenv:Envelope
		[soapenv:Body
			[ns1:getSpellingSuggestionsResponse
				[getSpellingSuggestionsReturn
					[getSpellingSuggestionsReturn "Penicillin G"]
					[getSpellingSuggestionsReturn "Penicillin V"]
					[getSpellingSuggestionsReturn "Penicillamine"]
					[getSpellingSuggestionsReturn "Polycillin"]
				]
			]
		]
	]
]
Graham:
4-Nov-2008
<?xml version="1.0" encoding="utf-8" ?> 

- <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <soapenv:Body>

- <ns1:getSpellingSuggestionsResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns1="http://db.rxnorm.nlm.nih.gov">

- <getSpellingSuggestionsReturn soapenc:arrayType="soapenc:string[4]" 
xsi:type="soapenc:Array" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">

  <getSpellingSuggestionsReturn xsi:type="soapenc:string">Penicillin 
  G</getSpellingSuggestionsReturn> 

  <getSpellingSuggestionsReturn xsi:type="soapenc:string">Penicillin 
  V</getSpellingSuggestionsReturn> 

  <getSpellingSuggestionsReturn xsi:type="soapenc:string">Penicillamine</getSpellingSuggestionsReturn> 

  <getSpellingSuggestionsReturn xsi:type="soapenc:string">Polycillin</getSpellingSuggestionsReturn> 
  </getSpellingSuggestionsReturn>
  </ns1:getSpellingSuggestionsResponse>
  </soapenv:Body>
  </soapenv:Envelope>
Pekr:
4-Nov-2008
Graham - what xml REBOL tool do you use? I might need to parse XML 
stuff soon. In the past I used one tool (don't remember the author), 
which made object from parsed data automatically ...
PeterWood:
4-Nov-2008
gxs is a string of your xml listed above.
Gregg:
4-Nov-2008
I pasted your code here, which loads the block. I guess the XML parser 
produces the output with those values as words.
Tomc:
5-Nov-2008
foreach item load/markup xml [if not tag? item[ print item]]
BrianH:
6-Nov-2008
I was thinking streamed XML, but yes :)
Graham:
8-Nov-2008
I just want to be able to better parse XML namespaces and all.
Maarten:
2-Feb-2009
Then make actions for data to go to JSON, XML, XHTML, back and forth 
to a database,....
Janko:
14-Feb-2009
regex I imagine sucks at structured stuff , where you have to make 
some sort of state machine , for example I don't think regex can 
well parse xml ... state machines are exelent at that but they do 
require more code than parse would
Janko:
14-Feb-2009
I don't know the exact term for this but I build many parsers for 
things like xml, wiki text and some other custom things in various 
lower level langauges using simple state machine (at least that's 
how I called it)... To my understanding you can parse anything with 
something like that, also structured nested data with it but it of 
course takes some more coding than this rebol solution... what I 
mean as a state machine is a loop that accepts characters or words 
and has a predefined number of states and code for what to do at 
each state and when to switch to another state etc..
Maxim:
30-Sep-2009
rollback would be neet as a parse keyword  :-)  it would allow us 
to break several levels at once... something I would have needed 
when I did my XML schema validation engine.
Pekr:
1-Oct-2009
will new parser enahncements help us to get better XML family support? 
:-)
Pekr:
1-Oct-2009
I mean - we are not too strong with XML based stuff. Are new enhancements 
going to eventually simplify XML parsing? But maybe even R2 parser 
is good enough to have full XML support?
Chris:
1-Oct-2009
How can you simplify XML parsing?  What's simple about it?
Maxim:
1-Oct-2009
pekr, parsing an xml file itself is quite easy.  


Actually, its converting and validating the xml schema or DTD which 
is complex because, basically you have to compile a new parse rule 
out of misaligned parsing concepts.  this will never be easier, until 
someone builds (and makes public) a simple to use, *complete* interpretation 
of each XML-based spec.  XML schema, xpath, etc.
Chris:
22-Oct-2009
Is there any advantage in breaking up charsets that represent a large 
varied range of the 16-bit character space? For example, XML names 
are defined as below (excluding > 2 ** 16), but are most commonly 
limited to the ascii-friendly subset:

	w1: charset [

  #"A" - #"Z" #"_" #"a" - #"z" #"^(C0)" - #"^(D6)" #"^(D8)" - #"^(F6)" 
  #"^(F8)" - #"^(02FF)"

  #"^(0370)" - #"^(037D)" #"^(037F)" - #"^(1FFF)" #"^(200C)" - #"^(200D)" 
  #"^(2070)" - #"^(218F)"

  #"^(2C00)" - #"^(2FEF)" #"^(3001)" - #"^(D7FF)" #"^(f900)" - #"^(FDCF)" 
  #"^(FDF0)" - #"^(FFFD)"
	]
	w+: charset [

  #"-" #"." #"0" - #"9" #"A" - #"Z" #"_" #"a" - #"z" #"^(B7)" #"^(C0)" 
  - #"^(D6)"

  #"^(D8)" - #"^(F6)" #"^(F8)" - #"^(037D)" #"^(037F)" - #"^(1FFF)" 
  #"^(200C)" - #"^(200D)"

  #"^(203F)" - #"^(2040)" #"^(2070)" - #"^(218F)" #"^(2C00)" - #"^(2FEF)" 
  #"^(3001)" - #"^(D7FF)"
		#"^(f900)" - #"^(FDCF)" #"^(FDF0)" - #"^(FFFD)"
	]
	word: [w1 any w+]
Janko:
3-Dec-2009
yes, you are right .. if you can write partser for php then you can 
make anything with it. I always supposed parse with charsets is like 
low level step by one char in a looop and call "events" and change 
states , with which you can parse anything from xml to languages 
.. well but parse with charsets is still much more elegant
BenBran:
6-Jan-2010
I get whats happening now.  If i compare buffer and file I see the 
clipped text:

>> probe file
== "index.html"

>> probe buffer
{GET /a.html HTTP/1.1
Host: localhost

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/531.21.8 
(KHTML, like Gecko) Version/4.0.4 Safar
i/531.21.10

Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: en-US
Accept-Encoding: gzip, deflate
Connection: keep-alive
Address: 127.0.0.1}

>>probe parse buffer ["get" ["http" | "/ " | copy file to " "]]
== false

>> probe file
== "/a.html"
 
Should I have been able to see the results instead of  == false?
Graham:
29-Jan-2010
<?xml version="1.0"?>

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SelectResponse 
xmlns="http://sdb.amazonaws.com/doc/2009-04-15/"><SelectResult><Item><Name>2010-01-29T09:54:48.000ZI3s3NjIxRjZERDI1MUY0QzQyMDk4M0JDMzkwMERGOEQxQTVDRDY5MzEwfQ==</Name><Attribute><Name>Subject</Name><Value>hello?</Value></Attribute><Attribute><Name>Userid</Name><Value>Guest</Value></Attribute><Attribute><Name>UTCDate</Name><Value>2010-01-29T09:54:48.000Z</Value></Attribute></Item><Item><Name>2010-01-29T09:58:36.000ZI3swMTZBODg3QjAxNDQ2NEU5OENCNTA3OTc5OTg0Mjc1MTJGQzkxQTc0fQ==</Name><Attribute><Name>Subject</Name><Value>First 
Message</Value></Attribute><Attribute><Name>Userid</Name><Value>Graham</Value></Attribute><Attribute><Name>UTCDate</Name><Value>2010-01-29T09:58:36.000Z</Value></Attribute></Item><Item><Name>2010-01-29T11:06:18.000ZI3tFREFCRUYwNTY4OTdBMzcwODM2NzJGQUE5MzAwRUE3NjYwMTMwMTY5fQ==</Name><Attribute><Name>Subject</Name><Value>Index 
working</Value></Attribute><Attribute><Name>Userid</Name><Value>Graham</Value></Attribute><Attribute><Name>UTCDate</Name><Value>2010-01-29T11:06:18.000Z</Value></Attribute></Item></SelectResult><ResponseMetadata><RequestId>14873461-626a-44bf-2d7d-c1b23694b2e0</RequestId><BoxUsage>0.0000411449</BoxUsage></ResponseMetadata></SelectResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
Graham:
29-Jan-2010
Now I know I can't use r3 for parsing xml .... :(

http://www.curecode.org/rebol3/ticket.rsp?id=1449
GrahamC:
18-Oct-2010
I'm trying to validate some XML against an online validator and it's 
rejecting my dates :(
GrahamC:
4-Nov-2010
Anyone got a parse rule that strips out everything between tags in 
an "xml" document
GrahamC:
4-Nov-2010
whitespace: charset [ "^/^- " ]
    swsp: [ any whitespace ]
    result: copy ""

    parse/all pqri-xml  [ some [ copy t thru ">" (append result t) swsp 
    to "<" ]]
Group: Linux ... [web-public] group for linux REBOL users
Graham:
30-May-2010
there might even be some java there too that transforms the wiki 
markup to xml
Group: AGG ... to discus new Rebol/View with AGG [web-public]
Pekr:
21-Jun-2005
but overall it is good - feels realtime. I wonder if SVG has future? 
Is that new replacement for technology as DHTML, which never became 
widely used? There is plenty of W3C XML stuff, I wonder if they keep 
that under control or what the future of the web holds ....
Pekr:
22-Jun-2005
do you find anything XML being readable, when compared to rebol dialects?
shadwolf:
6-Sep-2005
basically SVG is a XML  structure but for several reasons i choose 
to pass thru a XML 2 Object converstion and then I  treat the SVG 
infos converted to rebol objet structure ;)
shadwolf:
6-Sep-2005
main reaseon to act like that xas svg recursion structure is a nightmare 
if you use parse or xml-parse
Pekr:
6-Sep-2005
xml-to-object? Are you talking about Gavain Mckenzie's parsing XML 
stuff?
Pekr:
6-Sep-2005
I found it being really excellent ... but - it is based upon old-good 
'parse itself of course :-) anyway - way much more usefull than xml-parse, 
which is imo absolutly insufficient for real work - but it is long 
time I looked into it ...
Henrik:
9-Nov-2008
Right now: Only one path at a time and it's monochrome. I'm not sure 
which path types are supported. You can't load XML files with it, 
only pure path data.
shadwolf:
4-Jan-2009
well My svg engine is working and got trouble only with matrix calulations 
due to an odd bug in the adapted version. Next i don't like the way 
my SVG works  I wish to be able to do it  in plain parse way (My 
method in not really elegant but it works fine  in most cases SVG 
is an XML file so the XML data is converted to REBOL  objects using 
parse and then i process those objects to convert into draw/Agg instructions). 
That was the fastest way i found at that time since what was important 
to me was the result not the beauty of the processing way.
shadwolf:
4-Jan-2009
http://shadwolf.free.fr/svg-demo-shad06.ris the lastest version 
of my SVG engine. Well in fact parse gives me head haches only when 
i have to parse XML  datas ...
Group: Web ... Everything web development related [web-public]
Oldes:
13-Feb-2006
Do you specify content-type if you produce the output? It doesn't 
look goot if you open it in browser, I should look better than XML 
for newbies.
Oldes:
13-Feb-2006
I hope I'm looking better than XML :)))
Sunanda:
13-Feb-2006
Yes.

If you clicked the link I gave above, then you saw a page served 
as text/html  [probably should be textplain -- so I've changed it]
If you try format=rss then you get a page served as text/xml


In both cases, the output is not meant for humans: one format is 
for REBOL and one for RSS readers.
Pekr:
4-Apr-2006
last week we finished upgrade of SAP after 5 years .... I saw some 
initial doc done in XML, XSLT etc. .... Firefox was not able to display. 
Imo the thing is, that SAP supports IE only ... what a world ....
Group: Announce ... Announcements only - use Ann-reply to chat [web-public]
TimW:
9-Jun-2007
I don't know if this is useful to anyone or not, but a couple of 
weeks ago I wrote a xanga parser to save posts and comments in a 
wordpress xml format.  http://www.timwylie.com/xword.html
PeterWood:
8-Mar-2008
Chapter 4 of  "Rebol - a programmer's guide" describes Rebol's advanced 
network programming features. Using TCP/IP protocols (including client/server 
programming), creating network protocols, CGI scripts, producing 
dynamic web documents, handling XML documents, using Web Services 
and the Rebol//View browser plug-in are all explained.

The preview is now available at 
http://www.lulu.com/content/2160633
Graham:
16-Apr-2008
xml dialect ?
Chris:
27-Sep-2009
Some core Twitter API functions: http://www.ross-gill.com/r/twitter.html

	? twitter
	tw: twitter/find #REBOL
	twitter/as "rgrebol" "****"
	fr: twitter/friends
	new: twitter/update "Now"


Results are XML objects - see http://bit.ly/xml_rebol(probe result/tree 
for structure).  Will add more at some point.

http://twitter.com/rgrebol
Group: !RebGUI ... A lightweight alternative to VID [web-public]
Pekr:
17-Nov-2005
Ok, those were icons vs. menu. As for tree-view, menu, grid data 
blocks. It is still the same problem, of how to efficiently use rebol 
structure (block of blocks) to represent tree (=in the meaning of 
hierarchy here). If we think twice, we can see that similar discussion 
is being held in XML group. We parse XML, and want to store it somehow 
efficiently, being able to navigate to some path(node), to read some 
item, but also to change it etc ...
Group: Rebol School ... Rebol School [web-public]
Reichart:
30-Jan-2009
Well, if you assume that your internal storage method is one which 
just needs to be "converted" to an other, like CSV => XML, you might 
be in for a suprise when trying to model a real time dynamic system 
with Undo like a paint program with a file format as export.


For example, do you store a given object once, with the history of 
the object elsewhere, or do you store the object together, with the 
most recent at the top of the list.

Also, Do you store objects, and actions, or both togther.
shadwolf:
6-Feb-2009
1 pass i convert SVG raw datas from the XML format to rebol objets 
than i convert this rebol object (with all the datas in it to REBOL/VIEW/DRAW 
 instructions
Group: Rebol/Flash dialect ... content related to Rebol/Flash dialect [web-public]
Oldes:
21-Dec-2007
I also use script which goes thru dir sctructure and prepares XML 
file with image sizes which is used inside the swf
Group: rebcode ... Rebcode discussion [web-public]
Volker:
25-Nov-2005
abstract: http://csdl2.computer.org/persagen/DLAbsToc.jsp?resourcePath=/dl/proceedings/&toc=comp/proceedings/pact/2004/2229/00/2229toc.xml&DOI=10.1109/PACT.2004.10021
Group: Tech News ... Interesting technology [web-public]
Pekr:
6-Feb-2007
ok, now I understand ... I know that current DOM-via-js is not very 
much powerfull, but we have at least something. Or we need proper 
XML parser then?
Maxim:
17-Apr-2007
the tool accesses a web service through XML from an IIS server so 
the server's manager doesn't even see the difference  :-)
Oldes:
1-May-2007
it's using xml...
<Canvas
   xmlns="http://schemas.microsoft.com/client/2007"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    
  <Ellipse 
     Height="200" Width="200"
     Stroke="Black" StrokeThickness="10" Fill="SlateBlue" />
</Canvas>
Oldes:
1-May-2007
it's not compiled... just XML and javascript... I really don't know, 
if I would like to write rich apps in XML... but it looks it nice 
adept for a new Rebol dialect:]
Pekr:
1-May-2007
Oldes - what the heck is that? :-) Are we supposed to see source 
code of rich aps in XML or what? :-)
Oldes:
1-May-2007
look at this... XML made from JS http://silverlight.net/samples/1.0/Tile-Text/js/Scene.xaml.js
Jerry:
9-May-2007
F3 is renamed as JavaFX. http://www.sun.com/aboutsun/pr/2007-05/sunflash.20070508.2.xml
 Now we have Silverlight/WPF, Apollo, and JavaFX .
Pekr:
20-May-2007
I would refer to most of XML (tag based stuff) as insane brainfuck!
Henrik:
31-May-2007
Well, you might be locked into precisely ajax, XML and managing session 
data in a non-persistent way, which is not optimal if you're building 
an application. We already know that, we're REBOLers. :-) He talks 
also about maintaining data persistence across sessions.
btiffin:
4-Sep-2007
ISO votes no for first round of Microsoft's Open Office XML bid

http://www.pcworld.com/article/id,136711-c,techindustrytrends/article.html
Louis:
6-Oct-2007
Free computer books:

http://www.onlinecomputerbooks.com/free-xml-books.php
Henrik:
13-Nov-2007
yuck, what a mess of XML files
Graham:
9-Jul-2008
are we not surprised that Google does not use XML for it's protocols??
Sunanda:
9-Jul-2008
I'm not.....Google is shuffling terabytes of data with very short 
response times.

XML may be a good archive/interchange format -- a better .CSV format 
-- but it just does not scale for operational systems of the size 
Google has.
Oldes:
5-May-2009
Flex is just a really ugly mix of XML, ActionScript and hardcoded 
SWF components. One thing is, that you can create forms quickly (with 
the Flex Builder IDE?) and another to create own complete application 
which does something more than submits data to java server.
Maxim:
5-May-2009
any language that uses XML as its interface should not have the right 
to be called a language.
[unknown: 5]:
5-May-2009
Maxim, you don't have to use XML at all.  You can simply code everything 
in AS3 and then compile if you like.
Group: !REBOL3-OLD1 ... [web-public]
Maxim:
21-Apr-2006
If you get any salesman in an IT dept which has XML capabilities 
(and they are getting used, really) and in 15 minutes, LOADS their 
data structures, instances, edits them and spits them right back 
out using a simple command line interface... welll...  case closed.
Maxim:
21-Apr-2006
hehe they are sometimes scare tactics by IT managers, but are valid 
noneteless.  being 100% XML compliant "out of the box, no strings 
attached" would add DEPTH to REBOL leaps and bounds in the IT business 
IMHO.
Graham:
21-Apr-2006
I thought RT had posted on their website that they had licensed some 
xml engine at one stage.
Maxim:
21-Apr-2006
The tools exist,  senior XML developers also, heck some people even 
wrote the damned specs...  nothing is keeping RT from contracting 
out someone (or licensing technology) to add those capabilites in 
rebol natively, or as a module if its too large to keep REBOL lightweight, 
(no pro-con libs wars please).
Group: !Cheyenne ... Discussions about the Cheyenne Web Server [web-public]
Terry:
27-Oct-2007
Worked out the other issue.. Flash requires crossdomain.xml file 
to be delivered up by Cheyenne when running Flash that uses xml.Socket 
(like RASH).
Butt it's working well now.. and very cool. 

Works like this.. I run my local copy of Framewerks with embedded 
Cheyenne server, and park the GUI on any server (always accessible, 
single point of bug fixing etc.) for all to use.. currently it's 
here  http://kommonwealth.com/exper/gui.html


Now, it wont work for you 'cuz you're not running framewerks.. but 
if you were..  you could type into the box "codes" and it would open 
the RASH code file, on your desktop, using your favorite text editor. 
  

But wait.. there's more... 

In my local code.txt file i have the following line

PnG "testing" ][bout: {<pre>ok this works</pre>} makeXML ['DISPLAY 
'MSG "testing works here"]]


So when I open another browser, and point it to http://localhost/
testing  that line is fired (more on all this later).. 

Which does two things.. it outputs "ok this woks" to this second 
localhost page .. BUT (and this is the cool part)

it sends the "testing works here" into the panel on the first kommonwealth 
page. 

In other words, Im able to PUSH data to the remote page at ANY TIME.. 
  this will make for the ultimate in portal pages. 

And.. if that's not enough, Im able to pass messages to the DOM via 
javascript to the kommonwealth page as well. 

Allowing things like sliding in panels.. fading div elements moving 
images.. whatever.


So.. remote page can manipulate my computer.. run apps, do any Rebol, 
reboot .. whatever.. and the local desktop can manipulate a remote 
web page.

Finally.
Brock:
13-Apr-2008
I've been wondering what it would be like to have a rebol version 
of asp.net.  I'd like to see a solution that separates the HTML and 
the logic as discussed, but also get rid of the css, javascript, 
xml and other languagues that get in the way of a streamlined solution.
Oldes:
16-Jun-2008
Basically it's the part which was showstoper for Rebol plugin - shortly 
it works in a way, that if you want to connect to some site with 
Flash, Flash first loads crossdomain.xml file from the target server 
where must be your domain allowed to access the server domain. If 
it's not allowed, the Flash do not connects at all. It's a basic 
prevention of doing Dos attacks from Flash Player.
Graham:
5-Mar-2009
xfdf: {<?xml version="1.0"?>
<xfdf xmlns="http://ns.adobe.com/xfdf/"xml:space="preserve">
<fields>
<field name="Submit"><value>Send</value></field>
<field name="TextField1"><value>$fname</value></field>
<field name="TextField2"><value>$surname</value></field>
<field name="syupdfid"><value>$syupdfid</value></field>
</fields>
<f href="$myhost/testpdf4.pdf?$time"/>
</xfdf>
}
Robert:
5-Mar-2009
Is your PDF sepcified via an XML specification?
Graham:
10-Mar-2009
the xml i was emitting also had a </body> in it ...
BrianH:
3-Apr-2009
Same error after upgrading Chromium, here's the verbose 5 log of 
the request:


3/4-01:38:00.891-[HTTPd] ================== NEW REQUEST ==================

3/4-01:38:01.531-[HTTPd] Request Line=>POST /ecg/blah.rsp HTTP/1.1

3/4-01:38:02.109-[HTTPd] Trying phase method-support ( mod-static 
)

3/4-01:38:02.828-[HTTPd] Trying phase url-translate ( mod-static 
)
3/4-01:38:03.062-[uniserve] Calling >on-received< with {^M
Host: localhost:8080^M
Connection: keep-alive^M
Us}
3/4-01:38:03.547-[HTTPd] Request Headers=>
Host: localhost:8080
Connection: keep-alive

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/530.5 
(KHTML, like Gecko) Chrome/2.0.173.0 Safari/530.5
Referer: http://localhost:8080/ecg/blah.html
Content-Length: 153149
Cache-Control: max-age=0
Origin: http://localhost:8080

Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryEv3SZArZWdjyznJZ

Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,bzip2,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3



3/4-01:38:03.797-[HTTPd] Trying phase url-to-filename ( mod-alias 
)
3/4-01:38:04.031-[HTTPd] => request processed
3/4-01:38:04.766-[HTTPd] Trying phase url-to-filename ( mod-rsp )
3/4-01:38:05-[HTTPd] => request processed

3/4-01:38:05.469-[HTTPd] Trying phase url-to-filename ( mod-internal 
)

3/4-01:38:05.719-[HTTPd] Trying phase url-to-filename ( mod-static 
)
3/4-01:38:05.969-[HTTPd] => request processed

3/4-01:38:06.453-[uniserve] >> Port: 3789, low-level reading: 17520

3/4-01:38:06.703-[uniserve] >> Port: 3789, low-level reading: 17520

3/4-01:38:06.953-[uniserve] >> Port: 3789, low-level reading: 17520

3/4-01:38:07.437-[uniserve] >> Port: 3789, low-level reading: 17520

3/4-01:38:07.906-[uniserve] >> Port: 3789, low-level reading: 19980

3/4-01:38:08.391-[uniserve] Calling >on-received< with "------WebKitFormBoundaryEv3SZArZWdjyznJZ^M^/Content-"

3/4-01:38:08.875-[uniserve] >> Port: 3789, low-level reading: 16680

3/4-01:38:09.344-[uniserve] >> Port: 3789, low-level reading: 17520

3/4-01:38:09.844-[uniserve] >> Port: 3789, low-level reading: 17520

3/4-01:38:10.312-[uniserve] >> Port: 3789, low-level reading: 1149

3/4-01:38:10.797-[uniserve] Calling >on-received< with {037.17923" 
"4429 SUNNYSLOPE RD SW" "Port Orchard" }

3/4-01:38:11.266-## Error in [uniserve] : On-received call failed 
with error: make object! [
    code: 303
    type: 'script
    id: 'expect-arg
    arg1: 'insert
    arg2: 'series
    arg3: [series! port! bitset!]
    near: [insert/part tmp/port s skip e]
    where: 'process-bounded-content
] !
3/4-01:38:11.734-[uniserve] Port closed : 127.0.0.1
Dockimbel:
16-May-2009
The only case where this method doesn't work is when you need to 
send back XML data with embedded HTML (RSS for example). So your 
request is justified.
Maxim:
25-May-2009
the idea being that interacting via xml request or full page refresh, 
with only part of a page parameters, creates the same output  :-)
Maxim:
25-May-2009
you could actually have one page sending xml requests to the server 
in ajax, and another page refreshes with the results of those requests...


the second page could also send a page request with the some parameters 
sent, and the server will reflect all changes to the current session/page 
so far.
Dockimbel:
21-Jul-2009
Well, I've found RSP script pretty handy for web services too, generating 
dynamically javascript code or XML for AJAX requests.
Maarten:
21-Jul-2009
XML I can see, but JSON is so close to REBOL.
401 / 6661234[5] 67