cancel
Showing results for 
Search instead for 
Did you mean: 

'Wrapped Exception (with status template)...' error

fernandoe
Champ on-the-rise
Champ on-the-rise
Hi all,

I'm receiving the same error that's been posted here a few times.

Wrapped Exception (with status template): Failed to execute script '/org/alfresco/slingshot/documentlibrary/doclist.get.js (in classpath store file:/data-1/Alfresco/tomcat/webapps/alfresco/WEB-INF/classes/alfresco/templates/webscripts)': Node does not exist: workspace://SpacesStore/…


Unfortunately, my language settings appear to be in check, and I don't' have any documents that were outward-linking to sites that users did not have permissions to.
This error simply shows up when I try to access my documentLibrary, and then click on the "I'm Editing" button, below "Documents".

I'll probably check in with our sysadmin for the logs, but thought I'd throw it out there if anyone's found alternate means of remedying this.

Sites were created using Share. Users were added via Explorer. Things have been working hunky-dory up until now.

Running Labs 3Stable on Linux.
19 REPLIES 19

tirana
Champ in-the-making
Champ in-the-making
The same error Smiley Sad

it looks like a folder was not deleted completely

mikeh
Star Contributor
Star Contributor
Has anyone on this thread tried to rebuild the indexes? If so, does that solve the problem?

Thanks,
Mike

fernandoe
Champ on-the-rise
Champ on-the-rise
Hi Mike,

Thanks for the reply! Yes, we've (we, as in, our system admin) tried rebuilding the indexes, and we do so on a weekly basis as part of our maintenance schedule.
We recently tried installing Labs 3.2 preview on our test server, and imported the 'dirty' database into the new installation, to see if 3.2 had hammered out the kink.

Unfortunately, we're back at the same error. However, this time around, there appears to be error codes associated to them.

[img]http://img228.imageshack.us/img228/6558/alf32p.jpg[/img]

03300009 Wrapped Exception (with status template): 03300008 Failed to execute script '/org/alfresco/slingshot/documentlibrary/doclist.get.js (in classpath store file:/data-1/Alfresco/tomcat/webapps/alfresco/WEB-INF/classes/alfresco/templates/webscripts)': Node does not exist: workspace://SpacesStore/9399a8c9-7443-4de2-8c26-d056ba3e8a12

I hope this sheds some light on what we're experiencing!

Fernando

mikeh
Star Contributor
Star Contributor
Unfortunately not - they're not error codes, but more a unique exception identifier to help support match up UI errors with log file entries.

Can you find the node using the Node Browser on the JSF client?

Mike

fernandoe
Champ on-the-rise
Champ on-the-rise
Hi Mike,

After searching for the node: workspace://SpacesStore/9399a8c9-7443-4de2-8c26-d056ba3e8a12 (the node that appears to be referenced in the error message), I get the following:

"Search failed due to: org.alfresco.error.AlfrescoRuntimeException: 04040007 Node workspace://SpacesStore/9399a8c9-7443-4de2-8c26-d056ba3e8a12 does not exist."
Any clues as to what I can try now?

Thanks Mike,
Fernando

adrianmoya
Champ in-the-making
Champ in-the-making
Hi guys, I've recently been informed by my users of this error. I'm running Labs 3 over ubuntu 8.10 server. If there is anything I can do to help fix this error, please tell me. I really need to fix this soon. We have one week in production use

mikeh
Star Contributor
Star Contributor
You could try this… find doclist.get.js (or override it if you're comfortable doing that)

Look for the comment "// Ensure folders and folderlinks appear at the top of the list" and update the code to match the following:

   // Ensure folders and folderlinks appear at the top of the list
   folderAssets = new Array();
   documentAssets = new Array();
   for each(asset in allAssets)
   {
      try
      {
         if (asset.isContainer || asset.type == "{http://www.alfresco.org/model/application/1.0}folderlink")
         {
            folderAssets.push(asset);
         }
         else
         {
            documentAssets.push(asset);
         }
      }
      catch (e)
      {
         // Possibly an old indexed node - ignore it
      }
   }
   assets = folderAssets.concat(documentAssets);

Thanks,
Mike

breandanose
Champ in-the-making
Champ in-the-making
Just thought I'd mention that I was getting this error too but I seem to have it fixed now.

The error was the same like this:
07040073 Failed to execute script '/org/alfresco/slingshot/documentlibrary/doclist.get.js' in classpath store
etc

For me, it happened while I was upgrading from Alfresco 3stable Community to Alfresco 3.2 Community. The error was due to a problem with my backup not using the correct database script with the correct alf_data files. I fixed it by making sure to get the latest db script and latest alf_data files and did this on a dev machine:
(1)A restart of Alfresco with a full re-index, using the default Alfresco database and default alf_data files
And then (2)after that I put in my own latest database and my own latest alf_data files and then re-started Alfresco with a full re-index.

Hope that can maybe help somebody else.

amginenigma
Champ in-the-making
Champ in-the-making
I've just completed a clean install on a VM of 3.2r with RM for testing and I'm getting this exact error.  I've appended the code listed above to the doclist.get.js file and that does not seem to have resolved the issue.  Any other fixes available?

crisallt
Champ in-the-making
Champ in-the-making
@Mike

Thanks for the fix. We added the "try" and "catch" refreshed the webscipts and all was happy.

+10 to you.