473,396 Members | 1,849 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,396 software developers and data experts.

Connection String

I am making a asp page that will run on my computer by iis. But the problem
is the database in on a web server. I can not seem to get the connection to
work for it though here his the connection and the error. Any help please.

Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"

Error: Microsoft JET Database Engine (0x80004005)
Not a valid file name.
/Default.asp, line 40

Thanks,

WStoreyII
Nov 18 '05 #1
18 2601
When using Access, it must reside on the same machine as the code that is
accessing it and the path in the connection string must be a local physical
path. Access is not made for sharing database data across networks. You
may wish to upgrade to the free MSDE (MS Data Engine), which is a single
user licensed version of SQL Server.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
I am making a asp page that will run on my computer by iis. But the
problem
is the database in on a web server. I can not seem to get the connection
to
work for it though here his the connection and the error. Any help
please.

Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"

Error: Microsoft JET Database Engine (0x80004005)
Not a valid file name.
/Default.asp, line 40

Thanks,

WStoreyII

Nov 18 '05 #2
Try using the local path such as "Source=c:\database\PIMP.mdb"

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
I am making a asp page that will run on my computer by iis. But the
problem
is the database in on a web server. I can not seem to get the connection
to
work for it though here his the connection and the error. Any help
please.

Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"

Error: Microsoft JET Database Engine (0x80004005)
Not a valid file name.
/Default.asp, line 40

Thanks,

WStoreyII

Nov 18 '05 #3
If you are trying to get data from an Access database across sites (on
different machines), you'll want to investigate calling a Web service on the
remote site.

The Web service will fetch the data from Access and return it to your page.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
I am making a asp page that will run on my computer by iis. But the
problem
is the database in on a web server. I can not seem to get the connection
to
work for it though here his the connection and the error. Any help
please.

Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"

Error: Microsoft JET Database Engine (0x80004005)
Not a valid file name.
/Default.asp, line 40

Thanks,

WStoreyII


Nov 18 '05 #4
Ken,

The problem is that i have a free webpage that comes with asp classic
capabilliteis and access database only. so i guess my question is can i use
webservices with asp classic?

"Ken Cox [Microsoft MVP]" wrote:
If you are trying to get data from an Access database across sites (on
different machines), you'll want to investigate calling a Web service on the
remote site.

The Web service will fetch the data from Access and return it to your page.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
I am making a asp page that will run on my computer by iis. But the
problem
is the database in on a web server. I can not seem to get the connection
to
work for it though here his the connection and the error. Any help
please.

Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"

Error: Microsoft JET Database Engine (0x80004005)
Not a valid file name.
/Default.asp, line 40

Thanks,

WStoreyII


Nov 18 '05 #5
It isn't as easy as with ASP.NET but you can certainly do it:

Creating Web Services with ASP

http://www.4guysfromrolla.com/webtech/070401-1.shtml

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:D1**********************************@microsof t.com...
Ken,

The problem is that i have a free webpage that comes with asp classic
capabilliteis and access database only. so i guess my question is can i
use
webservices with asp classic?

"Ken Cox [Microsoft MVP]" wrote:
If you are trying to get data from an Access database across sites (on
different machines), you'll want to investigate calling a Web service on
the
remote site.

The Web service will fetch the data from Access and return it to your
page.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
>I am making a asp page that will run on my computer by iis. But the
>problem
> is the database in on a web server. I can not seem to get the
> connection
> to
> work for it though here his the connection and the error. Any help
> please.
>
> Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
> Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"
>
> Error: Microsoft JET Database Engine (0x80004005)
> Not a valid file name.
> /Default.asp, line 40
>
> Thanks,
>
> WStoreyII



Nov 18 '05 #6
And this..

How to Build a Low-Budget Web Service with Classic ASP

http://www.4guysfromrolla.com/webtech/120501-1.shtml

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:D1**********************************@microsof t.com...
Ken,

The problem is that i have a free webpage that comes with asp classic
capabilliteis and access database only. so i guess my question is can i
use
webservices with asp classic?

"Ken Cox [Microsoft MVP]" wrote:
If you are trying to get data from an Access database across sites (on
different machines), you'll want to investigate calling a Web service on
the
remote site.

The Web service will fetch the data from Access and return it to your
page.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
>I am making a asp page that will run on my computer by iis. But the
>problem
> is the database in on a web server. I can not seem to get the
> connection
> to
> work for it though here his the connection and the error. Any help
> please.
>
> Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
> Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"
>
> Error: Microsoft JET Database Engine (0x80004005)
> Not a valid file name.
> /Default.asp, line 40
>
> Thanks,
>
> WStoreyII



Nov 18 '05 #7
The DataSource must be a file path, not a URL.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
I am making a asp page that will run on my computer by iis. But the problem is the database in on a web server. I can not seem to get the connection to work for it though here his the connection and the error. Any help please.
Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"

Error: Microsoft JET Database Engine (0x80004005)
Not a valid file name.
/Default.asp, line 40

Thanks,

WStoreyII

Nov 18 '05 #8
Ken,

that tutorial that you sent me does not use Vs.Net, do you know of a way to
do it with vs.net becuase that is alls that i have.

Thanks Again

WStoreyII

"Ken Cox [Microsoft MVP]" wrote:
It isn't as easy as with ASP.NET but you can certainly do it:

Creating Web Services with ASP

http://www.4guysfromrolla.com/webtech/070401-1.shtml

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:D1**********************************@microsof t.com...
Ken,

The problem is that i have a free webpage that comes with asp classic
capabilliteis and access database only. so i guess my question is can i
use
webservices with asp classic?

"Ken Cox [Microsoft MVP]" wrote:
If you are trying to get data from an Access database across sites (on
different machines), you'll want to investigate calling a Web service on
the
remote site.

The Web service will fetch the data from Access and return it to your
page.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
>I am making a asp page that will run on my computer by iis. But the
>problem
> is the database in on a web server. I can not seem to get the
> connection
> to
> work for it though here his the connection and the error. Any help
> please.
>
> Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
> Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"
>
> Error: Microsoft JET Database Engine (0x80004005)
> Not a valid file name.
> /Default.asp, line 40
>
> Thanks,
>
> WStoreyII


Nov 18 '05 #9
WStoreyII wrote:
I am making a asp page that will run on my computer by iis. But the problem
is the database in on a web server. I can not seem to get the connection to
work for it though here his the connection and the error. Any help please.

Connection: "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=http://n.1asphost.com/WStoreyII/PIMP.mdb"


ConnectionsStrings.com [1] is your friend if you have problems with your
connection string.

HTH,
Jonas

[1] http://www.connectionstrings.com/
Nov 18 '05 #10
I must be missing something because you are talking about using ASP Classic
rather than ASP.NET.

In any event, you can edit either in VS.NET's editor.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:F4**********************************@microsof t.com...
Ken,

that tutorial that you sent me does not use Vs.Net, do you know of a way
to
do it with vs.net becuase that is alls that i have.

Thanks Again

WStoreyII

"Ken Cox [Microsoft MVP]" wrote:
It isn't as easy as with ASP.NET but you can certainly do it:

Creating Web Services with ASP

http://www.4guysfromrolla.com/webtech/070401-1.shtml

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:D1**********************************@microsof t.com...
> Ken,
>
> The problem is that i have a free webpage that comes with asp classic
> capabilliteis and access database only. so i guess my question is can
> i
> use
> webservices with asp classic?
>
> "Ken Cox [Microsoft MVP]" wrote:
>


Nov 18 '05 #11
Ken,

Heres the situation. I am making a program for my wife and I, that will
allow us to view and edit information in a database on seperate computers so
i have put the database on a website that was free. Since this website only
use's classic asp and ms access database. I can not access the database from
my code. So i need a webservice or other means of accessing the database
from the server and downloading the informatin. But the tutorial that you
gave me to make a webservice in asp classic does not use .net and .net tools
are the only tools that i have so i was wondering if there was a way to make
it compatable with .net ?

Thanks

WStoreyII

"Ken Cox [Microsoft MVP]" wrote:
I must be missing something because you are talking about using ASP Classic
rather than ASP.NET.

In any event, you can edit either in VS.NET's editor.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:F4**********************************@microsof t.com...
Ken,

that tutorial that you sent me does not use Vs.Net, do you know of a way
to
do it with vs.net becuase that is alls that i have.

Thanks Again

WStoreyII

"Ken Cox [Microsoft MVP]" wrote:
It isn't as easy as with ASP.NET but you can certainly do it:

Creating Web Services with ASP

http://www.4guysfromrolla.com/webtech/070401-1.shtml

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:D1**********************************@microsof t.com...
> Ken,
>
> The problem is that i have a free webpage that comes with asp classic
> capabilliteis and access database only. so i guess my question is can
> i
> use
> webservices with asp classic?
>
> "Ken Cox [Microsoft MVP]" wrote:
>


Nov 18 '05 #12
After you upload your Access database to the free hosting server, run a
simple test asp page that has this in it:

<%
response.write("<P>The physical path to the database is:")
response.write(Request.ServerVariables(Server.MapP ath("[put relative path to
your database here]") & "<P>")
%>

And run the page. You will now know the exact physical path you need to
enter into your connection string.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:C8**********************************@microsof t.com...
Ken,

Heres the situation. I am making a program for my wife and I, that will
allow us to view and edit information in a database on seperate computers
so
i have put the database on a website that was free. Since this website
only
use's classic asp and ms access database. I can not access the database
from
my code. So i need a webservice or other means of accessing the database
from the server and downloading the informatin. But the tutorial that you
gave me to make a webservice in asp classic does not use .net and .net
tools
are the only tools that i have so i was wondering if there was a way to
make
it compatable with .net ?

Thanks

WStoreyII

"Ken Cox [Microsoft MVP]" wrote:
I must be missing something because you are talking about using ASP
Classic
rather than ASP.NET.

In any event, you can edit either in VS.NET's editor.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:F4**********************************@microsof t.com...
> Ken,
>
> that tutorial that you sent me does not use Vs.Net, do you know of a
> way
> to
> do it with vs.net becuase that is alls that i have.
>
> Thanks Again
>
> WStoreyII
>
> "Ken Cox [Microsoft MVP]" wrote:
>
>> It isn't as easy as with ASP.NET but you can certainly do it:
>>
>> Creating Web Services with ASP
>>
>> http://www.4guysfromrolla.com/webtech/070401-1.shtml
>>
>> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
>> news:D1**********************************@microsof t.com...
>> > Ken,
>> >
>> > The problem is that i have a free webpage that comes with asp
>> > classic
>> > capabilliteis and access database only. so i guess my question is
>> > can
>> > i
>> > use
>> > webservices with asp classic?
>> >
>> > "Ken Cox [Microsoft MVP]" wrote:
>> >


Nov 18 '05 #13
That did not work ?

WStoreyII

"Scott M." wrote:
After you upload your Access database to the free hosting server, run a
simple test asp page that has this in it:

<%
response.write("<P>The physical path to the database is:")
response.write(Request.ServerVariables(Server.MapP ath("[put relative path to
your database here]") & "<P>")
%>

And run the page. You will now know the exact physical path you need to
enter into your connection string.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:C8**********************************@microsof t.com...
Ken,

Heres the situation. I am making a program for my wife and I, that will
allow us to view and edit information in a database on seperate computers
so
i have put the database on a website that was free. Since this website
only
use's classic asp and ms access database. I can not access the database
from
my code. So i need a webservice or other means of accessing the database
from the server and downloading the informatin. But the tutorial that you
gave me to make a webservice in asp classic does not use .net and .net
tools
are the only tools that i have so i was wondering if there was a way to
make
it compatable with .net ?

Thanks

WStoreyII

"Ken Cox [Microsoft MVP]" wrote:
I must be missing something because you are talking about using ASP
Classic
rather than ASP.NET.

In any event, you can edit either in VS.NET's editor.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:F4**********************************@microsof t.com...
> Ken,
>
> that tutorial that you sent me does not use Vs.Net, do you know of a
> way
> to
> do it with vs.net becuase that is alls that i have.
>
> Thanks Again
>
> WStoreyII
>
> "Ken Cox [Microsoft MVP]" wrote:
>
>> It isn't as easy as with ASP.NET but you can certainly do it:
>>
>> Creating Web Services with ASP
>>
>> http://www.4guysfromrolla.com/webtech/070401-1.shtml
>>
>> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
>> news:D1**********************************@microsof t.com...
>> > Ken,
>> >
>> > The problem is that i have a free webpage that comes with asp
>> > classic
>> > capabilliteis and access database only. so i guess my question is
>> > can
>> > i
>> > use
>> > webservices with asp classic?
>> >
>> > "Ken Cox [Microsoft MVP]" wrote:
>> >


Nov 18 '05 #14
Alls i need to do is to be able to use the webservice on the server even
though it uses classic asp. but the only tools that i have to do this are
vs.net. I just need to use the server as a storage for the database and i
wish to be able to use the webservice to access and mutate it. i dont need
to be able to use it in asp or anything i just need to get the data and sent
them back to my computer from the infor mation on the server. Does anyone
know how to do this or is it not possible?

Thanks

WStoreyII

"WStoreyII" wrote:
That did not work ?

WStoreyII

"Scott M." wrote:
After you upload your Access database to the free hosting server, run a
simple test asp page that has this in it:

<%
response.write("<P>The physical path to the database is:")
response.write(Request.ServerVariables(Server.MapP ath("[put relative path to
your database here]") & "<P>")
%>

And run the page. You will now know the exact physical path you need to
enter into your connection string.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:C8**********************************@microsof t.com...
Ken,

Heres the situation. I am making a program for my wife and I, that will
allow us to view and edit information in a database on seperate computers
so
i have put the database on a website that was free. Since this website
only
use's classic asp and ms access database. I can not access the database
from
my code. So i need a webservice or other means of accessing the database
from the server and downloading the informatin. But the tutorial that you
gave me to make a webservice in asp classic does not use .net and .net
tools
are the only tools that i have so i was wondering if there was a way to
make
it compatable with .net ?

Thanks

WStoreyII

"Ken Cox [Microsoft MVP]" wrote:

> I must be missing something because you are talking about using ASP
> Classic
> rather than ASP.NET.
>
> In any event, you can edit either in VS.NET's editor.
>
> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
> news:F4**********************************@microsof t.com...
> > Ken,
> >
> > that tutorial that you sent me does not use Vs.Net, do you know of a
> > way
> > to
> > do it with vs.net becuase that is alls that i have.
> >
> > Thanks Again
> >
> > WStoreyII
> >
> > "Ken Cox [Microsoft MVP]" wrote:
> >
> >> It isn't as easy as with ASP.NET but you can certainly do it:
> >>
> >> Creating Web Services with ASP
> >>
> >> http://www.4guysfromrolla.com/webtech/070401-1.shtml
> >>
> >> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
> >> news:D1**********************************@microsof t.com...
> >> > Ken,
> >> >
> >> > The problem is that i have a free webpage that comes with asp
> >> > classic
> >> > capabilliteis and access database only. so i guess my question is
> >> > can
> >> > i
> >> > use
> >> > webservices with asp classic?
> >> >
> >> > "Ken Cox [Microsoft MVP]" wrote:
> >> >
>
>


Nov 18 '05 #15
I have the same issue, but didn't see a resolution. From what I have read, a
physical path on a machine is needed for the Data Source property of the
connection string. How can this be specified if the file is located on a
remote server?

"WStoreyII" wrote:
Alls i need to do is to be able to use the webservice on the server even
though it uses classic asp. but the only tools that i have to do this are
vs.net. I just need to use the server as a storage for the database and i
wish to be able to use the webservice to access and mutate it. i dont need
to be able to use it in asp or anything i just need to get the data and sent
them back to my computer from the infor mation on the server. Does anyone
know how to do this or is it not possible?

Thanks

WStoreyII

"WStoreyII" wrote:
That did not work ?

WStoreyII

"Scott M." wrote:
After you upload your Access database to the free hosting server, run a
simple test asp page that has this in it:

<%
response.write("<P>The physical path to the database is:")
response.write(Request.ServerVariables(Server.MapP ath("[put relative path to
your database here]") & "<P>")
%>

And run the page. You will now know the exact physical path you need to
enter into your connection string.

"WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
news:C8**********************************@microsof t.com...
> Ken,
>
> Heres the situation. I am making a program for my wife and I, that will
> allow us to view and edit information in a database on seperate computers
> so
> i have put the database on a website that was free. Since this website
> only
> use's classic asp and ms access database. I can not access the database
> from
> my code. So i need a webservice or other means of accessing the database
> from the server and downloading the informatin. But the tutorial that you
> gave me to make a webservice in asp classic does not use .net and .net
> tools
> are the only tools that i have so i was wondering if there was a way to
> make
> it compatable with .net ?
>
> Thanks
>
> WStoreyII
>
> "Ken Cox [Microsoft MVP]" wrote:
>
>> I must be missing something because you are talking about using ASP
>> Classic
>> rather than ASP.NET.
>>
>> In any event, you can edit either in VS.NET's editor.
>>
>> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
>> news:F4**********************************@microsof t.com...
>> > Ken,
>> >
>> > that tutorial that you sent me does not use Vs.Net, do you know of a
>> > way
>> > to
>> > do it with vs.net becuase that is alls that i have.
>> >
>> > Thanks Again
>> >
>> > WStoreyII
>> >
>> > "Ken Cox [Microsoft MVP]" wrote:
>> >
>> >> It isn't as easy as with ASP.NET but you can certainly do it:
>> >>
>> >> Creating Web Services with ASP
>> >>
>> >> http://www.4guysfromrolla.com/webtech/070401-1.shtml
>> >>
>> >> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
>> >> news:D1**********************************@microsof t.com...
>> >> > Ken,
>> >> >
>> >> > The problem is that i have a free webpage that comes with asp
>> >> > classic
>> >> > capabilliteis and access database only. so i guess my question is
>> >> > can
>> >> > i
>> >> > use
>> >> > webservices with asp classic?
>> >> >
>> >> > "Ken Cox [Microsoft MVP]" wrote:
>> >> >
>>
>>

Nov 19 '05 #16
After you upload your Access database to the free hosting server, run a
simple test asp page that has this in it:

<%
response.write("<P>The physical path to the database is:")
response.write(Request.ServerVariables(Server.MapP ath("[put relative path to
your database here]") & "<P>")
%>

And run the page. You will now know the exact physical path you need to
enter into your connection string.

"rmunson8" <rm******@discussions.microsoft.com> wrote in message
news:0C**********************************@microsof t.com...
I have the same issue, but didn't see a resolution. From what I have read,
a
physical path on a machine is needed for the Data Source property of the
connection string. How can this be specified if the file is located on a
remote server?

"WStoreyII" wrote:
Alls i need to do is to be able to use the webservice on the server even
though it uses classic asp. but the only tools that i have to do this
are
vs.net. I just need to use the server as a storage for the database and
i
wish to be able to use the webservice to access and mutate it. i dont
need
to be able to use it in asp or anything i just need to get the data and
sent
them back to my computer from the infor mation on the server. Does
anyone
know how to do this or is it not possible?

Thanks

WStoreyII

"WStoreyII" wrote:
> That did not work ?
>
> WStoreyII
>
> "Scott M." wrote:
>
> > After you upload your Access database to the free hosting server, run
> > a
> > simple test asp page that has this in it:
> >
> > <%
> > response.write("<P>The physical path to the database is:")
> > response.write(Request.ServerVariables(Server.MapP ath("[put relative
> > path to
> > your database here]") & "<P>")
> > %>
> >
> > And run the page. You will now know the exact physical path you need
> > to
> > enter into your connection string.
> >
> > "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
> > news:C8**********************************@microsof t.com...
> > > Ken,
> > >
> > > Heres the situation. I am making a program for my wife and I, that
> > > will
> > > allow us to view and edit information in a database on seperate
> > > computers
> > > so
> > > i have put the database on a website that was free. Since this
> > > website
> > > only
> > > use's classic asp and ms access database. I can not access the
> > > database
> > > from
> > > my code. So i need a webservice or other means of accessing the
> > > database
> > > from the server and downloading the informatin. But the tutorial
> > > that you
> > > gave me to make a webservice in asp classic does not use .net and
> > > .net
> > > tools
> > > are the only tools that i have so i was wondering if there was a
> > > way to
> > > make
> > > it compatable with .net ?
> > >
> > > Thanks
> > >
> > > WStoreyII
> > >
> > > "Ken Cox [Microsoft MVP]" wrote:
> > >
> > >> I must be missing something because you are talking about using
> > >> ASP
> > >> Classic
> > >> rather than ASP.NET.
> > >>
> > >> In any event, you can edit either in VS.NET's editor.
> > >>
> > >> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
> > >> news:F4**********************************@microsof t.com...
> > >> > Ken,
> > >> >
> > >> > that tutorial that you sent me does not use Vs.Net, do you know
> > >> > of a
> > >> > way
> > >> > to
> > >> > do it with vs.net becuase that is alls that i have.
> > >> >
> > >> > Thanks Again
> > >> >
> > >> > WStoreyII
> > >> >
> > >> > "Ken Cox [Microsoft MVP]" wrote:
> > >> >
> > >> >> It isn't as easy as with ASP.NET but you can certainly do it:
> > >> >>
> > >> >> Creating Web Services with ASP
> > >> >>
> > >> >> http://www.4guysfromrolla.com/webtech/070401-1.shtml
> > >> >>
> > >> >> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in
> > >> >> message
> > >> >> news:D1**********************************@microsof t.com...
> > >> >> > Ken,
> > >> >> >
> > >> >> > The problem is that i have a free webpage that comes with asp
> > >> >> > classic
> > >> >> > capabilliteis and access database only. so i guess my
> > >> >> > question is
> > >> >> > can
> > >> >> > i
> > >> >> > use
> > >> >> > webservices with asp classic?
> > >> >> >
> > >> >> > "Ken Cox [Microsoft MVP]" wrote:
> > >> >> >
> > >>
> > >>
> >
> >
> >

Nov 19 '05 #17
Thanks Scott. I was able to get the server's absolute machine path, but
after using that in the connection string I received permission errors about
going across domains. I can work with my hosting provider to see about the
permission issue, but this seems like a solution that could be very unstable.
If my hosting provider changes the directory, this solution would break.
But I image of the Jet Provider doesn't allow for url paths, there isn't much
I can do.

Ryan

"Scott M." wrote:
After you upload your Access database to the free hosting server, run a
simple test asp page that has this in it:

<%
response.write("<P>The physical path to the database is:")
response.write(Request.ServerVariables(Server.MapP ath("[put relative path to
your database here]") & "<P>")
%>

And run the page. You will now know the exact physical path you need to
enter into your connection string.

"rmunson8" <rm******@discussions.microsoft.com> wrote in message
news:0C**********************************@microsof t.com...
I have the same issue, but didn't see a resolution. From what I have read,
a
physical path on a machine is needed for the Data Source property of the
connection string. How can this be specified if the file is located on a
remote server?

"WStoreyII" wrote:
Alls i need to do is to be able to use the webservice on the server even
though it uses classic asp. but the only tools that i have to do this
are
vs.net. I just need to use the server as a storage for the database and
i
wish to be able to use the webservice to access and mutate it. i dont
need
to be able to use it in asp or anything i just need to get the data and
sent
them back to my computer from the infor mation on the server. Does
anyone
know how to do this or is it not possible?

Thanks

WStoreyII

"WStoreyII" wrote:

> That did not work ?
>
> WStoreyII
>
> "Scott M." wrote:
>
> > After you upload your Access database to the free hosting server, run
> > a
> > simple test asp page that has this in it:
> >
> > <%
> > response.write("<P>The physical path to the database is:")
> > response.write(Request.ServerVariables(Server.MapP ath("[put relative
> > path to
> > your database here]") & "<P>")
> > %>
> >
> > And run the page. You will now know the exact physical path you need
> > to
> > enter into your connection string.
> >
> > "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
> > news:C8**********************************@microsof t.com...
> > > Ken,
> > >
> > > Heres the situation. I am making a program for my wife and I, that
> > > will
> > > allow us to view and edit information in a database on seperate
> > > computers
> > > so
> > > i have put the database on a website that was free. Since this
> > > website
> > > only
> > > use's classic asp and ms access database. I can not access the
> > > database
> > > from
> > > my code. So i need a webservice or other means of accessing the
> > > database
> > > from the server and downloading the informatin. But the tutorial
> > > that you
> > > gave me to make a webservice in asp classic does not use .net and
> > > .net
> > > tools
> > > are the only tools that i have so i was wondering if there was a
> > > way to
> > > make
> > > it compatable with .net ?
> > >
> > > Thanks
> > >
> > > WStoreyII
> > >
> > > "Ken Cox [Microsoft MVP]" wrote:
> > >
> > >> I must be missing something because you are talking about using
> > >> ASP
> > >> Classic
> > >> rather than ASP.NET.
> > >>
> > >> In any event, you can edit either in VS.NET's editor.
> > >>
> > >> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
> > >> news:F4**********************************@microsof t.com...
> > >> > Ken,
> > >> >
> > >> > that tutorial that you sent me does not use Vs.Net, do you know
> > >> > of a
> > >> > way
> > >> > to
> > >> > do it with vs.net becuase that is alls that i have.
> > >> >
> > >> > Thanks Again
> > >> >
> > >> > WStoreyII
> > >> >
> > >> > "Ken Cox [Microsoft MVP]" wrote:
> > >> >
> > >> >> It isn't as easy as with ASP.NET but you can certainly do it:
> > >> >>
> > >> >> Creating Web Services with ASP
> > >> >>
> > >> >> http://www.4guysfromrolla.com/webtech/070401-1.shtml
> > >> >>
> > >> >> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in
> > >> >> message
> > >> >> news:D1**********************************@microsof t.com...
> > >> >> > Ken,
> > >> >> >
> > >> >> > The problem is that i have a free webpage that comes with asp
> > >> >> > classic
> > >> >> > capabilliteis and access database only. so i guess my
> > >> >> > question is
> > >> >> > can
> > >> >> > i
> > >> >> > use
> > >> >> > webservices with asp classic?
> > >> >> >
> > >> >> > "Ken Cox [Microsoft MVP]" wrote:
> > >> >> >
> > >>
> > >>
> >
> >
> >


Nov 19 '05 #18
You don't have permission to the folders of your own site? You should just
upload the access database to a sub-folder within your own site. Since this
folder will be on the same machine and directory as the rest of the
files/folders in your site, the absolute physical path to your site root is
the same for all of your site content. It wouldn't be on a different domain
than everything else in your site.

And, no the JET provider must have a file path, not a URL in the connection
string.

"rmunson8" <rm******@discussions.microsoft.com> wrote in message
news:AB**********************************@microsof t.com...
Thanks Scott. I was able to get the server's absolute machine path, but
after using that in the connection string I received permission errors
about
going across domains. I can work with my hosting provider to see about
the
permission issue, but this seems like a solution that could be very
unstable.
If my hosting provider changes the directory, this solution would break.
But I image of the Jet Provider doesn't allow for url paths, there isn't
much
I can do.

Ryan

"Scott M." wrote:
After you upload your Access database to the free hosting server, run a
simple test asp page that has this in it:

<%
response.write("<P>The physical path to the database is:")
response.write(Request.ServerVariables(Server.MapP ath("[put relative path
to
your database here]") & "<P>")
%>

And run the page. You will now know the exact physical path you need to
enter into your connection string.

"rmunson8" <rm******@discussions.microsoft.com> wrote in message
news:0C**********************************@microsof t.com...
>I have the same issue, but didn't see a resolution. From what I have
>read,
>a
> physical path on a machine is needed for the Data Source property of
> the
> connection string. How can this be specified if the file is located on
> a
> remote server?
>
> "WStoreyII" wrote:
>
>> Alls i need to do is to be able to use the webservice on the server
>> even
>> though it uses classic asp. but the only tools that i have to do this
>> are
>> vs.net. I just need to use the server as a storage for the database
>> and
>> i
>> wish to be able to use the webservice to access and mutate it. i dont
>> need
>> to be able to use it in asp or anything i just need to get the data
>> and
>> sent
>> them back to my computer from the infor mation on the server. Does
>> anyone
>> know how to do this or is it not possible?
>>
>> Thanks
>>
>> WStoreyII
>>
>> "WStoreyII" wrote:
>>
>> > That did not work ?
>> >
>> > WStoreyII
>> >
>> > "Scott M." wrote:
>> >
>> > > After you upload your Access database to the free hosting server,
>> > > run
>> > > a
>> > > simple test asp page that has this in it:
>> > >
>> > > <%
>> > > response.write("<P>The physical path to the database is:")
>> > > response.write(Request.ServerVariables(Server.MapP ath("[put
>> > > relative
>> > > path to
>> > > your database here]") & "<P>")
>> > > %>
>> > >
>> > > And run the page. You will now know the exact physical path you
>> > > need
>> > > to
>> > > enter into your connection string.
>> > >
>> > > "WStoreyII" <WS*******@discussions.microsoft.com> wrote in message
>> > > news:C8**********************************@microsof t.com...
>> > > > Ken,
>> > > >
>> > > > Heres the situation. I am making a program for my wife and I,
>> > > > that
>> > > > will
>> > > > allow us to view and edit information in a database on seperate
>> > > > computers
>> > > > so
>> > > > i have put the database on a website that was free. Since this
>> > > > website
>> > > > only
>> > > > use's classic asp and ms access database. I can not access the
>> > > > database
>> > > > from
>> > > > my code. So i need a webservice or other means of accessing the
>> > > > database
>> > > > from the server and downloading the informatin. But the
>> > > > tutorial
>> > > > that you
>> > > > gave me to make a webservice in asp classic does not use .net
>> > > > and
>> > > > .net
>> > > > tools
>> > > > are the only tools that i have so i was wondering if there was a
>> > > > way to
>> > > > make
>> > > > it compatable with .net ?
>> > > >
>> > > > Thanks
>> > > >
>> > > > WStoreyII
>> > > >
>> > > > "Ken Cox [Microsoft MVP]" wrote:
>> > > >
>> > > >> I must be missing something because you are talking about using
>> > > >> ASP
>> > > >> Classic
>> > > >> rather than ASP.NET.
>> > > >>
>> > > >> In any event, you can edit either in VS.NET's editor.
>> > > >>
>> > > >> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in
>> > > >> message
>> > > >> news:F4**********************************@microsof t.com...
>> > > >> > Ken,
>> > > >> >
>> > > >> > that tutorial that you sent me does not use Vs.Net, do you
>> > > >> > know
>> > > >> > of a
>> > > >> > way
>> > > >> > to
>> > > >> > do it with vs.net becuase that is alls that i have.
>> > > >> >
>> > > >> > Thanks Again
>> > > >> >
>> > > >> > WStoreyII
>> > > >> >
>> > > >> > "Ken Cox [Microsoft MVP]" wrote:
>> > > >> >
>> > > >> >> It isn't as easy as with ASP.NET but you can certainly do
>> > > >> >> it:
>> > > >> >>
>> > > >> >> Creating Web Services with ASP
>> > > >> >>
>> > > >> >> http://www.4guysfromrolla.com/webtech/070401-1.shtml
>> > > >> >>
>> > > >> >> "WStoreyII" <WS*******@discussions.microsoft.com> wrote in
>> > > >> >> message
>> > > >> >> news:D1**********************************@microsof t.com...
>> > > >> >> > Ken,
>> > > >> >> >
>> > > >> >> > The problem is that i have a free webpage that comes with
>> > > >> >> > asp
>> > > >> >> > classic
>> > > >> >> > capabilliteis and access database only. so i guess my
>> > > >> >> > question is
>> > > >> >> > can
>> > > >> >> > i
>> > > >> >> > use
>> > > >> >> > webservices with asp classic?
>> > > >> >> >
>> > > >> >> > "Ken Cox [Microsoft MVP]" wrote:
>> > > >> >> >
>> > > >>
>> > > >>
>> > >
>> > >
>> > >


Nov 19 '05 #19

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

Similar topics

6
by: Paul Robinson | last post by:
I am developing a website in ASP that connects to a Sybase database. However, when I try to open a connection to the database the page will not load. The script does not timeout, nor the...
17
by: AMC | last post by:
Hi, I'm using an include file to store the connection string to a database. Whenever I try to reference that string to open a connection in the page that includes the file I get the error 'empy...
5
by: Fred Zuckerman | last post by:
Hello All, After reading in this group about the preference for connecting to a SQL Server using a connection string instead of a DSN file, I have done just that. BUT, I cannot update my data....
5
by: Dmitry Karneyev | last post by:
Hi All! I've got an ado.net app with several win forms. In the first form (form1) I connect to DB and in other forms I use connection string generated by the form1 and stored in sqlconnection...
4
by: Mark | last post by:
OK. Here we go. I have an ASP.NET application that does many hits to a SQL Server DB on a separate server. When I first created this application (2 years ago) and was very new to ASP/ASP.NET, to...
6
by: Bala Nagarajan | last post by:
Hello, I am using Oracle 9i in my application and facing a problem with the connection string. In the datasource attribute of the connection string i had to specify an entry in "tnsnames.ora"...
14
by: WebMatrix | last post by:
Hello, I have developed a web application that connects to 2 different database servers. The connection strings with db username + password are stored in web.config file. After a code review,...
37
by: sam44 | last post by:
Hi, At startup the user log on and chooses the name of a client from a dropdownlist, which then changes dynamically the connection string (the name of the client indicates which database to use)....
1
by: Sankalp | last post by:
Hi, I am using VB 2005. My application has many data bound controls. The connection is stored in the app.config file. I want the application to start with a default connection string and while...
2
by: Johnson | last post by:
I'm trying to fix a "sub optimal" situation with respect to connection string management. Your thoughtful responses will be appreciated. I just started with a new client who has a bunch of legacy...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.