I’m trying to develop a flow that is kicked of by a trigger on a table. The trigger kicks off the flow by passing three variables through a http invoke. (e.g. SELECT '[url=“http://170.121.201.18:5555/invoke/TrapezeToMMMS.Trans:Main?vehicleID=”]http://170.121.201.18:5555/invoke/TrapezeToMMMS.Trans:Main?vehicleID=[/url]‘||:new.vehicleid||’&modDate=‘||:new.moddate||’&modTime='||:new.modtime into wm_url
FROM dual; )
in the flow I have put in a debug log step that displays these three values. Later I use these values as input for a query.
The problem is that when the trigger kicks of the job the query does not produce any results. However if I step through, or run the flow through the developer - or even run it through the browser it works. I can see from the logs that the values are passed, but the query does not work when kicked off by the trigger.
does anyone have suggestions on how to de-bug this or know what is going on here. I seem to have hit a wall
thanks in advance
–Steve
here is the log from the job from the trigger:
[392]
[391]%wo/changeByDate%
[390]TRAPEZE
[389]%wo/eqNum%
[388]%wo/description%
[387]%wo/statusDate%
[386]WAPPR
[385]2005-04-29 08:45:08 GMT+05:00 [ISP.0090.0004C] TrapezeToMMMS.Trans:Main – New Vehicle Maintenance Record: 1057
[384]2005-04-29 08:45:08 GMT+05:00 [ADA.0001.0101D] Connected to database on “p650b1” with “LOCAL_TRANSACTION”.
[383]2005-04-29 08:45:08 GMT+05:00 [ADA.0001.0101D] Connected to database on “170.121.1.34” with “LOCAL_TRANSACTION”.
[382]2005-04-29 08:45:08 GMT+05:00 [ISP.0090.0004C] TrapezeToMMMS.Trans:Main – New Vehicle Maintenance Record: 12013 - 20050429 - 35248
and one from [url=“http://170.121.201.18:5555/invoke/TrapezeToMMMS.Trans:Main?vehicleID=12013&modDate=20050429&modTime=35248”]http://170.121.201.18:5555/invoke/TrapezeToMMMS.Trans:Main?vehicleID=12013&modDate=20050429&modTime=35248[/url]:
[403]
[402]04/29/2005 09:49:33
[401]TRAPEZE
[400]B2013
[399]TESTING3
[398]04/29/2005 09:49:33
[397]WAPPR
[396]2005-04-29 08:49:37 GMT+05:00 [ISP.0090.0004C] TrapezeToMMMS.Trans:Main – New Vehicle Maintenance Record: 1057
[395]2005-04-29 08:49:37 GMT+05:00 [ADA.0001.0101D] Connected to database on “p650b1” with “LOCAL_TRANSACTION”.
[394]2005-04-29 08:49:37 GMT+05:00 [ADA.0001.0101D] Connected to database on “170.121.1.34” with “LOCAL_TRANSACTION”.
[393]2005-04-29 08:49:37 GMT+05:00 [ISP.0090.0004C] TrapezeToMMMS.Trans:Main – New Vehicle Maintenance Record: 12013 - 20050429 - 35248
Lines 382 and 393 echo back the valuse pased in the invoke. Lines 387,388,389,391 & 398,399,400,402 are the results from the query
#Flow-and-Java-services#webMethods#Integration-Server-and-ESB