How do I receive java-agent-backend-data in UI
a doc is open in UI. After pressing a button, the doc ist opened in a dialogbox for extra input.
dlg_res = workspace.DialogBox( "DMS_Indizierung", True, True, False , False , True, False, _
"In eAK überleiten ...", ,True, False, True )
In Queryclose there are more checks and an agent is started. This agent gets data from a web-service.
URL url = new URL(urlString);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
...
doc.replaceItemValue("F_Ladezeit", dt.getLocalTime());
doc.save();
After running the agent the UI- Doc is reloaded.
Delete doc2
Set doc2 = db.GetDocumentByID(paramid) ' retrieve the back-end document
If doc2.getitemvalue("F_VGID")(0) <> "" Then
'Msgbox "2. Ergebnis: " + parsehtml(doc, "<result>", "</result>", 0, 0)
ergebnis = parsehtml(doc2, "<result>", "</result>", 0, 0)
Print ergebnis
But where are the results of the agent?
My question: Whereare the results and how can I see them?



