Hi,
Anyone please tell me, what is the difference between invoking services via the methods in the Context and TContext classes in the webMethods Java API.
Thanks
Hi,
Anyone please tell me, what is the difference between invoking services via the methods in the Context and TContext classes in the webMethods Java API.
Thanks
TContext lets use utilize the guaranteed delivery mechanism in webMethods 4.x+, synonymous to the pub.remote.gd:* services for flows.
Eric
TContext is using guranteed delivery feature of WM and will require some disk IO on the client side it will write files on your client machine to acomplish the task. This wil automatically retry the delivery if it failed. Also because of this TContext is very very slow porcess as compared to Context or HTTP. Unless you have some really strong requirements to use this guranteed elivery I would avoid it. Use Context instead it is using HTTP protocol for transport and you can get good performance out of it if needed.
Thanks