Search results

  1. Marian EDU

    Copy Database progress to sql server

    you need to let us know more about the specific need you have, is that an one-time data migration or the progress database will continue to be used and you might need to sync the two from time to time (real-time maybe), what version of progress db do you have and what products were installed...
  2. Marian EDU

    set-cookie problem

    As Rares said, the reason is the output-content-type was already set which means the HTTP header section ended and now everything you send to the web-stream is going to made it into the page. Among things you can check you can try to find out if: - output-content-type might have been called in...
  3. Marian EDU

    VB Rate Function - 4gl Equivalent

    There is no built-in support for 'financial' functions in ABL (strangely enough for a business language one might say)... this doesn't mean that those can't be implemented as an add-on package :)
  4. Marian EDU

    TomCat issue and new help regarding Error - 12296

    are you cleaning-up input-output, output temp-tables (even when table-handle is used)? you can check out if there are any 'orphan' temp-tables you don't expect...
  5. Marian EDU

    ABL.JDBC v.1.2.0

    A new version of ABL JDBC driver for OpenEdge business logic was released. added support for SQL syntax added support for update operations (CREATE, UPDATE, DELETE); for both ABL and SQL syntax improved handling of error/warning http://www.ganimede.ro/cms/products/abl-jdbc/
  6. Marian EDU

    ABL.JDBC v.1.2.0

    A new version of ABL JDBC driver for OpenEdge business logic was released. added support for SQL syntax added support for update operations (CREATE, UPDATE, DELETE); for both ABL and SQL syntax improved handling of error/warning http://www.ganimede.ro/cms/products/abl-jdbc/
  7. Marian EDU

    img src in webspeed

    well, i guess with a a little bit of configuration effort one might make it work for webspeed as well... something like that could work for apache (might) AddType application/x-httpd-webspeed .w Action application/x-httpd-webspeed "/cgi-bin/wspd_cgi.sh" but the point was, not every...
  8. Marian EDU

    Simple Ajax Issue

    Yeah, there are some :) As I've commented before if you use embedded speed-script you have to specify the content-type otherwise the web server will throw you that error page, use output-content-type just right after you've set all the headers (you can't set any more headers once you used...
  9. Marian EDU

    img src in webspeed

    The short answer will be... listen to your senior :) The long could be in web applications we have dynamic and static content, static content is best served by the web server itself and for that need to be made available under it's DOCUMENT_ROOT somewhere. You simply have to define the folder...
  10. Marian EDU

    generate xml

    Not sure I got that right 'inferring' from XML, but you might look at 'nested' property of the data relation... However if you have something like parent->child the xml will look like: <parent> <parent fld1 /> <parent fld2 /> ... <parent fldN /> <child> <child fld1 />...
  11. Marian EDU

    Get URL

    you can use get-cgi function to get values of CGI variables... http://www.perlfect.com/articles/cgi_env.shtml most of them you'll find already defined in web/methods/cgidefs.i
  12. Marian EDU

    Valid violation of encapsulation?

    Stefan, I wouldn't consider this as a violation of encapsulation... as we can't pass objects between appserver and client you can look at it as a form of object serialization :) Probably the only case where temp-table/dataset encapsulation is questionable is on the client-side where the...
  13. Marian EDU

    === SQL Exception 1 === SQLState=HY000 ErrorCode=-210015 [JDBC Progress Driver]:Fail

    Re: === SQL Exception 1 === SQLState=HY000 ErrorCode=-210015 [JDBC Progress Driver]:F you need to change the transaction isolation-level, someone is holding some records from that table locked in a transaction...
  14. Marian EDU

    Simple Ajax Issue

    it might be the 'old' content-type lack issue... as the .w seems to use embedded speedscript you might try to add the content type before sending any output and see if this works. output-content-type('text/html'). {&OUT} "<b> ajax worked. </b>" .
  15. Marian EDU

    WRITE-XML() From Datasets ...

    if you have the data relation defined between Shipment and ShipmentItem and it's using nested then you should be just fine... ... data-relation for Shipment, ShipmentItem relation-fields (shipKey, shipKey) nested ...
  16. Marian EDU

    shared variable - bad ?

    just to comment a bit on static objects since all this can be misleading imho... properties equals state and apart 'constants' (read-only static properties) there are very few (if any) cases where a static object have any state information. due to the single-threaded nature of 4GL we tend to...
  17. Marian EDU

    how to use URL-encode in ABL

    if that's for building a query sting of a dynamic query then you should look at `quoter` function, url-encode is mainly to escape restricted characters from URL address
  18. Marian EDU

    Table / View / Synonym not found

    Well, as we are talking about windows here things are much easier that that initialization string :)
  19. Marian EDU

    shared variable - bad ?

    dependency yes, everything a object use outside of it's scope make it dependent of the other object it use... if it's a 'core' object you can use classes, if something that can be plug-in define an interface, in any case you keep the logic and state encapsulate where it belongs (the 'owner'...
  20. Marian EDU

    shared variable - bad ?

    it makes more sense to keep them 'encapsulated' in a 'static' object (persistent procedure or static class)... if you don't use OO then you'll need 'getter' procedures/functions, like in getCurrentUser() - functions are more appealing but those have to be defined using in-super.
Back
Top