Search results

  1. F

    Attribute GET-CGI-VALUE for the PSEUDO-WIDGET has an invalid value of . (4058)

    DEF VAR sPost AS LONGCHAR NO-UNDO. sPost = GET-LONG-VALUE("WebValue"). Version 10 only tho.
  2. F

    Need to copy Progress db

    You cannot just copy the database without installing the progress Server Software to run the DB. If your version is 9 or higher , you will need to install the software, it cannot simply be copied. You will also need to "fix" the db if you copy it in a different directory structure then on...
  3. F

    Appserver Stop command - remote code in tight loop

    Have you tried putting PROCESS EVENTS in your repeat? It might fix your problem.
  4. F

    java.lang.UnsatisfiedLinkError: java/security/AccessController.doPrivileged

    You should try upgrading to the 9.1E with latest service pack. When you check the KB on error -20217 you see alot of different entries on bad error reporting from the query. All of these seem to say that those issues are fixed in Version 9.1E02 and that the SqlExplorer will report the real...
  5. F

    Unable to Deploy Webservice

    You can either change those setting within the proxygen before creating your .wsm . OR You can change those settings once the web service is loaded on the wsa but before you enable it in the progress Explorer Tool.
  6. F

    getting attributes from XML

    Your XML file you show here is invalide. A Xml require a Opening and closing tag much like HTML. This is valid: <TAG1> <TAG2> </TAG2> </TAG1> This is invalid: <TAG1> <TAG2> </TAG1> </TAG2> Example from your xml: <FIN nett="99.99"> // FIN is Openned <SURCH...
  7. F

    WebSpeed Agent Error: Agent did not return an HTML page (6383)

    Check your wsbroker1.server.log file in the work directory of your webspeed server. Your application generated an error and it should appear in that file.
  8. F

    Progress 9.1C ODBC from .NET

    You need to grant SELECT permission to the user you are connecting with. Here the KB Entry on it : Granting permissions on tables to regular users: In the SQL-92 database, as well as in other SQL databases, regular users do not have access to database objects until the proper permissions...
  9. F

    Convert 8.3 version db to 9.1d

    conv89 did not convert the database to a multi-volume , it would simply give out an error that you need to convert it . If the 83dbutil directory does not exist , you can always copy the DLC directory from an old install , you don't need to reinstall it to use the tools.
  10. F

    Convert 8.3 version db to 9.1d

    You will have to use the 8.3 Tools in your 9.1D installation. They are in the DLC/bin directory.
  11. F

    request time out and zeroing all ctivities

    If you are on IIS the timeout you are experiencing is not the Webspeed timeout . The timeout is a timeout of the cgi script that calls webspeed wich is usually set to 3min. Depending on your version of IIS you need to set the Value CGITimeout to a higher value.
  12. F

    OE 10.2 release

    It was in a open presentation by a Progress Rep who did a demo of the new 10.2A . It not super secret Beta information. It just that a .Net Form and a Progress window uses 2 different wait-for mechanism wich in turn make using both progress windows and .Net Forms in the same session very...
  13. F

    OE 10.2 release

    Let just hope they fix that messy WAIT-FOR gymnastic before they release it.
  14. F

    Connect Progress to Postgress

    You need the odbc DataServer product. Even then it not sure that it will support postgress SQL since it doesn't even support MySQL.
  15. F

    How to create a project build?

    OpenEgde ABL is a pseudo compiled language. The compile generates r-code files (.r) . It does not generate a .EXE file that you run. You need to have the progress client installed to run the compiled .r files. The .r are then interpreted by the progress client .
  16. F

    How to configure AIA

    The AIA is not meant to connect directly to a Database. AIA = Appserver Internet Adapter. It to connect to a AppServer thru the internet. So you don,t need multiple AIA for multiple Database. You will need multiple Appserver instance each running on a different database. Your URL will...
  17. F

    Webspeed on Vista Home Premium

    Maybe this KB entry may be useful ID: P125146 Title: "How to configure IIS 7 on Vista for WebSpeed ?" Created: 07/27/2007 Last Modified: 12/08/2007 Status: Unverified Goals: How to configure IIS 7 on Vista for WebSpeed ? IIS 7 configuration for...
  18. F

    How to config IIS 6.0 with WebSpeed?

    I think you are missing step 3 and 4.
  19. F

    Generate XML

    Here a simpler way. DEFINE VARIABLE hdoc AS HANDLE NO-UNDO. DEFINE VARIABLE hsax AS HANDLE NO-UNDO. CREATE X-DOCUMENT hdoc. CREATE SAX-WRITER hsax. hsax:FORMATTED = TRUE. hsax:SET-OUTPUT-DESTINATION("FILE","C:\YourFile.xml"). hsax:START-DOCUMENT()...
  20. F

    creating buffer for two tables for dynamic join

    <QUERY HANDLE>:SET-BUFFERS(BUFFER ps_mstr:HANDLE, BUFFER pt_mstr:HANDLE).
Back
Top