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

Pages: 1 [2]
16
Web Server - Ask For Help / Trouble with same exe as 2nd service
« on: March 05, 2018, 10:03:42 PM »
I'm Trying to run a NTWS on different ports.  I can set the service names etc via config.  I copy each to seperate directories.  I can run as an application 2 copies fine.
But I can't get this to work when they're a service.
I can get the 2 services installed, but only the fir one started runs

Using MSSQL, AD , Windows Authentication

Any pointers?

17
E-Mail - Ask For Help / Send email error -53
« on: February 01, 2018, 06:42:30 PM »
Attempting to send an email, my clients sometimes get the following error:

A network communication error has occurred.||Error = The requested connection could not be opened. The Open command timed out or failed to connect.||The error number was -53 which means Open Timeout or Failure error.||Error occurred in function NetSimple.

Retrying the email will either work or maybe this error again.

Any ideas on how to solve?   
C10 NT 10.07

18
Web Server - Ask For Help / Wrong button highlighted after selection
« on: September 17, 2017, 10:18:40 PM »
Hi

I have a form that has 4 buttons on it. The buttons basically just set a session value and then reset a few browses to display or not.
The problem is if I click on button 1 button 2 ends up highlighted, or selected or whatever it is.
If button 3 is clicked button 4 is highlighted.

Any ideas on whats going on and how to stop it?

19
Web Server - Ask For Help / How to change tooltip text on lonin button?
« on: September 10, 2017, 09:59:29 PM »
Currently the Login button comes up with a tooltip text of 'Click on this to save the form'
I want to change it to something about logging in !

How does one acheive this


20
Web Server - Ask For Help / Can popup calendar be made to start on a Monday?
« on: September 10, 2017, 09:49:27 PM »
Hi all

Can the popup calendar be made to start on a Monday?

21
Web Server - Ask For Help / NTWS and Secwin
« on: August 21, 2017, 07:04:19 PM »
We have a normal wndows app and would like a very limited NTWS for one small part.

Is it possible to control the WS access from the Normal Windows app?
Is it possible for a supervisor to set who goes into the WS without emails flying around.  We want the same logon as the windows app.



22
Web Server - Ask For Help / One browse doesn't sort header
« on: August 06, 2017, 10:05:01 PM »
I have one browse where the headers don't cause a sort of that column.
All the others are fine, and I can't see any difference!!

Help!!!


23
NTWS 10
Memory form,  I have a search field(s) and a submit button marked as default button to refresh a browse
However pressing enter causes one to go back a page instead.

How do I get enter to press my button instead?

24
Has there been any development on this front?  
I find I also need to authenticate against Active Directory for the client


[editor - this topic has been split from
http://www.nettalkcentral.com/index.php?option=com_smf&Itemid=36&topic=4613.0 ]


25
The Rest - Share Knowledge / Posting a file to a web site
« on: October 18, 2007, 09:15:12 PM »
The docs posting for a file only mention this in passing.
For multi part mime message, ie a file, you need to add '--' in front of the boundary string!

Hopefully this will save someone the 2 hours it took me find this.

Here is some code that works:
FileLen = ReadFileToString('WebProducts.csv',FileContents)

WebURL = 'http://' & clip(config:website) & '/admin/au_addproductsupload.php'

PostString = '--' & Boundry & CRLF |
           & 'Content-Disposition: form-data; name="localproductsfile"; filename="WebProducts.csv"' & CRLF |
           & 'Content-Type: application/octet-stream' & CRLF |
           & CRLF |
           & fileContents[1:filelen]    |
           & CRLF |
           & '--' & Boundry & CRLF |
           & 'Content-Disposition: form-data; name="Submit"' & CRLF |
           & CRLF |
           & 'Submit'& CRLF |
           & '--' & Boundry & '--' & CRLF |
           
ThisWebClient.SetAllHeadersDefault() ! We recommend you call this before Fetch()
                          ! You may want to modify some properties after this.
ThisWebClient.CanUseProxy = 1 ! Can use a proxy
ThisWebClient.ProxyServer = 'localhost'          ! Debug
ThisWebClient.ProxyPort = 81                     ! Debug

ThisWebClient.HeaderOnly = 0
!ThisWebClient.Cookie = Cookie
!ThisWebClient.Referer = Referer
ThisWebClient.ContentType = 'multipart/form-data; boundary=' & Boundry
ThisWebClient.AcceptEncoding = ''
ThisWebClient.ContentLength = Len(Clip(PostString))
ThisWebClient.Pragma_ = 'no-cache'

ThisWebClient.AsyncOpenUse = 1 ! Use AsyncOpen 12 seconds (recommended)
ThisWebClient.AsyncOpenTimeOut = 2000 ! up to 12 seconds to connect

ThisWebClient.InActiveTimeout = 9000 ! Set IdleTimeout 90 seconds
!ThisWebClient.Post(WebURL,PostString)

Pages: 1 [2]