NetTalk Central

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Matthew

Pages: 1 2 [3] 4 5 ... 10
31
Web Server - Ask For Help / Re: F5 Refresh with a double browse
« on: March 04, 2013, 06:23:53 AM »
Hello Mike

Install the latest version of NetTalk (7.06) and then check it again.

I had similar problem in Firefox with NetTalk 7.05. After refreshing site, browser was losing unique ID. After install NetTalk 7.06 everything works.

Regards,
Matthew

32
Hi Bruce

I attached for You completely new example. Please check it.

Run it on Firefox. Click on some checkbox. Then refresh the site and again click on some checkbox. You will see error 'Record Not Available (33)'

Regards
Matthew

[attachment deleted by admin]

33
Any chance Bruce to fix that problem on the next build of NetTalk?

Regards
Matthew

34
Do You check this problem Bruce?

Only Firefox doesn't remember unique record ID after refresh site.
See example which I attached before.

Regards,
Matthew

35
See example which I attached.

When You open webpage for the first time - checkbox is working. But If you refresh site then click on checkbox error Record Not Avaiable (33) will displayed.

This is only in Firefox (I have the latest version).
I have NetTalk 7.05

Regards,
Matthew

[attachment deleted by admin]

36
Hello Bruce

There is another bug which I found using checkbox.

See example - BrowseInForm (21)

There is a procedure called BrowseInvoice. One of column is column Paid, which has set Edit In Place as checkbox and eip conditional on false. So first of all set conditional to true, then You will see a bug.
When You click on checkbox,  error Record Not Avaiable (33) will displayed, because checkbox lost unique record ID.

This is in Firefox. In Opera it works and there is no problem.

Regards,
Matthew

37
Hello Bruce

There is a small bug.

Open popup form by clicking in checkbox in browse doesn't work because:

1. (correct) - loc:javascript is properly set at the beginning of the routine called 'value::...'
2. (incorrect) - before function p_web.CreateInput(...) loc:javascript is cleared (loc:javascript = '') so popup form will never show up.

Regards,
Matthew

38
Web Server - Ask For Help / Re: Problem with Contract/Expand Row
« on: February 08, 2013, 12:56:20 AM »
Hello Bruce

This problem which I described still exists.

When can You fix it?

Regards,
Matthew

39
Web Server - Ask For Help / Re: Problem with Contract/Expand Row
« on: January 23, 2013, 12:40:56 AM »
I have NT6 and NT7 and this problem is on both versions of NetTalk.

So I will be waiting for the next build.

Regards,
Matthew

40
Hello Bruce,

Do You have a solution on my question?

Regards,
Matthew

41
Web Server - Ask For Help / Re: Upload files to different folder
« on: January 21, 2013, 05:12:49 AM »
Don't change the parameter p_path, but propertie self.site.UploadsPath before Parent Call

So, try:

p_web.RenameFile PROCEDURE(STRING p_name,STRING p_filename,<String p_path>)

ReturnValue          ANY

! Start of "NetTalk Method Data Section"
! [Priority 5000]

! End of "NetTalk Method Data Section"

  CODE

 
  IF SELF.GSV('glo:agreement') = 0
     self.site.UploadsPath = clip(self.site.WebFolderPath) & '\uploads\' &self.GSV('KLIF:Phone')
   ELSE
     self.site.UploadsPath = clip(self.site.WebFolderPath) & '\uploads\agreements'
     SELF.SSV('glo:agreement',0)
  END
  ! Parent Call
  ReturnValue = PARENT.RenameFile(p_name,p_filename,p_path)
  ! [Priority 7500]

  SELF._Trace(ReturnValue)
  self.site.UploadsPath = clip(self.site.WebFolderPath) & '\uploads'

  RETURN ReturnValue

Regards,
Matthew

42
No Bruce, the IP address which I am trying to talk. is from completly different LAN.

For example: 203.x.x.72

So, any advice or conclusion?

Regards,
Matthew

43
No Bruce, these IP addresses are not on a private network or on the same network.

For example:
First is: 213.x.x.19
Second: 91.x.x.53
Third: 215.x.x26
Fourth: 92.x.x.10

Regards
Matthew

44
Thank You Bruce for Your reply, but I have something different in mind.

I have few network card in my machines, so I have few IP address.

I don't have Web Server, but only NetSimple Client and I'm trying to connect to the server which has my telephone operator to send some SMS. Their server accept only one specyfic IP address of my machine. So, how can I bind NetSimple Client to one specific IP address of my machine or how can I change source IP address in TCP/IP packet before send.

Regards,
Matthew

45
Hello

I have the following problem:

My machine has more than one IP address. I run on that machine NetSimple Client to send some informaction to some server which only accpet trafic from one specyfic IP address.

For example:
I have four IP address (x.x.x.1, x.x.x.2, x.x.x.3, x.x.x.4)
Server only accept packet from IP x.x.x.3

My question is:
How to send packet to that server from that specyfic IP address. In other words how to bind specyfic IP address to NetSimple Client.

From NetSimple documentaion
Quote
Server & UDP Use:
This method sets up a listening server Port on the specified Port parameters.

1a) If you leave the Server string set to '' (default behaviour) then the listening port will listen on all the IP addresses on that computer.

 Example:
MyServer.Open ('', 80) ! Listen on all IPs

1b) If your machine has more than one IP address or you would rather bind to 127.0.0.1 (which will only be available from the local machine), then set the Server string set to the desired IP address. (Please note if the machines TCP/IP protocol (Control Panel - Networks) has not been configured to support the IP you specify, NetSimple will default to using all available IP addresses).

 Example:
MyServer.Open ('127.0.0.1', 80)
or
MyServer.Open ('192.168.2.1', 80)

But this is for Server. What about Client?

Regards,
Matthew

Pages: 1 2 [3] 4 5 ... 10