Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Gemini Desktop 2008 Beta

beta

Ive downloaded the software but still after the login if the application has started occours an problem and the application is shutdown..

Gemini Website Release Bemini 3.0.0 Build 1955

ErrorTyp clr20r3

Date:              29.05.2008 15:07:49
App up time:       00:03:13.6677925
Exception class:   System.Net.WebException
Exception message: The request failed with an empty response.

Stack Trace:

   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
   at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
   at AuthorisationServices.LogIn(String userName, String password)
   at CounterSoft.Gemini.Client.Commons.Helpers.ServiceHelper.AuthorisationServicesLogIn(GeminiModel model, String sUserName, String sPassword)
   at CounterSoft.Gemini.Client.UI.Presenters.LoginPresenter.DoLogin()

 

Date:              29.05.2008 15:08:02
App up time:       00:03:26.1941910
Exception class:   System.Net.WebException
Exception message: The request failed with an empty response.

Stack Trace:

   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
   at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
   at AuthorisationServices.LogIn(String userName, String password)
   at CounterSoft.Gemini.Client.Commons.Helpers.ServiceHelper.AuthorisationServicesLogIn(GeminiModel model, String sUserName, String sPassword)
   at CounterSoft.Gemini.Client.UI.Presenters.LoginPresenter.DoLogin()

 

 

tody
· 1
tody
Replies (6)
helpful
0
not helpful

The Desktop beta is for use with Gemini 2.2.7 only.

Beta versions for Gemini 3.0.x will be out late next month.


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

Dear

Ive installed now the gemini release 2.2.7 and tried to connect with the desktop 2008, the login are successfully but after the login the application appears with an error...

System.Web.Services.Protocols.SoapException was unhandled
Message: Server was unable to process request. ---> Procedure or function geminigetallissuelinks has too many arguments specified.

here are the sp from my sql server called "geminigetallissuelinks"

USE [Gemini]

GO

DECLARE @returnvalue int

EXEC @returnvalue = [dbo].[geminigetallissuelinks]

SELECT 'Return Value' = @returnvalue

GO

what im doing wrong now ?

Website:   Gemini 2.2.7  Gemini Complimentary License registered to

is it possible that ive a wrong version of database ??

 

 

 


tody
· 1
tody
helpful
0
not helpful

Did you install a new database or is this an upgrade?


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

this is the backup from our live database, this backup was created before upgrading 2.2.7 to 3.0.1.

but im not sure ive we have update the DB before or not, the best would be to create an brand new database with the version 2.2 ?

 


tody
· 1
tody
helpful
0
not helpful

I am not sure how you have been running as this does not seem to be the lastest for 2.2.7.

The stored procedure:

if exists(select name from sysobjects where name='geminigetallissuelinks')
 drop procedure gemini
getallissuelinks
 go

create procedure gemini_getallissuelinks
 @issueid numeric(10,0),
 @canviewprivate bit
as
begin
 select a.issuelinkid,a.linktypeid,c.linkname,c.linkdesc,a.linkdirection,a.otherissueid as issueid,b.projcode,b.summary,b.typedesc,b.isstype,b.statusdesc,b.issuekey
 ,a.created,a.tstamp, b.isprivate from issuelinks a
  left outer join issuesview b on a.otherissueid=b.issueid
  left outer join issuelinktypes c on a.linktypeid=c.linktypeid
 where a.issueid=@issueid and ( isprivate = 0 or @canviewprivate = 1)
 union all
 select a.issuelinkid,a.linktypeid,c.linkname,c.linkdesc,case a.linkdirection when N'I' then N'O' when N'O' then N'I' end as linkdirection,a.issueid as issueid,b.projcode,b.summary,b.typedesc,b.isstype,b.statusdesc,b.issuekey
 ,a.created,a.tstamp, d.isprivate from issuelinks a
  left outer join issuesview b on a.issueid=b.issueid
  left outer join issuelinktypes c on a.linktypeid=c.linktypeid
  left outer join issuesview d on a.otherissueid=d.issueid
 where a.otherissueid=@issueid
 order by a.linktypeid,a.linkdirection

end
 go


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Hi

ive reinstalled the whole version of 2.2.7 Database and Website. The Desktop 2008 Application is running now.

Its looking nice, i will do some tests and hopefully the Desktop Application for the newest Version 3.0.0 of Gemini will be release soon.

thanks


tody
· 1
tody