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

Pages: [1] 2 3
1
E-Mail - Ask For Help / Re: SOLVED: Procedure entry point error
« on: November 20, 2015, 01:44:11 AM »
All round strangeness - searching for the string SIGNMESSAGE it found it inside several dll's. One of the dll's which dd report it compiled ok earlier, still had the old prorotype inside it. Recompiled that dll and now it seems to be wroking.

2
E-Mail - Ask For Help / Re: Procedure entry point error
« on: November 20, 2015, 01:38:14 AM »
ANd in my data dll lib file:

SIGNMESSAGE@F12NETEMAILSEND12STRINGTHEORYsbsbsb

which looks correct as well.

3
E-Mail - Ask For Help / Re: Procedure entry point error
« on: November 20, 2015, 01:36:05 AM »
I have now looked at my data dll and found the following there:

SIGNMESSAGE@F12NETEMAILSEND12STRINGTHEORYsbsbsb @9061

the prototype in netemail.inc is (which looks right?):

SignMessage             Procedure(StringTheory pMessageBody,String pMimeBoundary1, String pMimeBoundary2,String pRootBoundary),Long,Virtual

I cannot find any other reference to SignMessage so I am not sure where the requirement for just sbsb comes from...

4
E-Mail - Ask For Help / SOLVED: Procedure entry point error
« on: November 20, 2015, 01:32:44 AM »
After upgrading Nettalk & Sringtheory and recompiling my mutli-dll app. I get an procedure entry point error when trying to run the app:

SIGNMESSAGE@F12NETEMAILSEND12STRINGTHEORYsbsb

I have checked and it looks like the correct clanet.dll is in my app folder.


5
E-Mail - Ask For Help / Re: Strange inconsistent Nettalk Email behaviour
« on: November 19, 2015, 05:56:07 AM »
My research seems to indicate that something goes wrong with the decoding at the client side. I'm out of my depth here but noticed that the emails sent via Nettalk does include a Content-transfer-encoding header. This I gathered from inspecting a message that was sent using a Nettalk sendmail procedure.

Is this possibly significant?

6
E-Mail - Ask For Help / Strange inconsistent Nettalk Email behaviour
« on: November 19, 2015, 04:07:02 AM »
I'm experiencing an issue where I generate a pdf from a report (using pdfexchange), then I have an email window (basic nettalk sendmail) where the user enters several to: addresses and the pdf file is attached (automatically by my proc). Some of the recipients are receiving mangled pdf's (all nul if opened in notepad++) that the pdf viewers cannot open - others (from the same email), the same attachment arrives fine.

If the user saves the pdf to a drive and then manually attach using his email client, then it never seems to get mangled. If I inspect the produced pdf it is also fine.

Where can the mangling happen?  Does Nettalk send a seperate encoded attachment to each recipient?

7
Thanx bruce

Is there a way to re-plumb my dashboard so this does not happen - with a re-direct or something?

8
After the user has successfully logged in, I send them to a specific page. This is the default page on my WebServer object.

If the user refreshes this page (using F5 or the reload button) he gets a modal browser message box that says that the browser will have to send information that will repeat any action.

There is also menu link to the page. If I hit that first then the refresh does not trigger this message.

Is there a way to avoid this message?

Cheers

Chris

9
Web Server - Ask For Help / Bug in multiple select?
« on: March 20, 2012, 02:40:40 AM »
I have traced the code that is making multiple select drop list not work. The problem is that you cannot prime the value of the the field for the browser.

In the NetWebServerWorker.CreateSelect method there is the following code:

  If p_multiple > 0
    ReturnValue  = '<input type="hidden" name="'&clip(p_Name)&'" value=";|;multiple;|;"></input>'
  End

This always makes the content of value property in this input to be ";|;multiple;|;". There is no way to replace this value before the value is sent to the browser.

This means I can receive multiple values but I cannot prime the select with multiple values, making it worthless as an input option.

To solve this I suggest that the template changes. Instead of just concatenating the return from the CreateSelect  to the packet, store it in a local variable, give me an embed point so I can replace the ;|;multiple;|; part of the result with something meaningful and then after this embed, concatenate the local variable.

Workable? Of course the best solution would be for the Nettalk template and classes to handle this transparently and store the appropriate values and never use ;|;multiple;|; - even if this means I have to work with strings delimited with ;|; - that's what I have StringTheory for.

10
Web Server - Ask For Help / Re: Droplist multiple selection
« on: March 19, 2012, 04:28:40 AM »
OK so I can get the correct value from the multi select and store it.

The next problem is to load the local string with the correct values when the popup form is populated. I cannot work out where this happens.

If I fiddle in firebug the following line in the form is there:
<input type="hidden" value=";|;multiple;|;" name="Loc:DashBoards">

I need to find where this is set in the form and then replace the ;|;multiple;|; value with the current one: ;|;1;|;4;|;6

But where do I do this?


11
Web Server - Ask For Help / Droplist multiple selection
« on: March 15, 2012, 05:14:12 AM »
Has anyone implemented a multiple selection droplist. My reults are this: In the form in the ValidateValue::Loc:Var i get the values in my string variable to be: ;|;1;|;3;|;5 - which is cool it is a (somewhat laboriously) delimited string.

I can split this (using StringTheory off course  :) ) and reformat and save this and that's cool.

The problem is this: When I hit the save button, the value changes to: ;|;multiple;|; and the user's individual choices are now lost. I assume there is some flavour of ValidateAll happening.


12
Web Server - Ask For Help / Re: SendTo with NTWS?
« on: November 30, 2010, 04:04:52 AM »
I am doing a sample browse/form for in-house evaluation in the next week. They want the functionality as it is part of the desktop app. If I can give them a time frame without the actual functionality then it would be OK. Do you have a rough idea of when it can be there?

13
Web Server - Ask For Help / SendTo with NTWS?
« on: November 30, 2010, 02:05:40 AM »
I need to implement something like SendTo. Ideally a button on a browse for each of the formats: csv or pdf. The user then gets a download of the contents of the view (after filters). I do not specifically need the email/print/ftp options.

SendTo relies on a queue and list format to do its magic. We do have a view in the NetWebBrowse but not the browse queue and list format.

I can handcode it but must do it for every Browse - I am hoping for a generic approach, maybe a template?

14
Web Server - Ask For Help / Re: Pop-up form does not display properly
« on: November 30, 2010, 02:00:09 AM »
Thanx for the suggestion Bruce - very usefull to have this as a debugging tool. The problem sorted itself out - I must have changed something but now I do not know what. Firebug will definitely help for the future.

15
Web Server - Ask For Help / Pop-up form does not display properly
« on: November 28, 2010, 11:58:32 PM »
My forms are all pop-up and they all display except for 1. It display the pop-up but the tabs and fields are not displayed.

I can see them being generated and sent to the server (logging SendPacket routine) but the form just displays the action header and close icon but nothing else.

Is there a setting or something that I am missing?

Pages: [1] 2 3