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.


Topics - Djordje Radovanovic

Pages: 1 [2] 3 4 ... 6
16
Web Server - Ask For Help / NetTalk and JFiles
« on: December 21, 2015, 12:46:25 AM »
I just installed NetTalk App and tried to open some of examples but every one of them (even old ones) now require JFiles.

Error(3): cif$fileopen jfiles.inc The system cannot find the path specified. - C:\Clarion10\accessory\Capesoft\NetTalk\Web Server\Hyperlinks (30)\GEN\web30.clw:1

Does this mean that I have to buy JFiles?

Best regards,

Djole

17
Web Server - Ask For Help / How to change text for CloseButton
« on: December 05, 2015, 05:11:21 PM »
I need to change text for close button on one browse.

I know that p_web.site.CloseButton.TextValue is variable where I have to change value but I do not know right Embed point. I tried several Embeds but no luck.

Best regards,

Djole

18
Web Server - Ask For Help / Force closing page
« on: November 18, 2015, 03:42:41 AM »
I have button with ServerCode embed.
It works as I expect but after code is completed I would like to send user to IndexPage.

I believe that some sort of p_web.script can help me or some kind of submit but I do not know how.

Can one help me?

Best regards,

Djole




19
Web Server - Ask For Help / Existing desktop app with SecWin and NetTalk
« on: November 16, 2015, 12:26:25 PM »
Documentation says:

NOTE: You must set the encryption in the Global Extension on the General tab. This will be primed to a random value for you, however you may want to change it, especially if this application will be sharing the DSSW file with another application.

What is my option to have same users for both application or even to run both application on a same database?

Best regards,

Djordje Radovanovic

20
Web Server - Ask For Help / Update record in a browse
« on: August 07, 2015, 05:36:26 AM »
I have browse with button type Other. When I click on this button I have another browse with sub items of parent browse. This sub browse is opened as popup. When I updated sub items, totals in a parent browse are changed.

How to refresh parent browse after sub browse is closed?

Best regards,

Djole


21
Web Server - Ask For Help / OPTIONS
« on: August 02, 2015, 11:22:11 PM »
There is request method type NetWebServer_OPTIONS.
I have request from client with this type.

What can I do with this type of request?
Can I serve it as regular page?

Best regards,

Djordje

22
Web Server - Ask For Help / Web Services
« on: July 24, 2015, 02:12:32 AM »
Sorry for my ignorance but where can I find documentation about creating web services with NetTalk?

Best regards,

Djordje Radovanovic

23
During compilation I receive an error in a file NetEmail.clw.

Error is on line 3456 and on line 3522 problem is
str.QuotedPrintableEncode()

Obviously this procedure does not exist in a StringTheory class.

I am using 2.29 StringTheory version (latest).

Best regards,

Djole

24
Web Server - Ask For Help / Just info about client side triggers
« on: July 08, 2015, 02:05:55 AM »
Client side triggers do not apply to nettalk templates. Where to put my code (what embed point)  that is in client side trigger definition?

Best regards,

Djordje

25
Web Server - Ask For Help / Firebug
« on: July 08, 2015, 01:28:38 AM »
No meter what nettalk app I analyze with Firebug I always receive this error from Scrip debbuger:
TypeError: $(...).ntosk is not a function
http://localhost:88/scripts/all.js?c=1
Line 167

As I do not have much of control over JS my question is how can I avoid this?

Best regards,

Djordje Radovanovic


26
Web Server - Ask For Help / Service Server and filter
« on: July 05, 2015, 02:49:33 PM »
I create application straight from generator. Asked only to make services for some .TPS files.
No changes no tweaking just generate and compile and receive this errors:
Unknown procedure label -                                                                  D:\AC10\TestSRV\GEN\TestSRV012.clw:171,127
Expected: <assign> <LINEBREAK> ( [ &= :=: { @ . ;  -                        D:\AC10\TestSRV\GEN\TestSRV012.clw:171,107
Unknown procedure label -                                                                  D:\AC10\TestSRV\GEN\TestSRV012.clw:171,89
Expected: <LINEBREAK> ( [ + - * / % ^ & { @ . ;  -                              D:\AC10\TestSRV\GEN\TestSRV012.clw:171,69
Expected: <statement> <EOF> <INT> <REAL> <DECIMAL> <STRING> <LINEBREAK> ( ; ACCEPT ASSERT CHOOSE INCLUDE OMIT RAISE TRY SECTION COMPILE BEGIN PRAGMA  -                                             D:\AC10\TestSRV\GEN\TestSRV012.clw:175,5

Original source lines are from 156 to 176
156 BuildResultFields  Routine
157   if p_web.RequestJSON
158   Else
159     xml._indent = IndentLen
160     xml.SaveEncoding = 'utf-8'
161     If Records(p_web.ServiceErrorQueue)
162       xml.save(p_web.ServiceErrorQueue,'ServiceErrors','Error')
163       packet.append(sub(xml.xmldata,1,xml.xmldatalen))
164     Else
165       If Records(p_web.ServiceResultQueue)
166         xml.save(p_web.ServiceResultQueue,'ServiceResults','Result')
167         packet.append(sub(xml.xmldata,1,xml.xmldatalen))
168       End
169       If records(p_web.ServiceResultQueue) = 0
170         Get(q:BKREC,1)
171         BKRECView{prop:filter} = 'REC:PROID = ' & q:BKREC.REC_PROID AND'REC:DATUM = ' & q:BKREC.REC_DATUM AND'REC:VREME = ' & q:BKREC.REC_VREME
172         xml.save(BKRECView,'','BKRECDetail')
173         packet.append(sub(xml.xmldata,1,xml.xmldatalen))
174       End ! Condition
175    End
176   End

Obviously main source of problem is line 171 and I do not want to change it by hand. What to add or change to make it right?

Best regards,

Djordje

27
Web Server - Ask For Help / Slow map
« on: June 23, 2015, 07:52:20 AM »
I have an application with  geo position in database and I need to show this geo position on map.
Took example and put similar form in my application and it works but when I am calling this form it took so much time show map.
It needs 20 seconds or more to appear on screen. Is it possible to be little faster?

Best regards,

Djole

28
Web Server - Ask For Help / NetWebProcedure
« on: May 07, 2015, 09:37:00 PM »
I want to use NetWebProcedure extension in NetTalk app but could not find documentation.

I put this extension in one of my source procedure but nothing change. I use this source procedure to make .PDF file.

How to run this procedure from button and to show result?

Best regards,

Djordje

29
Is it just me or this is some kind of Clarion bug?

I have defined tables for new NetWebForm procedure and described all the fields inside of procedure. Procedure was generated as I need but if I try to see which files are defined for this procedure nothing shown. It just shows files from previous accessed procedure.

If my words are not good enough to describe my problem than I believe that pictures are quite descriptive.

Best regards,

Djordje Radovanovic

[attachment deleted by admin]

30
Web Server - Ask For Help / Static page with dynamic content
« on: March 17, 2015, 10:56:55 AM »
I tried to build static page with dynamic content. Help serached, book searched, documentation searched ...
Found little and now I have to ask for help.

This is simple page I made as an example. Nothing pops up except text "Some text example". Of course I need much more complicated HTML but I have to start from some point.
For the begining it would be nice just to see year defined by !<-- Net:d:year -->

<!-- NetWebServer -->
<!DOCTYPE html><html class="nt-html no-js">
<head>
<!-- Net:c:Head -->
<title>SomeTitle</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div><!-- Net:d:year--> Some text example</div>
<!-- Net:c:BodyEnd -->
</body>
</html>

Best regards and thank you in advance,

Djole

Pages: 1 [2] 3 4 ... 6