[jBPM] - POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013
by akash gongga
akash gongga [https://community.jboss.org/people/badrinath0013] created the discussion
"POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013"
To view the discussion, visit: https://community.jboss.org/message/788796#788796
--------------------------------------------------------------
POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013
http://thekentuckyderbyonline.com/live-american-football-link-2/ http://alabamavsnotredamelive.com/wp-content/uploads/2012/12/alabama-vs-n...
h2. http://thekentuckyderbyonline.com/live-american-football-link-2/ http://1.bp.blogspot.com/-6FRDoHQclLw/UBGaQm7SMRI/AAAAAAAAACs/oEy0rNS3NO8...
http://thekentuckyderbyonline.com/live-american-football-link-2/ http://alabamavsnotredamelive.com/wp-content/uploads/2012/12/alabama-vs-n...
h2. http://thekentuckyderbyonline.com/live-american-football-link-2/ http://1.bp.blogspot.com/-6FRDoHQclLw/UBGaQm7SMRI/AAAAAAAAACs/oEy0rNS3NO8...
POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013POST!!!Alabama vs Notre Dame live Monday Last Night Show on 7, January, 2013
http://thekentuckyderbyonline.com/live-american-football-link-2/ http://alabamavsnotredamelive.com/wp-content/uploads/2012/12/alabama-vs-n...
h2. http://thekentuckyderbyonline.com/live-american-football-link-2/ http://1.bp.blogspot.com/-6FRDoHQclLw/UBGaQm7SMRI/AAAAAAAAACs/oEy0rNS3NO8...
http://thekentuckyderbyonline.com/live-american-football-link-2/ http://alabamavsnotredamelive.com/wp-content/uploads/2012/12/alabama-vs-n...
h2. http://thekentuckyderbyonline.com/live-american-football-link-2/ http://1.bp.blogspot.com/-6FRDoHQclLw/UBGaQm7SMRI/AAAAAAAAACs/oEy0rNS3NO8...
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/788796#788796]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 3 months
[EJB3] - Remote context / security
by Scott Wallace
Scott Wallace [https://community.jboss.org/people/sdwallace] created the discussion
"Remote context / security"
To view the discussion, visit: https://community.jboss.org/message/788795#788795
--------------------------------------------------------------
Hello.
I would like to understand if it is possible to have a web tier be the remote EJB client and not have any jboss-ejb-client.properites that expose security. I have this code:
private static Calculator lookupRemoteEJB() throws NamingException {
Properties jndiProps = new Properties();
jndiProps.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.naming.remote.client.InitialContextFactory");
jndiProps.put(Context.PROVIDER_URL,"remote://localhost:4447");
jndiProps.put(Context.SECURITY_PRINCIPAL, "webTier");
jndiProps.put(Context.SECURITY_CREDENTIALS, "secretpassword");
//create a context passing these properties
Context context = new InitialContext(jndiProps);
final String appName = "";
final String moduleName = "EJBSandbox";
final String distinctName = "";
final String beanName = CalculatorBean.class.getSimpleName();
final String viewClassName = Calculator.class.getName();
System.out.println("Looking EJB via JNDI ");
System.out.println(moduleName + "/" + distinctName + "/" + beanName + "!" + viewClassName);
return (Calculator) context.lookup(moduleName + "/" + beanName + "!" + viewClassName);
}
It works provided I have this jboss-ejb-client.properties in my classpath:
remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false
remote.connections=default
remote.connection.default.host=127.0.0.1
remote.connection.default.port = 4447
remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=false
remote.connection.default.username=webTier
remote.connection.default.password=secretpassword
remote.connection.default.connect.options.org.xnio.Options.SASL_DISALLOWED_MECHANISMS=JBOSS-LOCAL-USER
remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOPLAINTEXT=false
However, if I remove the user name and password from the properties file, I get this exception:
ERROR: JBREM000200: Remote connection failed: javax.security.sasl.SaslException: Authentication failed: all available authentication mechanisms failed
No EJB receiver available for handling [appName:,modulename:EJBSandbox,distinctname:] combination for invocation context org.jboss.ejb.client.EJBClientInvocationContext@1a3a9bba
java.lang.IllegalStateException: No EJB receiver available for handling [appName:,modulename:EJBSandbox,distinctname:] combination for invocation context org.jboss.ejb.client.EJBClientInvocationContext@1a3a9bba
Is there a way to remove security information from the property file (or encrypt it minimally) so that this is not in clear text on a web server in the DMZ? Any concrete examples?
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/788795#788795]
Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 3 months
[jBPM] - POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013
by akash gongga
akash gongga [https://community.jboss.org/people/badrinath0013] created the discussion
"POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013"
To view the discussion, visit: https://community.jboss.org/message/788794#788794
--------------------------------------------------------------
POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013
http://allsportszonetv.blogspot.cz/ http://bcslive.files.wordpress.com/2013/01/2013discoverbcsnationalchampio...
http://allsportszonetv.blogspot.cz/ http://www.betvega.com/wp-content/uploads/2012/12/alabama-notre-dame-odds...
http://allsportszonetv.blogspot.cz/ http://bcslive.files.wordpress.com/2013/01/2013discoverbcsnationalchampio...
http://allsportszonetv.blogspot.cz/ http://www.betvega.com/wp-content/uploads/2012/12/alabama-notre-dame-odds...
POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013POST!!!Notre Dame vs Alabama live Monday Night Show On 7, January 2013
http://allsportszonetv.blogspot.cz/ http://bcslive.files.wordpress.com/2013/01/2013discoverbcsnationalchampio...
http://allsportszonetv.blogspot.cz/ http://www.betvega.com/wp-content/uploads/2012/12/alabama-notre-dame-odds...
http://allsportszonetv.blogspot.cz/ http://bcslive.files.wordpress.com/2013/01/2013discoverbcsnationalchampio...
http://allsportszonetv.blogspot.cz/ http://www.betvega.com/wp-content/uploads/2012/12/alabama-notre-dame-odds...
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/788794#788794]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 3 months
[jBPM] - Dynamic User Task assignment
by Franck cdsosi
Franck cdsosi [https://community.jboss.org/people/cdsosi] created the discussion
"Dynamic User Task assignment"
To view the discussion, visit: https://community.jboss.org/message/785210#785210
--------------------------------------------------------------
Hi community,
I am digging into jBPM5 and I have a question dealing with User Task Assignment. I went through several posts about something similar but can not really find an answer to my question...
The simple and usual way with User Taks is to assign fixed actor(s) or group(s) but if my User Task assignment relies on process data or even event?
I know you can do something like what is done with Evaluation.bpmn process that is to say use a #{employee} as potentionalOwner and set value of employee variable at process start.
What would be the solution if I want to assign a User Task to an actor dynamically and based a specific algorithm not just an input field value. Some questions about this situation to get best practise or orientation from community :
1. Is the use of a variable as potential owner (e.g. #{employee}) the "good" way to handle this kind of situation?* is possible to set it as group id?
* other way or solution to set dynamically my actor or group ID? Can a User Task actor or group id be left blank and assigned programmatically? => I've read somewhere that when a user Task is reached at process runtime it must assigned to an actor or group at least Administrator. => "By default, jBPM registers a special user with userId "Administrator" as the administrator of each task. You should therefor make sure that you always define at least a user "Adminstrator" when registering the list of valid users at the task service." This sentence let me think that no specific actor can be set when modeling a BPMN process? Is it correct?
2. Where do I have to plug my specific User Task assignment algorithm? Can it be for instance in an On-Entry script of the User Task or is it too late? If too late is the answer where can I plug it (I hope there is no need to model a specific Task (Service Task) before the User Task?
3. Is it possible to make a User Task assignment with a Drools rule?
4. Are there any example available showing these kind of situation?
This makes quite a lot of questions but any help or advices would be appreciated ;)
Kind Regards
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/785210#785210]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 3 months
[jBPM] - LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013
by akash gongga
akash gongga [https://community.jboss.org/people/badrinath0013] created the discussion
"LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013"
To view the discussion, visit: https://community.jboss.org/message/788777#788777
--------------------------------------------------------------
LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013
http://thekentuckyderbyonline.com/live-boxing-link-2/ http://1.bp.blogspot.com/-zHLv8YB7YC0/UOFuwcWfYuI/AAAAAAAAAHI/Ab8efZ5u8Fs...
http://thekentuckyderbyonline.com/live-boxing-link-2/ http://blog.365livesports.com/wp-content/uploads/2012/12/002.jpg
http://thekentuckyderbyonline.com/live-boxing-link-2/ http://1.bp.blogspot.com/-zHLv8YB7YC0/UOFuwcWfYuI/AAAAAAAAAHI/Ab8efZ5u8Fs...
http://thekentuckyderbyonline.com/live-boxing-link-2/ http://blog.365livesports.com/wp-content/uploads/2012/12/002.jpg
LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013LiVE Cincinnati vs Notre Dame Live Monday, January 7 2013
http://thekentuckyderbyonline.com/live-boxing-link-2/ http://1.bp.blogspot.com/-zHLv8YB7YC0/UOFuwcWfYuI/AAAAAAAAAHI/Ab8efZ5u8Fs...
http://thekentuckyderbyonline.com/live-boxing-link-2/ http://blog.365livesports.com/wp-content/uploads/2012/12/002.jpg
http://thekentuckyderbyonline.com/live-boxing-link-2/ http://1.bp.blogspot.com/-zHLv8YB7YC0/UOFuwcWfYuI/AAAAAAAAAHI/Ab8efZ5u8Fs...
http://thekentuckyderbyonline.com/live-boxing-link-2/ http://blog.365livesports.com/wp-content/uploads/2012/12/002.jpg
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/788777#788777]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 3 months