473,395 Members | 1,377 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

java script interpreter

Hi,

We are developing one application for smartphone. In this we are
parsing XMLs and rendering it as UI elements using smartphone SDK.
Everything is working fine. Now one more requirement has come. Java
script will also be included in the XMLs. We are searching for java
script interpreters so that we will give our script files to this
interpreters as input andthe output buffer will be pure XML. We have
got one java script interpreter, but it is not taking document.write
kind of things. It is compiling plain functions.

Can anyone help in this search for a java script interpreter for
windows which supports document.write kind of things.
regards
harish
Jul 23 '05 #1
6 2245
What do you use to send document to the smartphone, webserver?
document.write is function specific for a webbrowser, therefor there
is no standalone JavaScript interpreter that automatically supports
document.write.

What you could do is look into the MS scripting host.
You can just make a myconverter.js file and use it to output parse
the XML documents or you can let your webserver host ASP files. ASP
has JavaScript support and it can output XML.

If that is not what you want maybe you can explain clearer what it is
that you want to do?

Greetings,
Vincent
harish wrote:
Hi,

We are developing one application for smartphone. In this we are
parsing XMLs and rendering it as UI elements using smartphone SDK.
Everything is working fine. Now one more requirement has come. Java
script will also be included in the XMLs. We are searching for java
script interpreters so that we will give our script files to this
interpreters as input andthe output buffer will be pure XML. We have
got one java script interpreter, but it is not taking document.write
kind of things. It is compiling plain functions.

Can anyone help in this search for a java script interpreter for
windows which supports document.write kind of things.
regards
harish


Jul 23 '05 #2
ha*******@yahoo.com (harish) writes:
We are developing one application for smartphone. In this we are
parsing XMLs and rendering it as UI elements using smartphone SDK.
Everything is working fine. Now one more requirement has come. Java
script will also be included in the XMLs.
For clarity: "Javascript" is in one word. It is not related to "Java".
We are searching for java script interpreters so that we will give
our script files to this interpreters as input andthe output buffer
will be pure XML.
Pure Javascript (or rather: ECMAScript) doesn't have output
capabilities. The language, as defined by the ECMA 262 v3 standard, is
meant to be used in many different settings. The output capabilities
of ECMAScript interpreters in browsers is provided by the runtime
environment (aka. the DOM).
We have got one java script interpreter, but it is not taking
document.write kind of things. It is compiling plain functions.
Then you should extend its environment with a host function that
does the output when called.
Can anyone help in this search for a java script interpreter for
windows which supports document.write kind of things.


Wikipedia has links to several Jevascript/ECMAScript implementations:
<URL:http://en.wikipedia.org/wiki/JavaScript#Usage>
but I doubt that is what you need. Just extend the runtime environment
for the one you have.

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 23 '05 #3
Vincent van Beveren wrote:
What do you use to send document to the smartphone, webserver?
document.write is function specific for a webbrowser,
No. document.write() ist part of both client-side JavaScript up
to version 1.3 and of server-side JavaScript up to version 1.4.
Beyond CSJS 1.3, it is part of W3C DOM Level 1 and 2 HTML which
is in no way restricted to Web browsers. There are more HTML
UAs than Web browsers.
therefor there is no standalone JavaScript interpreter that
automatically supports document.write.


Non sequitur.

BTW: Your From header is invalid.
PointedEars
Jul 23 '05 #4
Lasse Reichstein Nielsen wrote:
ha*******@yahoo.com (harish) writes:
We are developing one application for smartphone. In this we are
parsing XMLs and rendering it as UI elements using smartphone SDK.
Everything is working fine. Now one more requirement has come. Java
script will also be included in the XMLs.


For clarity: "Javascript" is in one word. It is not related to "Java".

^^^^^^^^^^
We are searching for java script interpreters so that we will give
our script files to this interpreters as input andthe output buffer
will be pure XML.


Pure Javascript (or rather: ECMAScript) doesn't have output
capabilities.


JavaScript (note the case) is _not_ ECMAScript. JavaScript is an
*implementation* of ECMAScript. Up to version 1.3 it contained
client-side output capabilities that are further known to be part
of a so-called "DOM Level 0", originating from DOM support back to
Netscape 3 and IE 3. But those capabilities were and, as some of
them are included in W3C DOM Level 1 and 2 HTML, intended for HTML
and XHTML documents and UAs, namely Netscape Navigator considered
an HTML UA, and most of them are not applicable to XML documents/
DOMs and UAs.
PointedEars
Jul 23 '05 #5
Thomas 'PointedEars' Lahn wrote:
Lasse Reichstein Nielsen wrote:

<snip>
Pure Javascript (or rather: ECMAScript) doesn't have
output capabilities.


JavaScript (note the case) is _not_ ECMAScript.
JavaScript is an *implementation* of ECMAScript.

<snip>

It seems a bit pointless to be stating that Netscape's trademark name
"JavaScript" applies to something specific and distinct in response to a
post where the trademark name was never used.

Richard.
Jul 23 '05 #6
Thomas 'PointedEars' Lahn <Po*********@nurfuerspam.de> writes:
Lasse Reichstein Nielsen wrote:
Pure Javascript (or rather: ECMAScript) doesn't have output
capabilities.


JavaScript (note the case) is _not_ ECMAScript.


I am very deliberate about the case. I write "JavaScript" when I mean
Netscape's implementation and "Javascript" when I am talking about
the mess of different implementations of ECMAScript in current use.

I know it's a small difference in spelling, but I have found no better
way to make the distinction and still be able to talk about "Javascript"
in the abstract (like "Sure you can implement a countdown in Javascript
for your web page").
JavaScript is an *implementation* of ECMAScript.


Some versions are. Other versions predate ECMAScript v1. But I was not
talking about "JavaScript", but about implementations of ECMAScript
(e.g., Core JavaScript, or "pure Javascript" as I allow myself to call
it in non-technical terms).

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: John Doe | last post by:
Hello, I'm currently working on a little tool that would benefit from having a little embedded script language. Although I have C++ source code available for such a script language, I have 2...
4
by: angel | last post by:
A java runtime environment includes jvm and java class (for example classes.zip in sun jre). Of course jython need jvm,but does it need java class. Thanx
0
by: Falco98 | last post by:
This is for a class assignment; all we have to do is make a XML-to-SQL converter with a GUI, which can run either on Win2k or Sun 8 systems (interchangably). My partner is writing the GUI in Java...
3
by: #pragma once | last post by:
That's all we are expecting from programs written in the managed code; Though a MVP advised not to say that, because after JIT compilation the code runs in the native! Funny, isn't? That means...
16
by: fernandez.dan | last post by:
Hey I'm sorry if this is not the appropriate news group for this question. I was wondering if anyone has any recommendation for embbedding a script engine in a c++ application. I want to feed my...
1
by: Uma | last post by:
DB2I.PROCEDURE1 - Build started. C:\SQLLIB\java\jdk\bin\javac -classpath ".;C:\SQLLIB\java\db2java.zip;C:\SQLLIB\java\runtime.zip;C:\SQLLIB\java\sqlj.zip" "PROCEDURE1.java" DB2I.PROCEDURE1 -...
1
by: Paul | last post by:
Hi, I want to store particular algorithms written in Java into a database (preferably MySQL) and then be able to accept values such as algorithm type and parameters from a user (via JDBC) which...
34
by: Anthony Irwin | last post by:
Hi All, I am currently trying to decide between using python or java and have a few quick questions about python that you may be able to help with. #1 Does python have something like javas...
3
by: uzzi | last post by:
I don't know how to make a php script to work via cron...I want to make it run daily...My server API is CGI/Fast CGI.I have hosting from godaddy and in the help section i found that i have to specify...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.