You can subscribe to this list here.
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(11) |
Dec
(8) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2012 |
Jan
|
Feb
|
Mar
(20) |
Apr
(5) |
May
(10) |
Jun
(20) |
Jul
(16) |
Aug
(10) |
Sep
(2) |
Oct
(2) |
Nov
(7) |
Dec
(2) |
| 2013 |
Jan
(7) |
Feb
|
Mar
(2) |
Apr
|
May
(2) |
Jun
(4) |
Jul
|
Aug
(2) |
Sep
(2) |
Oct
|
Nov
(6) |
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(4) |
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(3) |
| 2015 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
(7) |
| 2016 |
Jan
(2) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(8) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Robert M. <rob...@gm...> - 2015-09-01 07:45:30
|
Hi Tom, On Tue, Sep 1, 2015 at 3:43 AM, Kiss Tamás <li...@fr...> wrote: > Hi All, > > How do I change login form to login automatically to other > SOPE authentication capable web pages. I am not sure I understand the question. Would you like the login page to authenticate users against other systems? Robert |
|
From: Kiss T. <li...@fr...> - 2015-09-01 00:44:09
|
Hi All, How do I change login form to login automatically to other SOPE authentication capable web pages. Thanks, Tom! |
|
From: Robert M. <rob...@gm...> - 2015-02-26 10:14:59
|
Hi Martin, On Wed, Feb 25, 2015 at 7:52 PM, Martin Marsicano < mma...@ge...> wrote: > Hi, > > i'm trying to develop an app in Salesforce that integrates with Mantis. I > found the problem that Salesforce uses classes based in java, so when I try > to generate the clases from wsdl I get a problem because mantisconnect web > services uses rpc/encoded web services which are is not supported by > SalesForce class generator. Is there any way to change something to make > this work or any easy way to connect with mantis api? > Not that I know of, maybe others have solved this problem ... I guess you can always generate the HTTP calls yourself and not use a SOAP library, but that's going to be more work. Robert |
|
From: Martin M. <mma...@ge...> - 2015-02-25 18:15:21
|
Hi, i'm trying to develop an app in Salesforce that integrates with Mantis. I found the problem that Salesforce uses classes based in java, so when I try to generate the clases from wsdl I get a problem because mantisconnect web services uses rpc/encoded web services which are is not supported by SalesForce class generator. Is there any way to change something to make this work or any easy way to connect with mantis api? -- ___________________________________________________________________ *Martín Marsicano, Security & QA Consultant* mma...@ge... <em...@ge...> | www.genexusconsulting.com +598 2601 2082 <http://www.facebook.com/GeneXusConsulting> <http://www.linkedin.com/company/genexus-consulting> <http://twitter.com/GXConsulting> |
|
From: Robert M. <rob...@gm...> - 2015-02-17 07:38:00
|
Hi Manuel,
On Mon, Feb 16, 2015 at 5:50 PM, Manuel Camacho
<mca...@gm...> wrote:
> Hi ,
>
> Is there any way to create a issue from soap api rest with attachment in one
> step ??
You should be able to create the issue and then add the attachment in
a separate call.
Is there any reason for which you want to create them in a single call?
Robert
>
>
>
> $issue = array(
> "project" => array("name" => $ini_array["project"]),
> "category" => $_POST["Category"],
> "summary" => $_POST["Summary"],
> "description" => $_POST["Description"],
> "additional_information" => $additionalInformation
>
> XXXXXXXXXXXXXXX=file
> );
> $request = array(
> "username" => $ini_array["userName"],
> "password" => $ini_array["password"],
> "issue" => $issue
> );
> try {
> $soapClient = new SoapClient($ini_array["mantisConnectUrl"] . "?wsdl");
> $result = $soapClient->__call("mc_issue_add", $request);
>
>
> Probably the response is not because create attachment needs a idUsue
>
> https://mantishub.mantishub.com/api/soap/mantisconnect.php?wsdl#op.id0xc2b06c0
>
>
>
>
>
>
>
>
> ------------------------------------------------------------------------------
> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> with Interactivity, Sharing, Native Excel Exports, App Integration & more
> Get technology previously reserved for billion-dollar corporations, FREE
> http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk
> _______________________________________________
> Mantisbt-soap-dev mailing list
> Man...@li...
> https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev
>
--
http://robert.muntea.nu/
|
|
From: Manuel C. <mca...@gm...> - 2015-02-16 15:50:14
|
Hi ,
Is there any way to create a issue from soap api rest with attachment in
one step ??
$issue = array(
"project" => array("name" => $ini_array["project"]),
"category" => $_POST["Category"],
"summary" => $_POST["Summary"],
"description" => $_POST["Description"],
"additional_information" => $additionalInformation
XXXXXXXXXXXXXXX=file
);
$request = array(
"username" => $ini_array["userName"],
"password" => $ini_array["password"],
"issue" => $issue
);
try {
$soapClient = new SoapClient($ini_array["mantisConnectUrl"] . "?wsdl");
$result = $soapClient->__call("mc_issue_add", $request);
Probably the response is not because create attachment needs a idUsue
https://mantishub.mantishub.com/api/soap/mantisconnect.php?wsdl#op.id0xc2b06c0
|
|
From: Matej H. <mha...@re...> - 2014-12-10 13:44:40
|
Hi Robert, thank you for your answer. I have created the pull request #560: '[discuss] SOAP API: add method for searching within issues'. Best regards Matej ----- Original Message ----- From: "Robert Munteanu" <rob...@gm...> To: "Matej Habrnal" <mha...@re...> Cc: man...@li... Sent: Tuesday, December 9, 2014 9:57:07 PM Subject: Re: [Mantisbt-soap-dev] Searching within issues via SOAP API Hi Matej, I am not Paul, but I'll take a stab at answering your questions anyway :-) On Mon, Dec 8, 2014 at 2:22 PM, Matej Habrnal <mha...@re...> wrote: > Hi Paul, > > I am working on ABRT [1] and we are trying to integrate ABRT with MantisBT [2]. > To ensure proper functionality of ABRT reporting we need posibility to search via SOAP API within issues. > I have written some patch [3] (still not properly tested) which adds funcionality we need. > So there is the problem. I found i can't create MantisBT plugin which will ships this desired method [4]. > Is it some possibility to create this plugin or add this SOAP API search method to MantisBT? Right now it's not possible to extend the SOAP API through plugins. I don't think it will happen for 1.3, unless someone steps up with a proper design and a contribution. I see that you've started extending MantisBT at [3], which is great! I would be happy to guide you through submitting a pull request to mantisbt/mantisbt, if you have the time to do that. Feel free to submit a PR as soon as you think you can start a discussion ( mabye mark it as [discuss] ) and we can take it from there. Cheers, Robert > > Thank you, i look forward to hearing from you. > > Best regards > > Matej Habrnal > mha...@re... > > [1] https://github.com/abrt > [2] https://github.com/abrt/libreport/wiki/MantisBT > [3] https://github.com/mhabrnal/mantisbt/commits/master > [4] http://www.mantisbt.org/wiki/doku.php/mantisbt:soap_and_plugins > > > ------------------------------------------------------------------------------ > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server > from Actuate! Instantly Supercharge Your Business Reports and Dashboards > with Interactivity, Sharing, Native Excel Exports, App Integration & more > Get technology previously reserved for billion-dollar corporations, FREE > http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk > _______________________________________________ > Mantisbt-soap-dev mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev -- http://robert.muntea.nu/ |
|
From: Robert M. <rob...@gm...> - 2014-12-09 20:57:14
|
Hi Matej, I am not Paul, but I'll take a stab at answering your questions anyway :-) On Mon, Dec 8, 2014 at 2:22 PM, Matej Habrnal <mha...@re...> wrote: > Hi Paul, > > I am working on ABRT [1] and we are trying to integrate ABRT with MantisBT [2]. > To ensure proper functionality of ABRT reporting we need posibility to search via SOAP API within issues. > I have written some patch [3] (still not properly tested) which adds funcionality we need. > So there is the problem. I found i can't create MantisBT plugin which will ships this desired method [4]. > Is it some possibility to create this plugin or add this SOAP API search method to MantisBT? Right now it's not possible to extend the SOAP API through plugins. I don't think it will happen for 1.3, unless someone steps up with a proper design and a contribution. I see that you've started extending MantisBT at [3], which is great! I would be happy to guide you through submitting a pull request to mantisbt/mantisbt, if you have the time to do that. Feel free to submit a PR as soon as you think you can start a discussion ( mabye mark it as [discuss] ) and we can take it from there. Cheers, Robert > > Thank you, i look forward to hearing from you. > > Best regards > > Matej Habrnal > mha...@re... > > [1] https://github.com/abrt > [2] https://github.com/abrt/libreport/wiki/MantisBT > [3] https://github.com/mhabrnal/mantisbt/commits/master > [4] http://www.mantisbt.org/wiki/doku.php/mantisbt:soap_and_plugins > > > ------------------------------------------------------------------------------ > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server > from Actuate! Instantly Supercharge Your Business Reports and Dashboards > with Interactivity, Sharing, Native Excel Exports, App Integration & more > Get technology previously reserved for billion-dollar corporations, FREE > http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk > _______________________________________________ > Mantisbt-soap-dev mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev -- http://robert.muntea.nu/ |
|
From: Matej H. <mha...@re...> - 2014-12-08 12:22:26
|
Hi Paul, I am working on ABRT [1] and we are trying to integrate ABRT with MantisBT [2]. To ensure proper functionality of ABRT reporting we need posibility to search via SOAP API within issues. I have written some patch [3] (still not properly tested) which adds funcionality we need. So there is the problem. I found i can't create MantisBT plugin which will ships this desired method [4]. Is it some possibility to create this plugin or add this SOAP API search method to MantisBT? Thank you, i look forward to hearing from you. Best regards Matej Habrnal mha...@re... [1] https://github.com/abrt [2] https://github.com/abrt/libreport/wiki/MantisBT [3] https://github.com/mhabrnal/mantisbt/commits/master [4] http://www.mantisbt.org/wiki/doku.php/mantisbt:soap_and_plugins |
|
From: Matej H. <mha...@re...> - 2014-11-25 15:32:55
|
Hi, i would like to ask whether it's possible to add a new SOAP method via MantisBT Plugin. I have tried to find some information about this problem but i found only follows ideas: http://www.mantisbt.org/wiki/doku.php/mantisbt:soap_and_plugins Thank you, i look forward to hearing from you. Best regards Matej Habrnal mha...@re... |
|
From: Uwe K. <uwe...@gm...> - 2014-07-28 20:32:16
|
Thanks and sorry! I was on the completely wrong track. Instead of following the download URL being returned I now use the function "mc_issue_attachment_get" and everything works as expected. Cheers from Stuttgart Viele Grüße Uwe Keim Mobil: +49 (170) 3109369 ***** **www.zeta-producer.com* <http://www.zeta-producer.com> * - Kostenlos Homepage erstellen **** **** **www.zeta-test.com* <http://www.zeta-test.com> * - Kostenlose Test-Management-Software ******** www.zeta-uploader.com <http://www.zeta-uploader.com> - Kostenlos grosse Dateien versenden ***** 2014-07-28 22:22 GMT+02:00 Robert Munteanu <rob...@gm...>: > Hi Uwe, > > On Mon, Jul 28, 2014 at 10:49 PM, Uwe Keim <uwe...@gm...> wrote: > > Successfully using the SOAP API from C#, I can successfully read an issue > > and also get the "download_url" field. > > > > When trying to download the attachment by something like this: > > > > ----------------- > > using (var request = new WebClient()) > > { > > request.Credentials = new NetworkCredential(_settings.UserName, > > _settings.Password); > > > > return request.DownloadData(mantisAtt.download_url); > > } > > I have little experience with C#, but it looks like you're setting > HTTP Basic Auth credentials. The username and password should be > supplied as parameters to the SOAP call. > > If that's not the root cause, please post the complete request, > leaving out sensitive data. > > Thanks, > > Robert > > > ----------------- > > > > > > it "downloads" a HTML page with the login screen instead of the binary > > attachment content. > > > > -- > > So my question is: > > > > How can I programmatically download an attachment for an issue? > > > > > ------------------------------------------------------------------------------ > > Infragistics Professional > > Build stunning WinForms apps today! > > Reboot your WinForms applications with our WinForms controls. > > Build a bridge from your legacy apps to the future. > > > http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk > > _______________________________________________ > > Mantisbt-soap-dev mailing list > > Man...@li... > > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev > > > > > > -- > http://robert.muntea.nu/ > |
|
From: Robert M. <rob...@gm...> - 2014-07-28 20:22:35
|
Hi Uwe,
On Mon, Jul 28, 2014 at 10:49 PM, Uwe Keim <uwe...@gm...> wrote:
> Successfully using the SOAP API from C#, I can successfully read an issue
> and also get the "download_url" field.
>
> When trying to download the attachment by something like this:
>
> -----------------
> using (var request = new WebClient())
> {
> request.Credentials = new NetworkCredential(_settings.UserName,
> _settings.Password);
>
> return request.DownloadData(mantisAtt.download_url);
> }
I have little experience with C#, but it looks like you're setting
HTTP Basic Auth credentials. The username and password should be
supplied as parameters to the SOAP call.
If that's not the root cause, please post the complete request,
leaving out sensitive data.
Thanks,
Robert
> -----------------
>
>
> it "downloads" a HTML page with the login screen instead of the binary
> attachment content.
>
> --
> So my question is:
>
> How can I programmatically download an attachment for an issue?
>
> ------------------------------------------------------------------------------
> Infragistics Professional
> Build stunning WinForms apps today!
> Reboot your WinForms applications with our WinForms controls.
> Build a bridge from your legacy apps to the future.
> http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
> _______________________________________________
> Mantisbt-soap-dev mailing list
> Man...@li...
> https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev
>
--
http://robert.muntea.nu/
|
|
From: Uwe K. <uwe...@gm...> - 2014-07-28 19:50:02
|
Successfully using the SOAP API from C#, I can successfully read an issue
and also get the "download_url" field.
When trying to download the attachment by something like this:
-----------------
using (var request = new WebClient())
{
request.Credentials = new NetworkCredential(_settings.UserName,
_settings.Password);
return request.DownloadData(mantisAtt.download_url);
}
-----------------
it "downloads" a HTML page with the login screen instead of the binary
attachment content.
--
So my question is:
How can I programmatically download an attachment for an issue?
|
|
From: Roland B. <ro...@at...> - 2014-07-27 10:58:33
|
Hi Berge, Q #1: Submitting a patch is always a good idea, as it increases the chances of improvement eventually making it into MantisBT core. All contributions are welcome and greatly appreciated. Patch submissions can be made in several ways. In the order of preference: 1. Send us a Pull Request on our Github repository [1] 2. Attach a GIT patch to the issue 3. Attach a Unified Diff, clearly specifying the patch's base release Kindly avoid to upload entire modified PHP files. Please make sure that your submissions adhere to our Coding Guidelines [2], if they don't your patch might be rejected. First of all you should check the following existing issue [3] and pull request [4] [1] https://github.com/mantisbt/mantisbt [2] http://www.mantisbt.org/wiki/doku.php/mantisbt:coding_guidelines [3] http://www.mantisbt.org/bugs/view.php?id=10349 [4] https://github.com/mantisbt/mantisbt/pull/88 Q #2: The current development branch is master. The SOAP API is part of MantisBT, see folder api/soap Roland > Zoltan Berge <ber...@gm...> hat am 24. Juli 2014 um 22:46 geschrieben: > > > Hello, > > I'm newbie at this forum, right now i have some question: > > Q #1: In my private project need to extending SOAP API with 2 > functions: user creation and user modification (like user administrator) > I wrote the neccesary PHP codes and extended the WSDL definition. > > What is the offical way to apply my code in MantisBT, and are there > anybody who revising my code? > > Q #2: In "master-2.0.x" github branch I haven't found any sign of > "MantisConnect" SOAP service interface, was it removed? (What will > become instead of it?) > > Q #3: Where can I find MantisBT coding standards? > > thanks, > berge > > > > ------------------------------------------------------------------------------ > Want fast and easy access to all the code in your enterprise? Index and > search up to 200,000 lines of code with a free copy of Black Duck > Code Sight - the same software that powers the world's largest code > search on Ohloh, the Black Duck Open Hub! Try it now. > http://p.sf.net/sfu/bds > _______________________________________________ > Mantisbt-soap-dev mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev |
|
From: Zoltan B. <ber...@gm...> - 2014-07-24 20:47:04
|
Hello, I'm newbie at this forum, right now i have some question: Q #1: In my private project need to extending SOAP API with 2 functions: user creation and user modification (like user administrator) I wrote the neccesary PHP codes and extended the WSDL definition. What is the offical way to apply my code in MantisBT, and are there anybody who revising my code? Q #2: In "master-2.0.x" github branch I haven't found any sign of "MantisConnect" SOAP service interface, was it removed? (What will become instead of it?) Q #3: Where can I find MantisBT coding standards? thanks, berge |
|
From: Robert M. <rob...@gm...> - 2014-07-02 13:48:53
|
On Wed, Jul 2, 2014 at 9:56 AM, Adi Lavi <al...@ap...> wrote: > Hi Robert, > 1 last question regarding versions: can you say what is the oldest Mantis > version you support (or according to your reply can we simply assume you > support 1.0+)? I can't say anything about 1.0, but 1.1+ should work. I would reccomend 1.2+ though, 1.1.x is ancient. Robert > > Thanks, > Adi > > > On Wed, Jul 2, 2014 at 9:48 AM, Adi Lavi <al...@ap...> wrote: >> >> Thanks Robert, that's perfect. >> >> Adi >> >> >> On Tue, Jul 1, 2014 at 11:55 PM, Robert Munteanu >> <rob...@gm...> wrote: >>> >>> Hi again and sorry for the delay, >>> >>> On Sat, Jun 14, 2014 at 3:32 PM, Adi Lavi <al...@ap...> wrote: >>> > Hi Robert, >>> > Thanks for the info. >>> > I have a few questions related to the info you provided: >>> > 1. Maybe a trivial question, but how do you refresh the library when >>> > the >>> > WSDL changes? >>> >>> The source is at [1]. The process is simple: pull a new WSDL file from >>> mantisbt.org once released and re-run the Maven build. >>> >>> > 2. I suppose the client will not work with older versions of MantisBT >>> > (hence >>> > its SOAP API) that were downloaded by people (which did not make the >>> > effort >>> > to upgrade). Am I right? Do you know the change-log of the API? >>> >>> It will work with older versions of the api. I take care to make >>> changes backwards-compatible. If you find such a problem, please >>> report it. >>> >>> As for a changelog, the closest thing is the github commit history [2]. >>> >>> > 3. Is it compatible both with the on-premise version and the hosted one >>> > (MantisHub)? >>> >>> Yes. >>> >>> Robert >>> >>> > >>> > Thanks, >>> > Adi >>> >>> [1]: https://github.com/rombert/mantis-axis-soap-client >>> [2]: https://github.com/mantisbt/mantisbt/commits/master-1.2.x/api/soap >>> >>> > >>> > >>> > On Fri, Jun 13, 2014 at 12:24 PM, Robert Munteanu >>> > <rob...@gm...> wrote: >>> >> >>> >> Hi Adi, >>> >> >>> >> (+mantisbt-soap-dev, this might be interesting to more people ) >>> >> >>> >> On Wed, Jun 11, 2014 at 10:41 AM, Adi Lavi <al...@ap...> wrote: >>> >> >>> >> > My question is what would you advise of using. I noticed that >>> >> > MantisConnect >>> >> > is a lot moire active, but seems to lack some of the functionality >>> >> > that's >>> >> > supported by the SOAP API, and do exist in your library. My concern >>> >> > is >>> >> > how >>> >> > much (if any) do you maintain your code and keep it up-to-date with >>> >> > Mantis >>> >> > API. The low activity level is a risk in my view. >>> >> >>> >> The mantis-axis-soap-project simply generates the Axis 1 stubs from >>> >> the WSDL . It is refreshed whenever needed, that is when the WSDL >>> >> changes in a MantisBT release. As such, it does not really see a high >>> >> level of activity. >>> >> >>> >> As for MantisConnect, I don't expect it to work with the current >>> >> MantisBT version, since its last release was in 2010 [1]. >>> >> >>> >> So my advice is to use the mantis-axis-soap-project project. >>> >> >>> >> Thanks, >>> >> >>> >> Robert >>> >> >>> >> >>> >> [1]: http://sourceforge.net/projects/mantisconnect/files/ >>> >> >>> >> >>> >> -- >>> >> http://robert.muntea.nu/ >>> > >>> > >>> >>> >>> >>> -- >>> http://robert.muntea.nu/ >> >> > -- http://robert.muntea.nu/ |
|
From: Robert M. <rob...@gm...> - 2014-07-01 20:55:22
|
Hi again and sorry for the delay, On Sat, Jun 14, 2014 at 3:32 PM, Adi Lavi <al...@ap...> wrote: > Hi Robert, > Thanks for the info. > I have a few questions related to the info you provided: > 1. Maybe a trivial question, but how do you refresh the library when the > WSDL changes? The source is at [1]. The process is simple: pull a new WSDL file from mantisbt.org once released and re-run the Maven build. > 2. I suppose the client will not work with older versions of MantisBT (hence > its SOAP API) that were downloaded by people (which did not make the effort > to upgrade). Am I right? Do you know the change-log of the API? It will work with older versions of the api. I take care to make changes backwards-compatible. If you find such a problem, please report it. As for a changelog, the closest thing is the github commit history [2]. > 3. Is it compatible both with the on-premise version and the hosted one > (MantisHub)? Yes. Robert > > Thanks, > Adi [1]: https://github.com/rombert/mantis-axis-soap-client [2]: https://github.com/mantisbt/mantisbt/commits/master-1.2.x/api/soap > > > On Fri, Jun 13, 2014 at 12:24 PM, Robert Munteanu > <rob...@gm...> wrote: >> >> Hi Adi, >> >> (+mantisbt-soap-dev, this might be interesting to more people ) >> >> On Wed, Jun 11, 2014 at 10:41 AM, Adi Lavi <al...@ap...> wrote: >> >> > My question is what would you advise of using. I noticed that >> > MantisConnect >> > is a lot moire active, but seems to lack some of the functionality >> > that's >> > supported by the SOAP API, and do exist in your library. My concern is >> > how >> > much (if any) do you maintain your code and keep it up-to-date with >> > Mantis >> > API. The low activity level is a risk in my view. >> >> The mantis-axis-soap-project simply generates the Axis 1 stubs from >> the WSDL . It is refreshed whenever needed, that is when the WSDL >> changes in a MantisBT release. As such, it does not really see a high >> level of activity. >> >> As for MantisConnect, I don't expect it to work with the current >> MantisBT version, since its last release was in 2010 [1]. >> >> So my advice is to use the mantis-axis-soap-project project. >> >> Thanks, >> >> Robert >> >> >> [1]: http://sourceforge.net/projects/mantisconnect/files/ >> >> >> -- >> http://robert.muntea.nu/ > > -- http://robert.muntea.nu/ |
|
From: Adi L. <al...@ap...> - 2014-06-14 12:58:37
|
Hi Robert, Thanks for the info. I have a few questions related to the info you provided: 1. Maybe a trivial question, but how do you refresh the library when the WSDL changes? 2. I suppose the client will not work with older versions of MantisBT (hence its SOAP API) that were downloaded by people (which did not make the effort to upgrade). Am I right? Do you know the change-log of the API? 3. Is it compatible both with the on-premise version and the hosted one (MantisHub)? Thanks, Adi On Fri, Jun 13, 2014 at 12:24 PM, Robert Munteanu <rob...@gm... > wrote: > Hi Adi, > > (+mantisbt-soap-dev, this might be interesting to more people ) > > On Wed, Jun 11, 2014 at 10:41 AM, Adi Lavi <al...@ap...> wrote: > > > My question is what would you advise of using. I noticed that > MantisConnect > > is a lot moire active, but seems to lack some of the functionality that's > > supported by the SOAP API, and do exist in your library. My concern is > how > > much (if any) do you maintain your code and keep it up-to-date with > Mantis > > API. The low activity level is a risk in my view. > > The mantis-axis-soap-project simply generates the Axis 1 stubs from > the WSDL . It is refreshed whenever needed, that is when the WSDL > changes in a MantisBT release. As such, it does not really see a high > level of activity. > > As for MantisConnect, I don't expect it to work with the current > MantisBT version, since its last release was in 2010 [1]. > > So my advice is to use the mantis-axis-soap-project project. > > Thanks, > > Robert > > > [1]: http://sourceforge.net/projects/mantisconnect/files/ > > > -- > http://robert.muntea.nu/ > |
|
From: P R. <pa...@ma...> - 2014-06-13 19:38:56
|
Hi Shawn, I’ve replied to your forum post also on this with the following text – I’m in the same position as you, and unfortunately this won’t be fixed properly until around a month after the next release: “ Hi Sketa, >From the error message you receive, it looks like you are using MSSQL - I personally run MSSQL with Mantis in production at work, and have been a developer on mantis for the last 10 years. It is a known issue that support for non-MySQL is problematic in the current release - we are planning to fix this properly by replacing the current database layer shortly after the 1.3 release ( I've been told previously by others in the team we can aim to do with within a month of the 1.3 release), so for now, you may be better off using MySQL or manually patching the issue. I've been using the following text on the bug tracker for issues relating to other databases: MantisBT currently supports Mysql and has support for other database engines. The support for other databases is known to be problematic. Having implemented the current database layer into Mantis 10 years ago, I'm currently working on replacing the current layer. If you are interested in using Mantis with non-mysql databases - for example, Oracle, PGSQL or MSSQL, and would be willing to help out testing the new database layer, please drop me an email at pa...@ma... In the meantime, I'd advise running Mantis with Mysql Only to avoid issues. Thanks Paul “ From: Shawn Dibble [mailto:sha...@gm...] Sent: 13 June 2014 15:06 To: man...@li... Subject: [Mantisbt-soap-dev] mc_issue_add returns error instead of bug id when supplying reporter. I am using mc_issue_add to submit data to mantis. It works fine and returns the bug id. However if I supply it with a reporter ID, it still creates the issue correctly in mantis, but fails to return the bug id. I have placed my code in the URL below and was referenced to seek assistance on this mailing list. If anyone could tell me what is going on, that would be great. http://www.mantisbt.org/forums/viewtopic.php?f=3 <http://www.mantisbt.org/forums/viewtopic.php?f=3&t=22337> &t=22337 |
|
From: Shawn D. <sha...@gm...> - 2014-06-13 14:06:14
|
I am using mc_issue_add to submit data to mantis. It works fine and returns the bug id. However if I supply it with a reporter ID, it still creates the issue correctly in mantis, but fails to return the bug id. I have placed my code in the URL below and was referenced to seek assistance on this mailing list. If anyone could tell me what is going on, that would be great. http://www.mantisbt.org/forums/viewtopic.php?f=3&t=22337 |
|
From: Robert M. <rob...@gm...> - 2014-06-13 09:24:58
|
Hi Adi, (+mantisbt-soap-dev, this might be interesting to more people ) On Wed, Jun 11, 2014 at 10:41 AM, Adi Lavi <al...@ap...> wrote: > My question is what would you advise of using. I noticed that MantisConnect > is a lot moire active, but seems to lack some of the functionality that's > supported by the SOAP API, and do exist in your library. My concern is how > much (if any) do you maintain your code and keep it up-to-date with Mantis > API. The low activity level is a risk in my view. The mantis-axis-soap-project simply generates the Axis 1 stubs from the WSDL . It is refreshed whenever needed, that is when the WSDL changes in a MantisBT release. As such, it does not really see a high level of activity. As for MantisConnect, I don't expect it to work with the current MantisBT version, since its last release was in 2010 [1]. So my advice is to use the mantis-axis-soap-project project. Thanks, Robert [1]: http://sourceforge.net/projects/mantisconnect/files/ -- http://robert.muntea.nu/ |
|
From: P R. <pa...@ma...> - 2014-05-16 19:05:03
|
MantisBT currently supports Mysql and has support for other database engines. The support for other databases is known to be problematic. Having implemented the current database layer into Mantis 10 years ago, I'm currently working on replacing the current layer. If you are interested in using Mantis with non-mysql databases - for example, Oracle, PGSQL or MSSQL, and would be willing to help out testing the new database layer, please drop me an email at pa...@ma... In the meantime, I'd advise running Mantis with Mysql Only to avoid issues. Thanks Paul |
|
From: Gianluca S. <gi...@gm...> - 2013-11-30 11:13:55
|
On Wed, Nov 27, 2013 at 10:23 AM, Alexandre LEPREVOST <al...@ef...>wrote
:
>
> And after executing it, I see this message from the SOAP : Issue note
> text must not be blank.
> I cannot understand why the SOAP is not able to see the last parameter. I
> did so many tests and it fails each time.
>
I wanted to try it out, but the same script fails for me with another error
Uncaught exception from user code:
Service description 'http://localhost:8001/api/soap/mantisconnect.php?wsdl'
can't be loaded: 500 Can't connect to localhost:8001 (Connection refused)
SOAP::Schema::access('SOAP::Schema=HASH(0x2d57688)') called at
/usr/share/perl5/vendor_perl/SOAP/Lite.pm line 3259
SOAP::Schema::parse('SOAP::Schema=HASH(0x2d57688)') called at
/usr/share/perl5/vendor_perl/SOAP/Lite.pm line 3741
SOAP::Lite::service('SOAP::Lite', '
http://localhost:8001/api/soap/mantisconnect.php?wsdl') called at test.plline 7
Which is weird, given "curl
http://localhost:8001/api/soap/mantisconnect.php?wsdl" works...
However, Google found just some hints that perl maybe is not suitable for
this task. In particular,
http://stackoverflow.com/questions/19229595/arrays-of-hashes-sent-to-soapdataand
other places mention a lack of proper support for complex data types,
which are used extensively in mantis.
If using something other than Perl from your side is not an option,
probably mantis itself should be hacked to provide the minimal API you need
with another transport, like JSON (assuming JSON is better supported in
Perl...)
--
Gianluca Sforna
http://morefedora.blogspot.com
http://identi.ca/giallu - http://twitter.com/giallu
|
|
From: Alexandre L. <al...@ef...> - 2013-11-28 12:46:07
|
Hello Robert Thank you very much for your answer - here thanks to wireshark I got this XML result : <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope SOAP-ENV:encodingStyle=" http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC=" http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV=" http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap=" http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns=" http://futureware.biz/mantisconnect" xmlns:wsdl=" http://schemas.xmlsoap.org/wsdl/" xmlns:xsd=" http://www.w3.org/2001/XMLSchema" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <tns:mc_issue_note_add> <username xsi:type="xsd:string">al</username> <password xsi:type="xsd:string">toto</password> <issue_id xsi:type="xsd:integer">15069</issue_id> *<note xsi:nil="true" xsi:type="tns:IssueNoteData" /> <c-gensym7 xsi:type="xsd:string">fdsfdss</c-gensym7>* </tns:mc_issue_note_add> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Compare to PHP (working fine): <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://futureware.biz/mantisconnect" xmlns:xsd=" http://www.w3.org/2001/XMLSchema" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC=" http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle=" http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Body> <ns1:mc_issue_note_add> <username xsi:type="xsd:string">al</username> <password xsi:type="xsd:string">toto</password> <issue_id xsi:type="xsd:integer">15097</issue_id> * <note xsi:type="ns1:IssueNoteData"> <text xsi:type="xsd:string">test</text> </note>* </ns1:mc_issue_note_add> </SOAP-ENV:Body> </SOAP-ENV:Envelope> I put in red color the notable difference to help you as much as possible. May I do something else to help you ? Thank you very much Robert Kind regards / Cordialement *Alexandre Leprevost* Project Engineer / Delivery Team 4 rue de l´Abreuvoir 92 400 Courbevoie France al...@ef... Tel : +33 (0)1 75 84 88 98 Fax : +33 (0)9 57 88 09 40 www.efficientip.com 2013/11/27 Robert Munteanu <rob...@gm...> > Hi Alexandre, > > > On Wed, Nov 27, 2013 at 11:23 AM, Alexandre LEPREVOST > <al...@ef...> wrote: > > > > Hello > > > > I hope that you having a good day. I'm opening this thread after a huge > mount of searches without any clear solution on how to do what I want. > > > > Today, I'm trying to do a SOAP call with perl to add note in > Issuetracker's ticket. > > I'm not very good with perl, can you please post the XML you send to > Mantis? > > Thanks, > > Robert > > > > > After taking a look on the WSDL, it seems to be simple to do. First I > did a test with PHP and it was working perfectly (the note is added on the > ticket with the ID 15069): > > <?php > > $c = new SoapClient("http://10.0.50.150/api/soap/mantisconnect.php?wsdl > "); > > $issue = array ('text'=>'test'); > > $c->mc_issue_note_add('al', 'test', 15069, $issue); > > ?>Let's try with perl now (simple code again) : > > #!/usr/bin/perl -w > > use strict; > > use diagnostics; > > use warnings; > > use SOAP::Lite+trace => 'debug'; > > > > my $client = SOAP::Lite ->service(' > http://10.0.50.150/api/soap/mantisconnect.php?wsdl'); > > my %issue = ('text'=>'test'); > > my $result = $client->mc_issue_note_add('al', 'test', 15069, %issue); > > And after executing it, I see this message from the SOAP : Issue note > text must not be blank. > > I cannot understand why the SOAP is not able to see the last parameter. > I did so many tests and it fails each time. > > > > I don't see any solution :'( Do you have an idea ? > > > > Thank you very much in advance and have a good day > > > > Alexandre Leprevost > > > > Project Engineer / Delivery Team > > > > > > 4 rue de l´Abreuvoir > > 92 400 Courbevoie > > France > > al...@ef... > > Tel : +33 (0)1 75 84 88 98 > > Fax : +33 (0)9 57 88 09 40 > > www.efficientip.com > > > > > > > ------------------------------------------------------------------------------ > > Rapidly troubleshoot problems before they affect your business. Most IT > > organizations don't have a clear picture of how application performance > > affects their revenue. With AppDynamics, you get 100% visibility into > your > > Java,.NET, & PHP application. Start your 15-day FREE TRIAL of > AppDynamics Pro! > > > http://pubads.g.doubleclick.net/gampad/clk?id=84349351&iu=/4140/ostg.clktrk > > _______________________________________________ > > Mantisbt-soap-dev mailing list > > Man...@li... > > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev > > > > > > -- > http://robert.muntea.nu/ > |
|
From: Robert M. <rob...@gm...> - 2013-11-27 14:11:29
|
Hi Alexandre,
On Wed, Nov 27, 2013 at 11:23 AM, Alexandre LEPREVOST
<al...@ef...> wrote:
>
> Hello
>
> I hope that you having a good day. I'm opening this thread after a huge mount of searches without any clear solution on how to do what I want.
>
> Today, I'm trying to do a SOAP call with perl to add note in Issuetracker's ticket.
I'm not very good with perl, can you please post the XML you send to Mantis?
Thanks,
Robert
>
> After taking a look on the WSDL, it seems to be simple to do. First I did a test with PHP and it was working perfectly (the note is added on the ticket with the ID 15069):
> <?php
> $c = new SoapClient("http://10.0.50.150/api/soap/mantisconnect.php?wsdl");
> $issue = array ('text'=>'test');
> $c->mc_issue_note_add('al', 'test', 15069, $issue);
> ?>Let's try with perl now (simple code again) :
> #!/usr/bin/perl -w
> use strict;
> use diagnostics;
> use warnings;
> use SOAP::Lite+trace => 'debug';
>
> my $client = SOAP::Lite ->service('http://10.0.50.150/api/soap/mantisconnect.php?wsdl');
> my %issue = ('text'=>'test');
> my $result = $client->mc_issue_note_add('al', 'test', 15069, %issue);
> And after executing it, I see this message from the SOAP : Issue note text must not be blank.
> I cannot understand why the SOAP is not able to see the last parameter. I did so many tests and it fails each time.
>
> I don't see any solution :'( Do you have an idea ?
>
> Thank you very much in advance and have a good day
>
> Alexandre Leprevost
>
> Project Engineer / Delivery Team
>
>
> 4 rue de l´Abreuvoir
> 92 400 Courbevoie
> France
> al...@ef...
> Tel : +33 (0)1 75 84 88 98
> Fax : +33 (0)9 57 88 09 40
> www.efficientip.com
>
>
> ------------------------------------------------------------------------------
> Rapidly troubleshoot problems before they affect your business. Most IT
> organizations don't have a clear picture of how application performance
> affects their revenue. With AppDynamics, you get 100% visibility into your
> Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
> http://pubads.g.doubleclick.net/gampad/clk?id=84349351&iu=/4140/ostg.clktrk
> _______________________________________________
> Mantisbt-soap-dev mailing list
> Man...@li...
> https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev
>
--
http://robert.muntea.nu/
|