Simple API Interface
emptee
http://prjacker.com
Hi Sven,
Any chance of a simple API for GSA? Eg. SendMessage based with calls like...
Load Project (Load a .prj from %APPDATA%\GSA Search Engine Ranker\projects)
Reload Project (Refresh project from .prj file, could be just Unload/Load)
Unload Project (Remove a project)
Start Project
Stop Project
Get Project Info (Active/Stopped/Searching/etc.., Submitted, Verified)
Flush Project (Force write to disk for project files)
Cheers,
Michael
Comments
Load Project (Load a .prj from %APPDATA%\GSA Search Engine Ranker\projects)
You simply put them in the project folder and do a sendmessage(handle,1042,0,0);
Reload Project (Refresh project from .prj file, could be just Unload/Load)
A change is detected automatically and reloaded
Unload Project (Remove a project)
just delete it from folder and do a
sendmessage(handle,1042,0,0);
Start Project
sendmessage(handle,1069,1,0);
Stop Project
sendmessage(handle,1069,0,0);
Restart (stop/start)
sendmessage(handle,1069,2,0);
Get Project Info (Active/Stopped/Searching/etc.., Submitted, Verified)read project files (*.success /*.verify...)
Flush Project (Force write to disk for project files)
done automatically each 5 minutes.
Is there any way to get those message ID's? Or is it only possible through asking you directly?