Search found 9 matches

by clemieux
Thu Aug 22, 2013 2:21 pm
Forum: NetBurner Software
Topic: Storing Cookies - failing with iOS browsers
Replies: 8
Views: 5647

Re: Storing Cookies - failing with iOS browsers

Well, it didn't take long to fix the issue once I saw your example! Turns out I was storing nothing more than the 'value' portion of the standard name/value pair representing the cookie. So, rather than something like "MyCookieV1=blahblahblah" it was simply "blahblahblah" - no na...
by clemieux
Wed Aug 21, 2013 1:27 pm
Forum: NetBurner Software
Topic: Storing Cookies - failing with iOS browsers
Replies: 8
Views: 5647

Re: Storing Cookies - failing with iOS browsers

Good stuff! Thanks David - I'll do some digging this evening.

-Chris
by clemieux
Wed Aug 21, 2013 11:42 am
Forum: NetBurner Software
Topic: Storing Cookies - failing with iOS browsers
Replies: 8
Views: 5647

Re: Storing Cookies - failing with iOS browsers

I've noticed that when my users have problems storing cookies on their iPhones it's usually that the phone itself is set to disallow cookies. I don't have one myself so I can't remember where that option is, somewhere in the settings menu I believe. Other than that, here's the general sequence of c...
by clemieux
Wed Aug 21, 2013 11:31 am
Forum: NetBurner Software
Topic: Storing Cookies - failing with iOS browsers
Replies: 8
Views: 5647

Re: Storing Cookies - failing with iOS browsers

Thank you both for the responses. I have definitely confirmed the browsers (Opera, Chrome and Safari) are permitting cookies - so this would certainly lead to an implementation issue. Dan, you're correct that I'm sending a barebones cookie but the 'value' portion of the cookie is strictly the IP add...
by clemieux
Tue Aug 20, 2013 6:13 pm
Forum: NetBurner Software
Topic: Storing Cookies - failing with iOS browsers
Replies: 8
Views: 5647

Storing Cookies - failing with iOS browsers

Hi folks, I have a legacy web application running on a number of PK70's that make use of cookies (for storing basic session information for validation purposes). The method used for storing the cookie to begin with (as declared in http.h): /*Send a header and include a cookie */ void SendHTMLHeaderW...
by clemieux
Sun Sep 28, 2008 8:20 pm
Forum: NetBurner Hardware
Topic: Trouble with NBPKBM MIO board
Replies: 5
Views: 5162

Re: Trouble with NBPKBM MIO board

Did you try the sample application (C:\Nburn\examples\pk70\MBladeDemo) that comes with the PK70 development kit? Hey Tony - thanks for pointing this out - I feel like a bit of an idiot for not digging this up first. But I did do a search on the text "NBPKBM" on the Wiki section (the one t...
by clemieux
Sun Sep 28, 2008 8:16 pm
Forum: NetBurner Hardware
Topic: Trouble with NBPKBM MIO board
Replies: 5
Views: 5162

Re: Trouble with NBPKBM MIO board

I just managed to get it to work, but not quite sure why I have to jump through this hoop to do so: My first attempt to echo back the value: float myVal = NBPKBM_J1[12]; iprintf("fed back ch0 AI val: %.2f\r\n",myVal); resulted in: fed back ch0 AI val: f My roundabout attempt: float myVal =...
by clemieux
Sun Sep 28, 2008 7:38 pm
Forum: NetBurner Hardware
Topic: Trouble with NBPKBM MIO board
Replies: 5
Views: 5162

Trouble with NBPKBM MIO board

Folks, Just wondering who's using this DAQ board. I'm running into an issue that may or may not be an issue, but has me stumped nonetheless. For now, I'm just trying to read a simple voltage from an AI channel. So here are my steps (not many to list): (1) Initialize the DAQ for 0-5V input on AI Pin ...
by clemieux
Sun Jun 29, 2008 7:38 pm
Forum: NetBurner Software
Topic: FTP - UserName/Password
Replies: 1
Views: 3566

FTP - UserName/Password

I've seen a handful of examples where there are comments stating "validate your username and password here", which is all fine - but how do I invoke a username/password entry dialog box whenever somebody attempts to access my ftp server? Thanks much! p.s. - maybe I should add that this dea...