I just setup a fresh install of tomcat and jasper server. For some reason when I right click and select "Add Resource" to add a new image to the repository it doesn't give me "File" as and option so I can not. I have jasper server running on two other servers and the "Add Resource" -> "File" -> "Image" appears as it should. Has anyone else had this problem or know what's wrong with the new setup? I can't seem to find anywhere to enable the "File" resource.

link|improve this question
Did you check log files? – Alex K Nov 5 '11 at 20:19
Big Tuna, did you get it working? – mdahlman Dec 1 '11 at 8:19
feedback

3 Answers

up vote 2 down vote accepted

Yeah... that's an embarrassing bug, eh? Take a look at the file .../WEB-INF/actionModel-search.xml. You'll find this snippet around line 21:

<selectAction labelKey="RM_NEW_RESOURCE_FILE" className="flyout"
                        clientTest="canResourceBeCreated" clientTestArgs="FileResource" >

That code should not be surrounded by this:

<condition test="isProVersion">...</condition>

But it is surrounded by that. Doh. You can probably figure out how to modify it manually now that you know what to look for. Or you could grab an old copy of that file from your working machines to see how it should be. Or you can wait for the next release when it's back to working as it should. Good luck.

link|improve this answer
+1 Thanks for tip – Alex K Nov 11 '11 at 12:35
feedback
<selectAction labelKey="RM_NEW_RESOURCE_FILE" className="flyout"
                            clientTest="canResourceBeCreated" clientTestArgs="FileResource" >
                        **<condition test="isProVersion">**
                            <option labelKey="resourceTypes.access.grant.schema" action="invokeCreate" actionArgs="FileResource@@accessGrantSchema"
                                    className="up"/>
                        **</condition>**

I have removed <condition> tags from the actionModel-search.xml file, bud I can't see File resource... restarted tomcat, still no effect.

How exactly should this change look to work as expected?

link|improve this answer
feedback

You have to remove the condition tags where the selectAction tags are enclosed in, as suggested by mdahlman, not the tags inside selectAction:

**<!-- 
    <condition test="isProVersion">
        <condition test="isSupportedDevice">
            <option labelKey="RM_NEW_DOMAIN" action="invokeCreate" actionArgs="SemanticLayerDataSource" clientTest="canResourceBeCreated" clientTestArgs="SemanticLayerDataSource" className="up"/>
        </condition>
-->**

        <selectAction labelKey="RM_NEW_RESOURCE_FILE" className="flyout" clientTest="canResourceBeCreated" clientTestArgs="FileResource" >

         ...

        </selectAction>
**<!-- 
    </condition>
 -->**
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.