|
Home > Archive > Microsoft Content Management Server > February 2006 > SDO Import Scripts
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
SDO Import Scripts
|
|
|
| MCMS 2002 SP1a
I am running import scripts as detailed in "Server-Side
CmsDeployImport.Import Method" in MCMS Help.
I had the scripts workinh yesterday but today they are broken - nothing in
the scriots have changed. They are breaking down in the following line
' perform the import.
strReportUrl = pCmsDeployImport.Import(strImportFile) ***ERROR***
If ( Err.Number <> 0 ) Then
Call WriteErrorsToFile(now,Err.Description)
Set pCmsDeployExport = Nothing
Set pExportOptions = Nothing
Exit Sub
End If
strImportFile exists
pCmsDeployImport exists
the user is a machine and MCMS administrator
The error i receive is "Fatal Execution error (0x7927e897)". A look on
google for the error number does not help.
Do you have any ideas what this error is and how to fix it?
Thanks in advance,
John
| |
| Stefan [MSFT] 2006-02-17, 10:50 pm |
| Hi John,
you should open a support case for this.
Cheers,
Stefan
--
This posting is provided "AS IS" with no warranties, and confers no rights
New to MCMS?
Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
Check out the new book as well: Advanced MCMS development:
http://tinyurl.com/8ugwj
----------------------
"Lta" <Lta@discussions.microsoft.com> wrote in message
news:E4CA7DAF-07D9-4EF9-94C8-4C2A1C7578D1@microsoft.com...
> MCMS 2002 SP1a
>
> I am running import scripts as detailed in "Server-Side
> CmsDeployImport.Import Method" in MCMS Help.
>
> I had the scripts workinh yesterday but today they are broken - nothing in
> the scriots have changed. They are breaking down in the following line
>
> ' perform the import.
> strReportUrl = pCmsDeployImport.Import(strImportFile) ***ERROR***
> If ( Err.Number <> 0 ) Then
> Call WriteErrorsToFile(now,Err.Description)
> Set pCmsDeployExport = Nothing
> Set pExportOptions = Nothing
> Exit Sub
> End If
>
> strImportFile exists
> pCmsDeployImport exists
> the user is a machine and MCMS administrator
>
>
> The error i receive is "Fatal Execution error (0x7927e897)". A look on
> google for the error number does not help.
>
> Do you have any ideas what this error is and how to fix it?
>
> Thanks in advance,
>
> John
>
>
| |
|
| I have discovered the solution.
The user was set as strUserLogon = "Winnt://local/mcmsservice"
The problem is resolved if you use
strUserLogon = "Winnt://<servername>/mcmsservice" or
strUserLogon = "Winnt://<domainname>/mcmsservice"
I have another issue but will start another post
"Stefan [MSFT]" wrote:
> Hi John,
>
> you should open a support case for this.
>
> Cheers,
> Stefan
>
> --
> This posting is provided "AS IS" with no warranties, and confers no rights
>
> New to MCMS?
> Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
> Check out the new book as well: Advanced MCMS development:
> http://tinyurl.com/8ugwj
> ----------------------
>
>
> "Lta" <Lta@discussions.microsoft.com> wrote in message
> news:E4CA7DAF-07D9-4EF9-94C8-4C2A1C7578D1@microsoft.com...
>
>
>
|
|
|
|
|