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 - GFasolt

Pages: [1]
1
The Rest - Ask For Help / Desktop Maps Stopped Working
« on: April 15, 2021, 02:37:24 PM »
Clarion 11 ABC and NetTalk 12.04

At some time within the past few months, Here maps have stopped working in a desktop multi-app solution.  The marker icon is displayed, but no maps.

The FreeImage extension is included and the Draw option Activate DrawImage is checked.

2
Web Server - Ask For Help / Updating a prompt
« on: May 03, 2018, 01:39:22 PM »
I am working on a wizard in which the user first selects an "Equipment Type" from a drop control on the first tab.  This works perfectly to filter another drop on another tab.  On the first drop's client side, I reset the prompt for another field (on yet another tab). Unfortunately this prompt is never updated despite the fact that the value is included in the Equipment Type view.  How do I force the prompt to reflect the value in the view?

3
Web Server - Ask For Help / Gallery
« on: April 06, 2018, 10:53:32 AM »
I have a gallery on one tab of a wizard.  The image and thumbnail file paths are local variables set (and validated with EXISTS()) in the Value::ThisGallery routine LOOP.  I see images but no thumbnails in IE and neither images nor thumbnails in FireFox and Chrome.  The gallery script is checked in the template.  What might I be doing wrong?

4
Using Netalk 4.46's NetServer and NetClient, I must assure that all communications are restricted to apps on a single computer.

Wolfgang Orth graciously pointed out how to do this with NetSimple by setting

     NetSomething.Open (clip(Server), Port)

but I can locate no embeds for the Open methods for NetServer and NetClient. How can this be accomplished with NetServer and NetClient?

5
Using a NetWebForm with a String field using a lookup button.

The child file (the look-up) is related to the parent (the form) by an identity value in support of normalization.

Code: [Select]
Parent FILE,PRE(PAR)
ParentID  LONG
ChildID  LONG
Name  STRING
        END

Children  FILE,PRE(CHI)
ChildID  LONG
Name  STRING
        END

Template settings:
Field: PAR:ChildID
Type: String
Lookup button: [X]
From file: Children
Order by: CHI:Name
Value field: CHI:ChildID
Description field: CHI:Name

Problem: The NetWebForm string displays the PAR:ChildID value rather than CHI:Name.  How can I hide the PAR:ChildID value and display the CHI:Name instead?
   

[attachment deleted by admin]

6
Web Server - Ask For Help / Drop height in Firefox
« on: February 18, 2010, 11:27:32 AM »
In Firefox, my drop fields are displaying at a different height than string fields. Okay in in IE.

Any solutions?

Screen cap attached.



[attachment deleted by admin]

7
It appears that when a user cancels an insertion that the incomplete Auto Inc record is left in the table. Of course, this results in an error the next time an insertion is attempted.

Must I attend to this record myself or is there perhaps a template setting that I've overlooked?

8
Web Server - Ask For Help / Drop fields - Two questions
« on: January 26, 2010, 09:32:09 AM »
I have several NetWebForm procedures with drop fields that look up values form other files. In all cases the child table is related to the parent by an ID (i.e., MEM:MemberID LONG), with relations defined in the dictionary), not the displayed value (i.e., MEM:Name STRING(30)). Two questions:

1) NetTalk does not appear to update the parent record with the ID from the child after making a selection from the drop list. How do I handle this?

2) When opening the NetWebForm, the look up fields contain the wrong values unless I load the correct record soon after the CODE statement. Is this normal or am I doing something wrong?

9
Using NetWebClient to get a small file file from a server (http://proentry4.com/web/PROENTRY4.wud). This is causing consistent crashes, which have led me to NetXxx.clw.

In NetWebClient._CallPageReceived:
loc:tempLen = Len(Clip(self._LastURLRequested))
where loc:tempLen is set to 0

Next
if self._LastURLRequested[loc:tempLen] = '/'...

Obviously 0 is a problem here.

What might I be doing wrong to cause this?

Generated source file attached
CW 6.3.9056 ABC
NetTalk 4.32.12

[attachment deleted by admin]

10
Web Server - Ask For Help / SOAP Server: Empty xmlString string
« on: November 25, 2008, 10:54:19 AM »
Using xFiles-less web42 example, my GetInfo() procedure begins as in the code below. The MESSAGE() function shows the xmlString to be empty. It appears I've omitted something. Suggestions?

Code: [Select]
  CODE
  GlobalErrors.SetProcedureName('GetInfo')
  do OpenFiles
  p_web.SetValue('_parentPage','GetInfo')
  p_web.publicpage = 1
  if p_web.sessionId = 0 then p_web.NewSession().
  do Header

  xmlString        = p_web.GetValue('xml')
  xmlLength        = LEN(CLIP(xmlString))

  MESSAGE('xmlString:|' & CLIP(xmlString), 'GetInfo')

11
Web Server - Ask For Help / SOAPServer example without xFiles
« on: November 20, 2008, 10:16:47 AM »
I am attempting to use the SOAPServer (42) example, but without xFiles. I believe I am forming the request correctly(http://ecomcon.dnsalias.com/soap.htm).

The server indicates receipt:

Code: [Select]
POST /GetInfo HTTP/1.0
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
Host: 127.0.0.1:88
Content-Length: 305
Pragma: No-Cache
Cache-Control: No-Cache
Connection: Keep-Alive
SOAPAction: "http://127.0.0.1:88/GetInfo"

<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><GetInfo/"><Role>Student</Role><Number>1</Number></GetInfo></soap:Body></soap:Envelope>


Placing a MESSAGE embed in the server GetInfo() procedure immediately after CODE indicates the GetInfo() is not being called, hence the client displays 404, Page cannot be found.

What should I be doing to cause the server to call GetInfo()?

Pages: [1]