views:

542

answers:

6

I have the following situation. A customer uses JavaScript with jQuery to create a complex website. We would like to use JavaScript and jQuery on the server (IIS) for the following reasons:

  1. Skills transfer - we would like to use JavaScript and jQuery on the server and not have to use eg VB Script. / classic asp. .Net framework/Java etc is ruled out because of this.

  2. Improved options for search/accessibility. We would like to be able to use jQuery as a templating system, but this isn't viable for search engines and users with js turned off - unless we can selectively run this code on the server.

There is significant investment in IIS and Windows Server, so changing that is not an option.

I know you can run jScript on IIS using windows Script host, but am unsure of the scalability and the process surrounding this. I am also unsure whether this would have access to the DOM.

Here is a diagram that hopefully explains the situation. I was wondering if anyone has done anything similar?

EDIT: I am not looking for critic on web architecture, I am simply wanting to know if there are any options for manipulating the DOM of a page before it is sent to the client, using javascript. Jaxer is one such product (no IIS) Thanks.

alt text

A: 

I think it's mainly a browser based script so probably you are better of using technologies based on VB or .NET to perform or generate HTML from templates. I'm sure there are because in the java world there are a few of these around (like velocity). You'd then use jQuery to create or add client side functionality and usability so it makes the website more usable than it would have been.

pengtuck
Thanks for the answer. I'm trying to see if it is possible to use the client programming model that the css and photoshop centric developers are used to - to a server environment based on IIS.
James Westgate
A: 

JScript runs on IIS via something called ASP.
Active Server Pages.
It was first available in 1996.

Eventually ASP.NET was introduced as a successor. But ASP is still supported.

There is no DOM for the HTML page, though.

You might need to reconsider your architecture a bit.

Cheeso
Thanks. I understand asp, asp.net et al. I want to apply the same javascript programming model on the server as I do on the client. So its a case of trying to make the technology fit the ideal architecture.
James Westgate
The reason I pointed out that JScript runs in ASP, is because of your statement, *I know you can run jScript on IIS using windows Script host, but...*. That statement didn't mention the primary technology that would be used to run JScript on IIS.
Cheeso
A: 

What exactly do you mean by

"A customer uses JavaScript with jQuery to create a complex website"

Half the point of jQuery is to make it easy for the developer to manipulate the DOM, and therefore add interactive enhancements to a web site. By running the Javascript on the server and only rendering HTML you will lose the ability to add these enhancements, without doing a round trip to the server (think WebForms postback model...ugh).

Now if what you really mean is the customer uses a site builder based on jQuery, why not have that tool output flat HTML in the first place?

roryf
Thanks. I understand jQuery's uses very well. Its a large manufacturer's website as opposed to an intranet/extranet business application, so the logic is based more around templating and animation.
James Westgate
Thanks again for the response. Would you believe that it is flat html with tonnes of jQuery. And that is duplicated with xsl and xml transforms on the server for <noscript> versions.
James Westgate
+2  A: 

The idea to reuse client JS on the server may sound tempting, but I am not sure that jQuery itself would be ready to run in server environment.

You will need to define global context for jQuery somehow by initializing window, document, self, location, etc.. I am not sure it is doable.

Besides, as Cheeso has mentioned, Active Server Pages is a very outdated technology, it was replaced with ASP.Net by Microsoft in the beginning of the century. I used to maintain a legacy system using ASP 3.0 for more than a year and that was pain. The most wonderful pastime was debugging: you will hardly find anything for the purpose today and will have to decript beautiful errors like in IIS log:

error '800a9c68'
Application-defined or object-defined error

Nevertheless, I can confirm that I managed to reuse client and server JScript. But this was code written by me who knew that it was going to be used on the server.

P.S. I would not recommend move that way. There are plenty templating frameworks which are familiar to those who write HTML and JavaScript.

newtover
Thanks. Im very familiar with these technologies. I can see a definite benefit in being able to execute jQuery on the DOM before it is sent to the browser.
James Westgate
+4  A: 

Have a look at bringing the browser to the server, Rhino, and Use Microsoft's IIS as a Java servlet engine.

The first link is from John Resig's (jQuery's creator) blog.

David Murdoch
+1 first link is interesting reading
oedo
Thank you very much, this is exactly what I was looking for. Although it may not be great from a performance viewpoint, its a start. I definitely think there is an opportunity for a .net javascript server side implementation based on the DLR combined with John Resigs ideas. I may start a project on git/codeplex.
James Westgate
sweet. keep us informed. I'm definitely interested.
David Murdoch
This may ehlp. http://htmlagilitypack.codeplex.com/
James Westgate
+1  A: 

I think the only viable solutions you're likely to find anywhere near ready to go involve putting IIS in front of Java. There are two browser-like environments I'm aware of coded for Java:

1) Env-js (see http://groups.google.com/group/envjs and http://github.com/thatcher/env-js ) I believe this one has contributions from jQuery's John Resig and was put together with jQuery testing/support in mind.

2) HTMLUnit (see http://htmlunit.sourceforge.net/ ) This one's older, and wasn't originally conceived around jQuery, but there are reports in the wild of using it to run jQuery's test suite successfully (http://daniel.gredler.net/2007/08/08/htmlunit-taming-jquery/ ).

If you want something pure-IIS/MS, I think your observation about windowsScript host and/or something like the semi-abandoned JScript.NET is probably about as close as you're going to come, along with a port (which you'll probably have to start) of something like Env-js or HTMLUnit.

Also, I don't know if you've seen the Wikipedia list of server-side JavaScript solutions:

http://en.wikipedia.org/wiki/Server-side_JavaScript

Finally... you could probably write a serviceable jQuery-like library in any language that already has some kind of DOM library and first-class functions (or, failing that an eval facility). See, for example pQuery for Perl (http://search.cpan.org/~ingy/pQuery-0.07/lib/pQuery.pm ). This would get you the benefits of the jQuery style of manipulating documents. Skill transfer is great and JavaScript has a wonderful confluence of very nice features, but on the other hand, having developers who care enough to learn multiple languages is also great, and js isn't the only nice language out there.

Weston C
One more thing I forgot to add: if you don't find an answer you're satisfied with here, you might try the Common JS Google Group (http://groups.google.com/group/commonjs/ ). I think you're likely to hear mostly what I've told you here, but if you search the group for IIS, there's at least one discussion where people have briefly mentioned they were considering windows script host and IIS.
Weston C
+1 Many thanks for the response.
James Westgate