Hi, thank you for your reply.
Sorry I was not clear.
Tier service :
=> Javascript : we can call it 'JsTier.js' for example
Web service soap :
=> Javascript : jsSoap.js
Workflow :
=> Javascript : jsWkf.js => not a file, directly in workflow
So here how it works :
1) JsTier.js call soap service in jsSoap.js.
2) jsSoap.js launch signal to workflow and wait until workflow end.
3) workflow go to query > enrich (the value would be @statut for example) > jsWkf.js.
4) jsWkf.js change the value of @statut via queryDef in enrich temporary schema
Here is what I want to do :
5) jsSoap.js still waiting then retrieve @statut value by querydef in the enrich temporary schema (not purged yet). And return the value to jsTier.js.
But I get the error : The temporary 'temp:enrich_broadlog' schema is not defined in the current context
I saw post about queryDef in temporary, I think this is what i am trying to do. But I am calling a queryDef to a temporary schema from a javascript file that is not in the workflow.
I am not sure if the schema is in the same context because i am trying to access a temporary schema from a separate javascript.