Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
rhall_2.0 wrote:
Can you change the the URI patterns? I have to admit I have never tried having such similar patterns, but I suspect the fact that you are using "/users" and "/users/{id}" is the cause of this. If you change them to "/createuser" and "/getuser/{id}" I suspect this problem will go.
rhall_2.0 wrote:
I know what it is. I just had another look at your job/service design. This is caused by the OnComponentOK links. After those, you have DB queries. These are being fired because even though there is no data going to the component before, it is finishing "OK". Therefore the query component is firing. Replace the OnComponentOK links with IF links, using something that will only fire if that route is OK to use.
It is a bit of a pain, but I remember when I worked for Talend the expectation was that services wouldn't use subjobs like this. Using them is not a massive issue, but you have to work around them.