Integrating WebDAV Into An ASP Application

I just started playing around with WebDAV. The basic configuration is done
and works. For example I am able to open a document via HTTP from within
Word and save it.

What I am really looking for is a way to integrate WebDAV into an ASP
application. Initially I tought, that if WebDAV is enabled, a link such as
http://server/app/test.doc would automatically open the document as a WebDAV
document. However, this is not so. The document is opened in Word inside the
browser (as without WebDAV), but it cannot be saved remotely.

So question is: can an ASP application make a document be opened as a WebDAV
document?

View Replies


ADVERTISEMENT

Webdav

i would like to put a link in my site to documents to open them with
webdav, i mean i want that a user (logged) opens a document to modify it and
save it by webdav, do you have code for it?(vb net, asp net, c#). (im at an
shared hosting, so i cant install software in my server, exactly arsys.es in
Spain).

View Replies View Related

WebDav Server

I want to create a custom webdav server by implementing IHttpHandler in my own class and firing it via IIS 6.0 Wildcard Application Maps. I have written my HttpHandler class implementing IHttpHandler. In the ProcessRequest method, I simply write a line to the Application Event Log stating what verb was requested.It doesn't work with a wildcard application map and a WebDav request.If I configure an extension specific map (.test for example) and launch a GET request from a browser, the handler fires as expected and records the event to the Event Log. If I remove all extension specific maps and configure a Wildcard Application Map and launch a GET request from a browser, it works correctly. HOWEVER, when I try to map a drive to the virtual directory (with the mini-redirector in XP) I am prompted for username and password. No accounts even with administrator level access will satisfy the prompt. I always receive Error 5 (access denied.A few other details: WebDav is enabled as a Web Service Extension in IIS 6 configuration. I've tried creating an application pool with administrator level identity. NTFS file permissions for the content directory are set to Everyone - Full Control. Write and Directory Browsing are checked on the application folder. I have configured my application in both the web server root and in a virtual directory.

View Replies View Related

WebDav Component

I'm looking for a component that helps me to WebDav-enable my software. I don't want to implement the code to translate http-requests into com- or. net-calls, so I'm looking for a WebDav-wrapper at the server side.

May be there is a way to implement an interface, install such a handler on my server and voila: WebDav is there for my CMS. It seem to be impossible to find such a product with google, because a query for WebDav results in so many hits.

View Replies View Related

WebDAV Downloading Attachments From Exchange Server

I have the following code, that retrieves the emails from a designated inbox, stores the message and subject content in a SQL database and then deletes them from the exchange server. Now I need to take the attachments for each email and save them on a different server.

I've researched this all day, and I keep finding references stating that I can download the file using, X-MS-ENUMATTS. I'm using it currently to retrieve a list of attached files, however I fail to see how I can download the attachment to my webserver using this.

The red code below is a request to the actual file. So I know the http path to the file, how do I go about saving it to my server? If I can't downlaod it without any user interaction, is there at least a way that I could allow the user to download the file via a link, without them being prompted for a username or password? Code:

View Replies View Related

Integrating XML

I am trying to find more information on "Integrating XML and relational databases such as Oracle".I found articles that show the heavy process of entire mapping process like this one :-

http://www.rpbourret.com/xml/XMLAndDatabases.htm

I also found lighter articles like the one where it shows how easy it is to write XML from a database. After filling up the dataset, use its method to write to a XML document. I am confused - which one to use and Why? can someone could explain what does it mean and its benefits.

View Replies View Related

Integrating Word With ASP

i need to edit Word-documents that are on a remote server and still be able to save them on the same remote server.Usually the computer downloads a copy of the Word file on the local harddisc, and after you have edited it, it will also be saved on your local computer.Is it possible to direct edit and save Word-documents on a remote server?

View Replies View Related

Integrating API In ASP Code

I have a problem of integrating an SDK with my ASP code. AS such i am working on a mortgage site in ASP and my client wants that the forms filled up online should be transferred to the software residing on client side now i have got the API regarding the software how would i be able to integrate it in my asp code.

View Replies View Related

Integrating ASP W/ JavaScript In Form

I am trying to load a dropdown select on an HTML form with the user's current selection based on previous user input that they put into a database. I am trying to use JavaScript to have the user's choice selected when the page loads. Here is my javascript function:
(Assume the database connection code is already in place and functional)

<script language = "Javascript">
function chosen(dropdown){
combobox.option.selected = '<%=rs.fields("State")%>';
return true;
}
</script>

View Replies View Related

Integrating JAVA Applet With ASP!!

I want 2 know whether a JAVA applet & asp can be integrated?

Ok, here's the example scenario:-

I make an applet in JAVA which is a login form. Now when I click the login button, I should be able 2 login given that I m using asp & ms-access at backend.

is it possible? I know it can be done with JSP and Servlet at backend but how about in asp?

View Replies View Related

Integrating AmfPHP With IIS 5 And ODBC

I'm trying to integrate amfPHP on IIS 5 and searching ways to communicate with Microsoft SQL Server 7. I can't find any documentation documentation about this issue, so I'm wondering if there r some fokes with any experience and/or with any form of documentation..

View Replies View Related

Integrating Asp Into A Table To Auto Generate Rows From A Select Statement

Im running a select statement to a database and wish to display the relevant records into a table. For some reason, its not liking this - can someone see why, and or tell me an easier way to produce an 'automatically generating' table of results.

<% @language="vbscript" %>
<% Option Explicit %>
<% Response.Buffer=True %>
<html>
<head>
<title>Search Results</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<!-- #include file="dbConn.asp" -->
<!-- #include file="adovbs.inc"-->
<h1>Your search results returned the following popup messages:</h1>
<% Dim msgtype, title, message, url
msgtype=request.form("type")
title=request.form("title")
message=request.form("msg")
url=request.form("URL")

Dim adoDB, adors, strSQL
set adoDB = Server.CreateObject("ADODB.Connection")
adoDB.Open strConnection
set adoRS = Server.CreateObject("ADODB.RecordSet")
strSQL="SELECT PID,P_TITLE,P_MSG,P_URL,P_TYPE FROM POPUP WHERE ("
If msgtype <> "" then
strSQL=strSQL & "P_TYPE='" & msgtype & "' "
If title <> "" then
strSQL=strSQL & "OR P_TITLE LIKE '%" & title & "%' "
If message <> "" then
strSQL=strSQL & "OR P_MSG LIKE '%" & message & "%' "
If url <> "" then
strSQL=strSQL & "OR P_URL LIKE '%" & url & "%' "
End if
strSQL=strSQL & ")"


'DEBUG ONLY!!
'response.write strSQL
'response.end

adoRS.Open strSQL, adoDB
' Loop through the recordset to display the records
Do While Not adoRS.EOF
& " <tr> " &
& " <td> " & Response.Write adoRS.Fields("PID").Value & " </td> "
& " <td> " & Response.Write adoRS.Fields("P_TYPE").Value & " </td>"
& " <td> " & Response.Write adoRS.Fields("P_TITLE").Value & "</td>"
& " <td> " & Response.Write adoRS.Fields("P_MSG").Value & "</td>"
& " <td> " & Response.Write adoRS.Fields("P_URL").Value & "</td></tr>"
adoRS.MoveNext
Loop
& " </table> " &


' Tidy up afterwards
adoRS.Close
Set adoRS = Nothing
adoDB.Close
Set adoDB = Nothing

%>

</body>
</html>

View Replies View Related

Access VB Application From Web Application

We have our web-site developed in classic ASP, and I need to add this additional feature on one of the pages to access a VB application. How can I do that? The VB application basically sends output to the COM3 port and opens a USB-Cash drawer that is attached to it. I am not sure how to go about with this.

View Replies View Related

Web Application

Sometime this morning our classic asp web application stopped
authenticating against active directory. This is our only "classic" asp
app that authenticates against ad. Note that this app has been in
production for three years with no problems. All .NET apps are
authenticating fine from the same server. This same classic asp app
authenticates fine from our development server. There have been no code
changes to this app.
We're using the login id and password to bind the necessary ad objects
- we check for err.number - if equal to zero, we're authenticated, if
not equal to zero then authentication failed.
We checked with the network people and they say ad is working fine and
the server is able to authenticate. The app doesn't go through a
firewall -so no hang up there. The guys who manage the web server say
they haven't made any changes to it. They confirmed that the app is in
the correct app pool so it doesn't conflict with 2.0 apps.
I'm stumped.

View Replies View Related

Web Application

I remember coming across a MS tool that would allow me to monitor the performance of all aspects of a DNA based application - all the way from the ASP level to MS SQL server. It was part of the NT resource kit. I am trying to locate this tool for Win 2000. Can someone who has come across such a tool help me

View Replies View Related

What Is Application()?

I've just been given some code to decipher in classic ASP and have come across this function (Application()) in several instances. I can't seem to figure out what it does?

View Replies View Related

Web Application

I am about to create a web application using asp and vbs to build an online
roster for a department of 25 people. The roster covers some 10 shifts a
day, 7 days a week always starting on a Sunday. I will be using an access
database file to hold the information. At this this stage I will hold all
the data for each week based on the date that the week starts.
I am looking for ideas on how to dynamically give the user the option to
choose any given week in any given year, always starting on a sunday. Could
this be created on the fly or would it be easier creating a database table
holding the dates for Sunday for a year or 2 ?
Once a week is chosen a check on the database will determine if that weeks
roster has been created or not. If not a user with the correct permissions
can then create it.The rosters are currently written out by hand. It is a labourious task which must have certain numbers of staff working each shift for a given day. By
creating a web application automating the checking process and making the
roster available online and by email will make life easier for all staff
involved.

View Replies View Related

ASP Web Application

i am trying to install my ASP web application to my client side server, but 1 thing i am worry is they my stole my source code to sell-over or they might modify my source code... how those software house which develop ASP web application they gonna avoid this?I know Microsoft have a program that can encrypt & encode ASP files and run properly in IIS.... But to bad... i also found the Decode program too
So what is the safety way to deploy my application to client without any worries?
Some might ask me go for .NEt, in this momment not yet toward .NET.

View Replies View Related

Application Uses

I am Geting the Error "Application uses a value of the wrong type for the current operation in one of my asp pages"
VB Method

oCMD.Parameters.Append oCMD.CreateParameter("@CustNo", adDecimal, adParamInput, 9, intCustNo)
oCMD.Parameters("@CustNo").Precision = 9
oCMD.Parameters("@CustNo").NumericScale = 0

For adDecimal Data Type Should i have to set Length as 5 instead of 9.
Is this causing the above or something else ?

View Replies View Related

ASP Application

I am trying to develop an ASP.net application
using Visual Studio .Net 2003. When I attempt to create
the project, it gives me an error stating that the IIS on
my hosting server may not be compatible and the active
directory cannot find the web server. The server is
running Windows 2000, IE 5.5. Is there some sort of
patch I can download to allow me to create ASP projects
on that server? Or something I should install?

View Replies View Related

Fax Application

I am trying to set up a fax ASP web (or vb 6) application and I want to use the FaxComEx.dll library that comes with winXP fax services. But I cant find documentation about this library.

I found something in msdn but it is very dificult to watch the logic that appeared. It's very confusing. Is there something else that can I rely to learn how to make a fax application?

View Replies View Related

Need An Application

I have a client that wants to have ticket system on their web site where people could order a ticket online and after they send their payment to paypal they would be redirected back to the web site and have a unique ticket that they would be able to print out the ticket but they cant be the same ticket to prevent people from printing out the same tickets. Is this possible? Is there a program?

View Replies View Related

ASP Application On PDA

My web application i need to view it on the palm. Backend is SQl and front end is ASP
How do i make it work on the PALm

View Replies View Related

Asp Application

create a user subdirectorie with a webpage that he o0r she can fill with there own logo and with some text,perhaps a link but just one page.That page must automaticly come up in a link page so people can see his page.

Thing I want to have is a way that our customers, that dont want to pay for a a bigger website,can have just one page on our website in there own subdir.

I see lot's of free csm style websites but that's to time consuming for people that want just a simple page with just there logo an advertising and some info.

View Replies View Related

Web Application

I am developing a web application that will allow user 3 trials to login with the correct password and user name.

View Replies View Related

An Application

I am building a web reservation system for a hotel. I'm working in the hotel as a manager as well. Hotel has 18 rooms and 4 Suites. Now it is my first time with such application. I planned to use ASP and Access DB. Can anyone give me ideas of basics. How to start and what an application should look alike. This is nonpaid project so i cannot actually go somewhere else except looking into forums and i can find anything.

Functionality will be, for user, gives dates, no of people and search, select room and pay. backend will be process payment(i have one processor), store it in db and generate email for the reception. Managing will be set availability, review availabity and set prices individually for the room. how the database should look alike and what will be the search criteria.

View Replies View Related

Web Application

I need to build a web application based on user's rights (roles) web interface where each user has his/her own web page depending on their user role.It is a web application that is based totally the user needs Could you please give me some insite on where to begin.

View Replies View Related

Cmd.exe From Asp Application

how i can run the command prompt from an asp application?

View Replies View Related

ASP.NET Web Application

On my local sandbox , in IIS I created some Websites. Now when I try to create a ASP.NET we app , it tries to create it in the website last created and fails .

But my requirement is to create it in the Default We Site mapped to C:Inetpubwwwroot

Can anybody guide me how to do that? I have a doubt that when a new website is created in IIS , it becomes the Default web site . If it is so how to revert the default back to 'Default Web Site'

View Replies View Related

Session And Application

You are required to create an online tracking system for the Webmaster which should show the current online status of all the users currently logged on to your site with the following details about every user:

SessionId
Current Page requested
Time of request
Browser used for making the request

If a user remains inactive for 10 minutes, then it should be assumed he is not online. You are not supposed to use any permanent storage features.

View Replies View Related

How To Use SQL OLAP In Web Application

Is there is any way to use SQL OLAP in Web application .IS possiable

View Replies View Related

ASP Email Application

I need to create an online email application which will receive and
send emails from given accounts using ASP.

I am aware that I can use ASP components such as ASPEmail or
ASPSmartMail to send messages, but have no idea how to receive emails.

I read somewhere that CDONTS may help, but my provider has disabled
these on his server.

View Replies View Related

About Excel.Application

When I use the Excel.Application object in window 2000 Advanced Server,
I have the following issue

'------------------------------------------get excel template file
'create excel application
Set xlApp = server.CreateObject("Excel.Application")

'open excel file
Set xlbook = xlApp.Workbooks.Open(targetFile)

xlApp.Workbooks.Open(targetFile) will create a shortcut under the C: etc.
So when I open as many as files, the shortcuts under c: are so many.

How could I avoid create the the shortcuts under c:????

View Replies View Related







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