mantisconnect-users Mailing List for MantisConnect (Page 2)
Brought to you by:
vboctor
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
(5) |
Nov
|
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(4) |
Mar
|
Apr
(3) |
May
|
Jun
(3) |
Jul
(2) |
Aug
(1) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(1) |
2006 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
(4) |
Oct
(8) |
Nov
(6) |
Dec
|
2007 |
Jan
(11) |
Feb
(5) |
Mar
(2) |
Apr
(3) |
May
(1) |
Jun
(1) |
Jul
|
Aug
(9) |
Sep
|
Oct
(2) |
Nov
(4) |
Dec
(1) |
2008 |
Jan
(3) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(7) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2011 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2013 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Chris H. <chr...@gm...> - 2007-11-22 13:26:29
|
I'm trying out the new version of the connector and running into an issue. I am getting the following error: org.xml.sax.SAXException: Bad envelope tag: br Here is what I've done to try and troubleshoot this. Any other suggestions are welcome. I believe it is a problem with my setup of Mantis - but I can't seem to figure it out. Mantis version is: 1.0.6 Mantis Connect: version available from sf.net download area Eclipse 3.3 MylynMantis: Latest from sf.net update site PHP: 5.2.1 Few bits of info: - In a browser I can get to my Mantis installation and the Mantis Connect installation - When I go to add a new query in eclipse I get the exception: org.xml.sax.SAXException: Bad envelope tag: br - I also can not "validate" the Mantis connection during a repository setup - I can connect to the test Mantis install on sf.net - Is this a php version issue? Thanks, Chris.... |
From: Ruslan H. <ru...@gm...> - 2007-10-17 16:55:11
|
Hello, I wanted to use the MantisConnect Eclipse plugin, but I was not able to find a working, ready-to-use package. So I downloaded the sources from the SVN repository and build it following the instructions in this article -- http://www.two-toned.at/mc/BuildEclipsePlugin I was able to build it, but I ran into several issue when I try to use the plugin (I am using Mantis 1.1.0rc1, which has the MantisConnect WebServices API). It seems that the Mantis Web Services API returns "All Projects" as one of the projects with project ID of zero (0). Unfortunately, the API does not find a project with ID 0 and as a result returns an error. I was also getting null pointer exceptions in the code that looks for SubProjects. So, I made some changes, which fixed these two issues and I have attached the patch. Let me know if you have any questions, or if I should modify the patch and re-submit it. Thanks, >>rusi |
From: Victor B. <vb...@gm...> - 2007-10-04 06:31:32
|
Hi everyone, Are we there yet? Well almost! I've been getting a lot of questions lately about when 1.1.0 gold will be out. We are almost there, with the arrival of the rc1 release, we are now in feature freeze and have already branched the code. Hence, any new development will now go into 1.2.0 code base and the 1.1.0 branch will only get critical bug fixes and localization updates. This will allow us to quickly reach the proven stability status and hence be able to release 1.1.0 gold. I am optimistic that this can happen pretty quick since this rc1 came after four alpha releases that were deployed in a lot of production sites including our own official bug tracker. This release includes features like db2 support, XWiki integration and tagging. It also has security improvements and some localization updates. All users of Mantis 1.1.0aX are encouraged to upgrade. For Mantis instances that use non-latin characterset, there is no automated upgrade path for data already in the database. Hence, this wiki page guides you through the upgrade process. Please backup before you attempt to upgrade. It is also recommended to test the upgrade process on a backup instance rather than the live one. See blog for more details: http://www.mantisbt.org/blog/?p=11 Download: http://www.mantisbt.org/download.php Thanks for everyone who contributed to such great release! Regards, Victor. |
From: Victor B. <vb...@gm...> - 2007-08-29 14:21:09
|
Hi Sietse, I am not sure I exactly understand what you mean, but here is my attempt to answer your question: Assumptions: 1. You are developing an ASP.NET application. 2. Your ASP.NET application is going to be on the same server as Mantis database (or in a server that is accessible using ADO.NET). Given that ADO.NET's connection pooling, you shouldn't leave connection option, since the connection pooling will add closed connections to the pool and re-use them when you request them again. Given that MantisConnect is a webservice, the connection to it is a web service connection rather than a database connection. Hence, if you want to use it, then you will need to enhance the webservice to provide the extra functionality that you need. This really pays off if you are planning to host your application on a separate server from the Mantis database (without direct access to db). It is also better encapsulation. However, it is probably less work to access use a code generated to generate a C# Mantis data access layer and use it directly to add the extra functionality that you need. Hope this answers your question. On 8/29/07, Sietse van der Schoot <Sie...@ao...> wrote: > Hi, > > > > I'm working on a .NET C# invoice component for Mantis 1.1.0a4 using > MantisConnect 1.0.4a. > > I've added a new table and added some fields in the database to > mantis_bug_table and mantis_user_table. > > > > Is there some way that I can use the same connection that MantisConnect uses > to execute my queries, or do I have to create a separate databaseManager > class to make another connection to the database? > > Which is I think less favorable in terms of synchronization with the > database. > > > > My idea would be to create a DatabaseManager class which on startup makes a > connection to the database, and has similar functionality as > database_api.php like db_query(), db_fetch_array, and db_result. > > And that the connection is closed each time the page finished loading. > > > > Any advice would be very welcome, > > > > Best regards, > > > > > > Sietse > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > MantisConnect-users mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisconnect-users > > |
From: Sietse v. d. S. <Sie...@ao...> - 2007-08-29 08:03:33
|
Hi, =20 I'm working on a .NET C# invoice component for Mantis 1.1.0a4 using MantisConnect 1.0.4a. I've added a new table and added some fields in the database to mantis_bug_table and mantis_user_table. =20 Is there some way that I can use the same connection that MantisConnect uses to execute my queries, or do I have to create a separate databaseManager class to make another connection to the database? Which is I think less favorable in terms of synchronization with the database. =20 My idea would be to create a DatabaseManager class which on startup makes a connection to the database, and has similar functionality as database_api.php like db_query(), db_fetch_array, and db_result. And that the connection is closed each time the page finished loading.=20 =20 Any advice would be very welcome, =20 Best regards, =20 =20 Sietse =20 =20 =20 =20 =20 =20 =20 =20 |
From: Sietse v. <mij...@ho...> - 2007-08-24 09:26:30
|
I've already solved the problem. Creating a local webpage instead of using = a networkshare to make my webpage did the trick :)Tnx, Sietse> Date: Thu, 2= 3 Aug 2007 09:01:59 -0700> From: vb...@gm...> To: mantisconnect-users= @lists.sourceforge.net> Subject: Re: [MantisConnect] [MantisConnect 1.0a5] = ASP.NET C# problem. Need help!> > Checkout the following article, it may he= lp you solve this issue:> http://blogs.msdn.com/shawnfa/archive/2005/02/04/= 367390.aspx> > On 8/23/07, Sietse vdS <mij...@ho...> wrote:> >> >= This is a cross post with the Mantis Help forum.> > I think this is a more= suitable place for this.> >> > To get adjusted to working with MantisConne= ct1.0.5a I am working at porting> > MantisSubmit to ASP.NET in C#.> > I use= Microsoft Visual Studio 2005, Mantis and MantisConnect are running at> > a= IIS 6.0 server.> >> > I run into the following problem:> > When this line = is executed.> >> > [code]> > session =3D new Session(mantisConnectUrl, = mantisUserName, mantisPassword,> > nc);> > [/code]> >> > I get the followin= g error:> >> > Description: The application attempted to perform an operati= on not allowed> > by the security policy. To grant this application the re= quired permission> > please contact your system administrator or change the= application's trust> > level in the configuration file.> > Exception Detai= ls: System.Security.SecurityException: That> > assembly does not allow part= ially trusted callers.> >> > I included Futureware.MantisConnect.dll as a r= eference.> > And http://192.168.0.32/mantisdev/mc/mantisconnect.php?wsdl> >= as a webservice> >> > [code]> > using System.Collections;> > using System.= Drawing;> > using System.ComponentModel;> > using System.Web;> > using Syst= em.Web.Security;> > using System.Web.UI;> > using System.Web.UI.WebControls= ;> > using System.Web.UI.WebControls.WebParts;> > using System.Web.UI.HtmlC= ontrols;> > using System.Net;> >> > using Futureware.MantisConnect;> >> > p= ublic partial class _Default : System.Web.UI.Page> > {> > protected voi= d Page_Load(object sender, EventArgs e)> > {> > try> > = {> > bool populating =3D false;> > NetworkCredentia= l nc =3D null;> > Session session =3D null;> >> > s= tring basicHTTPAuthUserName =3D "";> > string basicHTTPAuthPass= word =3D "";> > if ((basicHTTPAuthUserName !=3D null) &&> > (ba= sicHTTPAuthUserName.Length > 0) && (basicHTTPAuthPassword !=3D null))> > = {> > nc =3D new> > NetworkCredential(basicHTTPAut= hUserName,> > basicHTTPAuthPassword);> > }> > strin= g mantisConnectUrl =3D> > "http://192.168.0.32/mantisdev/mc/mantisconnect.p= hp";> > string mantisUserName =3D "administrator";> > = string mantisPassword =3D "ao-ict";> >> > session =3D new Se= ssion(mantisConnectUrl, mantisUserName,> > mantisPassword, nc);> > // = session.Connect();> >> > populating =3D true;> > // = ddlCustomer.DataSource =3D> > session.Request.UserGetAccesibleProjects();= > > populating =3D false;> > }> > catch (Except= ion ex)> > {> > Response.Write(ex.Message + " Webservic= e Error ");> > }> > }> > }> > [/code]> >> > Best regards,> >> >= > > Sietse> >> >> > ________________________________> > In 2 tellen een web= pagina voor al je fotos makkelijk en gratis met Windows> > Live Spaces> > -= ------------------------------------------------------------------------> >= This SF.net email is sponsored by: Splunk Inc.> > Still grepping through l= og files to find problems? Stop.> > Now Search log events and configuratio= n files using AJAX and a browser.> > Download your FREE copy of Splunk now = >> http://get.splunk.com/> > _____________________________________________= __> > MantisConnect-users mailing list> > Man...@li...urcef= orge.net> > https://lists.sourceforge.net/lists/listinfo/mantisconnect-user= s> >> >> > ----------------------------------------------------------------= ---------> This SF.net email is sponsored by: Splunk Inc.> Still grepping t= hrough log files to find problems? Stop.> Now Search log events and config= uration files using AJAX and a browser.> Download your FREE copy of Splunk = now >> http://get.splunk.com/> ___________________________________________= ____> MantisConnect-users mailing list> Man...@li...urcefor= ge.net> https://lists.sourceforge.net/lists/listinfo/mantisconnect-users _________________________________________________________________ Jouw nieuws: wereldnieuws! Beleef 't op MSN.nl http://reporter.msn.nl/= |
From: Sietse v. <mij...@ho...> - 2007-08-24 08:51:53
|
Mr. Boctor, Thanks for your quick reply!I've read that particular article b= efore, and it didn't provided the right answer for this problem. I added th= e line [assembly: AllowPartiallyTrustedCallers][assembly: AssemblyKeyFile("= Futureware.MantisConnect.dll")]On the servermachine i gave fullrights to th= e dll.caspol -m -ag 1.2 -url http://192.168.0.32/csharp/test/bin/FutureWare= .MantisConnect.dll FullTrustFirst i get the error file can't be found (I re= ferenced my project to this file, and to the mc webservice as well) When i = comment out the AssemblyKeyFile line, i get the same error i got before:[co= de][SecurityException: That assembly does not allow partially trusted calle= rs.] _Default.Page_Load(Object sender, EventArgs e) +0 System.Web.Util.= CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs= e) +31 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object se= nder, EventArgs e) +68 System.Web.UI.Control.OnLoad(EventArgs e) +88 Sy= stem.Web.UI.Control.LoadRecursive() +74 System.Web.UI.Page.ProcessRequest= Main(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsync= Point) +5914 System.Web.UI.Page.ProcessRequest(Boolean includeStagesBefor= eAsyncPoint, Boolean includeStagesAfterAsyncPoint) +188 System.Web.UI.Pag= e.ProcessRequest() +112 System.Web.UI.Page.ProcessRequestWithNoAssert(Htt= pContext context) +37 System.Web.UI.Page.ProcessRequest(HttpContext conte= xt) +135 ASP.default_aspx.ProcessRequest(HttpContext context) +46 Syste= m.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Ex= ecute() +401 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, = Boolean& completedSynchronously) +117[/code]Do you have an idea about how i= can enable APTC for references i've added to my project? Or could there be= something else i'm overlooking at this stage.Thanks in advance.With best r= egards,Sietse van der Schoot> Date: Thu, 23 Aug 2007 09:01:59 -0700> From: = vb...@gm...> To: man...@li...> Subject: = Re: [MantisConnect] [MantisConnect 1.0a5] ASP.NET C# problem. Need help!> >= Checkout the following article, it may help you solve this issue:> http://= blogs.msdn.com/shawnfa/archive/2005/02/04/367390.aspx> > On 8/23/07, Sietse= vdS <mij...@ho...> wrote:> >> > This is a cross post with the Ma= ntis Help forum.> > I think this is a more suitable place for this.> >> > T= o get adjusted to working with MantisConnect1.0.5a I am working at porting>= > MantisSubmit to ASP.NET in C#.> > I use Microsoft Visual Studio 2005, Ma= ntis and MantisConnect are running at> > a IIS 6.0 server.> >> > I run into= the following problem:> > When this line is executed.> >> > [code]> > = session =3D new Session(mantisConnectUrl, mantisUserName, mantisPassword,> = > nc);> > [/code]> >> > I get the following error:> >> > Description: The a= pplication attempted to perform an operation not allowed> > by the security= policy. To grant this application the required permission> > please conta= ct your system administrator or change the application's trust> > level in = the configuration file.> > Exception Details: System.Security.SecurityExcep= tion: That> > assembly does not allow partially trusted callers.> >> > I in= cluded Futureware.MantisConnect.dll as a reference.> > And http://192.168.0= .32/mantisdev/mc/mantisconnect.php?wsdl> > as a webservice> >> > [code]> > = using System.Collections;> > using System.Drawing;> > using System.Componen= tModel;> > using System.Web;> > using System.Web.Security;> > using System.= Web.UI;> > using System.Web.UI.WebControls;> > using System.Web.UI.WebContr= ols.WebParts;> > using System.Web.UI.HtmlControls;> > using System.Net;> >>= > using Futureware.MantisConnect;> >> > public partial class _Default : Sy= stem.Web.UI.Page> > {> > protected void Page_Load(object sender, EventA= rgs e)> > {> > try> > {> > bool populating = =3D false;> > NetworkCredential nc =3D null;> > Ses= sion session =3D null;> >> > string basicHTTPAuthUserName =3D "= ";> > string basicHTTPAuthPassword =3D "";> > if ((= basicHTTPAuthUserName !=3D null) &&> > (basicHTTPAuthUserName.Length > 0) &= & (basicHTTPAuthPassword !=3D null))> > {> > nc= =3D new> > NetworkCredential(basicHTTPAuthUserName,> > basicHTTPAuthPasswo= rd);> > }> > string mantisConnectUrl =3D> > "http:/= /192.168.0.32/mantisdev/mc/mantisconnect.php";> > string mantis= UserName =3D "administrator";> > string mantisPassword =3D "ao-= ict";> >> > session =3D new Session(mantisConnectUrl, mantisUse= rName,> > mantisPassword, nc);> > // session.Connect();> >> > = populating =3D true;> > // ddlCustomer.DataSource =3D> > s= ession.Request.UserGetAccesibleProjects();> > populating =3D fa= lse;> > }> > catch (Exception ex)> > {> > = Response.Write(ex.Message + " Webservice Error ");> > }> > }= > > }> > [/code]> >> > Best regards,> >> >> > Sietse> >> >> > _____________= ___________________> > In 2 tellen een webpagina voor al je fotos makkelijk= en gratis met Windows> > Live Spaces> > ----------------------------------= ---------------------------------------> > This SF.net email is sponsored b= y: Splunk Inc.> > Still grepping through log files to find problems? Stop.= > > Now Search log events and configuration files using AJAX and a browser.= > > Download your FREE copy of Splunk now >> http://get.splunk.com/> > ___= ____________________________________________> > MantisConnect-users mailing= list> > Man...@li...> > https://lists.sourcef= orge.net/lists/listinfo/mantisconnect-users> >> >> > ----------------------= ---------------------------------------------------> This SF.net email is s= ponsored by: Splunk Inc.> Still grepping through log files to find problems= ? Stop.> Now Search log events and configuration files using AJAX and a br= owser.> Download your FREE copy of Splunk now >> http://get.splunk.com/> _= ______________________________________________> MantisConnect-users mailing= list> Man...@li...> https://lists.sourceforge= .net/lists/listinfo/mantisconnect-users _________________________________________________________________ Jouw nieuws: wereldnieuws! Beleef 't op MSN.nl http://reporter.msn.nl/= |
From: Victor B. <vb...@gm...> - 2007-08-23 16:02:09
|
Checkout the following article, it may help you solve this issue: http://blogs.msdn.com/shawnfa/archive/2005/02/04/367390.aspx On 8/23/07, Sietse vdS <mij...@ho...> wrote: > > This is a cross post with the Mantis Help forum. > I think this is a more suitable place for this. > > To get adjusted to working with MantisConnect1.0.5a I am working at porting > MantisSubmit to ASP.NET in C#. > I use Microsoft Visual Studio 2005, Mantis and MantisConnect are running at > a IIS 6.0 server. > > I run into the following problem: > When this line is executed. > > [code] > session = new Session(mantisConnectUrl, mantisUserName, mantisPassword, > nc); > [/code] > > I get the following error: > > Description: The application attempted to perform an operation not allowed > by the security policy. To grant this application the required permission > please contact your system administrator or change the application's trust > level in the configuration file. > Exception Details: System.Security.SecurityException: That > assembly does not allow partially trusted callers. > > I included Futureware.MantisConnect.dll as a reference. > And http://192.168.0.32/mantisdev/mc/mantisconnect.php?wsdl > as a webservice > > [code] > using System.Collections; > using System.Drawing; > using System.ComponentModel; > using System.Web; > using System.Web.Security; > using System.Web.UI; > using System.Web.UI.WebControls; > using System.Web.UI.WebControls.WebParts; > using System.Web.UI.HtmlControls; > using System.Net; > > using Futureware.MantisConnect; > > public partial class _Default : System.Web.UI.Page > { > protected void Page_Load(object sender, EventArgs e) > { > try > { > bool populating = false; > NetworkCredential nc = null; > Session session = null; > > string basicHTTPAuthUserName = ""; > string basicHTTPAuthPassword = ""; > if ((basicHTTPAuthUserName != null) && > (basicHTTPAuthUserName.Length > 0) && (basicHTTPAuthPassword != null)) > { > nc = new > NetworkCredential(basicHTTPAuthUserName, > basicHTTPAuthPassword); > } > string mantisConnectUrl = > "http://192.168.0.32/mantisdev/mc/mantisconnect.php"; > string mantisUserName = "administrator"; > string mantisPassword = "ao-ict"; > > session = new Session(mantisConnectUrl, mantisUserName, > mantisPassword, nc); > // session.Connect(); > > populating = true; > // ddlCustomer.DataSource = > session.Request.UserGetAccesibleProjects(); > populating = false; > } > catch (Exception ex) > { > Response.Write(ex.Message + " Webservice Error "); > } > } > } > [/code] > > Best regards, > > > Sietse > > > ________________________________ > In 2 tellen een webpagina voor al je fotos makkelijk en gratis met Windows > Live Spaces > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > MantisConnect-users mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisconnect-users > > |
From: Sietse v. <mij...@ho...> - 2007-08-23 13:23:34
|
This is a cross post with the Mantis Help forum. I think this is a more sui= table place for this. To get adjusted to working with MantisConnect1.0.5a = I am working at porting MantisSubmit to ASP.NET in C#.I use Microsoft Visua= l Studio 2005, Mantis and MantisConnect are running at a IIS 6.0 server.I r= un into the following problem:When this line is executed.[code] session = =3D new Session(mantisConnectUrl, mantisUserName, mantisPassword, nc);[/cod= e]I get the following error:Description: The application attempted to perfo= rm an operation not allowed by the security policy. To grant this applicat= ion the required permission please contact your system administrator or cha= nge the application's trust level in the configuration file. Exception Deta= ils: System.Security.SecurityException: That assembly does not allow partia= lly trusted callers.I included Futureware.MantisConnect.dll as a reference.= And http://192.168.0.32/mantisdev/mc/mantisconnect.php?wsdl as a webservice= [code]using System.Collections;using System.Drawing;using System.ComponentM= odel;using System.Web;using System.Web.Security;using System.Web.UI;using S= ystem.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using Sys= tem.Web.UI.HtmlControls;using System.Net;using Futureware.MantisConnect;pub= lic partial class _Default : System.Web.UI.Page { protected void Page_Lo= ad(object sender, EventArgs e) { try { bool pop= ulating =3D false; NetworkCredential nc =3D null; Ses= sion session =3D null; string basicHTTPAuthUserName = =3D ""; string basicHTTPAuthPassword =3D ""; if ((bas= icHTTPAuthUserName !=3D null) && (basicHTTPAuthUserName.Length > 0) && (bas= icHTTPAuthPassword !=3D null)) { nc =3D new Netw= orkCredential(basicHTTPAuthUserName, basicHTTPAuthPassword); } = string mantisConnectUrl =3D "http://192.168.0.32/mantisdev/mc/man= tisconnect.php"; string mantisUserName =3D "administrator"; = string mantisPassword =3D "ao-ict"; session = =3D new Session(mantisConnectUrl, mantisUserName, mantisPassword, nc);// = session.Connect(); populating =3D true;// ddlCus= tomer.DataSource =3D session.Request.UserGetAccesibleProjects(); = populating =3D false; } catch (Exception ex) { = Response.Write(ex.Message + " Webservice Error "); } }}[/cod= e]Best regards, Sietse=20 _________________________________________________________________ Jouw nieuws: wereldnieuws! Beleef 't op MSN.nl http://reporter.msn.nl/= |
From: Sietse v. d. S. <Sie...@ao...> - 2007-08-23 13:05:36
|
This is a cross post with the Mantis Help forum.=20 I think this is a more suitable place for this. =20 =20 =20 To get adjusted to working with MantisConnect1.0.5a I am working at porting MantisSubmit to ASP.NET in C#. I use Microsoft Visual Studio 2005, Mantis and MantisConnect are running at a IIS 6.0 server. =20 I run into the following problem: When this line is executed. =20 [code] session =3D new Session(mantisConnectUrl, mantisUserName, = mantisPassword, nc); [/code] =20 I get the following error: =20 Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.=20 Exception Details: System.Security.SecurityException: That assembly does not allow partially trusted callers. =20 I included Futureware.MantisConnect.dll as a reference. And http://192.168.0.32/mantisdev/mc/mantisconnect.php?wsdl as a webservice =20 [code] =20 using System.Collections; using System.Drawing; using System.ComponentModel; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Net; =20 using Futureware.MantisConnect; =20 public partial class _Default : System.Web.UI.Page=20 { protected void Page_Load(object sender, EventArgs e) { try { bool populating =3D false; NetworkCredential nc =3D null; Session session =3D null; =20 string basicHTTPAuthUserName =3D ""; string basicHTTPAuthPassword =3D ""; if ((basicHTTPAuthUserName !=3D null) && (basicHTTPAuthUserName.Length > 0) && (basicHTTPAuthPassword !=3D null)) = { nc =3D new NetworkCredential(basicHTTPAuthUserName, basicHTTPAuthPassword); } string mantisConnectUrl =3D "http://192.168.0.32/mantisdev/mc/mantisconnect.php"; string mantisUserName =3D "administrator"; string mantisPassword =3D "ao-ict"; =20 session =3D new Session(mantisConnectUrl, mantisUserName, mantisPassword, nc); // session.Connect(); =20 populating =3D true; // ddlCustomer.DataSource =3D session.Request.UserGetAccesibleProjects(); populating =3D false; =20 } catch (Exception ex) { Response.Write(ex.Message + " Webservice Error "); } } } [/code] =20 Best regards, =20 Sietse=20 =20 =20 =20 =20 |
From: Udo R. <udo...@be...> - 2007-08-03 14:45:49
|
hi, as said in my last mail we are currently evaluating MantisConnect. Now - unfortunately - I find the license issue quite unclear, at least for the webservice part. There are 2 sources of information: 1. the Website [1] ---------- 3 licenses are defined, 2 commercial types and one "free for open source issue tracking only"=20 2. the Code itself: ---------- the file headers=20 --------CUT--------- # This program is distributed under dual licensing. These include # GPL and a commercial licenses. Victor Boctor reserves the right to # change the license of future releases. # See docs/ folder for more details --------CUT--------- The mentioned docs/ folder does not exist, but a doc/ folder instead. And the LICENSE file in the doc/ folder contains the GPL license ... Being no license expert, I would like to know what license is applicable now ... And as far as I understand the GPL, it allows me to run the the software governed by it for any purpose ... Please enlighten me :-) [1] http://www.futureware.biz/mantisconnect/license.php --=20 Udo Rader bestsolution.at EDV Systemhaus GmbH http://www.bestsolution.at |
From: Udo R. <udo...@be...> - 2007-08-03 13:29:57
|
hi, I am currenty trying to get my feet wet with mylar & mantisconnect and have found an issue regarding PHP5. What I have done so far is to download the SVN snapshot as mentioned on the mylyn-mantis website [1] and when trying the mantis connect url in the browser, this shows up: Fatal error: Cannot redeclare class soapclient in /usr/share/mantis/www/mc/nusoap/nusoap.php on line 7240 Now this looks like a very familiar PHP5 thing and indeed class soapclient is defined twice (once it is sourced in and once it is defined in the file itself). I've also checked out the latest SVN version and the same applies here. What I have done for now is to rename the class in nusoap.php and after that I can call mantisconnect.php in a browser, but I have no idea if that causes any sideffects :-) [1] http://mylyn-mantis.wiki.sourceforge.net/Server+Installation --=20 Udo Rader bestsolution.at EDV Systemhaus GmbH http://www.bestsolution.at |
From: Andy D. <Din...@Si...> - 2007-06-29 02:20:08
|
installing the connecter I get: C:\Dev\MantisConnect-1.0a5\everything.build(3,3): Target framework could not be changed. "net-1.1" is not a valid framework identifier. Valid values are: net-2.0. Total time: 0.1 seconds using 2.0 I get: C:\Dev\MantisConnect-1.0a5>nant all NAnt 0.85 (Build 0.85.2478.0; release; 14/10/2006) Copyright (C) 2001-2006 Gerry Shaw http://nant.sourceforge.net Buildfile: file:///C:/Dev/MantisConnect-1.0a5/everything.build Target framework: Microsoft .NET Framework 2.0 Target(s) specified: all Built-in property 'nant.platform.name' is deprecated. Use the platform::get-name() function instead. [echo] Using 'net-2.0' framework on 'win32' platform. all: debug: build-flavour: [copy] Copying 1 file to 'C:\Dev\MantisConnect-1.0a5\mantisconnect.snk'. [copy] Copying 1 file to 'C:\Dev\MantisConnect-1.0a5\mantisfilters\mantisfilters.exe.config'. [copy] Copying 1 file to 'C:\Dev\MantisConnect-1.0a5\mantisnotify\mantisnotify.exe.config'. [copy] Copying 1 file to 'C:\Dev\MantisConnect-1.0a5\mantissubmit\mantissubmit.exe.config'. [solution] Starting solution build. [solution] Building 'MantisConnect' [Debug] ... [solution] mantisconnect\AssemblyInfo.cs(70,12): error CS1699: Warning as Error: Use command line option '/keyfile' or appropriate project settings instead of 'AssemblyKeyFile' [solution] error CS1606: Assembly signing failed; output may not be signed -- The system cannot find the file specified. [solution] Build failed. [solution] Project 'MantisConnect' failed! [solution] Continuing build with non-dependent projects. [solution] [solution] Solution failed to build! Failed projects were: [solution] - MantisConnect BUILD FAILED - 6 non-fatal error(s), 1 warning(s) C:\Dev\MantisConnect-1.0a5\everything.build(25,4): Project build failed. Total time: 4.7 seconds. C:\Dev\MantisConnect-1.0a5> I entered info about this into the forum and bug tracker a couple of weeks ago and have gotten no response. anyone have a clue what the issue is? ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ WARNING: This email and any attachments may be confidential and/or privileged. They are intended for the addressee only and are not to be read, used, copied or disseminated by anyone receiving them in error. If you are not the intended recipient, please notify the sender by return email and delete this message and any attachments. The views expressed in this email are those of the sender and do not necessarily reflect the official views of Landcare Research. SirTrack http://www.sirtrack.com ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
From: Victor B. <vb...@gm...> - 2007-05-08 06:49:59
|
Hi Everyone, This alpha release includes about 50 enhancements and bug fixes. One of the major highlights of this release is the time tracking feature. There is also enhanced management for custom fields, support for URL to express filter criteria, and many others. Similar to 1.1.0a2, the upgrade path to non-English installations is not yet implemented, hence, this alpha release SHOULD ONLY BE USED FOR ENGLISH installations. This release implements database schema changes and hence the install script will need to be run. Access Mantis from your cell phone / PDA: http://www.futureware.biz/mantiswap Access Mantis via Webservice from Java, .NET, Cocoa, and others: http://www.futureware.biz/mantisconnect Forums: http://www.mantisbt.org/forums/ Wiki: http://www.mantisbt.org/wiki/ Bug Tracker: http://www.mantisbt.org/bugs/ Mantis Demo: http://www.futureware.biz/mantisdemo/ Following is the changelog for this release: - 0007794: [security] Port 7772: Email notifications bypass security on custom fields (vboctor) - 0007514: [administration] wrong variable used in user_api.php (grangeway) - 0007545: [administration] config values are not escaped (zakman) - 0007909: [administration] Implement auto-complete for Platform, OS and OS Version (vboctor) - 0007468: [bugtracker] Mantis displays one bug 10 times in My View 'monitored by me' list (vboctor) - 0007631: [bugtracker] Notes appear in the wrong order (vboctor) - 0007801: [bugtracker] Category field should be empty and required (vbocto= r) - 0007816: [bugtracker] Excel export needs htmlspecialchars() on description, steps_to_reproduce, additional_info (vboctor) - 0007901: [bugtracker] Implement the "Add Note" group action (vboctor) - 0007914: [bugtracker] Can't download attachments with IE over SSL (grange= way) - 0007925: [bugtracker] Access level is displayed twice in "login info" if realname is not set (grangeway) - 0007131: [change log] Skip Blank Changelogs (grangeway) - 0007662: [change log] Support ability to set fixed in version for multiple issues (vboctor) - 0007823: [change log] APPLICATION ERROR 1100 Issue 0 not found in change_log page with access-level 'reporter' (zakman) - 0007658: [custom fields] Adding the option to manage the projects custum field will be added to. (vboctor) - 0007875: [custom fields] Port 7774: custom fields not stored correctly in bug history (vboctor) - 0006830: [customization] custom_function_override_issue_delete_notify and custom_function_override_issue_update_notify are not being triggered (vboctor) - 0007900: [customization] Provide an easy mechanism to extend custom group actions (vboctor) - 0007758: [db mssql] Error 0000401 when trying to view summary_page.php (grangeway) - 0007817: [db postgresql] text search with PostgreSQL is always case sensitive (vboctor) - 0007521: [email] wrong Message-ID when "Mail Queuing" is used. (vboctor) - 0007546: [email] patch allowing real name in From: header (zakman) - 0007667: [feature] Use $_GET parameters instead of $_POST for searches (vboctor) - 0006244: [filters] Filter table has a little displacement in column (zakm= an) - 0007008: [filters] "current project" in advanced filters always displays empty list (vboctor) - 0007557: [filters] Dynamic filter selection (XMLHTTPRequest) broken when using IE7 (vboctor) - 0007613: [filters] Advanced filters are not implemented until moving back to simple filters. (vboctor) - 0007908: [filters] Support filtering by Platform, OS, OS Version (vboctor= ) - 0007770: [graphs] Antialias disable (grangeway) - 0007636: [installation] PHP requirements incorrect (vboctor) - 0007645: [localization] [de] Translation for new Roadmap feature (achumak= ov) - 0007648: [localization] [de] Translation change from "Wirklicher Name" to "Vollst=E4ndiger Name" (ryandesign) - 0007677: [localization] [ru] Russian language translation patch (achumako= v) - 0007683: [localization] [it] Little fixes and update of strings_italian.txt (achumakov) - 0007685: [localization] [de] Localization strings for target release (achumakov) - 0007689: [localization] Little fixes and update of strings_italian.txt (achumakov) - 0007921: [localization] Add Greek UTF-8 translation (vboctor) - 0007760: [other] Missing text.gif file (vboctor) - 0007811: [other] Reporter name is not crossed out for disabled users on update pages (vboctor) - 0007813: [other] logging_api.php does not need the require_once call (zak= man) - 0007885: [other] System logging constants (vboctor) - 0007653: [relationships] Html tags in issue title are not escaped when shown in "relationship" area (vboctor) - 0007650: [roadmap] "Issues done" in roadmap should be included for each release, not for each project. (vboctor) - 0007651: [roadmap] Support ability to set target release for multiple issues (vboctor) - 0007682: [roadmap] Add progress bar to Roadmap (vboctor) - 0007686: [roadmap] Update "target version" in all entries field after changing the target version strings (vboctor) - 0007680: [signup] Successful Sign up should set login count to 1 (vboctor= ) - 0007819: [sql] It works very slow (function diskfile_is_name_unique) (vbo= ctor) - 0004428: [time tracking] Time Tracking (davidnewcomb) - 0007936: [time tracking] Unnecessary core/bugnote_stats_api.php (grangewa= y) - 0007663: [upgrade] Add support for unattended upgrades (vboctor) Regards, Victor. |
From: jason w. <war...@gm...> - 2007-04-18 13:07:40
|
Hi. MantisConnect is appearing in English from Eclipse. Does MantisConnect support other languages? Thanks |
From: Victor B. <vb...@gm...> - 2007-04-17 16:19:50
|
Hi Gabriel, Following is the license level that you need: Standard - This license allows the use of MantisConnect client libraries and an installation of the web service on a single website. This license doesn't allow distributing MantisConnect outside the licensed company. See the license page for more details: http://www.futureware.biz/mantisconnect/license.php On 3/27/07, Gabriel Boie <Gab...@sd...> wrote: > Victor, > I am not sure if I correctly understand your licensing levels. > I am working for a School District in Tampa, FL. I implemented Mantis > and we are getting ready to go live. > We are a non-for-profit organization and interested to use Mantis > Connect with Anonymantis (HTML form for anonymous reporting). > There is a single Mantis instance (running on Fedora 6). Do we qualify > for the free license? > Thank you for all your hard work on Mantis. > Regards, > Gabriel > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > MantisConnect-users mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisconnect-users > |
From: Victor B. <vb...@gm...> - 2007-04-05 03:23:00
|
Hi all, This is a maintenance release that includes 3 security fixes, a new logo, and IE7 compatibility fix. All users of previous versions of Mantis (0.x.x and 1.0.x) are encouraged to upgrade to Mantis 1.0.7. - 0007743: [security] Port: CVE-2006-6574 (vboctor) - 0007772: [security] email notifications bypass security on custom fields (vboctor) - 0007784: [security] XSS vulnerabilities (vboctor) - 0007774: [custom fields] custom fields not stored correctly in bug history (vboctor) - 0007783: [filters] Port: Dynamic filter selection (XMLHTTPRequest) broken when using IE7 (vboctor) Access Mantis from your cell phone / PDA: http://www.futureware.biz/mantiswap Access Mantis via Webservice from Java, .NET, Cocoa, and others: http://www.futureware.biz/mantisconnect Forums: http://www.mantisbt.org/forums/ Wiki: http://www.mantisbt.org/wiki/ Bug Tracker: http://www.mantisbt.org/bugs/ Regards, Victor |
From: HamburgBerlin <joh...@ha...> - 2007-03-27 12:55:06
|
=20 Dear Mr. Peter Lanser, =20 I successfully use the Mantis BugTracker for some time. Now I wanted to develop an Java interface for a conclusion project at school for this. = Since I discovered those already finished interface =84MantisConnect =93, I = would like to use gladly these. Momentarily I use the version 1.0a5 of the MantisConnect. In the Internet I read that there is already the version = to 1.0a6 and 1.0a6.1. =20 There I many problems with the version 1.0a5 have and it me not possible = am a Issue into the tracker to be registered, would like I you to ask to = give me a reference where I get the two versions 1.0.a6 or 1.0a6.1. - I can already pick projects out. =20 Yours sincerely=20 Johannes Kleber=20 =20 =20 =20 original german text =20 =20 Sehr geehrter Herr Peter Lanser, =20 seit einiger Zeit benutze ich erfolgreich den Mantis-BugTracker. Nun = wollte ich f=FCr ein Abschlussprojekt in der Schule eine Java-Schnittstelle = hierf=FCr aufbauen. Da ich die bereits fertige Schnittstelle =84MantisConnect=93 = entdeckt habe, m=F6chte ich gerne diese benutzen. Momentan benutze ich die = Version 1.0a5 vom MantisConnect. Im Internet habe ich gelesen, dass es schon die Version 1.0a6 und 1.0a6.1 gibt. =20 Da ich viele Probleme mit der Version 1.0a5 habe und es mir nicht = m=F6glich ist einen Issue in den Tracker einzutragen, m=F6chte ich Sie bitten, mir = einen Hinweis zu geben, wo ich die beiden Versionen 1.0.a6 oder 1.0a6.1 = bekomme. =96 Projekte kann ich bereits auslesen. =20 Mit freundlichen Gr=FC=DFen =20 Johannes Kleber |
From: Gabriel B. <Gab...@sd...> - 2007-03-27 12:30:18
|
Victor, I am not sure if I correctly understand your licensing levels. I am working for a School District in Tampa, FL. I implemented Mantis and we are getting ready to go live. We are a non-for-profit organization and interested to use Mantis Connect with Anonymantis (HTML form for anonymous reporting). There is a single Mantis instance (running on Fedora 6). Do we qualify for the free license? Thank you for all your hard work on Mantis. Regards, Gabriel |
From: Victor B. <vb...@gm...> - 2007-02-27 18:03:51
|
Chris, MantisConnect now uses SVN rather than CVS. On 2/27/07, Chris Hane <chr...@gm...> wrote: > Peter, > > Great to hear. I'll watch this issue and cvs for the changes. > > Chris.... > > Lanser Peter wrote: > > Hi, > > > > I submitted an issue for this > > (http://www.futureware.biz/mantis/view.php?id=308). I'm already working on > > it and will commit my changes ASAP. > > > > Regards, > > Peter > > > >> Is it possible to get sub projects using the web service? If not, any > >> pointers and where I need to look in Mantis to add this? > >> > >> When I am executing mc_projects_get_user_accessible I am only getting > >> back the root projects and not any of its children. > >> > >> Thanks, > >> Chris.... > >> > >> ------------------------------------------------------------------------- > >> Take Surveys. Earn Cash. Influence the Future of IT > >> Join SourceForge.net's Techsay panel and you'll get the chance to share > >> your opinions on IT & business topics through brief surveys-and earn > >> cash > >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > >> _______________________________________________ > >> MantisConnect-users mailing list > >> Man...@li... > >> https://lists.sourceforge.net/lists/listinfo/mantisconnect-users > > > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > MantisConnect-users mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisconnect-users > |
From: Chris H. <chr...@gm...> - 2007-02-27 15:10:33
|
Peter, Great to hear. I'll watch this issue and cvs for the changes. Chris.... Lanser Peter wrote: > Hi, > > I submitted an issue for this > (http://www.futureware.biz/mantis/view.php?id=308). I'm already working on > it and will commit my changes ASAP. > > Regards, > Peter > >> Is it possible to get sub projects using the web service? If not, any >> pointers and where I need to look in Mantis to add this? >> >> When I am executing mc_projects_get_user_accessible I am only getting >> back the root projects and not any of its children. >> >> Thanks, >> Chris.... >> >> ------------------------------------------------------------------------- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your opinions on IT & business topics through brief surveys-and earn >> cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> MantisConnect-users mailing list >> Man...@li... >> https://lists.sourceforge.net/lists/listinfo/mantisconnect-users > > |
From: Lanser P. <pe...@tw...> - 2007-02-27 09:29:48
|
Hi, I submitted an issue for this (http://www.futureware.biz/mantis/view.php?id=308). I'm already working on it and will commit my changes ASAP. Regards, Peter > Is it possible to get sub projects using the web service? If not, any > pointers and where I need to look in Mantis to add this? > > When I am executing mc_projects_get_user_accessible I am only getting > back the root projects and not any of its children. > > Thanks, > Chris.... > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your opinions on IT & business topics through brief surveys-and earn > cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > MantisConnect-users mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisconnect-users -- DI (FH) Peter Lanser Stockhofstrasse 31/9b A - 4020 Linz Tel.: 0 650 / 41 25 038 |
From: Chris H. <chr...@gm...> - 2007-02-27 04:39:06
|
Is it possible to get sub projects using the web service? If not, any pointers and where I need to look in Mantis to add this? When I am executing mc_projects_get_user_accessible I am only getting back the root projects and not any of its children. Thanks, Chris.... |
From: Nils M. <nm...@bu...> - 2007-02-01 18:04:44
|
Hi, thanks for the advice concerning the php-settings, I managed to get mc to w= ork on my server (don't know how the setting could be so odd ;) I was working with mantisconnect the whole day and it worked fine until now= : I'm accessing the AttachementData() method: I need to read out the filename= s und download_urls from the attached files within an issue. My c# code: AttachementData[] atmdata =3D bitissuedata.attachment; (bitissuedata is an instance of IssueData which calls the mc_issue_get(user= name, password, issue_id)-webservice-method) It compiles, but the length of the atmdata array is zero and it doesn't hol= d any data (null). Am I doing anything wrong? |
From: Victor B. <vb...@gm...> - 2007-01-31 16:51:24
|
Are you able to change PHP settings so that it doesn't run in safe mode? If you can (like this is not controlled by your hosting company), then this might fix the problem. I don't think MantisConnect was tested on PHP installations running in Safe mode. I believe it is something that might be worth logging an issue for in the bug tracker: http://www.futureware.biz/mantis On 1/31/07, Nils Malachewitz <nm...@bu...> wrote: > > > > > Thanks for the quick answer. The debugger pops up with the error message > within the "public void ConfigGet (string config, out string str)" method > inside the Request.cs source-file. > > > > The full error message is: > > > > Client found response content type of 'text/html', but expected 'text/xml'. > > The request failed with the error message: > > -- > > <br /> > > <b>Warning</b>: main(): SAFE MODE Restriction in effect. The script whose > uid is 10004 is not allowed to access > /var/www/vhosts/xxx.de/httpdocs/mantis/core/php_api.php > owned by uid 0 in > <b>/var/www/vhosts/xxx.de/httpdocs/mantis/core.php</b> on > line <b>21</b><br /> > > <br /> > > <b>Warning</b>: > main(/var/www/vhosts/xxx.de/httpdocs/mantis/core/php_api.php): > failed to open stream: Success in > <b>/var/www/vhosts/xxx.de/httpdocs/mantis/core.php</b> on > line <b>21</b><br /> > > <br /> > > <b>Fatal error</b>: main(): Failed opening required > '/var/www/vhosts/xxx.de/httpdocs/mantis/core/php_api.php' > (include_path='.:') in > <b>/var/www/vhosts/xxx.de/httpdocs/mantis/core.php</b> on > line <b>21</b><br /> > > > > --. > > > > It seemed to me as it would be a file access restriction which is caused due > to insufficient user access rights, but I don't know how to change them to > allow the script access to the .php files. > > Can you make a sense of it? > > > > ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- > > > Typically this is caused by the PHP web service executing code on the Mantis > API that cause an error. This error generates an HTML response which is > returned as the result of the call. When the web service client attempts to > trace it, it generates the error you saw. > > Typically, MantisConnect web service attempt to pre-check for all possible > errors before calling Mantis APIs to avoid this situation. > > However, there may be cases where this still happens. > > > > You should try debugging and checking the response that is returned back to > you from the server. This should include the error that is causing the > problem. > > > > On 1/31/07, Nils Malachewitz <nm...@bu...> wrote: > > > > > > > > > > > > > > > Hi, > > > > > > I have got a problem connecting to mantis with mantisconnect within > > > visual studio 2005. > > > I made a WebReference to > > > "http://localhost/mantis/mc/mantisconnect.php?wsdl" > without problems > > > inside my project and now want to execute code delivered with > > > mantisconnect. > > > But when I start my program the debugger pops up with the exception > > > message: "Client found response content type of 'text/html', but > > > expected 'text/xml'." > > > > > > The "mantisconnect.php?wsdl"-URL is accessible via internet-explorer > > > and the internal vs browser and shows a perfectly clear xml-dataset. > > > > > > I'm using: mantis-1.1.0a2 > > > MantisConnect-1.0a5 > > > nusoap-0.7.2 > > > and xampp-win32-1.5.5 as a php/sql-webserver > > > > > > I hope you understand my problem and you can help me. Thank you. > > > > > > > > > > ---------------------------------------------------------------------- > > > --- Take Surveys. Earn Cash. Influence the Future of IT Join > > > SourceForge.net's Techsay panel and you'll get the chance to share > > > your opinions on IT & business topics through brief surveys - and earn > > > cash > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEV > > > DEV > > > > > > _______________________________________________ > > > MantisConnect-users mailing list > > > Man...@li... > > > > https://lists.sourceforge.net/lists/listinfo/mantisconnect-users > > > > > > > > > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's > Techsay panel and you'll get the chance to share your opinions on IT & > business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > MantisConnect-users mailing list > > Man...@li... > > https://lists.sourceforge.net/lists/listinfo/mantisconnect-users > > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > MantisConnect-users mailing list > Man...@li... > https://lists.sourceforge.net/lists/listinfo/mantisconnect-users > > > |