[JBoss Seam] - Remoting problem in mozilla
by enazareno
Hi,
The remoting javascript does not return a value if I use Mozilla but works OK in IE. Here is the debug output in Mozilla
| Wed Mar 07 2007 20:11:25 GMT+0800 (China Standard Time): Request packet:
| <envelope><header><context></context></header><body><call component="sendoutRule" method="sayHello" id="0">
| <params><param><str>TEST</str></param></params><refs></refs></call></body></envelope>
|
|
and here is the output in IE
| Wed Mar 7 20:11:49 UTC+0800 2007: Request packet:
| <envelope><header><context></context></header><body><call component="sendoutRule" method="sayHello" id="0">
| <params><param><str>TEST</str></param></params><refs></refs></call></body></envelope>
|
|
| Wed Mar 7 20:11:49 UTC+0800 2007: Response packet:
| <envelope><header><context><conversationId>14</conversationId></context></header><body><result id="0"><value><str>Hello%20TEST</str></value><refs></refs></result></body></envelope>
|
|
Anything I missed or is this not supported in Mozilla?
Regards
Elmo
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4025759#4025759
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4025759
19Â years, 1Â month
[Installation, Configuration & Deployment] - overriding jboss configuration
by vitor_b
Hello
There is a file: standardjboss.xml
This file contains JBoss configuration. But there is a posibility to override some properties by adding element <container-configurations> to jboss.xml file from META-INF of our archive, example:
<jboss>
| <enterprise-beans>
| ...
| </enterprise-beans>
| <container-configurations>
| <container-configuration extends "(name of proper configuration)">
| <container-pool-conf>
| <MaximumSize>2</MaximumSize>
| <strictMaximumSize>true</strictMaximumSize>
| </container-pool-conf>
| </container-configuration>
| </container-configurations>
| </jboss>
|
This example will change pooling configuration.
And here i have some questions:
This configuration is written in jboss.xml file. Does this mean that configuration will be overridden only for beans in this specific archive?
Lets suppose i have an application contains 5 jar files. Configuration is overridden in only one jboss.xml file. This configuration sets new pooling properties for stateless session beans, but i have stateless session beans in all 5 jar files. So deas this mean that specific configuration will be in force only for beans from this one jar file?
Thank you for your reply in advance :)
vitor_b
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4025749#4025749
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4025749
19Â years, 1Â month