vtwsbrowser - vtiger Webservice Browser - 1.0 available
January 7th, 2010 by Prasad
Webservice API introduced in vtiger CRM 5.1.0 are being used to achieve integration or build extended applications today.
We are happy to see the increasing use of vtwsclib library as well
Inspecting the result of Webservice API query was the time-killer many times, this triggered us to quickly build the tool: vtwsbrowser
It helps you to execute the query and watch the result from browser. Refer documentation for more details.
Project URL: http://forge.vtiger.com/projects/vtwsbrowser/
Download URL: vtwsbrowser-1.0
Let me know if anyone is interested in extending it.




hola, quiero aportar con algo que hize recientemente.
Se trata de Mobile Module, particularmente los pasos para traducirlo al idioma deseado… pero ahun no se ni como, ni donde colocar la info dentro de esta web… puede usted ayudarme…
puede usted contactarme a estas direcciones:
o_nukers_o@hotmail.com
josetelmorojas@gmail.com
jose@adeatel.net
how to translate mobile module.
desea ayudar con los pasos para relizar la traduccion ya que he buscado esa info anteriormente sin encontrar resultados, yo lo hize de una manera facil y rapida…
Como y donde puedo colocar la info.. gracias
Thanks Prasad. This tool will greatly improve my query-accuracy, and development!
Kind regards,
Kim(bo)
Ps: I pm’ed you at the vTiger forum for more help, but nevermind
@Kim(bo)
Our team was following up the thread on forums
http://forums.vtiger.com/viewtopic.php?t=29598
You have clarified the issue of Webservice query failure was due to restrictions applied by mod_security (Apache Module)
Hope you are referring to the same.
Regards,
Prasad
vtiger Team
@T3lm0x,
Please share your contribution or feedback on Mobile module at the following forum post:
http://forums.vtiger.com/viewtopic.php?t=26104
Regards,
vtiger Team
Hello Prasad,
I’ve just created a fresh vtiger CRM 5.1.0 and vtwsbrowser on XAMPP. With vtiger CRM, the installation is successfully. With vtwsbrowser, I can log in, but when i do any query, it returns the following error:
ERROR: Permission to perform the operation is denied for query
Have you ever encountered this error before.
Thank you.
@Viet,
Please test it against http://en.vtiger.com, to check if it issue with vtiger CRM 5.1.0 or missing PHP configuration.
Regards.
Prasad
Hello Prasad,
Yes, it works fine with http://en.vitger.com. Thank you.
BTW, with that site, the query is executed successfully with queries such as:
select * from Leads;
select * from Contacts;
But with this query:
select * from vtiger_users;
It returns error:
ERROR: Permission to perform the operation is denied for name
And here is my question: Why can’t I use table vtiger_users and what’s table Leads and Contacts, I did not see it in CRM database?
Thank again.
@Viet Nguyen,
Leads, Contacts are the entity module names. Webservice API will take care of retrieving the data from required tables.
Please refer to the documentation of Webservice reference manual
I have magic_quotes_gpc enabled on my LAMP system. I wasn’t able to perform queries on text fields using the Vtiger Webservice Browser because of the slashes php adds.
The fix is to add the following code to the index.php file right after line 19. (the stripslashes_deep function has been borrowed from wordpress)
function stripslashes_deep($value) {
$value = is_array($value) ? array_map(’stripslashes_deep’, $value) : stripslashes($value);
return $value;
}
if ( get_magic_quotes_gpc() ) {
$_GET = stripslashes_deep($_GET );
$_POST = stripslashes_deep($_POST );
$_REQUEST = stripslashes_deep($_REQUEST);
}
hope it helps,
Giuseppe
Hi everyone, I wonder if you can help me. Let’s see, is it “normal” if I see no errors even if I use wrong params?, no even “error user/pass”, Can´t even log in.