Search results

  1. F

    Webspeed displayed wrong values

    It can also be the Web Server or the browser who are caching your web page and sending back the same result. ie your page is www.yourdomain.com/cgi-bin/cgiip.exe/WService=wsbroker/yourprog.p You call the page the first time , Your web server cache the page. If you ask the same page after...
  2. F

    What is the difference between Stateless and state-free

    Personally i noticed the cleaning up difference from using both states. It not about DYNAMIC objects like query but more like TEMP-TABLE and LOCKS. If you create TEMP-TABLES in stateless and don't empty them before the end of the program your temp files while grow to huge sizes pretty...
  3. F

    Please help me to solve WebSpeed Config Error

    Did you do all these steps? D: P125146 Title: "How to configure IIS 7 on Vista for WebSpeed ?" Created: 07/27/2007 Last Modified: 10/07/2009 Status: Verified Goals: How to configure IIS 7 on Vista for WebSpeed ? IIS 7 configuration for...
  4. F

    Progress with expiration date ?

    Sometime when you make an error in the control number you will get a error that the licence has expired instead of saying that it invalide.
  5. F

    Progress vs Microsoft Development Environment.

    Let see , Access Agent , Machine based , Client Based .. why does it have to be so complicated ... other software treat a user has a user and also progress has no way to enforce this leaving us to hang ourselves by choosing the bad product or license since all the sales rep don't even...
  6. F

    Progress vs Microsoft Development Environment.

    I am surprised that no one talked about Progress software horrendous and mysterious licensing model. :lol: I want to punch the progress sales rep every time i see him. It funny how i can easily find cost sheets for Oracle or MS SQL but it nearly impossible to find pricing for progress except...
  7. F

    Worst Language Ever?

    Progress is a nice language but the licensing is horrible and very costly. It a pain to explain to a customer that going from 49 to 50+ users will cost him more then 20k. The arguments between my boss and the progress sales rep can be fun to watch tho especially when the vendor tries to...
  8. F

    automated compiling

    Here you go... It will recursively compile sub directory. PROCEDURE Compile-Dir: DEF INPUT PARAMETER pcDir AS CHAR. DEF VAR cFichier AS CHAR FORMAT 'X(25)'. DEF VAR cFullpath AS CHAR FORMAT 'X(40)'. DEF VAR cType AS CHAR. INPUT FROM OS-DIR(pcDir). REPEAT: IMPORT cFichier cFullPath cType...
  9. F

    RCV-AGT error in webspeed

    It usually a simple error in the execution of your procedure. Look in the <brokername>.server.log for the error message from the procedure you were running.
  10. F

    Regular Expressions

    We now have Regex in 10.2 using the .Net part. Here a example: USING System.Text.RegularExpressions.*. DEF VAR mcol AS CLASS System.Text.RegularExpressions.Match. mcol = Regex:Match("Heelloo","He(e)?l"). MESSAGE mcol:Value VIEW-AS ALERT-BOX. Guess this kills any...
  11. F

    Using .Net DLL in 10.2A

    Adding my DLL to the Global Assembly cache did fix this error. There must be something missing to use a local assembly . I saw smoe message in a another DLL about a Assembly directory for the project but i cannot find any mention of it in the doc (so far).
  12. F

    Using .Net DLL in 10.2A

    I am getting a weird error and wonder if anyone experienced this in 10.2A. I have a custom .Net DLL that i created that basically does web requests. I wish to try and use this DLL in 10.2A. I added the DLL to the assembly references for the projets. If i use the object browser in 10.2 , i...
  13. F

    Convert Comma Separated String to Array

    You can use the ENTRY() function. Usage: ENTRY(<Position>, <String> , <Seperator>) separator is optional and will use the comma if not specified. The position starts at 1. so you could do : Table.Field = ENTRY(1, location) OR Table.Field = ENTRY(2, location) OR Table.Field = ENTRY(3...
  14. F

    Regular Expressions

    Sure would love to get a look at it.
  15. F

    Regular Expressions

    I have submitted Enhancement Request #0000003904 asking for Regex Support in ABL. I would love to be able to use Regex directly in ABL. Some info about Regex: http://en.wikipedia.org/wiki/Regular_expression If you have any interest in seeing this feature and have a account there , please...
  16. F

    Widget windows help for a Noob!

    Remove the QUIT statement and your application will stop exiting on that trigger.
  17. F

    manual of development graphics

    I second what Tom said. Version 9 is pretty obsolete. But hey we could use another V9 programmer at our place hehe , alot of our main application is still using ADM1.1 lol (we have version 10.1C tho) . But here is the link to the books that you will most interesting for GUI V9 ...
  18. F

    WebSpeed Workshop in Development Mode

    It not a hard to find option. When configuring your broker you either set it to work in Production or Development mode. It in the basic options of the broker. It crazy not to set it to Production, if you don't know about the option , you should not be deploying a Webspeed server.
  19. F

    How to configure webspeed ?

    What Web Server are you using ? Wich OS ? Is the WS Messenger/Web Server on the same machine has the App Server? Have you installed the app Server already without specifing your web Server during the setup?
  20. F

    Appserver

    You read this book: http://communities.progress.com/pcom/servlet/JiveServlet/download/10253-4-9749/asadm.pdf
Back
Top