Results 1 to 6 of 6
Thread: Workflows
- 09-25-2008, 09:36 AM #1
Member
- Join Date
- Sep 2008
- Location
- London
- Posts
- 5
- Rep Power
- 0
- 09-25-2008, 09:56 AM #2
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,370
- Blog Entries
- 1
- Rep Power
- 25
Can you little more explain about workflow, what you mean there.
- 09-25-2008, 11:16 AM #3
Member
- Join Date
- Sep 2008
- Location
- London
- Posts
- 5
- Rep Power
- 0
Sorry for that. It is just in research phase now. For the time being I just want to connect many java applications in such a waya that the output from one independent java application will be taken as input by the another java application(only string, for now) and it continues like workflows in BPM.
For example,
input1--->PRG1.java--->output1 input2--->PRG2.java--->output2 input3--->PRG3.java--->output3
where input2=output1, input3=output2, all are strings only to begin with.
Hope I am much clearer now.
This is a basic of the project.
- 09-25-2008, 11:31 AM #4
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,370
- Blog Entries
- 1
- Rep Power
- 25
In that way, I think you want to pass values from one class to another. If so where are you stuck with.
- 09-25-2008, 01:45 PM #5
Member
- Join Date
- Sep 2008
- Location
- London
- Posts
- 5
- Rep Power
- 0
Thank you for the reply. Still I have got some doubt. The string output from one desktop application should be first stored into MySQL. And when I run the second application(independently) it should fetch the previous output from MySQL which would be its input, and process it and save the string output back into MySQL(another row, or ??). This is just a general idea. I am trying to mimic process workflows.(I might not be right, though). I am still working on it.
- 09-26-2008, 03:57 AM #6
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,370
- Blog Entries
- 1
- Rep Power
- 25
Yes it's possible, store data in a database and use them when you want. But actually you need to do it, if you want to use data later. If you want to use such data at the same time, directly pass them to another class. I hope you know about objects.
Bookmarks