4
votes
1answer
799 views

Bugzilla - webservice via JSON-RPC

Here's what i have tried soo far.. <html> <head> <title>bugstats.com</title> </head> <script type="text/javascript" ...
0
votes
0answers
96 views

Need Help on integrating Bugzilla with SalesForce

We could integrate SalesForce Case object with the online hosted Bugzilla (by using RESTful WebServices of Bugzilla).We wanted to integrate with the Bugzilla instance installed in offline. As per ...
1
vote
1answer
91 views

BugZilla Installation error

Software error: Can't locate Math/Random/ISAAC.pm in @INC (@INC contains: . lib /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5 ...
0
votes
1answer
41 views

Retrieve all keywords present in a Bugzilla instance through webservice

I have to get all the keywords present in bugzilla installation via webservice. I have installation 3.6 Can I know what is the method to get the same and the sample xml to retrieve the same. I am ...
0
votes
2answers
588 views

Bugzilla webservices using php soapclient - Error - wrong version

hi i need to create a bug in bugzilla using bugzilla webservices and php. I don't want to use any other libraries (for eg. zend, nusoap etc) as my boss wants it to be using strictly php soapclient. ...
1
vote
1answer
119 views

How to post a bug with Unicode text via Bugzilla REST API

I've got a problem when posting a bug with Unicode text. My code in .NET looks like. HttpWebRequest request = BugzillaService.MakeRequest(url, "POST"); request.ContentType = ...
0
votes
1answer
306 views

Using bugzilla webservices in PHP

I want to use the bugzilla webservice APIs in PHP. The issue seems to be the XML-RPC client. I have gone through similar questions, but dont want to install the whole Zend framework only for the ...
1
vote
1answer
399 views

bugzilla webservice does bug.get require authentication?

I am using jsonrpc to access bugzilla webservice's bug.get feature, but it is returning: Error: 403 Forbidden Content-Type: text/xml No data. I make an ajax call to my server, which then ...
0
votes
3answers
370 views

What's a good way to access the bugzilla webservice from a different domain?

I have two sites products.company.com and bugzilla.internal.com. I would like to access bug information from the products.company.com page. I set up a jQuery ajax function to make a jsonrpc call to ...
2
votes
3answers
2k views

How can I update Bugzilla bugs from bash and php scripts?

Our development process is highly automated via a raft of bash and php scripts (including subversion hook scripts.) These scripts do a number of things to integrate with our Bugzilla 3.0 ...