Hide Forgot
Affects: Documentation (Ref Guide, User Guide, etc.) project_key: SOA Programmer's guide does not document how to set maxThreads for InVM listener: http://www.redhat.com/docs/en-US/JBoss_SOA_Platform/4.3.CP01/html-single/Programmers_Guide/index.html#sect-SOA_ESB_Programmers_Guide-What_is_a_Service-InVM_Transport My understanding is that it is one of the two approaches shown below, but I'm not sure: ---------------------------------------------------------------------------------------- <service category="HelloWorld" name="Service2" description="Service 2" invmScope="GLOBAL"> <property name="maxThreads">100</property> <listeners>... <actions>... ---------------------------------------------------------------------------------------- <service category="HelloWorld" name="Service2" description="Service 2" invmScope="GLOBAL"> <property name="maxThreads" value="100" /> <listeners>... <actions>... ----------------------------------------------------------------------------------------
Cloned from 5.0 JIRA for inclusion in 4.3 CPO3.
Affects: Added: [Documentation (Ref Guide, User Guide, etc.)]
Link: Added: This issue depends SOA-1361
Link: Removed: This issue depends SOA-1361
Cloned from 5.0 for inclusion in 4.3 CPO3.
Link: Added: This issue is related to SOA-1361
Assuming that the data added to 5.0 is correct: Page 39 of the ESB Programmer's Guide Version 5.0 now states the following: ********************** Threading In order to change the number of listener threads associated with an InVM transport: <service category="HelloWorld" name="Service2" description="Service 2" invmScope="GLOBAL"> <property name="maxThreads" value="100" /> <listeners>... <actions>... ********************** We will add this to 4.3CP03
This has now been added to 4.3CP03.
Release Notes Docs Status: Added: Not Required Writer: Added: dlesage
In version 5 docs the example is put under chapter 4.3.8. Threading belonging logically under InVM. In version 4 it is put under chapter 4.4. Service Contract Definition I think it is illogically placed now.
I have moved the information. Thanks for the feedback, Jiri.
Still a problem here: http://documentation-stage.bne.redhat.com/docs/en-US/JBoss_Enterprise_SOA_Platform/4.3/html-single/Programmers_Guide/index.html#sect-SOA_ESB_Programmers_Guide-What_is_a_Service-InVM_Transport
Fixed - put it in exaclty the same place as the one in 5.x
Hmm - it's not here yet: http://documentation-stage.bne.redhat.com/docs/en-US/JBoss_Enterprise_SOA_Platform/4.3/html-single/Programmers_Guide/index.html#sect-SOA_ESB_Programmers_Guide-What_is_a_Service-InVM_Transport
Looks like the change wasn't pushed. Have sent it up again.
Still not there in: http://documentation-stage.bne.redhat.com/docs/en-US/JBoss_Enterprise_SOA_Platform/4.3/html-single/Programmers_Guide/index.html#sect-SOA_ESB_Programmers_Guide-What_is_a_Service-InVM_Transport
But it is! See Section 4.3.3.4. (Will talk to you on IRC.)
Verified in the book: It's now in section 4.3.3.4: 4.3.3.4. Threading In order to change the number of listener threads associated with an InVM Transport, use this code: Example 4.3. Threading <service category="HelloWorld" name="Service2" description="Service 2" invmScope="GLOBAL"> <property name="maxThreads" value="100" /> <listeners>... <actions>...