 |
| Classic ASP Components Discussions specific to components in ASP 3. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Components section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

July 7th, 2004, 05:42 AM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
(0x80004005) Unspecified error
Hi, i was trying to create an object in ASP using VBScript and the Brouwser return the folowing error: (0x80004005) Unspecified error
The code goes like this:
dim mapserver
Set mapserver = Server.CreateObject("Manifold.MapServer")
mapserver.Create Server.MapPath("config.txt"),parameter("sate", ""),Server ---> the error is here ************
What's the problem with this code?
Can anywone help me on this?
|
|

July 7th, 2004, 07:52 AM
|
|
Friend of Wrox
|
|
Join Date: May 2004
Posts: 642
Thanks: 0
Thanked 43 Times in 42 Posts
|
|
what is the functionality of this component? does it accesses the database?
Om Prakash
|
|

July 7th, 2004, 08:08 AM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
No, that object COM has methods to manipulate MAP files (Manifold Project files). Those type of files represent spatial data (maps whit diferent layers).
The Manifold.MapServer is one object of the object model provided by the software Manifold System Release 5.50
Thanks for asking. I realy need help on this one.
|
|

July 7th, 2004, 08:50 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Hi there,
80004005 errors are usually caused by permission settings. Check out these articles for more info:
http://Imar.Spaanjaars.Com/QuickDocID.aspx?QUICKDOC=290
http://Imar.Spaanjaars.Com/QuickDocID.aspx?QUICKDOC=263
The second link deals with databases instead of text files, but the same concept applies.....
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to: Uncertain Smile by The The (Track 4 from the album: Soul Mining) What's This?
|
|

July 7th, 2004, 10:56 AM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hi,
I think it's not an problem of permitions because it worked well with JScript.
I just don't know what else i could do to resolve this!!
Thanks for the help.
|
|

July 7th, 2004, 11:11 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Quote:
|
quote: just don't know what else i could do to resolve this!!
|
Use JScript, maybe?? ;)
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to: Wandering Star by Portishead (Track 5 from the album: Dummy) What's This?
|
|

July 7th, 2004, 11:34 AM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hehehehehehe
great tip :)
But i made it.
I know what i was doing wrong.
It works in VBScript if i omit the last argument (I don't know why but it works). It stays like this:
mapserver.Create Server.MapPath("config.txt"), parameter("state", "")
thnks to all on the help.
|
|
 |