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.
76
The Rest - Ask For Help / Re: WebClient Clicatell and many SMS's
« on: May 21, 2013, 10:28:30 PM »
OK was calling the post in a routine and not in a procedure.
Now I get attached error
[attachment deleted by admin]
Now I get attached error
[attachment deleted by admin]
77
The Rest - Ask For Help / Re: WebClient Clicatell and many SMS's
« on: May 21, 2013, 10:19:05 PM »
Did that but it seems that the code in .PageReceived is never executed.
78
The Rest - Ask For Help / Re: WebClient Clicatell and many SMS's
« on: May 21, 2013, 12:00:49 PM »
Decided to use a process but I cannot get it to send SMS's.
TakeRecord code:
loc:message = clip(LOC:Message)
loc:Cell = clip(SSM:Cell)
LOC:PostURL = 'http://api.clickatell.com/http/sendmsg?user='&clip(loc:ClickatellUserName)&'&password='& clip(loc:ClickatellPassword)&'&api_id='&clip(loc:ClickatellAPIID) &'&to='&clip(loc:Cell) &'&text='&clip(loc:Message)
stop(clip(LOC:PostURL)) ! this seems to be correct.
ThisClient.Post(clip(LOC:PostURL),'') !Just nothing happens
[attachment deleted by admin]
TakeRecord code:
loc:message = clip(LOC:Message)
loc:Cell = clip(SSM:Cell)
LOC:PostURL = 'http://api.clickatell.com/http/sendmsg?user='&clip(loc:ClickatellUserName)&'&password='& clip(loc:ClickatellPassword)&'&api_id='&clip(loc:ClickatellAPIID) &'&to='&clip(loc:Cell) &'&text='&clip(loc:Message)
stop(clip(LOC:PostURL)) ! this seems to be correct.
ThisClient.Post(clip(LOC:PostURL),'') !Just nothing happens
[attachment deleted by admin]
79
The Rest - Ask For Help / Re: WebClient Clicatell and many SMS's
« on: May 20, 2013, 11:04:35 PM »
Would
loc:Response = self.Page
in PageReceived be sufficient?
loc:Response = self.Page
in PageReceived be sufficient?
80
The Rest - Ask For Help / Re: WebClient Clicatell and many SMS's
« on: May 20, 2013, 03:44:52 PM »
This issue is still unresolved.
I need loop through a table and send SMS's to all or some of the persons in that table.
In its simplest form:
set(locums)
loop until Access:locums.Next()
LOC:PostURL = 'http://api.clickatell.com/http/sendmsg?user='&clip(loc:ClickatellUserName)&'&password='& clip(loc:ClickatellPassword)&'&api_id='&clip(loc:ClickatellAPIID) &'&to='&clip(LCM:CellNo) &'&text='&clip(loc:Message)
ThisClient.Post(clip(LOC:PostURL),'')
Apparently there must be some kind of "pause" or ErrorTrapping here.
Are there any sample apps or code to help me here?
end
I need loop through a table and send SMS's to all or some of the persons in that table.
In its simplest form:
set(locums)
loop until Access:locums.Next()
LOC:PostURL = 'http://api.clickatell.com/http/sendmsg?user='&clip(loc:ClickatellUserName)&'&password='& clip(loc:ClickatellPassword)&'&api_id='&clip(loc:ClickatellAPIID) &'&to='&clip(LCM:CellNo) &'&text='&clip(loc:Message)
ThisClient.Post(clip(LOC:PostURL),'')
Apparently there must be some kind of "pause" or ErrorTrapping here.
Are there any sample apps or code to help me here?
end
81
The Rest - Ask For Help / WebClient Clicatell and many SMS's
« on: May 17, 2013, 11:21:24 PM »
This works:
set(locums)
loop until Access:Locums.Next()
loc:MobileNo = '27'& sub(clip(LCM:Cell),2 , len(clip(LCM:Cell)))
IF LEN(clip(loc:MobileNo)) = 11
loc:SendToBatch = clip(loc:SendToBatch)&','& clip(loc:MobileNo
END
loc:SendToBatch = sub(loc:SendToBatch,1,len(clip(loc:SendToBatch))-1)
This does not:
set(Locums)
!I# = 0
!!loop through file and concatenate numbers!
!loop until Access:Locums.Next()
! I#+=1
! !debuginfo('in the loop '&I# )
! loc:MobileNo = '27'& sub(clip(LCM:Cell),2 , len(clip(LCM:Cell)))
! debuginfo(loc:MobileNo)
! ds_Sleep(100) ! even this did not help
! IF LEN(clip(loc:MobileNo)) = 11 !and LOC:MobileNo = '27720541936'!this line does not work
!IF LEN(clip(loc:MobileNo)) = 11 and LOC:MobileNo = '27720541936' !this works - if I only send one number at a time
! do sendmessage
! end
!end
SendMessage ROUTINE
!LOC:PostURL = 'http://api.clickatell.com/http/sendmsg?user='&clip(loc:ClickatellUserName)&'&password='& clip(loc:ClickatellPassword)&'&api_id='&clip(loc:ClickatellAPIID) &'&to='&clip(loc:MobileNo) &'&text='&clip(loc:Message) !this does not work
LOC:PostURL = 'http://api.clickatell.com/http/sendmsg?user='&clip(loc:ClickatellUserName)&'&password='& clip(loc:ClickatellPassword)&'&api_id='&clip(loc:ClickatellAPIID) &'&to='&clip(loc:SendToBatch) &'&text='&clip(loc:Message) ! this works - concatenated all the numbers - but there is a limit to thi
ThisClient.Post(clip(LOC:PostURL),'') ! cookies, and fields automatically used.
DEBUGINFO(loc:MobileNo &' WAS SENT')
!do logSMSMessage
display()
! END
set(locums)
loop until Access:Locums.Next()
loc:MobileNo = '27'& sub(clip(LCM:Cell),2 , len(clip(LCM:Cell)))
IF LEN(clip(loc:MobileNo)) = 11
loc:SendToBatch = clip(loc:SendToBatch)&','& clip(loc:MobileNo
END
loc:SendToBatch = sub(loc:SendToBatch,1,len(clip(loc:SendToBatch))-1)
This does not:
set(Locums)
!I# = 0
!!loop through file and concatenate numbers!
!loop until Access:Locums.Next()
! I#+=1
! !debuginfo('in the loop '&I# )
! loc:MobileNo = '27'& sub(clip(LCM:Cell),2 , len(clip(LCM:Cell)))
! debuginfo(loc:MobileNo)
! ds_Sleep(100) ! even this did not help
! IF LEN(clip(loc:MobileNo)) = 11 !and LOC:MobileNo = '27720541936'!this line does not work
!IF LEN(clip(loc:MobileNo)) = 11 and LOC:MobileNo = '27720541936' !this works - if I only send one number at a time
! do sendmessage
! end
!end
SendMessage ROUTINE
!LOC:PostURL = 'http://api.clickatell.com/http/sendmsg?user='&clip(loc:ClickatellUserName)&'&password='& clip(loc:ClickatellPassword)&'&api_id='&clip(loc:ClickatellAPIID) &'&to='&clip(loc:MobileNo) &'&text='&clip(loc:Message) !this does not work
LOC:PostURL = 'http://api.clickatell.com/http/sendmsg?user='&clip(loc:ClickatellUserName)&'&password='& clip(loc:ClickatellPassword)&'&api_id='&clip(loc:ClickatellAPIID) &'&to='&clip(loc:SendToBatch) &'&text='&clip(loc:Message) ! this works - concatenated all the numbers - but there is a limit to thi
ThisClient.Post(clip(LOC:PostURL),'') ! cookies, and fields automatically used.
DEBUGINFO(loc:MobileNo &' WAS SENT')
!do logSMSMessage
display()
! END
82
The Rest - Ask For Help / WebClient and Clickatell
« on: May 17, 2013, 01:50:58 PM »
Using WebClient POST
http://api.clickatell.com/http/getbalance?api_id=xxxx&user=xxxx&password=xxx
will give you this kind of reply:
Credit: 370.000
How do I get this into say a local variable in NTWS app?
http://api.clickatell.com/http/getbalance?api_id=xxxx&user=xxxx&password=xxx
will give you this kind of reply:
Credit: 370.000
How do I get this into say a local variable in NTWS app?
83
Web Server - Ask For Help / HTML editor
« on: May 13, 2013, 10:51:46 AM »
Suggestions: cheap preferably free HTML editor to create HTML pages to use in NT WS.
Dreamweaver - to expensive and complex? And now only available in the Cloud?
NetObjects Fusion - creates complex code - expensive?
I believe Microsoft Expression Web 4 - is now free! Do not know it at all!
Dreamweaver - to expensive and complex? And now only available in the Cloud?
NetObjects Fusion - creates complex code - expensive?
I believe Microsoft Expression Web 4 - is now free! Do not know it at all!
84
Web Server - Ask For Help / Re: Statistics of visits - to convince advertisers to sponsor pages
« on: May 09, 2013, 10:26:28 PM »
I added my Google Anayltics script cunningly called
googleanalytics.js (no quotes? and do I need to add the .js?)
to WebServer and IndexPage.
Is that it?
I cannot see where I can add it to Browses and Forms.
googleanalytics.js (no quotes? and do I need to add the .js?)
to WebServer and IndexPage.
Is that it?
I cannot see where I can add it to Browses and Forms.
85
Web Server - Share Knowledge / How to Create a Toggle Switch in CSS3
« on: May 09, 2013, 08:48:47 PM »86
Web Server - Ask For Help / Re: CloudServers - Afrihost - looking good?
« on: May 09, 2013, 12:37:53 PM »Hi
You can also visit this site http://www.mweb.co.za/productspricing/2/Business/Hosting/Virtual_Hosting.aspx
I use a virtual machine now for 18 months from them hosting and running 5 nettalk web applications on the server without any problems. You can try one of my sites http://www.ilook4.co.za with the database and search facilities in nettalk.
Price and service very good.
tanks
Johan
Can one install PostGreSQL, TeamViewer, FileZilla, etc there and use RDP without any problems?
87
Web Server - Ask For Help / Re: CloudServers - Afrihost - looking good?
« on: May 09, 2013, 12:14:10 PM »
Good Day Johan
I trust you are well:)
We do provide Cloud Hosted machines running on Windows. You will be able to RDP to your machine.
Please look at our products below:
https://clientzone.afrihost.com/get-cloud/32
Select the OS you require and install your web-services and applications as you would on your local machine.
Hope you find the above well:)
Regards
Ezekiel
Ezekiel TumaholeAfrihost.com
Pure Internet Joy!
Please visit your Afrihost Client Zone, https://clientzone.afrihost.com to activate your account, update your details, make changes to your account and packages and much much more.
I trust you are well:)
We do provide Cloud Hosted machines running on Windows. You will be able to RDP to your machine.
Please look at our products below:
https://clientzone.afrihost.com/get-cloud/32
Select the OS you require and install your web-services and applications as you would on your local machine.
Hope you find the above well:)
Regards
Ezekiel
Ezekiel TumaholeAfrihost.com
Pure Internet Joy!
Please visit your Afrihost Client Zone, https://clientzone.afrihost.com to activate your account, update your details, make changes to your account and packages and much much more.
88
Web Server - Ask For Help / Re: CloudServers - Afrihost - looking good?
« on: May 08, 2013, 10:31:08 PM »
Hi Johan,
I trust all is well :-)
We can most certainly provide you with a virtual instance of which we will also be able to provide your own RDP session for you.
Do let me know if you require a formal quote?
Please do not hesitate to contact us if we may be of further assistance.
Warm Regards
Bruce
Account Manager
Afrihost.com
Pure Internet Joy!
Please visit your Afrihost Client Zone, https://clientzone.afrihost.com to activate your account, update your details, make changes to your account and packages and much much more.
I trust all is well :-)
We can most certainly provide you with a virtual instance of which we will also be able to provide your own RDP session for you.
Do let me know if you require a formal quote?
Please do not hesitate to contact us if we may be of further assistance.
Warm Regards
Bruce
Account Manager
Afrihost.com
Pure Internet Joy!
Please visit your Afrihost Client Zone, https://clientzone.afrihost.com to activate your account, update your details, make changes to your account and packages and much much more.
89
Web Server - Ask For Help / CloudServers - Afrihost - looking good?
« on: May 08, 2013, 09:04:21 PM »
Hi
I have just started using RackSpaceCloud Servers and then I came across this
http://www.afrihost.com/site/product/cloud_hosting?src=nav
Prices seem very reasonable - anybody use these people?
Any other recommendations?
There is also
ClarionWebHosting
http://clarionwebhosting.com/
I have just started using RackSpaceCloud Servers and then I came across this
http://www.afrihost.com/site/product/cloud_hosting?src=nav
Prices seem very reasonable - anybody use these people?
Any other recommendations?
There is also
ClarionWebHosting
http://clarionwebhosting.com/
90
Web Server - Ask For Help / Statistics of visits - to convince advertisers to sponsor pages
« on: May 08, 2013, 11:57:19 AM »
Hi
How accurately and convincingly can page visits be measured and how complete will the statistics/information be?
To sell it to paying customers?
thx
How accurately and convincingly can page visits be measured and how complete will the statistics/information be?
To sell it to paying customers?
thx