[JBoss jBPM] - Re: CommandExecuter thread and CMT
by Olivier_Debels
Yes,
indeed there is an error in the documentation stating you have to define but it should be .
Anyway I did it correctly in my configuration file, but thx for pointing it out, it sure doesn't harm to publish this here.
<jbpm-context>
| <service name="persistence">
| <factory>
| <bean class="org.jbpm.persistence.db.DbPersistenceServiceFactory">
| <field name="isTransactionEnabled"><false /></field>
| </bean>
| </factory>
| </service>
| ...
| </jbpm-context>
My problem is actually a bug as far as I can tell. Anyway if you're not using jbpm transactions and using commandExecutorThread you should have the same issue (no?).
It just wanted to point this out and see if I am correct, even if it does not affect me at this moment (we are not using commandExecutorThread yet...)
Olivier.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965748#3965748
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965748
19 years, 8 months
[JBossWS] - wscompile
by Isis
Hi all!
I've installed jwsdp-1.5.
Using the following command:
wscompile -cp "webservice.jar" -gen:server -f:documentliteral -mapping jaxrpc-mapping.xml config.xml
I obtain an error:
>error: invalid type for JAX-RPC structure: ossj.ttri.ws.stubs.CancelTroubleTicketByResponse
This is the CancelTroubleTicketByResponse.java code:
package ossj.ttri.ws.stubs;
public class CancelTroubleTicketByKeyResponse
{
public CancelTroubleTicketByKeyResponse()throws UnsupportedOperationException{
}
}
The config.xml file:
The interface:
package ossj.ttri.ws.stubs;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface TroubleTicketWSPort
extends Remote
{
public abstract CancelTroubleTicketByKeyResponse cancelTroubleTicketByKey(CancelTroubleTicketByKeyRequest canceltroubleticketbykeyrequest)
throws CancelTroubleTicketByKeyException, RemoteException;
}
Thanks in advance!!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965736#3965736
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965736
19 years, 8 months