Running JBoss 4.3 EAP
We need to be able to publish https endpoint/soap address locations for a web service behind an ssl proxy. If we declare the service as secure to do that, when a request comes in over ssl, the proxy terminates ssl and passes http to jboss which throws a redirect as it's not secure.
If we publish as non-secure, we get http endpoints. if client accesses over http, the proxy throws a redirect to https (port 80 is not open). the soap client does not follow redirects as the http spec forbids automated clients to follow redirects on POST.
So we basically need a way to publish secure urls while still declaring the service as non-secure.
I tried setting below in jboss-beans.xml :
${jboss.bind.address}
true
443
This does not rewrite the protocol to https/443.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4235743#4235743
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4235743
Do you really needs 16GB of heap? Have you done any performance testing to see what the actual memory requirements are? Cleaning up a 16GB heap, or even a 1GB young generation, will take time. And using the CMS collector will not reduce the young generation pauses. The CMS collector does pause the app twice for object marking; I have no idea how long it will take to mark a 16 GB heap.
Ideally, you want the smallest heap possible that does not greatly negatively impact your performance. In this case I think you have run into the "more is not better" anti-pattern.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4235725#4235725
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4235725
Yes, I did look at the code and the select statement and observed the same thing (that retries_ must be > 0 for a job to be considered acquirable). After changing the statement that migrates data from jbpm_timer to jbpm_job such that retries_ is set to 1 (instead of 0), my jobs ran (as required).
That said, can someone from the jbpm group post an updated migration script that is in line with the code as of 3.2.3?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4235724#4235724
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4235724
anonymous wrote : JAVA_HOME is set :
Where is it set, in the user or the system properties? Based on the console log you posted earlier I suspect it is set in user properties - it should be set in system properties.
anonymous wrote : Maybe the run.conf.bat is not taken into account when starting as a service
Again, looking at the console log I see this:
Calling C:\_dev\jboss-5.1.0.GA\bin\run.conf.bat
so I am not sure why the options are not being picked up in run.conf.bat.
anonymous wrote : I also notice that declaring the -Djboss.bind.adress in run.conf.bat isn't enough
That is because the -b option sets more than the jboss.bind.address; you can look at the source code to see the other things being set from -b.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4235721#4235721
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4235721