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: Alexandre L. <al...@ef...> - 2013-11-27 10:17:09
|
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.
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
|
|
From: Robert M. <rob...@gm...> - 2013-11-03 20:35:24
|
Hi Maxi, On Sun, Nov 3, 2013 at 11:31 AM, Maximilian Koertig <max...@gm...> wrote: > Hi! > I already posted this question in the mantisbt forum, but they pointed me to > this mailing list: > > I'm trying to generate client stubs from the Mantis WSDL file using > wsdl2java. The command > wsdl2java -uri http://www.mantisbt.org/bugs/api/soap/mantisconnect.php?wsdl > -o src -d adb -s > results to the following error: > http://pastebin.com/gXhhtrV1 Not 100% sure, but I think that the error is due to the fact that Axis 2 does not support RCP/encoded WSDL style, which we use. Robert > > Do you know what's wrong here? > > Kind regards, > Maxi > > ------------------------------------------------------------------------------ > Android is increasing in popularity, but the open development platform that > developers love is also attractive to malware creators. Download this white > paper to learn more about secure code signing practices that can help keep > Android apps secure. > http://pubads.g.doubleclick.net/gampad/clk?id=65839951&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: Maximilian K. <max...@gm...> - 2013-11-03 09:31:08
|
<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>Hi!</div> <div>I already posted this question in the mantisbt forum, but they pointed me to this mailing list:</div> <div> </div> <div>I'm trying to generate client stubs from the Mantis WSDL file using wsdl2java. The command</div> <div><code>wsdl2java -uri http://www.mantisbt.org/bugs/api/soap/mantisconnect.php?wsdl -o src -d adb -s</code></div> <div>results to the following error:<br/> <a class="postlink" href="http://pastebin.com/gXhhtrV1" target="_blank">http://pastebin.com/gXhhtrV1</a></div> <div> </div> <div>Do you know what's wrong here?</div> <div> </div> <div>Kind regards,</div> <div>Maxi</div></div></body></html> |
|
From: Robert M. <rob...@gm...> - 2013-09-17 07:46:41
|
Hi Chethan, On Tue, Sep 17, 2013 at 9:39 AM, Chethan B D <che...@en...> wrote: > Hi All, > > I'm unable to update the status of the mantis issue with endpoint url: > http://localhost/mantis/api/soap/mantisconnect.php > I'm using mantis 1.2.15 running on Apache HTTP server, Window7 OS. > > Please see the SOAP Request & received Response XML with faultcode > "SOAP-ENV:Server" & faultstring "Error Type: SYSTEM NOTICE,Error > Description: Undefined index: project" Thanks for the detailed report. For the moment the mc_issue_update call expects some issue parameters to be always set: - project id - reporter - handler - summary - description Please fill those in and it should work. I _think_ that this is a leftover from mc_issue_add so not necessarily correct. If you think it should be changed, please file a bug. Robert > Anybody please help me out with this. > > Request: > > <soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xmlns:xsd="http://www.w3.org/2001/XMLSchema" > xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" > xmlns:man="http://futureware.biz/mantisconnect" > xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> > <soapenv:Header/> > <soapenv:Body> > <man:mc_issue_update > soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> > <username xsi:type="xsd:string">administrator</username> > <password xsi:type="xsd:string">rootuser</password> > <issueId xsi:type="xsd:integer">0000024</issueId> > <issue xsi:type="man:IssueData"> > <status xsi:type="man:ObjectRef"> > <id xsi:type="xsd:integer">80</id> > <name xsi:type="xsd:string">resolved</name> > </status> > </issue> > </man:mc_issue_update> > </soapenv:Body> > </soapenv:Envelope> > > > Note: Here status of issueId=0000024 is assigned, and I am trying to change > it to resolved. > > Response: > > <SOAP-ENV:Envelope > xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> > <SOAP-ENV:Body> > <SOAP-ENV:Fault> > <faultcode>SOAP-ENV:Server</faultcode> > <faultstring>Error Type: SYSTEM NOTICE,Error Description: Undefined > index: project</faultstring> > > </SOAP-ENV:Fault> > </SOAP-ENV:Body> > </SOAP-ENV:Envelope> > > > BR, > Chethan > > ------------------------------------------------------------------------------ > LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99! > 1,500+ hours of tutorials including VisualStudio 2012, Windows 8, SharePoint > 2013, SQL 2012, MVC 4, more. BEST VALUE: New Multi-Library Power Pack > includes > Mobile, Cloud, Java, and UX Design. Lowest price ever! Ends 9/20/13. > http://pubads.g.doubleclick.net/gampad/clk?id=58041151&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: Chethan B D <che...@en...> - 2013-09-17 07:34:55
|
Hi All, I'm unable to update the status of the mantis issue with endpoint url: http://localhost/mantis/api/soap/mantisconnect.php I'm using *mantis 1.2.15 *running on Apache HTTP server, Window7 OS. Please see the SOAP Request & received Response XML with faultcode "* SOAP-ENV:Server*" & faultstring "*Error Type: SYSTEM NOTICE,Error Description: Undefined index: project*" Anybody please help me out with this. *Request:* <soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv=" http://schemas.xmlsoap.org/soap/envelope/" xmlns:man=" http://futureware.biz/mantisconnect" xmlns:soapenc=" http://schemas.xmlsoap.org/soap/encoding/"> <soapenv:Header/> <soapenv:Body> <man:mc_issue_update soapenv:encodingStyle=" http://schemas.xmlsoap.org/soap/encoding/"> <username xsi:type="xsd:string">administrator</username> <password xsi:type="xsd:string">rootuser</password> <issueId xsi:type="xsd:integer">0000024</issueId> <issue xsi:type="man:IssueData"> <status xsi:type="man:ObjectRef"> <id xsi:type="xsd:integer">80</id> <name xsi:type="xsd:string">resolved</name> </status> </issue> </man:mc_issue_update> </soapenv:Body> </soapenv:Envelope> *Note: *Here status of issueId=0000024 is assigned, and I am trying to change it to resolved. *Response:* * * <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/ "> <SOAP-ENV:Body> <SOAP-ENV:Fault> <faultcode>SOAP-ENV:Server</faultcode> <faultstring>Error Type: SYSTEM NOTICE,Error Description: Undefined index: project</faultstring> </SOAP-ENV:Fault> </SOAP-ENV:Body> </SOAP-ENV:Envelope> BR, Chethan |
|
From: Robert M. <rob...@gm...> - 2013-08-22 22:30:14
|
Hi,
On Tue, Aug 20, 2013 at 11:55 AM, Jean-Philippe BATTU <je...@fr...> wrote:
>
>
> Hello
> I use Mantis BT 121 and would like to query the database from another machine to get the full list of the defects
Is that MantisBT 1.2.1? I strongly suggest you upgrade, there have
been many fixes added to the SOAP API after this release.
>
> To do this, i use a web service, with soapclient
> My problem is with the php function mc_filter_get() which returns some data but only 4 ! I have much more open defect in my working database
Please show me the request/response in XML format ( be sure to
mask/remove the password ) . I can't judge based on PHP code, even
though MantisBT is written in PHP :-)
Thanks,
Robert
>
> here is my simple php code :
>
> <?php
>
> require_once('library/nusoap/nusoap.php');
>
> $username = 'myuser';
> $password = 'mypassword';
>
> $endpoint = "https://novahpc.frec.bull.fr/mantis-default/mantis/api/soap/mantisconnect.php";
>
> $c = new SoapClient($endpoint);
>
> $r = $c->call('mc_filter_get',array($username, $password, 6));
>
> foreach ( $r as $k => $v )
> printf( "<p>id: <b>%s</b></p>" , $v[ 'id' ] ) ;
>
>
> print_r($r);
> printf( "<p><br><br><br>Taille : %s<br><br><br></p>" , count( $r ) ) ;
> ?>
>
> and i get only four items in my array
> Any suggestions would be greatly appreciated
>
> Cheers
>
> Jean-Philippe
>
> ------------------------------------------------------------------------------
> Introducing Performance Central, a new site from SourceForge and
> AppDynamics. Performance Central is your source for news, insights,
> analysis and resources for efficient Application Performance Management.
> Visit us today!
> http://pubads.g.doubleclick.net/gampad/clk?id=48897511&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: Jean-Philippe B. <je...@fr...> - 2013-08-20 08:56:00
|
Hello
I use Mantis BT 121 and would like to query the database from another
machine to get the full list of the defects
To do this, i use a web service, with soapclient
My problem is with the php function mc_filter_get() which returns some
data but only 4 ! I have much more open defect in my working database
here is my simple php code :
<?php
require_once('library/nusoap/nusoap.php');
$username = 'myuser';
$password = 'mypassword';
$endpoint =
"https://novahpc.frec.bull.fr/mantis-default/mantis/api/soap/mantisconnect.php";
$c = new SoapClient($endpoint);
$r = $c->call('mc_filter_get',array($username, $password, 6));
foreach ( $r as $k => $v )
printf( "<p>id: <b>%s</b></p>" , $v[ 'id' ] ) ;
print_r($r);
printf( "<p><br><br><br>Taille : %s<br><br><br></p>" , count( $r ) ) ;
?>
and i get only four items in my array
Any suggestions would be greatly appreciated
Cheers
Jean-Philippe
|
|
From: Alex S. <al...@gm...> - 2013-06-28 22:58:43
|
the previous version was good enough for us. but I'll run all Task Adapter tests with the latest 1.2.15 library too. On Wed, Jun 26, 2013 at 2:09 PM, Robert Munteanu <rob...@gm...>wrote: > Well, that week was a bit longer than I though. > > At any rate, I've staged version 1.2.15 at [1] . Can you give it a try > and let me know if it works fine for you? > > Robert > > [1]: https://oss.sonatype.org/content/repositories/bizfutureware-1000/ > > On Mon, May 27, 2013 at 2:59 PM, Robert Munteanu > <rob...@gm...> wrote: > > Hi Alex, > > > > There haven't been to many API changes, but if you specifically need > > to use features which are 1.2.10+ only, I'll release a version for > > 1.2.15 later this week. > > > > Robert > > > > On Mon, May 27, 2013 at 12:32 PM, Alex Skor <al...@gm...> wrote: > >> I see the latest Mantis java library was released in 2011: > >> http://search.maven.org/#browse%7C-475271811 > >> > >> is there anything newer? > >> > >> -- > >> Alex > >> > >> > ------------------------------------------------------------------------------ > >> Try New Relic Now & We'll Send You this Cool Shirt > >> New Relic is the only SaaS-based application performance monitoring > service > >> that delivers powerful full stack analytics. Optimize and monitor your > >> browser, app, & servers with just a few lines of code. Try New Relic > >> and get this awesome Nerd Life shirt! > http://p.sf.net/sfu/newrelic_d2d_may > >> _______________________________________________ > >> Mantisbt-soap-dev mailing list > >> Man...@li... > >> https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev > >> > > > > > > > > -- > > http://robert.muntea.nu/ > > > > -- > http://robert.muntea.nu/ > -- Alex |
|
From: Robert M. <rob...@gm...> - 2013-06-26 21:10:07
|
Well, that week was a bit longer than I though. At any rate, I've staged version 1.2.15 at [1] . Can you give it a try and let me know if it works fine for you? Robert [1]: https://oss.sonatype.org/content/repositories/bizfutureware-1000/ On Mon, May 27, 2013 at 2:59 PM, Robert Munteanu <rob...@gm...> wrote: > Hi Alex, > > There haven't been to many API changes, but if you specifically need > to use features which are 1.2.10+ only, I'll release a version for > 1.2.15 later this week. > > Robert > > On Mon, May 27, 2013 at 12:32 PM, Alex Skor <al...@gm...> wrote: >> I see the latest Mantis java library was released in 2011: >> http://search.maven.org/#browse%7C-475271811 >> >> is there anything newer? >> >> -- >> Alex >> >> ------------------------------------------------------------------------------ >> Try New Relic Now & We'll Send You this Cool Shirt >> New Relic is the only SaaS-based application performance monitoring service >> that delivers powerful full stack analytics. Optimize and monitor your >> browser, app, & servers with just a few lines of code. Try New Relic >> and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may >> _______________________________________________ >> Mantisbt-soap-dev mailing list >> Man...@li... >> https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev >> > > > > -- > http://robert.muntea.nu/ -- http://robert.muntea.nu/ |
|
From: Robert M. <rob...@gm...> - 2013-06-10 08:38:05
|
Hi Jeromy, > > I try to generate a SAP Client proxy and receive a error message (wrong > namespace). As I read in corresponding SAP Notes, this problem could occur, > if the Webservice isn't WSI Basic Profil 1.1 compatible. I have no idea, frankly :-) What is the exact error that you get? And how does a SAP Client proxy work - is it based on a general-purpose programming language like Java or is it SAP-proprietary? Thanks, Robert > > > ------------------------------------------------------------------------------ > How ServiceNow helps IT people transform IT departments: > 1. A cloud service to automate IT design, transition and operations > 2. Dashboards that offer high-level views of enterprise services > 3. A single system of record for all IT processes > http://p.sf.net/sfu/servicenow-d2d-j > _______________________________________________ > Mantisbt-soap-dev mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev > -- http://robert.muntea.nu/ |
|
From: Jeromy K. <Jer...@gm...> - 2013-06-10 08:34:04
|
<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>Hello everybody</div> <div> </div> <div>I try to generate a SAP Client proxy and receive a error message (wrong namespace). As I read in corresponding SAP Notes, this problem could occur, if the Webservice isn't WSI Basic Profil 1.1 compatible.</div> <div> </div> <div>So, is it? :)</div> <div> </div> <div>Yours sincerely</div> <div> </div> <div>Jeromy K</div> <div> </div></div></body></html> |
|
From: Robert M. <rob...@gm...> - 2013-05-27 11:59:36
|
Hi Alex, There haven't been to many API changes, but if you specifically need to use features which are 1.2.10+ only, I'll release a version for 1.2.15 later this week. Robert On Mon, May 27, 2013 at 12:32 PM, Alex Skor <al...@gm...> wrote: > I see the latest Mantis java library was released in 2011: > http://search.maven.org/#browse%7C-475271811 > > is there anything newer? > > -- > Alex > > ------------------------------------------------------------------------------ > Try New Relic Now & We'll Send You this Cool Shirt > New Relic is the only SaaS-based application performance monitoring service > that delivers powerful full stack analytics. Optimize and monitor your > browser, app, & servers with just a few lines of code. Try New Relic > and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may > _______________________________________________ > Mantisbt-soap-dev mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev > -- http://robert.muntea.nu/ |
|
From: Alex S. <al...@gm...> - 2013-05-27 09:33:14
|
I see the latest Mantis java library was released in 2011: http://search.maven.org/#browse%7C-475271811 is there anything newer? -- Alex |
|
From: Robert M. <rob...@gm...> - 2013-03-26 08:34:58
|
Hi, On Tue, Mar 26, 2013 at 9:13 AM, cocoy tocoy <coc...@ya...> wrote: > Good Day! > > I hope this is right to send notice to this email add for an issue I want to > raise. > > I am using the soap api and have my own interface when creating/reporting an > issue. > I want to have my combo/options field filled with the global categories I > made in Mantis regardless or Project (it should be since it is global). Categories are by definition project-specific and mc_project_get_categories will return a list of categories for the specific project you pass in, including the 'inherited' global categories. Why do you need only the global categories displayed, instead of the project-specific categories? Robert > > I was hoping that I could be able to achieve this by using > 'mc_project_get_categories' and passing '0' as Project Id, but it would only > return an error saying that project '0' does not exist. > > I would not like as much as possible tweak/change any mantis server code > since my client interface could serve any mantis server - portability. > > Is there any method or way that I can get all global categories without > having to supply a project id? Or can you please support this? > > > Hoping for your kind and quick response. > > > Thank you. > > > cocoy > > ------------------------------------------------------------------------------ > Own the Future-Intel® Level Up Game Demo Contest 2013 > Rise to greatness in Intel's independent game demo contest. > Compete for recognition, cash, and the chance to get your game > on Steam. $5K grand prize plus 10 genre and skill prizes. > Submit your demo by 6/6/13. http://p.sf.net/sfu/intel_levelupd2d > _______________________________________________ > Mantisbt-soap-dev mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev > -- http://robert.muntea.nu/ |
|
From: cocoy t. <coc...@ya...> - 2013-03-26 07:13:23
|
Good Day! I hope this is right to send notice to this email add for an issue I want to raise. I am using the soap api and have my own interface when creating/reporting an issue. I want to have my combo/options field filled with the global categories I made in Mantis regardless or Project (it should be since it is global). I was hoping that I could be able to achieve this by using 'mc_project_get_categories' and passing '0' as Project Id, but it would only return an error saying that project '0' does not exist. I would not like as much as possible tweak/change any mantis server code since my client interface could serve any mantis server - portability. Is there any method or way that I can get all global categories without having to supply a project id? Or can you please support this? Hoping for your kind and quick response. Thank you. cocoy |
|
From: Кирилл К. <kra...@gm...> - 2013-01-18 10:21:41
|
18.01.2013 10:47, Sergei Matros wrote: > > I've got an error "syntax error, unexpected 'Уровень' (T_STRING) > strings_russian.txt" after posting a note for the issue. > > I found it in > > 797 $s_manage_user_protected_msg = 'Учетная запись защищена; поля > \\'Уровень доступа\\' и \\'Активна\\' не могут быть изменены. Другие > поля были успешно обновлены.'; > > and changed double slash (\\) into slash (\) and all works fine > > $s_manage_user_protected_msg = 'Учетная запись защищена; поля \'Уровень > доступа\' и \'Активна\' не могут быть изменены. Другие поля были успешно > обновлены.'; > Thank's, Sergey. I fix my mistake. Welcome to translate: http://mantisbt.org/wiki/doku.php/mantisbt:translationshowto or write to me directly. -- Best regards, Kirill Krasnov ICQ 82427351 JID kr...@ja... Skype: kirillkr |
|
From: Roland B. <ro...@at...> - 2013-01-18 08:28:51
|
I was wrong, mantisbt-lang is the right list for such kind of issues http://www.mantisbt.org/mailinglists.php Roland Becker <ro...@at...> hat am 18. Januar 2013 um 09:26 geschrieben: > Hi Sergei, > > it would be fine if you enter a bug for it. > It would be even better if you make also the correction. > See how it works: > http://www.mantisbt.org/wiki/doku.php/mantisbt:translationshowto > Changes are pushed from TranslateWiki to the MantisBT repository on a regular > basis (+/- weekly). > > Please use mantisbt-dev instead of mantisbt-soap-dev if you get similiar > issues > in future. > > Cheers > Roland > > > Sergei Matros <se...@ma...> hat am 18. Januar 2013 um 08:47 > geschrieben: > > Hello, people. > > > > Should I register a bug in 1.2.13dev? Or write a letter only? > > > > See details below. > > > > I've got an error "syntax error, unexpected 'Уровень' (T_STRING) > > strings_russian.txt" after posting a note for the issue. > > > > I found it in > > > > 797 $s_manage_user_protected_msg = 'Учетная запись защищена; поля > > \\'Уровень доступа\\' и \\'Активна\\' не могут быть изменены. Другие поля > > были успешно обновлены.'; > > > > and changed double slash (\\) into slash (\) and all works fine > > > > $s_manage_user_protected_msg = 'Учетная запись защищена; поля \'Уровень > > доступа\' и \'Активна\' не могут быть изменены. Другие поля были успешно > > обновлены.'; > > ------------------------------------------------------------------------------ > > Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and > > much more. Get web development skills now with LearnDevNow - > > 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > > SALE $99.99 this month only -- learn more at: > > http://p.sf.net/sfu/learnmore_122812_______________________________________________ > > Mantisbt-soap-dev mailing list > > Man...@li... > > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev |
|
From: Roland B. <ro...@at...> - 2013-01-18 08:26:52
|
Hi Sergei, it would be fine if you enter a bug for it. It would be even better if you make also the correction. See how it works: http://www.mantisbt.org/wiki/doku.php/mantisbt:translationshowto Changes are pushed from TranslateWiki to the MantisBT repository on a regular basis (+/- weekly). Please use mantisbt-dev instead of mantisbt-soap-dev if you get similiar issues in future. Cheers Roland Sergei Matros <se...@ma...> hat am 18. Januar 2013 um 08:47 geschrieben: > Hello, people. > > Should I register a bug in 1.2.13dev? Or write a letter only? > > See details below. > > I've got an error "syntax error, unexpected 'Уровень' (T_STRING) > strings_russian.txt" after posting a note for the issue. > > I found it in > > 797 $s_manage_user_protected_msg = 'Учетная запись защищена; поля > \\'Уровень доступа\\' и \\'Активна\\' не могут быть изменены. Другие поля > были успешно обновлены.'; > > and changed double slash (\\) into slash (\) and all works fine > > $s_manage_user_protected_msg = 'Учетная запись защищена; поля \'Уровень > доступа\' и \'Активна\' не могут быть изменены. Другие поля были успешно > обновлены.'; > ------------------------------------------------------------------------------ > Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and > much more. Get web development skills now with LearnDevNow - > 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > SALE $99.99 this month only -- learn more at: > http://p.sf.net/sfu/learnmore_122812_______________________________________________ > Mantisbt-soap-dev mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev |
|
From: Sergei M. <se...@ma...> - 2013-01-18 07:54:44
|
Hello, people. Should I register a bug in 1.2.13dev? Or write a letter only? See details below. I've got an error "syntax error, unexpected 'Уровень' (T_STRING) strings_russian.txt" after posting a note for the issue. I found it in 797 $s_manage_user_protected_msg = 'Учетная запись защищена; поля \\'Уровень доступа\\' и \\'Активна\\' не могут быть изменены. Другие поля были успешно обновлены.'; and changed double slash (\\) into slash (\) and all works fine $s_manage_user_protected_msg = 'Учетная запись защищена; поля \'Уровень доступа\' и \'Активна\' не могут быть изменены. Другие поля были успешно обновлены.'; |
|
From: Robert M. <rob...@gm...> - 2013-01-12 22:48:47
|
(looping back the dev list) On Sat, Jan 12, 2013 at 11:09 PM, Sergei Matros <se...@ma...> wrote: > Ok. I can tell you how I tried. > > I saved my modified WSDL file, downloaded the latest dev version 1.2.13dev. > Installed on the server. Applied my patch with changes for SOAP API. Update > the mantis' wsdl file with mine. Tried to access to standart api methods -- > OK. Tried to access to my own methods -- "Function 'mc_account_add' doesn't > exist". Function mc_account_add located in mc_account_api.php Can you post a diff of your wsdl file? > > It is very strange for me. I tried to clean wsdl cache -- no result. I am > using SoapUI for my tests. Does SOAP UI recognize the new method? Robert > > Thx. > > 2013/1/12 Robert Munteanu <rob...@gm...> >> >> Hi Sergei, >> >> This error should go away if you use the soap extension and upgrade to >> a git version of MantisBT. >> >> Actually there's no way to generate the WSDL automatically, but you >> should be able to easily add data types and methods based on the >> actual WSDL. If you need specific answers, please ask. >> >> Robert >> >> On Sat, Jan 12, 2013 at 10:49 PM, Sergei Matros <se...@ma...> >> wrote: >> > Thank you very much. I decided to use version 1.2.12 with my changes >> > patch >> > for SOAP API. >> > >> > I updated PHP to 5.4 version and i've got an notice "Array to string >> > conversion". So, I decided to do hotfix, placing error_reporting(0) in >> > mantisconnect.php. I know that it is not very good (disabling error >> > reporting) but for now I don't know how to fix it in another way. >> > >> > Talking more detailed I should use PHP SOAP extension instead of Nusoap >> > library, but I don't know how to generate WSDL file. I don't want to >> > edit it >> > manually (nusoap lib could generate wsdl for me earlier). If you can >> > tell me >> > how to generate wsdl I'll rewrite my code for php extension. >> > >> > Thx a lot. >> > >> > >> > 2013/1/12 Robert Munteanu <rob...@gm...> >> >> >> >> Hi Sergei, >> >> >> >> On Thu, Jan 10, 2013 at 5:15 PM, Sergei Matros <se...@ma...> >> >> wrote: >> >> > Hi, people. >> >> > >> >> > I am using 1.2.13dev version of Mantis. >> >> > >> >> > How can I add some new api methods in Mantis' SOAP API? >> >> >> >> First of all you should define your new methods and data types in >> >> api/soap/mantisconnect.wsdl Then you should implement those methods in >> >> one of the mc_xxx_api.php files from the api/soap directory. >> >> >> >> Be careful though that this means that you are changing MantisBT core >> >> files and as such you will need to re-apply your changes everytime you >> >> upgrade. If your changes are something which can be contributed to >> >> MantisBT I'd be more than happy to guide the contribution. >> >> >> >> Thanks, >> >> >> >> Robert >> >> >> >> > >> >> > Thanx a lot. >> >> > >> >> > Sergei >> >> > >> >> > >> >> > >> >> > ------------------------------------------------------------------------------ >> >> > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, >> >> > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills >> >> > current >> >> > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft >> >> > MVPs and experts. SALE $99.99 this month only -- learn more at: >> >> > http://p.sf.net/sfu/learnmore_122912 >> >> > _______________________________________________ >> >> > Mantisbt-soap-dev mailing list >> >> > Man...@li... >> >> > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev >> >> > >> >> >> >> >> >> >> >> -- >> >> Sent from my (old) computer >> > >> > >> >> >> >> -- >> Sent from my (old) computer > > -- Sent from my (old) computer |
|
From: Robert M. <rob...@gm...> - 2013-01-12 20:00:01
|
Hi Sergei, On Thu, Jan 10, 2013 at 5:15 PM, Sergei Matros <se...@ma...> wrote: > Hi, people. > > I am using 1.2.13dev version of Mantis. > > How can I add some new api methods in Mantis' SOAP API? First of all you should define your new methods and data types in api/soap/mantisconnect.wsdl Then you should implement those methods in one of the mc_xxx_api.php files from the api/soap directory. Be careful though that this means that you are changing MantisBT core files and as such you will need to re-apply your changes everytime you upgrade. If your changes are something which can be contributed to MantisBT I'd be more than happy to guide the contribution. Thanks, Robert > > Thanx a lot. > > Sergei > > ------------------------------------------------------------------------------ > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft > MVPs and experts. SALE $99.99 this month only -- learn more at: > http://p.sf.net/sfu/learnmore_122912 > _______________________________________________ > Mantisbt-soap-dev mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev > -- Sent from my (old) computer |
|
From: Sergei M. <se...@ma...> - 2013-01-10 15:44:35
|
Hi, people. I am using 1.2.13dev version of Mantis. How can I add some new api methods in Mantis' SOAP API? Thanx a lot. Sergei |
|
From: Robert M. <rob...@gm...> - 2012-12-15 23:12:30
|
Hi Mark, On Tue, Dec 11, 2012 at 1:30 AM, Mark Grossman <mar...@ey...> wrote: > Hi all, > > Is there a way to get the history of an issue from SOAP? I don’t think there > is currently but just in case. There's no way to currently get history data but there's an open issue with a patch attached 9936: add history information http://www.mantisbt.org/bugs/view.php?id=9936 If you decide to try it let us know on the bug if/how it works. Cheers, Rober > > > > I want to be able to determine if an issue went from one state to another > within a time frame (in my case, from resolved to assigned). > > > > And probably not a way to fake it either that I can see. > > > > Any help appreciated. > > > > Cheers > > Mark > > > ------------------------------------------------------------------------------ > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial > Remotely access PCs and mobile devices and provide instant support > Improve your efficiency, and focus on delivering more value-add services > Discover what IT Professionals Know. Rescue delivers > http://p.sf.net/sfu/logmein_12329d2d > _______________________________________________ > Mantisbt-soap-dev mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-soap-dev > -- Sent from my (old) computer |
|
From: Mark G. <mar...@ey...> - 2012-12-10 23:46:00
|
Hi all, Is there a way to get the history of an issue from SOAP? I don't think there is currently but just in case. I want to be able to determine if an issue went from one state to another within a time frame (in my case, from resolved to assigned). And probably not a way to fake it either that I can see. Any help appreciated. Cheers Mark |
|
From: Johan G. <joh...@la...> - 2012-11-16 08:35:13
|
Hello, I confirm that at office we use for mantis RedHat 5.4 with PHP 5.1 ... (without json_encode / decode Damn it ! :'( ) For the moment I don't use SOAP, but next year can be different ;) Johan/Lapinkiller -----Message d'origine----- De : Robert Munteanu [mailto:rob...@gm...] Envoyé : jeudi 15 novembre 2012 21:30 À : developer discussions Cc : man...@li... Objet : Re: [mantisbt-dev] MantisBT 1.2.13 planned change - add support for php5 native soap extension On Thu, Nov 15, 2012 at 10:17 PM, Gianluca Sforna <gi...@gm...> wrote: > On Thu, Nov 1, 2012 at 9:36 PM, Robert Munteanu > <rob...@gm...> wrote: >> 1. What is your opinion about the above plan? I'm interested in >> developers and users alike 2. If you use the SOAP API, are you able >> to use the php5 native soap extension if we remove support for using >> nusoap? > > Entreprisey distributions like RHEL/CentOS do not have access to 5.4 > in the repos (both 5 and 6 have access to a 5.3, either in the > official repository or in the EPEL one). > > If we want to play nice with those users we should keep the SOAP API > workable without requiring 5.4. > > Not that I'm advocating keeping nusoap around :) maybe there is a > compelling replacement implementation we can use instead with a nice > fallback to the native code when available? That's a very good point. The current status is - the SOAP API defaults to the soap extension if available, otherwise falls back to nusoap - the soap extension is available on CentOS 5.7 - PHP 5.1 and SLES 11 SP2 - PHP 5.2 I think this should be enough. Robert > > -- > Gianluca Sforna > > http://morefedora.blogspot.com > http://identi.ca/giallu - http://twitter.com/giallu > > ---------------------------------------------------------------------- > -------- Monitor your physical, virtual and cloud infrastructure from > a single web console. Get in-depth insight into apps, servers, > databases, vmware, SAP, cloud infrastructure, etc. Download 30-day > Free Trial. > Pricing starts from $795 for 25 servers or applications! > http://p.sf.net/sfu/zoho_dev2dev_nov > _______________________________________________ > mantisbt-dev mailing list > man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisbt-dev -- Sent from my (old) computer ------------------------------------------------------------------------------ Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov _______________________________________________ mantisbt-dev mailing list man...@li... https://lists.sourceforge.net/lists/listinfo/mantisbt-dev Post-scriptum La Poste Ce message est confidentiel. Sous reserve de tout accord conclu par ecrit entre vous et La Poste, son contenu ne represente en aucun cas un engagement de la part de La Poste. Toute publication, utilisation ou diffusion, meme partielle, doit etre autorisee prealablement. Si vous n'etes pas destinataire de ce message, merci d'en avertir immediatement l'expediteur. |