Search found 10 matches

by Brian Click
Wed Oct 01, 2008 1:29 pm
Forum: NetBurner Software
Topic: Using Flash File Sytem With Other QSPI Hardware
Replies: 6
Views: 6472

Re: Using Flash File Sytem With Other QSPI Hardware

Yup I asked NB about this some time ago myself, and received a very comprehensive reply; here it is: > do you have any example code & connection info for > connecting an SD card to the QSPI interface on the SB-72? I may have > an application for this and don't have the time right now to dig into...
by Brian Click
Tue Sep 30, 2008 10:44 am
Forum: NetBurner Software
Topic: JFreeChart Usage?
Replies: 2
Views: 3514

Re: JFreeChart Usage?

Mark Have you looked at Fusion Charts Free? It's a Flash-based approach that marries up with JS/Ajax and promises rich graphical charts etc. - the typical footprint is much leaner than 2MB (more like ~20k for a given chart's rendering needs). Demo pages are available so you can have a look at some o...
by Brian Click
Mon Sep 29, 2008 1:36 pm
Forum: NetBurner Software
Topic: MOD5282 DHCP ...
Replies: 15
Views: 10951

Re: MOD5282 DHCP ...

You might check to see if the router expects a FQDN (fully qualified domain name) as well as the DNS name (pDhcpOfferName). Perhaps the router code has a "feature" that permits a node to acquire an address ONCE on DHCP Discover without a FQDN but subsequent DHCP messages are denied / ignor...
by Brian Click
Mon Sep 29, 2008 1:31 pm
Forum: NetBurner Software
Topic: Adding FQDN support
Replies: 0
Views: 3472

Adding FQDN support

Out of the box, the NetBurner's DHCP functions do not accomodate/support FQDNs, and I've experienced DNS difficulties (with Active Directory and DDNS) that were suspected (by me) to be due to this omission. WireShark was indispensable in sniffing this out BTW! i.e. a DNS name of "MyNetBurner&qu...
by Brian Click
Tue Sep 09, 2008 8:05 am
Forum: NetBurner Software
Topic: ExtractPostData in Rel21_rc4a
Replies: 0
Views: 3510

ExtractPostData in Rel21_rc4a

Heads up - when using image buttons in HTML (a button with type="submit" and img tag both enclosed within a table data tag) the ExtractPostData function fails to find the POSTed string. V 2.0 and previous worked just fine... A cursory glance at the NB source code shows there were some chan...
by Brian Click
Thu Sep 04, 2008 12:55 pm
Forum: NetBurner Software
Topic: Why cant NB accept HTML files
Replies: 13
Views: 10052

Re: Why cant NB accept HTML files

I found it - the default page is available as an option / parameter to comphtml.exe. Discovered via "RTFM" methods. ;-) It is in here along with lots of other useful bits --> NetBurnerTools.PDF The command line (in Eclipse, Project...Properties...C/C++ Build...Tool Settings...NetBurner com...
by Brian Click
Thu Sep 04, 2008 9:53 am
Forum: NetBurner Software
Topic: Why cant NB accept HTML files
Replies: 13
Views: 10052

Re: Why cant NB accept HTML files

You're right, let's get back to your question. There's some interesting stuff behind it I am using the Eclipse IDE and the NB does accept .html files, .htm files, and a combination/mix of the two. I just tested it; I renamed my index.htm to index.html, recompiled, and viola, now my starting page (no...
by Brian Click
Wed Sep 03, 2008 12:23 pm
Forum: NetBurner Software
Topic: Daylight savings time and the system clock
Replies: 2
Views: 3749

Re: Daylight savings time and the system clock

This is an old thread but... You could call a JS function, to get the user's PC timezone, through the browser, into form elements (or other DOM objects just the same): function getpctime() { var t = new Date(); document.my_form.GMT_OFFSET.value = (t.getTimezoneOffset()/60)*-1; //timezone according t...
by Brian Click
Wed Sep 03, 2008 7:54 am
Forum: NetBurner Software
Topic: Why cant NB accept HTML files
Replies: 13
Views: 10052

Re: Why cant NB accept HTML files

These should all be able to accept .htm files and I'm a bit surprised the .html extension is the default (unless you're working on a Mac or course) since it's 4 chars and Windows typically uses 3 chars (from the old 8+3 naming days). I Googled and found that the opposite issue was somebody's problem...
by Brian Click
Tue Sep 02, 2008 2:07 pm
Forum: NetBurner Software
Topic: Why cant NB accept HTML files
Replies: 13
Views: 10052

Re: Why cant NB accept HTML files

Looking at this from the other direction:

What HTML development tool are you using...it might itself support .HTM files. Check the file save options.

Then you just create / publish them directly as .htm files and - well, basically - exactly what Ran said..