A pattern of use for MS XML is also given under "xsl" module at http://olegykj.sourceforge.net/ This is MS Windows specific. In earlier messages there was mention of XML and J boxes and fetch {:: (most underused verb devoid of its counterpart). Yes you could use SAX (the xml addon) to parse request or data. But also you could pre-generate the response into boxed and then convert to XML or HTML as a separate step as shown in another utility "okhtml2" (circa 1998). > Any AJAX interfaces? There are no interfaces. It's a concept technology, like CGI. There is no standard of protocol, it is based on DHTML for partial update of otherwise fixed (no HTTP postback) page with JavaScirpt and HTML DOM. The request is done with XMLHTTP component initially by Microsoft, but now present in all browsers, which delivers asynchronisity. The request is to any HTTP service which responds with XML or plain text, also it could be a web service with SOAP or other format. You can use any web server engine, such as PHP, ASP or JHP to provide the responses. To make it more sophisticated, you could build abstractions on top of that: remote call, such that you JavaScript acts as a proxy; object halves, something like DCOM also proxy but OOP'd. Further you can have distributed UI with half objects which have the ability of partially update themselves, a MVC pattern. A good example is .NET based MS Atlas and FireAnt as implemented in the new mail.live.com (formerly hotmail). In particular they generate JavaScript automatically to propagate the server based object model.
----- Original Message ---- From: greg heil <[EMAIL PROTECTED]> To: Programming forum <[email protected]> Sent: Friday, July 7, 2006 11:49:02 PM Subject: Re: [Jprogramming] XML/J On 7/7/06, bill lam <[EMAIL PROTECTED]> wrote: > greg heil wrote: > > Are there any conventions / code i can utilise to embed J code in XML/XHTML > > and vice versa? i would like to make my code base more sensible than i seem > > to be able to with the plain GUI. > Oleg has an utility for xml in his webpage. http://olegykj.sourceforge.net/ Thanks Bill, Oleg. JHP, and the parser should keep me out of mischief for a while:) > or use may try m$ msxml via ole/com interface. for DOM interface, entry point is wd 'cc x oleautomation:MSXML2.DOMDocument' or wd 'cc x oleautomation:MSXML.DOMDocument' depend on version of msxml. detail documentation of msxml please refer to google. Is this cross platform? Any AJAX interfaces? ~greg ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
