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 - Larry Sand

Pages: [1] 2 3 ... 7
1
Web Server - Ask For Help / Re: UTC
« on: August 24, 2015, 02:30:28 PM »
Wow, awesome share!

2
Stu,

Good to see you found the magic combination of certificates.  It's always the problem in my experience. 

Larry

3
Web Server - Ask For Help / Re: web26 and freeimage
« on: July 30, 2015, 08:19:57 AM »
That could be a hit and miss sort of proposition <G>.   I'm conversing with Walter atm and will post and abstract when done.

4
Sorry Stu, I don't have any other suggestions.  Please keep us updated if you find anything out....

Larry

5
MS can be so awesome in that respect.... L

7
Hi Stu,

Yes Bruce is correct.  By chain I mean that you have a certificate and intermediate certificates, but that relies on the browser having access to the root certificate.  Frequently the Android browsers do not have the root certificate cached so you have to serve it, and then the device is happy with the certificate authority chain.

Does that help?

Larry Sand

8
Hi Stu,

We've had this problem at hundreds of sites and it's always the certificate chain.  Sometimes for Android you need to add the root CA to the chain then it'll be happy.

Larry Sand

9
Web Server - Ask For Help / Re: Credit Card Processing (Paypal?)
« on: April 16, 2015, 02:38:06 PM »
Bill,

I'm sorry I cannot help you for a fee, however I can answer your questions.  So if you make a "small" program that illustrates where you have gone wrong I can help you debug that and you can feel free to share that with others.

Larry Sand

10
Web Server - Ask For Help / Re: Self Service and MSSQL
« on: March 27, 2015, 01:27:42 PM »
We use MS SQL with NTWS and Self Service at thousands of sites.  If you want to capture debugview output from the service you must run debugview as admin and check "Capture|Capture Global Win32" to see things from your service.   Modern windows has service hardening and runs the service in a different ring.  The local service account is somewhat restricted, but you can set the service to run under a user.  Then you can adjust the rights granted to the user running the service.  That's what we do on all of our installs, the SB installer creates a web server user and grants the rights the service needs and then we assign that user to service.

Hope that helps,

Larry Sand

11
Web Server - Ask For Help / Re: Credit Card Processing (Paypal?)
« on: March 27, 2015, 01:20:35 PM »
Bill,

My session just timed out and it ate my long reply (awesome).  So here is the short version:

self.post() sends an HTML POST, self.fetch() send an HTML GET.  To use the classic api for PayPal you'll use the .post() and send a soap packet (XML).

The thing you have to wrap your head around is there are three entities and their connections in a tokenized CC transaction.  The user sitting at their browser, your NTWS, and PayPal.

You send your user the page and they click the spend more money now button.  Your NTWS formulates a packet and POSTS it to PayPal (it's async so you need to wait for the response). and then you can finalize the transaction and send the user a response page.   HOWEVER, the connection can drop etc.... and the IPN Instant Payment Notification helps but you still must have a system to put transactions of unknown disposition in a queue for processing.  There's an API you call with the ref number of the transaction to find out what happened to it.

Does that help?

Larry Sand

12
Web Server - Ask For Help / Re: Credit Card Processing (Paypal?)
« on: March 26, 2015, 03:25:30 PM »
Hmm, that doesn't sound quite right.  We're not selling anything.  What do you need help with/or are trying to do.  Do you need the basic workflow?  or?

Larry

13
Web Server - Ask For Help / Re: Credit Card Processing (Paypal?)
« on: March 25, 2015, 03:00:07 PM »
We developed a class that uses the classic PayPal API with IPN, I wonder what this sort of thing is worth using the REST API too?  It really is just setting up the xml and passing it to paypal (there are a lot of options though)... It's just one of the web payment processing options we've integrated.

14
Web Server - Ask For Help / Re: NTWebServer with SSL
« on: September 30, 2014, 02:24:38 PM »
>>In this moment i´m using openSSL certified that is com CS samples.

I'm sorry I don't have any clue what that means.if you don't have a certificate from a public Certificate Authority you can assume that your SSL certificate will fail.  If your saying youi made a certificate with openSSL and it doesn't work outside of testing you shouldn't be too surprised. 

15
Web Server - Ask For Help / Re: NTWebServer with SSL
« on: September 27, 2014, 10:00:06 AM »
It's usually caused by your certificate needing it's intermediate certificate merged with it. Check what you got from the certificate authority and see if there is something like ...bundle...crt or ... intermediate...crt and add it to your main certificate with a text editor.

Pages: [1] 2 3 ... 7