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.

11 Responses to “vtwsbrowser - vtiger Webservice Browser - 1.0 available”

  1. on 07 Jan 2010 at 6:49 am T3lm0x

    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

  2. on 07 Jan 2010 at 6:54 am T3lm0x

    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

  3. on 07 Jan 2010 at 7:35 am Kim(bo)

    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 ;-)

  4. on 07 Jan 2010 at 8:13 am Prasad

    @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

  5. on 07 Jan 2010 at 8:34 am Prasad

    @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

  6. on 07 Jan 2010 at 6:50 pm Viet Nguyen

    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.

  7. on 07 Jan 2010 at 9:38 pm Prasad

    @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

  8. on 10 Jan 2010 at 6:26 pm Viet Nguyen

    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.

  9. on 10 Jan 2010 at 9:19 pm Prasad

    @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

  10. on 18 Jan 2010 at 3:41 am Giuseppe Rota

    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

  11. on 18 Feb 2010 at 11:36 am dheimoz

    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.

Trackback URI | Comments RSS

Leave a Reply

Enter your e-mail address to receive notifications when there are new posts: