Debug REST on Jade

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Debug REST on Jade

BrunoBB
Hi,

Working with REST services but i can not debug properly.

I start Seaside inside Topaz on port 8888.
If i put a halt or (self foo) inside Seaside code, i can NOT reach the stack with Jade (Object log is empty).
Even #halt stops the process started in Topaz.

Only happends in REST services, in the reguar seaside application i can debug from Jade Object Log.

regards,
bruno

Reply | Threaded
Open this post in threaded view
|

Re: Debug REST on Jade

BrunoBB
Hi,

Gerhard thanks for your answer.

Although i can not debug (the route part of) REST services i have solved the problem changing the name of the argument for the argument index.

<path: '/fieldsOf?app={myApp}&form={formName}'>  - this cause an error and the service was NOT properly routed.

<path: '/fieldsOf?app={1}&form={2}'>  - this works fine and the service IS properly routed.

Regards,
Bruno