NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: David on May 01, 2018, 04:49:56 AM

Title: net.Post(URL) - what can I send to debugview to see what i'm posting
Post by: David on May 01, 2018, 04:49:56 AM
NT10

What embed would I use and method to post to debugview what I'm posting?

Thank you.
Title: Re: net.Post(URL) - what can I send to debugview to see what i'm posting
Post by: DonRidley on May 01, 2018, 09:19:41 AM
No specific embed per say. 

You can enter some code and put a p_web.Trace() call right under it to see what your code is doing.

I normally use debug view to make sure my session values are being set and/or received properly.

Something like:

Let's say I set a session value...
p_web.SSV('SomeSessionValue', 'TheValue')

and I want to see that session value in DebugView...

p_web.Trace('Here is my session value - ' & p_web.GSV('SomeSessionValue'))

If you go to the local NetTalk extension, performance tab, on the webserver window, you can set the server to run in "debug" mode which will allow you to literally see, in DebugView, everything that the server processes.

Also, several, if not all, of the Capesoft classes make use of Trace.

String Theory - st.Trace() (Where the object is named st.)

NetWebServerWorker - net.Trace()

and so on....

Maybe that will help,

Don
Title: Re: net.Post(URL) - what can I send to debugview to see what i'm posting
Post by: David on May 02, 2018, 05:50:06 AM
Thank you for your response.  I do use trace to send things to debugview.  My issue is i'm trying to see what information the POST() method is sending to the URL.  Per the Nettalk documentation @ http://www.capesoft.com/docs/NetTalk10/NetTalkWebClient.Htm#Post i'm doing the following:

net.SetValue('CustomerName','Charlie')
net.SetValue('Company','Capesoft')
net.Post(url)

I want to see what net.Post is sending
Title: Re: net.Post(URL) - what can I send to debugview to see what i'm posting
Post by: DonRidley on May 02, 2018, 06:13:25 AM
Ah.  My apologies. 

I would look at the net.send procedure. 

In the NetTalk demo app, TestWebClient procedure:

  if self.packet.binDataLen > 0
    PageSent = self.packet.binData[1 : self.packet.binDataLen] & '<13,10>-----------------<13,10>' & PageSent
  end

So, I'm curious if you could do something like:

p_web.Trace(PageSent)

Good Luck,

Don
Title: Re: net.Post(URL) - what can I send to debugview to see what i'm posting
Post by: bshields on May 02, 2018, 06:36:50 AM
Hi David,

Maybe just try posting it back to your server (or any NT server) and use its logging screen to visually inspect the post.

Regards
Bill
Title: Re: net.Post(URL) - what can I send to debugview to see what i'm posting
Post by: David on May 02, 2018, 09:02:04 AM
Thank you bshields, I ended up running one of my apps and posting the data to it.

Don, I'll give your suggestion a try.  Thank you.
Title: Re: net.Post(URL) - what can I send to debugview to see what i'm posting
Post by: Bruce on May 02, 2018, 10:52:07 PM
you could add .TRACE to the .SEND method;

or just set the Conditional Compile Switch

NETSHOWSEND=>1

just remember to set it to 0 once you're done.

Cheers
Bruce