Ask a Question related to ASP.NET General, Design and Development.
-
bruce barker #1
Re: Append JavaScript from a Web Service
the web service should supply a method that returns the desired javascript.
the web application can just call the web service, then emit the returned
javascript. this could be implemented as a user control on the web
application.
you could also write the web service in javascript, and share the business
logic code.
-- bruce (sqlwork.com)
"George Butts" <geobutts@optonline.net> wrote in message
news:d97e0004.0307091210.23d49dd9@posting.google.c om...> I am architecting an n-tier enterprise web solution. This comprises
> of a Web Application, a Web Service and a database (SQL Server 2000).
> Each of these componenets will potentially reside on their own server
> in a High-Availibilty (HA) configuration. Since there is potential to
> have an extremely high number of concurrent requests, I would like to
> duplicate the business logic on the client-side using JavaScript to
> allow the end-user to model their data before submitting the updates.
> This would greatly reduce the number of requests from the web
> application to the web service and ultimately to the database. I do
> not want to duplicate the development effort for the business logic
> since this could be extremely error-prone. I would like to keep all
> the business logic in its respective layer within the web service, but
> allow the web service to "emit" it's JavaScript equivalent to be
> written to the web page that will be served to the end-user. I am
> fairly new to ASP.NET. I know that web controls provide the ability
> to override the Render method and use the HtmlTextWriter object to
> append JavaScript to the web page to handle tasks locally. I was
> wondering if it would be possible for a web service to perform a
> similar task. If not, does anyone have any experience with this type
> of problem that may provide a different/better solution.
>
> Thanks,
> George
bruce barker Guest
-
Append to XML
I'm dealing with a XML Server and one of the requests can only handle one submission at a time. So I constructed a queue process in a CFC to submit... -
XML append DOM in other DOM
Hi, I created a XML DOM (objDOM) and want to append another DOM (objMultipleAttributesDom) as a Node in the first one. ... -
Consuming a web service in javascript
-- This is a copy of a post I made in ColdFusion General Discussion -- Hi, I am currently working on a project where we need to dynamically... -
PDF Append
Is there any adobe software that will allow you to easily append PDF files into one? If so can it be installed on a server and run periodically... -
File Append or not?
This is definitely a beginner problem, I need to add the url to a html file for later reference but when I use the append method I end up with a...



Reply With Quote

