473,796 Members | 2,704 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can it be that NO ONE HERE knows this answer?

One more try.

After ransacking the Desktop AND Enterprise edition of Ken Getz Dev
Handbooks on Access 2002, I STILL don't know if it is or is not
possible to link a client side MDE with a WEB server MDB table using
ADO.

Does ANYONE know the correct answer to that question?
Mar 16 '06 #1
47 1962
Lauren Wilson wrote:
One more try.

After ransacking the Desktop AND Enterprise edition of Ken Getz Dev
Handbooks on Access 2002, I STILL don't know if it is or is not
possible to link a client side MDE with a WEB server MDB table using
ADO.

Does ANYONE know the correct answer to that question?


No. There may be technologies available to handle the TCP/IP communication
between a client and server but its not built-in to Access.

One such technology:

http://www.unix.org.ua/orelly/linux/dbi/ch08_02.htm

--
'---------------
'John Mishefske
'---------------
Mar 16 '06 #2
Not to be obtuse, but perhaps a lack of an answer is an answer in
itself?

One possible solution would be to write a transaction handling page on
your web server, so that your client side MDE interrogates the page,
which in turn interrogates your web server MDB. It's a little kludgy,
but I've seen it used in other apps.

Do a Google search on "Microsoft.XMLH TTP" if this is a path you'd like
to pursue further, and here's a link to an older thread in this
newsgroup that covers a similar topic.

http://groups.google.com/group/comp....570a3045e766c8

Much warmth,

planetthoughtfu l

---
"Lost in thought"
http://www.planetthoughtful.org

Mar 16 '06 #3
rkc
Lauren Wilson wrote:
One more try.

After ransacking the Desktop AND Enterprise edition of Ken Getz Dev
Handbooks on Access 2002, I STILL don't know if it is or is not
possible to link a client side MDE with a WEB server MDB table using
ADO.

Does ANYONE know the correct answer to that question?


You can send requests to a web server using VBA and methods of
Microsoft.XMLHT TP which is part of the Microsoft.MSXML library.
There are examples to be found using Google, but since it is
technology meant to be used via a web browser the examples are
mostly in ASP. Perl, PHP, etc.

You don't talk directly to the .mdb file. You send requests or
Post data to 'web pages' that communicate with the .mdb file via
the scripting language of your choice.
Mar 16 '06 #4
I don't know the correct answer.
I do know that I have never done it and that I know of no example if
its being done and that I know of no instructions on how to do it.
It is my opinion that you often decide on solutions by yourself and
then seek in CDMA the "how to" of the solution without discussion of
the problem and which solution might be appropriate. It is also my
opinion that this strategy sometimes leads you to accept and to note
your support for ideas, strategies and code which are suspect, if not
down-right nonsense.

Mar 16 '06 #5
On 16 Mar 2006 03:29:35 -0800, "Lyle Fairfield"
<ly***********@ aim.com> wrote:
I don't know the correct answer.
I do know that I have never done it and that I know of no example if
its being done and that I know of no instructions on how to do it.
It is my opinion that you often decide on solutions by yourself and
then seek in CDMA the "how to" of the solution without discussion of
the problem and which solution might be appropriate.
Interesting -- my posting pattern has drawn your attention!
I don't know whether to be concerned or pleased.

You are correct that I often decide on the solution and then seek
advice on how to implement it. If I fail to post complete context, it
is due to time restrictions and, to some degree, non-disclosure
agreements and other legal obligations to which I am a party. My
personal inclination is to include MORE detail than needed to address
the problem. People often accuse me of telling them how to build a
clock, when the time of day was all they wanted to know.
It is also my opinion that this strategy sometimes leads you to accept and to note
your support for ideas, strategies and code which are suspect, if not down-right nonsense.


I assure you, I have never IMPLEMENTED nonsense coding advice. If I
have appeared to approve of or recommend nonsense, then thanks for
your insight and effort. Would you be so kind as to describe an
example from this group where I have demonstrated such behavior?
If you succeed, I will GLADLY admit it and thank you publicly for
identifying my error.

In any case, I'm not a big fan of re-inventing the wheel. If I can
get a quick answer here from kind folks who do me the honor of
sharing, why should I (or anyone) waste time doing original research
on issues that thousands of others have already competently done?
Is that not one of the intended results of this group?

I believe this group is a significant force for good in support of the
human economic engine -- and YOUR contributions are much appreciated.
Mar 16 '06 #6
Lauren Wilson <no****@nospam. com> wrote in
news:sd******** *************** *********@4ax.c om:
One more try.

After ransacking the Desktop AND Enterprise edition of Ken Getz
Dev Handbooks on Access 2002, I STILL don't know if it is or is
not possible to link a client side MDE with a WEB server MDB
table using ADO.

Does ANYONE know the correct answer to that question?


You're asking if Access can retrieve data over HTTP with ADO?

The answer is NO.

But there are ways to get HTML data into Access retrieved over HTTP,
but it doesn't involve ADO between the local and remote Access
databases.

Access 12 may actually change this. I note in yesterday's Access 12
blog entry and example of linking to a schema on a SharePoint
server, and it uses HTTP as its protocol for defining the remote
server, which suggests that Access 12 communicates with SharePoint
Server via HTTP.

I don't know if that helps or confuses things!

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Mar 16 '06 #7
rkc
Lyle Fairfield wrote:
I don't know the correct answer.
I do know that I have never done it and that I know of no example if
its being done and that I know of no instructions on how to do it.
It is my opinion that you often decide on solutions by yourself and
then seek in CDMA the "how to" of the solution without discussion of
the problem and which solution might be appropriate. It is also my
opinion that this strategy sometimes leads you to accept and to note
your support for ideas, strategies and code which are suspect, if not
down-right nonsense.


Your down right contempt for 90% of the people that post here is
becoming more apparent every day. Must be a burden that accompanies
a genius IQ.
Mar 16 '06 #8
Do you know what you are asking? More detail of what you are trying to
accomplish would certainly help...

Sounds like you want MDE code (which I presume you control the source code
of, otherwise you may want to forget it) to insert/update/delete an MDB
stored in a web folder on your website?

If that is true, then the only way I could see you making progress is by
building a web service in .net with 3 methods (insert/update/delete). You
then would need to build a .net client side application to talk to the web
service (or locate some kind of com based webservice dll) to have your mde
code talk to. This would simply be a translator, working over port 80 in a
very savvy way. It basically automates all the xml document
creation/transmission/consumption (and vice versa) for you. Once this is
all in place, theoretically your in business.

Of course there are probably other ways to do this, it's one way I know of -
others may provide them or they may not.

If you were willing to talk to something other than an MDB then I would
probably put Sql server to work on the web server, open up port 1433 to a
fixed client IP with tight security credentials and talk to sql directly
with ADO - easy solution.

--
Jerry Boone
"Lauren Wilson" <no****@nospam. com> wrote in message
news:sd******** *************** *********@4ax.c om...
One more try.

After ransacking the Desktop AND Enterprise edition of Ken Getz Dev
Handbooks on Access 2002, I STILL don't know if it is or is not
possible to link a client side MDE with a WEB server MDB table using
ADO.

Does ANYONE know the correct answer to that question?

Mar 17 '06 #9
From the A97 help:

"You cannot import or link a Microsoft Access database or an ODBC data
source on an FTP or HTTP server."

(david)
"Lauren Wilson" <no****@nospam. com> wrote in message
news:sd******** *************** *********@4ax.c om...
One more try.

After ransacking the Desktop AND Enterprise edition of Ken Getz Dev
Handbooks on Access 2002, I STILL don't know if it is or is not
possible to link a client side MDE with a WEB server MDB table using
ADO.

Does ANYONE know the correct answer to that question?

Mar 17 '06 #10

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

Similar topics

4
1999
by: N3TB1N | last post by:
Here is my assignment. I am hoping that someone here quickly knows all of the correct answers... especially for question #5 and everything after. Thanks in advance. ___________________________________________________________________________________________________________________ class Money {
74
4060
by: Suyog_Linux | last post by:
I wish to know how the free()function knows how much memory to be freed as we only give pointer to allocated memory as an argument to free(). Does system use an internal variable to store allocated memory when we use malloc(). Plz help......
10
4856
by: Mike Wengler | last post by:
I inherited some code from a former employee, who was unable to cut the umbilical cord from VB6. His code is littered with calls to VB6 functions like Space(), String(), Left(), Mid(), Right(), Len(), Val(), etc. I know the .Net equivalents of everything except Val(). Int32.Parse allows you to filter out characters like "$" and "," and whitespace, but it still can't emulate the Val() function completely. Alright, who here in this...
1
879
by: Zorpiedoman | last post by:
Ok.... 1. Take a windows form. 2. Add a TabControl 3. Add a TabPage by right-clicking the Tabcontrol and selecting "Add Tab" The TabPage is actually added to the form, not just visually, but the code is added to the "Windows Form Designer generated code" region. I want to be able to do this myself with a control I created. In other words:
68
15718
by: James Dow Allen | last post by:
The gcc compiler treats malloc() specially! I have no particular question, but it might be fun to hear from anyone who knows about gcc's special behavior. Some may find this post interesting; some may find it off-topic or confusing. Disclaimers at end. The code samples are intended to be nearly minimal demonstrations. They are *not* related to any actual application code.
0
9685
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10244
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10021
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6802
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5454
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5582
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4130
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3744
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2931
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.