Web Applications Is Client-server Application?

My boss told me web application is NOT client-server application. I argued
with him because browser is the client, and the server code put in server.
Then web application should be a client-server application. My understanding
is that a web application is an application that runs on a browser. But
client-server application is not necessary a web application.

View Replies


ADVERTISEMENT

Start Client Application From Web Server

I want to launch a client application from the server and send it some parameters. The application is written in PowerBuilder.

View Replies View Related

Visual Studio .NET Has Detected That The Specified Web Server Is Not Running ASP.NET Version 1.1. You Will Be Unable To Run ASP.NET Web Applications Or Services.

i've installed vs.NET 2003 on my pc which is runing window 2000 pro with sp4, but when i'm trying to create new ASP.NET Web appication i got this messages "Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1. You will be unable to run ASP.NET Web applications or services."

View Replies View Related

Server And Client

I have my asp pages stored in my server ,but when i try and call the asp pages in the clinet side it does not show a portion of the page,the same thing if i call from the server it shows me.

View Replies View Related

Web Server To Client

I need to know if, and how, it is possible to use ASP to download a file automatically from the web server to the client in a given path. Is that possible ? Ideally I want a page with a link that when pressed it will copy a certain file that exists on the web server down to the client.

View Replies View Related

Server/client Probs

oChart.ExportPicture file_path, "gif", 200, 200

Response.Write "<img src='"&file_path&"'>"

if file_path=/smart/chart.gif

how this code can run in client computer as it will search in the local cmputer

View Replies View Related

Download File From Server To Client In Asp

we have some exist file at server site.we wants to open it from any client by simple browse or click on file. is tre any tool to do this or any script.

View Replies View Related

Client And Server Copying Files To And Fro

There is a client and a server. They both share a folder structure that is identical. The client is able to copy and import files to and from the server with button click.

The client is running IIS and some local scripts. The client also has a network drive mapped to the SERVER location.

Is there a way I can copy files without running IIS on the clients machine? The server needs to pass the file info to the Client. Also keeping in mind that I can't get IE to open file protocol links.

View Replies View Related

Web Client Disconnects From SQL Server - IIS Timing Out?

I am having a problem executing long running queries from an ASP application which connects to SQL Server 2000. Basically, I have batches of queries that are run using ADO in a loop written in VBScript. This works pretty well until the execution time of a single query starts to exceed some threshold, which I am trying to narrow down. I can typically run 2 - 10 queries in a loop, with the run time being anywhere from under a minute to an hour or more. Now that this application is being subjected to run against some large databases (25 - 40G), I'm having problems getting the application to continue beyond the first query if it takes a while to run.

I used SQL Profiler to try to diagnose what was going on. I can see the query executes to completion, but immediately after completing I can see an "Audit Logout" message, which apparently means that the client has disconnected. The query durations vary from 45 or 50 minutes to up to over 90 minutes. I have the ADO connection and query timeouts set to very large values, e.g. 1000 minutes, so I can't think its that. My guess is that there is some IIS setting or timeout that I am running up against and the connection to SQL Server is just dropped for some reason.

The configuration is

NT 4.0 SP6
SQL Server 2000 SP3
IIS 4.0
Explorer 5.5

I'm only running into this problem on the very largest databases we run against. The vast majority continue to function properly, but this is going to happen more often as time goes on the databases continue to grow in size.

View Replies View Related

Pass Client Creds To Web Server

Using classic ASP is it possible to get the user's name and password and pass them to the web server to avoid the Windows Authentication popup login box?

View Replies View Related

Client/Server Side Variables

At the moment I am building a small news board on my companys intranet. There are 2 different offices with 2 different domains. for each office I want to show different news relating to that office.

Is there any way with asp to get the name of the domain that the user is logged onto so I can filter different news for each domain. This will just save the hassle of putting the intranet on 2 different domains.

View Replies View Related

How To Send UDT From A ATL Server Implemented In VC++ To ASP Client

I want to know the possiblity and process of an ASP client, which needs to get some UDT from a ATL Server component implemented in VC++. The UDT is basically a C++ class consisting of a BSTR and a short. for eg.,

class CMyClass
{
BSTR myName;
short myNum;
};

and what actually i need is to pass a collection(vector) of this object to ASP client as well as to a VC++ client.

View Replies View Related

FileExists On Client Machine NOT Server

The jist of what i want is the obj.FileExists (how it checks for a file on the server) for the client machine.

The client will be scanning something that will put a pdf file into a shared folder on their machine (it will be the same path for all clients). I need to get the code* to pull that file so that i can take the data on the pdf.

*Code doesn't have to be ASP. i'm up for ASP, VBScript, Javascript.

View Replies View Related

Client Side Server.HTMLEncode

Normally when I do serverside processing and if the string may contain < or > characters in the userdata I would do:

<%=Server.HTMLEncode(userdata)%>

However if I'm doing client side processing is there any equivalent VB function that I can call to do just that, or do I have to write my own routine to convert < to < and > to >, etc?

View Replies View Related

Access Variables From Asp Server To Client?

isit possible to access variables (code) from ASP server script to ASP client page?? take for example the code supplied below:

'server script
<%@ Language=VBScript %>
<%
dim svalue
svalue="access me"
%>

'client code
<HTML>
<BODY>
<SCRIPT LANGUAGE="VBScript">
dim x
x = svalue 'svalue isfrom server script
response.write x
</SCRIPT>
</BODY>
</HTML>

View Replies View Related

Is It Possible To Determine The Client's Time Zone On The Server?

I was wondering if anyone knew how to determine how to determine the
client's time zone from within an ASP page?

View Replies View Related

Sharing Data Between Client And Server Scripts

Suppose I load data from a database and store it in a VBScript array using asp (i.e. this is all done from the server)

I then want to have some client side scripts (they have to be client side because they are activated depending on what the user does on the page). Is there any way of accessing the array generated at the server, through the client side scripts???

If not, how else can I write my page?? The data is loaded from a database, which is obviously done at the server. If not by doing what I have already described, how else can i use the database data in my client side scripts???

View Replies View Related

ASP Script Takes Longer On Client Than Server

Let me paint the picture: A large MS SQL database (in 7.0) on a Win2K box (not that the Server O/S matters here really) and an ASP page that grabs data from it to present, of course, to the client browser. For the sake of conversation (since I have tested this oversimplified version of the problem) the code pulls a select * from blah (where blah is my BIG table - right now about 25,000 rows).

The problem/question is the time it takes to present the HTML to the client. The big question is...

Why would it take significantly longer to present the final (parsed) HTML on a remote client computer than right on the server? Note: I would normally consider the time it takes to "download" the HTML to the client, but in this case the actual "presented (parsed) HTML" is so small (it's only one integer inside the body tags), that could never account for the difference in time...and I mean significant..on the server...seconds...on a random client computer...many minutes...on my customer's machine...over an hour (which is, of course, my particular problem).

I obviously have to look at their ISP, but a)Again, the end-product HTML is very VERY small and b)the page does eventually present itself (so it's not timing out). I have the scripttimeout set ridicously high so that potential problem doesn't come up, but that's not the problem.

I just want to know what could be causing the significant time difference? Everything I know about the ASP "process" tells me this scenario should never happen (unless the HTML being sent is significant, of course, like a huge list, or something).

View Replies View Related

Accessing Server Variables From The Client Browser

I want to be able to client process of the ASP page to get the value
populated in Request("rssFeed"), how can I do this because the Request
object is not available to the Client-side.

View Replies View Related

File Download From Web Server To Client Field

How to download the file from web server to client machine? If anybody have idea, inform to me.

View Replies View Related

Server Application Error

when i start my default.asp i receive this:

`The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.`

View Replies View Related

Server Application Error

When I browse to HTTP://localhost/defacult.asp, it shows
the message:

Server Application Error
The server has encountered an error while loading an
application during the processing of your request. Please
refer to the event log for more detail information. Please
contact the server administrator for assistance.

View Replies View Related

Server Application Error

I currently enccountered the error given above and I have checked the net abt the possible cause of this. I read about setting the write permission to "Everyone". You see, I was trying to insert a record in an Access table. And before I got the "Server Application Error", I received the "please use an updateable query.." or something to that effect.

Could someone please give me a clearer explanation on this? coz I cannot even see the Security tab being mentioned. I am using Win2k Pro as my webserver.

View Replies View Related

Server Application Error

my web server(XP+IIS5.1) can't run any ASP page, even if a blank ASP document.
When I try to open the document the browser displays the error message below:
Server Application Error
The server has encountered an error while loading an application during the processing of your request.
Please refer to the event log for more detail information. Please contact the server administrator for assistance.

View Replies View Related

Server Application Unavailable

I'm getting these errors:

IN VS.NET:
The web server reported the following error when attempting to create or
open the web project located at the following URL:
'http://localhost/webapplication1. 'HTTP/1.1 500 Internal Server Error'.

IN BROWSER:
Server Application Unavailable
The web application you are attempting to access on this web server is
currently unavailable. Please hit the "Refresh" button in your web browser
to retry your request.

Administrator Note: An error message detailing the cause of this specific
request failure can be found in the application event log of the web server.
Please review this log entry to discover what caused this error to occur.

I had service pack 2 installed. Tech guy uninstalled it (said it conflicted
with Novell) and then I reinstalled Framework 1.1 now I get these errors. I
set show friendly HTTP messages in the browser unchecked to show error
messages. Also got show error messages in IIS.

View Replies View Related

Server Application Error

fter Installing IIS on a WinXP Pro machine, I have copied one of my web
site files to test it on that machine.

I have created a virtual directory, and when I try to access the site on
http://localhost/website. When I try to load any ASP page, I get the
following error:

"Server Application Error

The server has encountered an error while loading an application during the
processing of your request. Please refer to the event log for more detail
information. Please contact the server administrator for assistance."

Checking the event log I have an error and a warning: Code:

View Replies View Related

Server Application Error

I have to manage a windows server with 20 domains. Some have .asp-pages, some not. I dont have programmed this pages. The server was new installed (on puretec), the scripts and some other stuff to.Now, the server is running, but sometimes on all asp-pages there, become an error:

Server Application Error
The server has reached the maximum recovery limit for the application
during the processing of your request. Please contact the server
administrator for assistance.

What does it mean? What can I do to find the error? I have search on some newsgroups und have found out, that one asp-Skript take to many ressources and "shoot out" the service. But I don't know what script in which domain?

View Replies View Related

Server Application Error

i need to make an asp page work and what it tells me is "Server application error The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance."

View Replies View Related

Server Application Error

I use to always be able to view my local ASP pages at http://localhost, but a few days ago, it started giving me the following notice:
===================
Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance

==================================================

I assume that something is up with IIS, but I don't know where to look. It happens on each and every ASP page I try to view. I haven't changed anything, haven't put up any Microsoft patches or anything. I suspect spyware. I run the usual anti-spyware/adware programs quite often, and catch one or two items just about every time. That dang Winfixer came in a couple weeks ago, and it was pretty nasty, but I digress.

View Replies View Related

Server Application Error

i am very new to asp, i am able to test and view asp pages when i am at work, but the moment i work at home, my asp pages cannot be viewed, and i get this error:

Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.

it refers me to an event log, but i don't know where that is exactly, so i'd know more details as to what is causing this problem and look into it more precisely. any direction as to what i can do next to solve this problem or even what's possibly causing this problem.

View Replies View Related

Application And Data In Different Server

my application i put on server1(webserver) and my data i put on server2(*.doc and *.pdf). when user access my application on server1 than i show my data on server2.
Ip on server1 is public and IP on server2 is private . how to configure between two server at above ?

View Replies View Related

Server Application Error

I just reinstalled my Windows XP Professional and I can't
seem to make IIS work on my local ASP application. I have
setup many times IIS and configured it to work properly,
but now after the new WinXP setup I receive the message:

"Server Application Error:

The server has encountered an error while loading an
application during the processing of your request. Please
refer to the event log for more detail information.

View Replies View Related

File Creation On Server, Without Wasting Client Time

I have a chunk of code, where based on the user's selections, it goes through a database and selects all of the records from the database and writes them to a text file (the database contains nearly 600,000 records), currently, the file is written and the user would end up having to wait for it to be written, before continuing.

Is there a way that this file could be kind of.... tagged or something, so that the server creates it in the background, instead of while the user waits, so the user can continue doing other things, rather then having to wait for the text file to be created.

The files can be quite large, as they can end up being anywhere from 1 - about 600,000 records with between 4 - 10 fields each. Here is a sample of the code that creates the text file. Code:

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved