It is hard to give advice with so little to go on. Are the objects in common packages or are they from a variety vendors and disparate codebases? Do they share common types or interfaces? Does the...
Type: Posts; User: andythedestroyer; Keyword(s):
It is hard to give advice with so little to go on. Are the objects in common packages or are they from a variety vendors and disparate codebases? Do they share common types or interfaces? Does the...
OSGi is serverside stuff so it won't affect applets which are like images or any other static content as far as the war is concerned. You should be able to treat the web bundle just as if it were any...
It is generally a bad idea to share app contexts between bundles because it kind of defeats the whole purpose of osgi. If you want to share beans between bundles you should export/import them through...
Hello,
The dm server unpacks bundles that contain resources ( i.e. other jars ) when it deploys them to the work/osgi directory and leaves bundles without internal resources in the packed jar/zip...
Hello,
When a flow is started via a url like http://domain.com?_flowId=some-flow, the flow will initialize and redirect to the first view state with the execution key in the url. Is it possible to...
WebFlow uses ReentrantLock ( new in java 5 ) instead of intrinsic locking ( synchronized ) for it's locking. Using ReentrantLock.tryLock method to obtain locks allows you to set a timeout, which is...
What can cause this exception? I can't reproduce it. Last night I received 16 of theses exceptions in a row which eventually caused other errors and led to a server crash.
-Andy
Thanks for the heads up.
-A
I am using dm server 1.0.2.RELEASE with webflow 2.0.5 and am getting the exact same error. Is this fixed or not?
-Andy
Is there a changelog for the dm server like there is for the other projects?
I searched through the site and the releases but found nothing.
-Thanks,
A
Is it possible to change the format of the access log on the dm server.
Right now we are logging the ip address of the load balancers so I need to log our "LB_REMOTE_HOST" or "X_FORWARDED_FOR"...
Hi all,
This is a strange request that came down from our marketing department, so bear with me.
I need to append arbitrary parameters on all the urls of the flow as the user goes through the...
Thanks for the correction.
-Andy
Sam correct me if I am wrong, but a work around could be to package JSPs and the likes in fragments of the core web module. If the fragment is resolved when the host web module is resolved, the web...
Hi,
My webapp is running, but really slowly. I am trying to profile my webapp with the Eclipse TPTP project, however I am not able to make much headway.
I am able to start the spring dm server...
Hi Gang,
I know this is a bit more of a general Java problem than one specific to Spring, but since I have been having trouble finding a solution and I am using SpringMVC and WebFlow, I thought I...
Thanks for the reply Steve O!
What about I18N? ( forgot to mention i18n is the whole reason for the rewrite )
I know FreeMarker is shipped locale aware? How does Velocity compare in this respect....
Hi Guys,
I have been designing an upgrade ( full rewrite ) to one of my company's applications which is now in php using the Symfony framework. So far I am just in the design stage and realized...