I was installed a plugin in confluence. it installed successfully
After installing the plugin if i hit the URL it is giving the error message like
2011-07-08 09:51:10,521 ERROR [http-8080-1] [atlassian.confluence.servlet.ConfluenceServletDispatcher] serviceAction There is no Action mapped for action name createandviewpage
– url: /createandviewpage.action | userName: administrator
This is my atlassian-plugin.xml file
<xwork name="createandviewpageaction" key="createandviewpageaction">
<package name="createandviewpageaction" extends="default" namespace="/plugins/createpage">
<default-interceptor-ref name="defaultStack" />
<action name="createandviewpage" class="com.apple.confluence.plugins.CreateAndViewPageAction">
<result name="success" type="redirect">/pages/dashboard.action</result>
</action>
</package>
</xwork>
I am hitting the URL like
http://localhost:8080/createandviewpage.action
Please give me solution for this.
Community moderators have prevented the ability to post new answers.
See the section regarding 'accessing your action'
I would think you'll want to access it with something like localhost:8080/confluence/plugins/createpage/createandviewpage.action or similar
Since the namespace is defined as /plugins/createpage, the action will be in /plugins/createpage/createandviewpage.action
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Charles, fixed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.