It's possible to remote debugging of WebService(obsolte) on IIS on remote machine ?!
It's possible to remote debugging of WebService(obsolte) on IIS on remote machine ?!
Can you tell us more about what you're trying to do? Are you having an internal error in the web service and you want to step through it, or are you trying to see what the response is that's coming back? If you are just trying to see and debug what's in the response, you can use Postman or Fiddler to trap both the request and response. I've used those tons of times to figure out what's wrong with my request and/or response. If you're trying to debug internally what's going on in the service and you control the service, add logging at key points of the service and re-deploy it.
Kevin
Hi iliyan;
When Sybase added this feature in PB 11.x, the remote debugging feature only worked with your local IIS instance. When I asked about that restriction, the Sybase engineers told me that they use the .NET debugger for this task (which PB calls for this functionality). They told me that the remote IIS debugging was a restriction of the .NET Debugger / Framework and not PB's.
HTH Regards ... Chris
You can debug the PowerScript code itself is correct in PB IDE using the debugger, but debugging of the generated service itself is limited. I strongly recommend to use the PowerScript Migrator and convert this to a C# REST API and use the RESTClient object to call it from PB.