PHP + Webspeed

paulinhop

New Member
Hey guys, i'm new in progress and i have to program an aplication in PHP that can run .p files. I need to execute progress commands, get the results and use it in my php app.

For example, all database is stored in a SQL SERVER. one of the tables in it is the login table witch saves usernames and passwords, all the passwords are stored after executing the ENCODE funcion so i cant compare the password the user types with the password saved in the database. I did the login screen in php but now i have to execute the ENCODE funcion to compare the resultant string.


Does someone know how i could do this and how to config php with webspeed?

thank you.
 
And it would help if anyone could post where i can find any tutorials about how to install and configure webspeed (progress 10.1A) with IIS 6.0 (windows 2003 server).
I everything installed. the only thing i'm sure its working is the sqlserver database, php and the iis server. I dunno how to test if webspeed is working.
 
Try these:

Installation & Configuration Guide (v9) - http://www.progress.com/progress/products/documentation/docs/getstart/icw/icw.pdf
WebSpeed Essentials - http://www.progress.com/progress_software/products/documentation/docs/webspeed/gswsp/gswsp.pdf

As for testing you can (in development mode) use:

http://<host:port>/<script directory>/<messenger>/ping.

or

http://<host[:port]>/<script directory>/<messenger>[/WService=appservicename]?WSMAdmin

where:

host = computer name/ip of web server.
port = port web server is running on (only needed if not 80).
script directory = default is "scripts" is IIS
messenger = name of your messenger, default is "wsbroker1" I believe.
appservicename = is only needed if you have no default app.
 
Back
Top