Recent content by robsp

  1. R

    How to activate Eclipse Intellisense (type-ahead)?

    There are two places for the database connection, I have seen: - "Window / Preferences / OpenEdge / DB Navigator / Connection Profiles" - "Project / Properties / Connections" In "Window / Preferences / OpenEdge / Editor / Assistance" it's important to have "Show help on schema hover" (as i...
  2. R

    Storing SessionID

    For having an internal sessionid, you have to put it in a session-cookie, or post it with every request. As Casper already posted. To get tools for handling this, look at freeframework. Robert
  3. R

    How to activate Eclipse Intellisense (type-ahead)?

    But field-suggestion is working! And I like it. For this you have to have a connection not in tools, but in "Windows / Preferences" of Eclipse.
  4. R

    How to activate Eclipse Intellisense (type-ahead)?

    I haven't seen an automatic intellisense. But with STRG-SPACE you should get a layer with all keywords beginning with the characters you typed in. So it's a manual intellisense. And I like it this way. ;-) Kind regards Robert Prediger
  5. R

    file upload in WS ?

    That's not true. In 10.1A you can have binary uploads direct in WebSpeed.
  6. R

    Getting Variables to Display in Webspeed

    Just put it, encloed in backticks, at the place in the HTML-code. Example: <% ASSIGN iSum = iNum1 + iNum2. %> <td>`iSum`</td> Regards Robert
  7. R

    Open firewall for WebSpeed

    Hi, so DB is running inside, but where is WebSpeed? If WebSpeed is running at the web server, than you have to go through firewall just with the ports you used for the database (inclusive min- an maxport range). Otherwise you have to open the ports used by the messenger. But you...
Top