Export Form in a Java Web App
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2013 12:01 PM
Hi…i'm developping a Web Application in order to complete my tasks externally from activiti
I have write a xml file, that i 've deployed with success on Activiti that render a simply login form, that requires username and password.
Now can i export this form in my web app using API!??!
I have write a xml file, that i 've deployed with success on Activiti that render a simply login form, that requires username and password.
Now can i export this form in my web app using API!??!
Labels:
- Labels:
-
Archive
6 REPLIES 6
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2013 04:41 AM
Now can i export this form in my web app using API!??!
I've really got no clue what you mean with that.
Do you want to use the form properties in your xml in your own app? If so, check how we do it in the Explorer sample app.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2013 05:12 AM
No no…i would export a form mask in a external JSP page!
When i write my xml and i make an import in activiti, him renderer a form in respect with my activiti:field..
So, can i capture this form, through API, and represent it in my jsp web page!?
I would simply reproduce a form of Activiti….
Thanks in advance…and i'm sorry for my previous explanation…i talk english just a little bit.
When i write my xml and i make an import in activiti, him renderer a form in respect with my activiti:field..
So, can i capture this form, through API, and represent it in my jsp web page!?
I would simply reproduce a form of Activiti….
Thanks in advance…and i'm sorry for my previous explanation…i talk english just a little bit.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2013 11:55 AM
So, can i capture this form, through API, and represent it in my jsp web page!?
Yes. People have integrated it with jsf, flex and we did it with Vaadin.
You can get all the information you need in your jsp through the FormService API.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2013 12:53 AM
can you post a brief example!?
…in my Jsp Page i've write this…
ProcessEngine processEngine = h2.connection(); //everybody ok!
// in order to start my db connection..
FormService formService = processEngine.getFormService();
// instance a formservice..that contains some methods that returns Object (getStartFormData etc etc..)
Where it's contained the form, or better, the GUI Form, and how render it?!
…in my Jsp Page i've write this…
ProcessEngine processEngine = h2.connection(); //everybody ok!
// in order to start my db connection..
FormService formService = processEngine.getFormService();
// instance a formservice..that contains some methods that returns Object (getStartFormData etc etc..)
Where it's contained the form, or better, the GUI Form, and how render it?!
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2013 08:28 AM
It seems you need to learn first a bit about Activiti's form: check out http://activiti.org/userguide/index.html#forms
Or check the Explorer source code, and see how the form properties are used there.
Or check the Explorer source code, and see how the form properties are used there.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2013 01:47 AM
And using plain jsp is very, very ancient, antique, old etc… Maybe a more modern ui framework might help to.
