Hi Marten,
Thanks for your reply. It seems strange that you can add this exception handling, but then can't use it as it's being handled before dispatcher even gets to your portlet.
I did try...
Type: Posts; User: ma_crice; Keyword(s):
Hi Marten,
Thanks for your reply. It seems strange that you can add this exception handling, but then can't use it as it's being handled before dispatcher even gets to your portlet.
I did try...
Hi,
Firstly, apologies if this is not the right area to post this. I did have a good look around for a a Portlet MVC area, but couldn't see anything.
OK, to my problem.
I have an...
I am trying to reset a webflow form before it is bound from the page, this is so I can get rid of some check box values, if all are unchecked then nothing is sent to the server, so all values that...
Just wanted to update... I haven't found a solution to this problem yet, so if anyone has any advice it would be apprieciated...
mARK
I use Psring webservices quite frequently, but have never used Active MQ. I may be able to help you out with an example for the Spring WS with xmlBeans...
You won't be able to just got straight to a page, you will need to pass through at least a simple controller....
Can you zip up the project and post it? Or post your config files and any code?
...
I am working on a project using Spring Webflow 2 with Spring Portlet mvc.
I have a scenario where I have to use javascript(Jquery) to create some form elements (adds the elements to a list in the...
In section "3.6. Scope searching algorithm" it says that you do not need to specify the scope. Although in the manual it is using it for expressions. Therefore I don't know if it will work for the...
Glad you found the reason for the problem, as a work around couldn't you use the "set" tag to create a variable called catalogue then pass that as the model. This would presumably get round the...
If you add the source code to this post i will have a look at home later. Unfortunately I'm not at a computer where I have access to all the spring stuff and an ide to try it out.
What SWF version...
Based on the code and config provided it looks like you definitely need to rename your validator class to CatalogueValidator and the bean id should also be the same!
Thats all you need to do.
...
I did have the "requestParameters" call in my caode and this still wasn't working, but after a probper look at my flow config I realised what was going on.
I was trying to access the parameter in...
Hopefully someone will know the answer to this very simple question (simple if you know how webflow is storing and wrapping the request object).
I have a request parameter that I want to use in an...
http://jira.springframework.org/browse/SWF-1049
I found this thread relating to this problem:
http://forum.springframework.org/showthread.php?p=229123#post229123
I have opted for only using webflow for the edit state of my portlet. At the...
Controllers don't exist in webflow like they do in portlet mvc. Instead you can just call any POJO with business logic, or use the Action interface. there is an example of this in another thread I...
Worked this one out for myself, I have attached the code, and the config for the flow that calls it:
The Action class needs setting up in the Spring config as a bean
Spring COnfig:
<bean...
Does any one know if a jira ticket has been raised to change this?
It's quite a fundamental problem isn't it? I'm surprised more people havn't had an issue with this?
Just a quick question,
I'm wanting to use webflow for some portlet development and can't find any documentation about getting access to Portlet ActionRequest, ActionResponse, RenderRequest or...
Hi I have been developing a fair few portlets for the Liferay portlet container and it has all been going very well.
At least until I wanted to start reusing controllers in flows which doesn't...
Environment:
Weblogic
Liferay 5.1
Spring portlet-mvc
Here's the problem:
I have a SimpleFormController that is navigated to from the following code fragment:
If you want to call the SimpleFormController without the submit method being run you need to use the <portlet:renderUrl> tag, not the <portlet:actionUrl>.
your code will look like this:
...
I have finnaly solved the problem with a little help from a colleague. The problem was the adapter class I specified in the spring-ws config:
<bean id="xmlbeansMarshaller"...
I don't supose you have that example handy, and that I could have a look and compare it to mine? Would be really useful...
What I have is correct. There is a spring config file which sets up service objects that was not included in what I posted.
Thanx for at least replying though - I still haven't had much luck...