[Solution/patch] Re: [Ifolder-dev] System.DllNotFoundException

2009-12-17 Thread Balakrishnan KalIdas
This is really a great news and a milestone by itself to have iFolder on 
non-i386 OS.

 @JKB, is it possible to make a package out of it and post it as part of the 
downloads, so that we have people testing and fixing issues, so that we have a 
good build for sparc.

 Thanks Johnny for the help provided.

Kalis   

>>> On 12/17/2009 at 8:15 PM, in message <4b2a4402.5080...@systella.fr>, 
>>> BERTRAND
Joël wrote:
> Hello,
> 
>   Some news about iFolder on sparc linux (debian). Simias.exe looks for 
> FlaimWrapper.so in lib/usr/local/lib/simias/web/bin instead 
> /usr/local/lib/simias/web/bin, thus I have add a link like :
> www-d...@gershwin:/usr/local/lib/simias/web/bin$ ls -l lib
> lrwxrwxrwx 1 www-data www-data 1 déc.  17 12:14 lib -> /
> 
>   All libraries have to be built in 32 bits mode. To build libflaim, I 
> have modified main makefile to add -m32 -mv8plus to three lines as I 
> have written in my last post.
> 
>   With sparc32 target (even V8+), libflaim is broken due to asm atomics 
> (code is not relocatable due to a branch greater than 2**22). Thus you 
> have to replace #error line (line  1314 in ftk/src/ftkunix.cpp) by :
> 
> static pthread_mutex_t  mutex = PTHREAD_MUTEX_INITIALIZER;
> 
> int32_t sparc_atomic_add_32(volatile int32_t *mem, int32_t val)
> {
>  int32_t old_value;
>  pthread_mutex_lock(&mutex);
> 
>  old_value = *mem;
>  *mem += val;
> 
>  pthread_mutex_unlock(&mutex);
> 
>  return old_value;
> }
> 
> int32_t sparc_atomic_xchg_32(volatile int32_t *mem, int32_t val)
> {
>  int32_t prev;
>  pthread_mutex_lock(&mutex);
> 
>  prev = *mem;
>  *mem = val;
> 
>  pthread_mutex_unlock(&mutex);
> 
>  return prev;
> }
> 
> and iFolder runs !
> 
>   Regards,
> 
>   JKB
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com 
> http://forge.novell.com/mailman/listinfo/ifolder-dev 
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: Re: [Ifolder-dev] Cannot Connect to Remote Server w/Client

2009-12-07 Thread Balakrishnan KalIdas
Hi AL,

 Is your iFolder server configured for Internal Identity source (non-LDAP)?

Kalis

>>> On 12/8/2009 at 4:27 AM, in message <4b1d8851.6050...@bsharah.com>, Al 
>>> Bsharah
 wrote:
> Hi folks, is this the place I should be asking these questions?  If it's 
> not, please say so.  If you know where my questions would be more 
> appropriately sent, please advise.
> 
> Further troubleshooting information:  I've just opened up all traffic to 
> my server, and I'm still having issues.  I have monitored the outside 
> interface of my firewall, and I see all traffic to-and-from the server 
> on port 443 traversing correctly.  It does not look like anything is 
> being blocked.
> 
> Thanks for any kind of help...
> AL
> 
> 
> Al Bsharah wrote, On 11:59 AM:
> > I should add...I just followed the "Delete the Simias Data Store" 
> > procedure for the client, and it did something interesting, but didn't 
> > fix the issue.
> >
> > Upon trying to connect this time, it said that the server was not a 
> > trusted source (which is expected since SSL isn't completely 
> > configured).  I clicked "Yes" and was half-expecting it to work...but 
> > ended up getting the same error message a few seconds later.
> >
> > "An error was encountered while connecting to the iFolder server.  
> > Please verify the information entered and try again.  If the problem 
> > persists, please contact your network administrator."
> >
> > Thanks again for any insight...
> > AL
> >
> >
> > Al Bsharah wrote, On 11:59 AM:
> >> Hi folks,
> >>
> >> Been messing with this system for a while, and really enjoying it.  
> >> My situation is that I can remotely connect via web to both the 
> >> /admin and /ifolder directories fine...but the client never connects.
> >> Configuration:
> >>
> >> * Server is running on a Win2k3 Server under VMWare Server 2
> >> * Server is behind a firewall with ports 443 and 80 open (didn't know 
> >> if I needed both or not)
> >> * Client is installed on a Win7 machine.
> >> * I can connect via HTTPS to the server, from the Win7 machine just 
> >> fine.  The client does not connect.
> >> * A client on the same LAN as the server (behind the firewall) 
> >> connects just fine.
> >> * The remote client (on Win7 machine) connects just fine to a local 
> >> iFolder server.
> >>
> >> Conclusions:
> >>
> >> * The Win7 client seems fine, as it's connecting to a local machine.
> >> * The remote server seems fine because a client connection from the 
> >> same LAN works fine.
> >> * The firewall seems fine because I can connect remotely via HTTPS
> >>
> >> ..so now what?  I'm spreading my *nix wings, so go easy on me, as I'm 
> >> far from an expert.  I'd love to hear some troubleshooting options I 
> >> might have to figure this out!
> >>
> >> Thanks much!
> >> AL
> >>
> >>
> >> 
> >>
> >
> >
> > 
> >
> 
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com 
> http://forge.novell.com/mailman/listinfo/ifolder-dev 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Pre-fork vs. Worker

2009-12-02 Thread Balakrishnan KalIdas
Matt, it is more a performance/scalability related option. We have seen iFolder 
perform well in Worker mode, as apache creates worker threads for works (since 
iFolder does a lot of work), while in pre-fork mode there are more processes 
and apache uses shared-memory more causing it to scale less.

 But apache has made a lot of improvement to bring the pre-fork mode and worker 
mode to equal levels, so it really does not matter much now.

Kalis

>>> Matt Weisberg  12/03/09 9:50 AM >>>

Question..
I'm running Apache in pre-fork mode, but I did see the docs recommend worker.  
Why is that and what will happen if I continue to run it in pre-fork?

Matt


Matt Weisberg
Weisberg Consulting, Inc.
m...@weisberg.net
www.weisberg.net
ofc. 248.685.1970
cell 248.705.1950
fax 248.769.5963

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Non-SSL login

2009-11-30 Thread Balakrishnan KalIdas
Hi All,

 We must have a configuration to allow Non-SSL logins. Currently a pure non-ssl 
setup does not work for clients, though web-access works.

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder - SLES11

2009-11-30 Thread Balakrishnan KalIdas
Version of Mono installed? I suppose it has to be only >=2.4. iFolder team can 
confirm if a exact revision has to be used to get few mono bugs fixed.

Kalis

>>> "Matt Weisberg"  12/01/09 5:17 AM >>>

I decided to give it a shot and see if I could get it working on SLES11.  I 
installed the latest mono via zypper from here: 
http://ftp.novell.com/pub/mono/download-stable/SLE_11
And then I installed the SLE11 build of iFolder.  Config went fine and I could 
even get into the admin interface, but it seems simias is not working right, I 
get these errors when I try and save anything:

System.Net.WebException: Error writing request.
  at System.Net.WebConnectionStream.WriteRequest () [0x0] 
  at System.Net.WebConnectionStream.Close () [0x0] 
  at System.IO.StreamWriter.Dispose (Boolean disposing) [0x0] 
  at System.IO.StreamWriter.Close () [0x0] 
  at System.Xml.XmlTextWriter.Close () [0x0] 
  at System.Web.Services.Protocols.SoapHttpClientProtocol.SendRequest 
(System.IO.Stream s, System.Web.Services.Protocols.SoapCl
ientMessage message, System.Web.Services.Protocols.SoapExtension[] extensions) 
[0x0] 
  at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke (System.String 
method_name, System.Object[] parameters) [0x000
00] 
2009-11-30 18:25:54,325 [-1245373552] ERROR Global - [10.5.0.46] Application 
Error
System.Exception: Unable to connect to master serverSystem.Net.WebException: 
Error writing request.
  at System.Net.WebConnectionStream.WriteRequest () [0x0] 
  at System.Net.WebConnectionStream.Close () [0x0] 
  at System.IO.StreamWriter.Dispose (Boolean disposing) [0x0] 
  at System.IO.StreamWriter.Close () [0x0] 
  at System.Xml.XmlTextWriter.Close () [0x0] 
  at System.Web.Services.Protocols.SoapHttpClientProtocol.SendRequest 
(System.IO.Stream s, System.Web.Services.Protocols.SoapCl
ientMessage message, System.Web.Services.Protocols.SoapExtension[] extensions) 
[0x0] 
  at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke (System.String 
method_name, System.Object[] parameters) [0x000
00] 
  at Novell.iFolderWeb.Admin.SystemInfo.ConnectToMaster () [0x0] 
  at Novell.iFolderWeb.Admin.SystemInfo.Page_PreRender (System.Object source, 
System.EventArgs e) [0x0] 
  at System.Web.UI.Control.OnPreRender (System.EventArgs e) [0x0] 
  at System.Web.UI.Control.PreRenderRecursiveInternal () [0x0] 
  at System.Web.UI.Page.ProcessLoadComplete () [0x0] 
  at System.Web.UI.Page.InternalProcessRequest () [0x0] 
  at System.Web.UI.Page.ProcessRequest (System.Web.HttpContext context) 
[0x0] 

That's part of it.  If I try and go to /simias10, I login then get a 404 error 
from Mono.

Could I just be missing a dependency?

Thanks.

Matt





-- 

-
Matt Weisberg
Weisberg Consulting, Inc.
m...@weisberg.net
www.weisberg.net
ofc. 248.685.1970
cell 248.705.1950
fax 248.769.5963
 
>>> On 11/30/2009 at  1:33 PM, in message
, Matt Weisberg
 wrote:

> Will there be any iFolder 3.8 server builds created for SLES11?  Or only for 
> OpenSUSE?  Any chance the OpenSUSE 11.1 build would work on SLES11?  What 
> about on OpenSUSE 11.2?  
> 
> Thanks.
> 
> Matt
> 
> 
> 
> Matt Weisberg
> Weisberg Consulting, Inc.
> m...@weisberg.net 
> www.weisberg.net 
> ofc. 248.685.1970
> cell 248.705.1950
> fax 248.769.5963
> 
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com 
> http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder 3.8 on OpenSUSE 11.2

2009-11-30 Thread Balakrishnan KalIdas
This is exactly the same error I got when I used it on 11.1 as well. Looks like 
Apache is running in Prefork mode, even though that is not the issue, the root 
cause is due to apache not configured for SSL and does not have the CA and 
certificates setup.

Use the script mentioned in the following link to setup the certificates
http://en.opensuse.org/Apache_SSL_CA_Generator

Then in /etc/apache2/vhosts.d, make a copy of the vhosts-ssl.template to 
vhosts-ssl.conf. 
Stop apache (rcapache2 stop) 
Start the SSL apache (rcapache2 startssl)

Recreate a clean iFolder setup (using simias-server-setup).

Hth,
Kalis

>>> "Matt Weisberg"  12/01/09 7:22 AM >>>

Since I couldn't get iFolder going on SLES11, I decided to try OpenSUSE 11.2, I 
get a different problem there, from the Simias log:

2009-11-30 20:48:33,029 [-1245836432] INFO  Simias.Storage.Provider.Provider - 
Created new store /data/simias/data/simias.
2009-11-30 20:48:33,845 [-1245836432] ERROR Novell.Journaling.JournalService - 
Exception in Journal processEvent Object reference not set to an instance of an 
objectat Simias.Storage.Identity.get_Credential () [0x0] 
  at Simias.Storage.Identity.get_PublicKey () [0x0] 
  at Simias.Storage.Store..ctor () [0x0] 
2009-11-30 20:48:34,580 [Simias Manager Start] INFO  
Simias.Storage.Provider.Provider - Created new store /data/simias/data/simias.
2009-11-30 20:48:35,760 [Simias Manager Start] ERROR Simias.Service.Manager - 
An exception was thrown by the type initializer for Simias.Server.Report
System.TypeInitializationException: An exception was thrown by the type 
initializer for Simias.Server.Report ---> System.NullReferenceException: Object 
reference not set to an instance of an object
  at Simias.Storage.Identity.get_Credential () [0x0] 
  at Simias.Storage.Identity.get_PublicKey () [0x0] 
  at Simias.Storage.Store..ctor () [0x0] 
  --- End of inner exception stack trace ---
  at Simias.Server.ReportService.Start () [0x0] 
  at Simias.Service.ThreadServiceCtl.Start () [0x0] 
  at Simias.Service.Manager.messageDispatcher (Simias.Service.Message msg) 
[0x0] 


Any ideas on that one?  

Thanks.

Matt



-- 

-
Matt Weisberg
Weisberg Consulting, Inc.
m...@weisberg.net
www.weisberg.net
ofc. 248.685.1970
cell 248.705.1950
fax 248.769.5963
 


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: {Disarmed} [Ifolder-dev] iFolder 3.8 released!

2009-11-29 Thread Balakrishnan KalIdas
Can the src tar be published along with the binary releases, so that it is 
easier to get the source than checking-out of SVN?

Kalis

>>> On 11/27/2009 at 6:43 PM, in message
<4b101dbf024600016...@victor.provo.novell.com>, "Ravi Kumar"
 wrote:

> Lance, 
> 
> https://forgesvn1.novell.com/svn/simias/trunk  and 
> https://forgesvn1.novell.com/svn/ifolder/trunk are the links. Browse 
> www.ifolder.com / community.ifolder.com for these info and build 
> instructions.  
> 
> Link to the stable sources for this particular release is 
> https://forgesvn1.novell.com/svn/simias/branches/OpenSource3.8/ and 
> https://forgesvn1.novell.com/svn/ifolder/branches/OpenSource3.8/ 
> respectively.  
> 
> ravi 
> 
>  11/27/2009 6:34 PM >>>
> Can you guys PLEASE publish an svn link to the source.
> 
> It is extremely strange that this is not standard.
> 
> Thanks
> 
> Lance
> 
> 
> 
> 
> 
> On Wed, 2009-11-25 at 22:45 -0700, Mahabaleshwar Asundi wrote:
> > Hi All,
> >
> > Novell has released the much awaited iFolder 3.8 on 25 November 2009!
> >
> > iFolder 3.8 implements a lot of rich new features, tremendous
> > performance improvements, critical bug fixes and iFolder clients on
> > several new platforms.
> >
> > As always, you are encouraged to download, use and let us know your
> > valuable feedback! Thanks for your continued support!
> >
> > 
> >
> > 
> >
> > Highlights
> >
> > * New enhanced User Interface for clients.
> >
> > * Improved, robust iFolder server with mono 2.4 run time environment.
> >
> > * New clients for OpenSuse 11.1 / 11.2, Mac 10.6 and windows vista 64
> > bit platforms.
> >
> > * Multilevel administration and segregated groups.
> >
> > * Active Directory support.
> >
> > * New pass phrase recovery Framework.
> >
> > * Multi-Language support
> >
> > * List of issues resolved
> >
> > https://sourceforge.net/projects/ifolder3/files/iFolder% 
> > 20Clients/3.8.0/ifolder3.8.0-clients.changes/view - clients
> >
> > https://sourceforge.net/projects/ifolder3/files/iFolder% 
> > 20Server/3.8.0/11.1/ifolder3.80-enterprise.changes/view - server
> >
> > https://sourceforge.net/projects/ifolder3/files/iFolder%20Server% 
> > 20Plugins/3.8.0/11.1/novell-ifolder-enterprise-plugins3.8.0.changes/view - 
> server_plugins
> >
> > 
> >
> > 
> >
> > Download
> >
> > www.ifolder.com/download 
> >
> > 
> >
> > 
> >
> > Documentation
> >
> > iFolder White Paper -
> > http://ifolder.com/docs/white_paper_ifolder_38.pdf 
> >
> > Administrators guide - http://ifolder.com/docs/ifolder38_admin.pdf 
> >
> > User Guide - http://ifolder.com/docs/ifolder38_user.pdf 
> >
> > Readme 3.8 - http://ifolder.com/docs/ifolder_readme_3.8.0.pdf 
> >
> > 
> >
> > 
> >
> > Feedback and reporting bugs
> >
> > Feedback:
> >
> > Mailing List: ifolder-dev@forge.novell.com 
> >
> > iFolder Community Forum:
> > 
> http://community.ifolder.com/ssf/a/do?p_name=ss_forum&p_action=1&binderId=1496
>  
> &action=view_folder_listing
> >
> > Reporting Bugs: Bugzilla Url: MailScanner has detected a possible
> > fraud attempt from "bugzilla.novellcom" claiming to be
> > https://bugzilla.novell.com (Product Line: iFolder,  Product: iFolder
> > Denali)
> >
> > 
> >
> > Mahabalesh
> >
> >
> > --
> > This message has been scanned for viruses and
> > dangerous content by MailScanner, and is
> > believed to be clean.
> > ___
> > ifolder-dev mailing list
> > ifolder-dev@forge.novell.com 
> > http://forge.novell.com/mailman/listinfo/ifolder-dev 
> 
> 
> 
> --
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
> 
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com 
> http://forge.novell.com/mailman/listinfo/ifolder-dev 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] New home

2009-11-26 Thread Balakrishnan KalIdas
Folks, any update on the repository, when we are going to move, check-out 
areas, etc.

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Help/documentation

2009-11-12 Thread Balakrishnan KalIdas
Hi,

 The current online help and the documentation in the Novell web site does not 
show the default values and the range of valid values (in case of numerals). 
The users gets to know the entered value is invalid after the entry. It would 
be good if we fix the online help and the documentation to display the defaults 
and the valid values/range.

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Finding a new HOME

2009-11-12 Thread Balakrishnan KalIdas
+1 for git and github.

>>> Bastien Jaillot  11/12/09 7:32 PM >>>
Hi,

I +1 for git and github, but please, don't use googlegroups for
newsletter. This is AWFUL : spammy as death and impossible to admin.
In my case, i already use git on top of the ifolder svn repo.

+

On Thu, Nov 12, 2009 at 2:52 PM, Grzegorz Sobanski  wrote:
> * Ravi Kumar  [2009-11-11 16:36]:
>> Now that we are migrating to a new home we are even thinking of either to 
>> stay with SVN or move to GIT.
>
> I suggest moving to git.
> In open source development distributed repository is really the best way
> to go. I would say that everyone that can is now moving to git (or other
> DSCM like mercurial), and it is not about fashion but just about
> usability.
>
> Developing own branches, patches, etc is just so much easier for people
> outside the core team. Sharing and pulling patches from contributors is
> much easier too. Instead of one big patch file I can prepare a series
> of commits which is much easier for you to review.
> And much much more, as can be found on the Internet :)
>
> So, +1 GIT from me.
>
>> I have started a survey and request developers to please vote.
>> http://community.ifolder.com/ssf/a/do?p_name=ss_forum&p_action=1&binderId=2458&action=view_folder_entry&entryId=4008
>
> Could you reconfigure community platform? It sent a notify about the
> survey, where all users' emails were included in To:, not really
> a nice privacy setting :(
>
>> *Github
>
> GitHub is very nice. It should meet most of your needs, although I don't
> know it from developer's point of view, yet.
>
> Googlegroups seems good choice for mailinglist.
>
>
> greets
> silk
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com
> http://forge.novell.com/mailman/listinfo/ifolder-dev
>



-- 
Bastien Jaillot
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] ifolder enterprise 3.7 on other rpm-based distros?

2009-09-10 Thread Balakrishnan KalIdas
Thanks Christopher for the update. Once the rpm is successful, it would be 
great if you can update/upload the same in iFolder wiki or send it to Brent(in 
CC), who will help update the wiki.

Kalis
>>> On 9/11/2009 at 5:02 AM, in message
<364d303b0909101632w495e82c9p2b8997daa2a58...@mail.gmail.com>, Christopher
Brown  wrote:
> Hi Dave,
> 
> 2009/9/10 Dave :
> > Hello,
> >Newbie to this list. I was wondering if ifolder enterprise 3.7 had
> > been tried on other rpm-based distros?
> >I'd like to get it working on a rel5 machine in this case CentOS
> > 5.4, and x86_64 platform, to be specific.
> >If not, is there a location i could obtain all the needed src.rpms
> > to recompile myself?
> >Thanks.
> >Dave.
> 
> I'm currently in the process of getting ifolder's dependencies into
> Fedora. Currently I have libflaim in with simias to follow shortly
> (hopefully) but I'm running short on time to do this. You'd be most
> welcome to help this process (and by extension you could get iFolder
> into CentOS through the EPEL project).
> 
> Let me know if you want more info on this.
> 
> Regards
 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Re: iFolder 3.7 client crashing in Ubuntu 9.04

2009-07-31 Thread Balakrishnan KalIdas
In addition to Ravi's comment. Looks like the Ubuntu package does not package 
the AutoAccount DLL or it does not configure it properly or it does not install 
it properly in the required location.

Kalis

>>> "Andrés G. Aragoneses" 07/31/09 10:24 PM >>>

Relevant links mentioned on IRC about the root problem:

https://bugzilla.novell.com/show_bug.cgi?id=525936

http://www.osund.com/index.php?/archives/10-Ifolder-3.7-client-on-Ubuntu.html

Regards,

Andrés



Andrés G. Aragoneses wrote:
> So the bug is in lacking dependencies for the Ubuntu package? I would
> advocate to open a launchpad ticket then.
> 
> Andres
> 
> 
> Ravi Kumar wrote:
>>
>> Micheal,
>>
>>
>> Try installing libeel / eel .
>>
>>
>> ravi
>>
>>
>>
> Michael Holley 
>> 7/31/2009 8:33 PM >>>
>> Hi all,
>>
>> I'm sorry if this is a rehash. I honestly didn't want to download that
>> last past four years of the archive and do a search through it. If there
>> was a way to search the archive online then I'm more than willing to do so.
>>
>> With the disclaimer out of the way here is what I'm running into. I have
>> Ubuntu 9.04 running on my 13" MacBook Pro and I want to setup iFolder on
>> it so I can sync to my Mac side.
>>
>> I added this iFolder repo
>> (https://launchpad.net/~marceloshima/+archive/ifolder) and installed
>> ifolder3. It installed without a hitch. I was able to launch it and even
>> set it up. When I entered my iFolder server URL it connected and asked
>> to accept my SSL. Then it crashed. It just quit.
>>
>> So I launched it again. I opens up, brings me to the main window and as
>> soon as iFolder tries to connect to my server, it crashes. Here is the
>> info I can find about it.
>>
>> iFolder.log (~/.local/share/simias/iFolder.log):
>>
>> 2009-07-31 06:56:19,968 [-1210231072] INFO  System.Object - Error:
>> Could not load file or assembly
>>
>>
>> 
>>
>> 'plugins/Novell.AutoAccount.AutoAccountCreator' or one of its
>> dependencies. The system cannot find
>>
>>
>>   
>>
>> the file specified.
>>
>>
>>
>>
>> There is no Simias.log to look at (unless it is somewhere other than
>> local/share/simias or /var/log).
>>
>>
>> But here is the output of running iFolder from command line opposed to
>> the application launcher:
>>
>>
>> mich...@durandal:~$ ifolder
>>
>>
>> Exception in Gtk# callback delegate
>>
>>
>>   Note: Applications can use
>> GLib.ExceptionManager.UnhandledException to handle the exception.
>>
>>
>> System.DllNotFoundException: libeel-2.so.2
>>
>>
>>   at (wrapper managed-to-native)
>> Novell.iFolder.Util:eel_create_spotlight_pixbuf (intptr)
>>
>>
>>   at Novell.iFolder.Util.EelCreateSpotlightPixbuf (Gdk.Pixbuf src)
>> [0x0]
>>
>>
>>   at Novell.iFolder.iFolderViewItem.LoadImages () [0x0]
>>
>>
>>   at Novell.iFolder.iFolderViewItem..ctor
>> (Novell.iFolder.iFolderHolder holder,
>> Novell.iFolder.iFolderViewGroup group, TreeIter iter, Int32
>> maxWidth) [0x0]
>>
>>
>>   at Novell.iFolder.iFolderViewGroup.RebuildTable () [0x0]
>>
>>
>>   at Novell.iFolder.iFolderViewGroup.RebuildTableCallback () [0x0]
>>
>>
>>   at GLib.Timeout+TimeoutProxy.Handler () [0x0]
>>
>>
>>at GLib.ExceptionManager.RaiseUnhandledException(System.Exception
>> e, Boolean is_terminal)
>>
>>
>>at GLib.Timeout+TimeoutProxy.Handler()
>>
>>
>>at Gtk.Application.gtk_main()
>>
>>
>>at Gtk.Application.Run()
>>
>>
>>at Gnome.Program.Run()
>>
>>
>>at Novell.iFolder.iFolderApplication.Run()
>>
>>
>>at Novell.iFolder.iFolderApplication.Main(System.String[] args)
>>
>>
>>
>>
>> Any suggestions would be wonderful. I really want to get this working.
>> Here is my actual system specs:
>>
>>
>>
>>
>> 13" MacBook Pro
>>
>>
>> 2.26 GHz Core 2 Duo
>>
>>
>> 4 GB RAM
>>
>>
>> 250 GB Hard Drive
>>
>>
>> 32bit Jaunty (Ubuntu 9.04) fully updated
>>
>>
>> iFolder 3.7
>>
>>
>>
>> 
>>
>> ___
>> ifolder-dev mailing list
>> ifolder-dev@forge.novell.com
>> http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder Bug Contest

2009-07-30 Thread Balakrishnan KalIdas
Along with bugs, if we can fix the huge amount of Warnings, it would be a great 
progress.

Kalis

>>> On 7/30/2009 at 1:13 AM, in message
<4a706e3f02b98...@sinclair.provo.novell.com>, "Brent McConnell"
 wrote:

> Hi all, 
> 
> I just wanted to announce to the list that a contest is getting underway 
> within the iFolder project.  From now till 8/14/2009 you can collect points 
> for closing and/or fixing bugs in iFolder.  If you are able to verify a bug 
> is fixed and close it you are entitled to 1 point.  If you actually provide a 
> patch to a bug you get 3 points.  As things get going I will publish a 
> leaderboard on the community website.  I also have acquired ;-) a few 
> computer 
> bags for giveaways.  Community members with the most points will receive the 
> bags. 
> 
> To get started go to bugzilla.novell.com and select Search from the upper 
> menu.  You can then search via "Advanced Search" by almost any criteria you 
> can think of.  Once you've closed a bug remember to tell this mailing list 
> about it or CC bmcconnell [at] novell {dot} com in the bug report.  If you 
> write a patch remember to attach it to the bug report in the attachments 
> section.   
> 
> Did I forget anything?  Let me know. 
> 
> Happy Bug Closing, 
> Brent McConnell

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder Architecture

2009-07-14 Thread Balakrishnan KalIdas
All these documents are already present in the File Folder of the Wiki. It 
would be great if someone can help in the Wiki conversion of these docs on the 
File Folder.

Kalis

>>> On 7/14/2009 at 5:48 PM, in message
<19c9f5890907140518k5b8d221cv42dc6077aeac7...@mail.gmail.com>, Ola Vikholt
 wrote:
> Hi Balakrishnan Kalldas
> How about putting your promising architecture document drafts under Overall
> Architecture in the Wiki (
> http://community.ifolder.com/ssf/a/c/p_name/ss_forum/p_action/1/binderId/155 
> 4/action/view_folder_entry/entryViewStyle/full/newTab/1/entryId/1253),
> preferably in a wiki format, so that people not on the mailing list can also
> see them and comment to them, perhaps also modify them?
> 
> Ola Vikholt
> 
> 2009/7/8 Balakrishnan KalIdas 
> 
> > Hi All,
> >
> >  Attached is the iFolder high-level architecture and common usage
> > presentation. I am also coming up with the deployment guide to help the
> > community test various deployments for iFolder.
> >
> >  I got to see the IIRC meeting minutes, sorry could not participate due to
> > other commitments. As Ravi mentioned, it would be really helpful if we can
> > get patches for the warnings in each .cs file.
> >
> >  We did a great job in getting the bug count down, but we have a long way
> > to go. There are lot of small enhancement, which we can take it up and
> > provide patches, as fixing bugs might need more understanding of the 
> system,
> > while providing small enhancements need not (assumption).
> >
> > Thanks,
> > Kalis
> >
> >
> > ___
> > ifolder-dev mailing list
> > ifolder-dev@forge.novell.com 
> > http://forge.novell.com/mailman/listinfo/ifolder-dev 
> >

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder banners "i use iFolder" (110x32 pixels)

2009-07-14 Thread Balakrishnan KalIdas
Slogans to start with

"Anytime, Anywhere, In Sync forever..."

"Store, Secure and Synchronize..."

"My data follows where I am..."

Kalis

>>> On 7/14/2009 at 1:24 PM, in message
<66dfb7be0907140054i4af6c70dmc459345cdbb29...@mail.gmail.com>, Denis Antonov
 wrote:
> Before making the banners I've check is there any info about iFolder
> corporate style. But did not find anything. And just pick logo and colors
> from iFolder client icon, as for me this is better logo variant. But if you
> decide to choose a different version of logo, I will redraw banners.
> For future you should decide which logo will used as base. And will be great
> if someone invents a slogan, and I'll put it on future banners (if
> necessary).
> And Brent should I place something like (R) or (C) on banners - IFolder (r)
> or iFolder (c)?
> 
> Thank you.
> 
> new links
> banners http://195.46.111.94/ifolder.html 
> source psd http://195.46.111.94/ifolder_banners_src.psd 
> 
> 
> 
> 2009/7/14 Brent McConnell 
> 
> >  This brings up an interesting question.  What is our current logo?  I
> > have seen 3 different iFolder logos.  One is yellow and green, one has a 
> red
> > "i", and the other is at ifolder.com.
> >
> >  Brent
> >
> > >>> Denis Antonov  7/10/2009 11:16 PM >>>
> >
> > Hi all!
> >
> > iFolder banners "i use iFolder" -
> > http://rabota-angarsk.ru/ifbaners/ifolder.html 
> >
> > Thanks,
> > Denis V. Antonov
> >

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder banners "i use iFolder" (110x32 pixels)

2009-07-13 Thread Balakrishnan KalIdas
Denis, the logos are great. Brent, we must update the community wiki with these 
logos as a download.

Kalis

>>> On 7/14/2009 at 1:05 AM, in message
<4a5b545c02b97...@sinclair.provo.novell.com>, "Brent McConnell"
 wrote:

> This brings up an interesting question.  What is our current logo?  I have 
> seen 3 different iFolder logos.  One is yellow and green, one has a red "i", 
> and the other is at ifolder.com. 
> 
> Brent
> 
 Denis Antonov  7/10/2009 11:16 PM >>>
> Hi all!
> 
> iFolder banners "i use iFolder" - 
> http://rabota-angarsk.ru/ifbaners/ifolder.html 
> 
> Thanks,
> Denis V. Antonov

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder banners "i use iFolder" (110x32 pixels)

2009-07-13 Thread Balakrishnan KalIdas
Green is the original logo. The other 2 colors are used for showing visual 
state of the iFolder client (Yellow if there is a recoverable problem, Red if 
the client is disconnected and so on). Though Yellow and Red are not used as 
described, it is an enhancement request, so the logos are made ready for that 
request.

 If someone can help in this enhancement, it would be great.

Kalis

>>> On 7/14/2009 at 1:05 AM, in message
<4a5b545c02b97...@sinclair.provo.novell.com>, "Brent McConnell"
 wrote:

> This brings up an interesting question.  What is our current logo?  I have 
> seen 3 different iFolder logos.  One is yellow and green, one has a red "i", 
> and the other is at ifolder.com. 
> 
> Brent
> 
 Denis Antonov  7/10/2009 11:16 PM >>>
> Hi all!
> 
> iFolder banners "i use iFolder" - 
> http://rabota-angarsk.ru/ifbaners/ifolder.html 
> 
> Thanks,
> Denis V. Antonov

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder cli client

2009-07-12 Thread Balakrishnan KalIdas
Very good initiative Nitin. Johnny check if you can take some of these and use 
it in FUSE.

Kalis

>>> On 7/13/2009 at 12:29 AM, in message
<4a5a7fff024c00013...@victor.provo.novell.com>, "Nitin Purswani"
 wrote:
> HI,
> I tried writing script in perl using soap api's to upload ,sync and download 
> ifolder from command line below  is steps to configure and use the 
> script.Please let me know if this works  and format is fine .
> 
> How to configure ifolder-cli
> 1.Copy the script in any location it can be your home directory.
> 2.ifolder-cli is in perl which depends on SOAP::Lite ,XML::Simple and 
> Getopt::Std .
> 3.Getopt::Std and XML::Simple are by default installed and may be you need 
> to install SOAP::Lite module if it is not installed.
> 4.To check if module is installed type #perl -MSOAP::Lite -e 1
> if you get error cannot locate SOAP/Lite.pm in @INC so you need to 
> install it from CPAN or other way of installing is 
> 5.sudo cpan SOAP::Lite
> 6.Go with default options if you get any prompt  and module will be 
> installed on your system .
> 
> How to use ifolder-cli 
> 1.To upload iFolder is ifolder-cli -u   ex: 
> ./ifolder-cli -u /home/user/upload
> 2.To sync iFolder  it is ifolder-cli -s -f  ex: ./ifolder-cli 
> -s -f 
> upload
> 3.To download iFolder it is ifolder-cli -d -f  ex : 
> /ifolder-cli -d 
> -f upload 
> 4.For usage it is ./ifolder-cli -h  
> 
> Thanks
> Nitin
> 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Moving...not far...

2009-07-07 Thread Balakrishnan KalIdas
Hi All,

 There is a time where everyone has to make some change. I had to make a change 
last Friday (Jul 3rd), my last day in iFolder team. I still continue to 
contribute to iFolder project like before but as an open source contributor.

 Arul(in CC) will carry out all the open source interactions. Since Arul is on 
Medical leave, GG(in CC) will take additional responsibility for open source 
interactions until Arul returns to work.

 So, I am moving...not far...

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Fwd: Re: [Ifolder-dev] Re: Bugs

2009-07-07 Thread Balakrishnan KalIdas
~10 more

>>> On 6/18/2009 at 1:13 PM, in message
<4a536f7a.331e.003...@novell.com>,
Balakrishnan Kalidas wrote:
> ~10 more.
> 
> >>> On 6/17/2009 at 12:35 PM, in message
<4a3a3d4e.331e.003...@novell.com>,
> Balakrishnan Kalidas wrote:
> > Was on FTO, so could not close during last couple of days.
> > 
> > ~20 more today.
> > 
> > Brent, for bugs that exist in latest version, mention in the
comment that 
> > the bug exists in latest version (with version number).
> > 
> > Kalis
> > 
> > >>> On 6/15/2009 at 6:54 PM, in message
<4a364ba9.3090...@novell.com>, Brent
> > McConnell  wrote:
> > > In my case I was looking at Linux client bugs and testing them on
the 
> > > 3.7.2 client.  If they had been resolved I marked them as
RESOLVED.
> > > 
> > > In one case the bug still existed and I added a comment
describing the 
> > > outcome of my test.  This brings up a good question how should
this 
> > > particular bug be handled.  It was filed against 3.6 and
apparently 
> > > still exists.  Should it be left OPEN or assigned some other
status?  
> > > Should the version be changed to reflect the current release?
> > > 
> > > 
> > > Brent
> > > 
> > > 
> > > GG Hegde wrote:
> > > > Resolved few as FIXED after testing it on the current code as
current 
> > > > code has the fix, marked for NEEDINFO for which we cant test
and need 
> > > > some help from originator. Did not mark anything as INVALID as
it may 
> > > > be valid on that particular release.
> > > > thanks and regards,
> > > > gg
> > > > >>>
> > > >
> > > > Hey guys, I don't follow, are you fixing them or marking them
as
> > > > NEEDINFO or closing them as INVALID or..?
> > > >
> > > > Thanks,
> > > >
> > > > Andrés
> > > >
> > > >
> > > >
> > > > Brent McConnell wrote:.
> > > > >
> > > > >
> > > > > I got 2.
> > > > >
> > > > >>>> "GG Hegde" 
> > > > > 6/12/2009 2:28 PM >>>
> > > > >
> > > > > Reduced by 7.
> > > > >
> > > > > gg
> > > > >
> > > > >
> > > > >

> > > > >
> > > > > ___
> > > > > ifolder-dev mailing list
> > > > > ifolder-dev@forge.novell.com   
> > > > > http://forge.novell.com/mailman/listinfo/ifolder-dev   
> > > >
> > > > ___
> > > > ifolder-dev mailing list
> > > > ifolder-dev@forge.novell.com   
> > > > http://forge.novell.com/mailman/listinfo/ifolder-dev   
> > > >
> > > >

> > > >
> > > > ___
> > > > ifolder-dev mailing list
> > > > ifolder-dev@forge.novell.com   
> > > > http://forge.novell.com/mailman/listinfo/ifolder-dev   
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Fwd: Re: [Ifolder-dev] Re: Bugs

2009-06-18 Thread Balakrishnan KalIdas
~10 more.

>>> On 6/17/2009 at 12:35 PM, in message
<4a3a3d4e.331e.003...@novell.com>,
Balakrishnan Kalidas wrote:
> Was on FTO, so could not close during last couple of days.
> 
> ~20 more today.
> 
> Brent, for bugs that exist in latest version, mention in the comment
that 
> the bug exists in latest version (with version number).
> 
> Kalis
> 
> >>> On 6/15/2009 at 6:54 PM, in message
<4a364ba9.3090...@novell.com>, Brent
> McConnell  wrote:
> > In my case I was looking at Linux client bugs and testing them on
the 
> > 3.7.2 client.  If they had been resolved I marked them as
RESOLVED.
> > 
> > In one case the bug still existed and I added a comment describing
the 
> > outcome of my test.  This brings up a good question how should this

> > particular bug be handled.  It was filed against 3.6 and apparently

> > still exists.  Should it be left OPEN or assigned some other
status?  
> > Should the version be changed to reflect the current release?
> > 
> > 
> > Brent
> > 
> > 
> > GG Hegde wrote:
> > > Resolved few as FIXED after testing it on the current code as
current 
> > > code has the fix, marked for NEEDINFO for which we cant test and
need 
> > > some help from originator. Did not mark anything as INVALID as it
may 
> > > be valid on that particular release.
> > > thanks and regards,
> > > gg
> > > >>>
> > >
> > > Hey guys, I don't follow, are you fixing them or marking them as
> > > NEEDINFO or closing them as INVALID or..?
> > >
> > > Thanks,
> > >
> > > Andrés
> > >
> > >
> > >
> > > Brent McConnell wrote:.
> > > >
> > > >
> > > > I got 2.
> > > >
> > > >>>> "GG Hegde" 
> > > > 6/12/2009 2:28 PM >>>
> > > >
> > > > Reduced by 7.
> > > >
> > > > gg
> > > >
> > > >
> > > >

> > > >
> > > > ___
> > > > ifolder-dev mailing list
> > > > ifolder-dev@forge.novell.com  
> > > > http://forge.novell.com/mailman/listinfo/ifolder-dev  
> > >
> > > ___
> > > ifolder-dev mailing list
> > > ifolder-dev@forge.novell.com  
> > > http://forge.novell.com/mailman/listinfo/ifolder-dev  
> > >
> > >

> > >
> > > ___
> > > ifolder-dev mailing list
> > > ifolder-dev@forge.novell.com  
> > > http://forge.novell.com/mailman/listinfo/ifolder-dev  
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Re: Bugs

2009-06-17 Thread Balakrishnan KalIdas
Was on FTO, so could not close during last couple of days.

~20 more today.

Brent, for bugs that exist in latest version, mention in the comment
that the bug exists in latest version (with version number).

Kalis

>>> On 6/15/2009 at 6:54 PM, in message <4a364ba9.3090...@novell.com>,
Brent
McConnell  wrote:
> In my case I was looking at Linux client bugs and testing them on the

> 3.7.2 client.  If they had been resolved I marked them as RESOLVED.
> 
> In one case the bug still existed and I added a comment describing
the 
> outcome of my test.  This brings up a good question how should this 
> particular bug be handled.  It was filed against 3.6 and apparently 
> still exists.  Should it be left OPEN or assigned some other status? 

> Should the version be changed to reflect the current release?
> 
> 
> Brent
> 
> 
> GG Hegde wrote:
> > Resolved few as FIXED after testing it on the current code as
current 
> > code has the fix, marked for NEEDINFO for which we cant test and
need 
> > some help from originator. Did not mark anything as INVALID as it
may 
> > be valid on that particular release.
> > thanks and regards,
> > gg
> > >>>
> >
> > Hey guys, I don't follow, are you fixing them or marking them as
> > NEEDINFO or closing them as INVALID or..?
> >
> > Thanks,
> >
> > Andrés
> >
> >
> >
> > Brent McConnell wrote:.
> > >
> > >
> > > I got 2.
> > >
> >  "GG Hegde" 
> > > 6/12/2009 2:28 PM >>>
> > >
> > > Reduced by 7.
> > >
> > > gg
> > >
> > >
> > >

> > >
> > > ___
> > > ifolder-dev mailing list
> > > ifolder-dev@forge.novell.com 
> > > http://forge.novell.com/mailman/listinfo/ifolder-dev 
> >
> > ___
> > ifolder-dev mailing list
> > ifolder-dev@forge.novell.com 
> > http://forge.novell.com/mailman/listinfo/ifolder-dev 
> >
> >

> >
> > ___
> > ifolder-dev mailing list
> > ifolder-dev@forge.novell.com 
> > http://forge.novell.com/mailman/listinfo/ifolder-dev 
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Re: Update

2009-06-15 Thread Balakrishnan KalIdas
Agree with Andrés, we must be creating branches. 

 GG has just tagged the old-UI, just to have a check-point and wanted all 
development to happen in the new UI code, as tremendous effort is being put by 
GG and team along with the HF (Human Factors) for getting this UI. This entire 
UI design has undergone multiple reviews with various users and deployments. If 
we create a branch, then we might lose traction in the new UI code, as the 
older UI will be more stable. GG's idea is to get the new UI stable as early 
and as fast as possible.

 But we are developing some features, then we will have a branch as Andrés 
mentioned. I assume the idea behind the entire process is appreciated and lets 
all help get the new UI stable as fast as possible. Any kind of help is 
appreciated interms of bug reports, comments, critics, etc on the new UI.

Kalis

>>> "GG Hegde"  06/15/09 4:29 PM >>>
Sure we could follow the tagging with the version no. too.
For the newui there was branch created and was merged back to trunk only after 
the development. As this UI has undergone the usability and Human Factor 
guidelines, it would be good to continue with the new one. We shall fix all the 
minor glitches if we have any.
 
thanks and regards,
gg

>>> 


Thanks for the info.

I'll see if I have a chance to test the new UI.

I wonder if it makes sense, for the next time, to have tags with version
numbers instead of names that are difficult to track. Also, it may make
sense to create branches instead of tags, in order to be able to
backport bugfixes to them? Just my 2cents.

Thanks,

Andrés


GG Hegde wrote:
> All the changes are in trunk. For the pre change we have a tagged it as
> follows.
> https://forgesvn1.novell.com/viewsvn/simias/tags/preuichange/
> https://forgesvn1.novell.com/viewsvn/ifolder/tags/preuichange/
>  
> thanks and regards,
> gg
> 
>>>>
> 
> Hey, this sound like great improvements.
> 
> In which version will they appear? Do we have a more stable 3.7 branch
> without them?
> 
> Thanks,
> 
> Andrés
> 
> 
> GG Hegde wrote:
>> iFolder has a new UI, the idea was to enhance the usability by brining
>> in certain change without changing the functionality of the current
> iFolder.
>> 1. Added toolbar and buttons for easy actions.
>> 2. Added the much needed information into the bottom panel.
>> 3. Added the panel which helps in connecting and disconnecting from the
>> domain.
>> 4. Refreshed some of the icons to bring in consistancy.
>> 5. Key recovery ( passphrase recovery) is made easier and now comes with
>> a UI.
>> 6. Brought in the consistency in the iFolder jargons used on the UI,
>> simplied to simple English like.
>> 7. Thumbnail view is changed to Details view with stress on information
>> and this view is selected by default.
>> 
>> These are few of the changes done. These changes were arrived at after
>> having the inputs from Human Factors team, iFolder users and iFolder
>> Administrators.
>> 
>> Request all to start using the new iFolder and give your feedback. There
>> are some minor issues, will sort it out in coming days.
>> 
>> thanks and regards,
>> GG
>>
>>>>>
>> I'll try to creata a new appliance today.
>>
>> Stephen
>>
>> On Jun 3, 2009, at 6:38 AM, "Balakrishnan KalIdas"
>>  wrote:
>>
>>> Hi All,
>>>
>>> There are multiple code check-ins and updates in the trunk. The new
>>> UI code is getting merged to the trunk as well. Support for 2.4 Mono
>>> is now available. Some spec file changes are required now which we
>>> are completing now. Multiple builds are being done to ensure we do
>>> not break anything.
>>>
>>> It would be great if some of you can do more builds and ensure that
>>> OpenSuSE 11.1 and other distributions are not broken.
>>>
>>> Wait for the updated spec file check-in that will happen in another
>>> few hours - post testing.
>>>
>>> GG Hegde will send an update soon about the new UI. He is
>>> spearheading that effort along with Human factors.
>>>
>>> Kalis
>>>
>>> ___
>>> ifolder-dev mailing list
>>> ifolder-dev@forge.novell.com
>>> http://forge.novell.com/mailman/listinfo/ifolder-dev
>> ___
>> ifolder-dev mailing list
>> ifolder-dev@forge.novell.com
>> http://forge.novell.com/mailman/listinfo/ifolder-dev
>>
>>
>> 
>>
>> 

Re: [Ifolder-dev] Re: Bugs

2009-06-15 Thread Balakrishnan KalIdas
For existing bugs that are still reproducible in 3.7 code base, we will just a 
comment mentioning, that it is valid in 3.7, so that we can get it fixed.

Yes, we need to mark them RESOLVED, unless the entire claim of a bug is invalid 
or the product is not designed to handle the case.

Kalis

>>> Brent McConnell  06/15/09 6:55 PM >>>
In my case I was looking at Linux client bugs and testing them on the 
3.7.2 client.  If they had been resolved I marked them as RESOLVED.

In one case the bug still existed and I added a comment describing the 
outcome of my test.  This brings up a good question how should this 
particular bug be handled.  It was filed against 3.6 and apparently 
still exists.  Should it be left OPEN or assigned some other status?  
Should the version be changed to reflect the current release?


Brent


GG Hegde wrote:
> Resolved few as FIXED after testing it on the current code as current 
> code has the fix, marked for NEEDINFO for which we cant test and need 
> some help from originator. Did not mark anything as INVALID as it may 
> be valid on that particular release.
> thanks and regards,
> gg
> >>>
>
> Hey guys, I don't follow, are you fixing them or marking them as
> NEEDINFO or closing them as INVALID or..?
>
> Thanks,
>
> Andrés
>
>
>
> Brent McConnell wrote:.
> >
> >
> > I got 2.
> >
>  "GG Hegde" 
> > 6/12/2009 2:28 PM >>>
> >
> > Reduced by 7.
> >
> > gg
> >
> >
> > 
> >
> > ___
> > ifolder-dev mailing list
> > ifolder-dev@forge.novell.com
> > http://forge.novell.com/mailman/listinfo/ifolder-dev
>
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com
> http://forge.novell.com/mailman/listinfo/ifolder-dev
>
> 
>
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com
> http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Bugs

2009-06-12 Thread Balakrishnan KalIdas
Stephen,

Good to know that you will be knocking out some.

10 more closed today.

Kalis

>>> On 6/11/2009 at 9:55 PM, in message
, Stephen Shaw
 wrote:
> I've been swamped with some orca stuff and an ifolder bug I'm trying
> to track down.  I'm really hoping to get some knocked out as well.
> 
> Stephen
> 
> On Thu, Jun 11, 2009 at 5:03 AM, Balakrishnan
> KalIdas wrote:
> > Hi All,
> >
> >  I have closed ~10 bugs after going through the bug report. Did anyone get 
> a change to close few?
> >
> >  Lets keep closing, so that we achieve a good target.
> >
> > Kalis
> >
> > ___
> > ifolder-dev mailing list
> > ifolder-dev@forge.novell.com 
> > http://forge.novell.com/mailman/listinfo/ifolder-dev 
> >

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Bugs

2009-06-11 Thread Balakrishnan KalIdas
Hi All,

 I have closed ~10 bugs after going through the bug report. Did anyone get a 
change to close few?

 Lets keep closing, so that we achieve a good target.

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Merge overwrite more recent local files with olderserver version

2009-06-10 Thread Balakrishnan KalIdas
Hi Bastien,

 Did you build the client from the latest source or downloaded it from the 
sourceforge.net? The current trunk fixes the reported issue.

Kalis

>>> On 6/9/2009 at 8:49 PM, in message
<16ce71b30906090819x78ec9f52yf887da0abcfec...@mail.gmail.com>, Bastien Jaillot
 wrote:
> Hi,
> 
> On Windows vista, with the latest client I used the merge function  on
> a folder. He overwritted all my files with the server version without
> purposing conflict resolution. I tried with another folder and it
> works. This problem only concern some ifolder.
> 
> The logs (in debug mode) show me that they have some .simias.wf.*
> files on crashing ifolder, and it seems that ifolder his doing a copy
> of the file before downloading the version of the server (which is
> older).
> 
> I don't understand at all what is going on AND the computer in
> question lost 2 weeks of work with this overwritting thing.
> 
> Hope that's someone has an idea...
> 
> Best regards,
 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Update

2009-06-03 Thread Balakrishnan KalIdas
Hi All,

 There are multiple code check-ins and updates in the trunk. The new UI code is 
getting merged to the trunk as well. Support for 2.4 Mono is now available. 
Some spec file changes are required now which we are completing now. Multiple 
builds are being done to ensure we do not break anything.

 It would be great if some of you can do more builds and ensure that OpenSuSE 
11.1 and other distributions are not broken.

 Wait for the updated spec file check-in that will happen in another few hours 
- post testing.

 GG Hegde will send an update soon about the new UI. He is spearheading that 
effort along with Human factors.

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder Mac Client for PowerPC Macs?

2009-05-28 Thread Balakrishnan KalIdas
my 2 cents...I think if we can get the Flaim to build in ppc, then the Mac 
iFolder code will build in PPC as well. Or find a Flaim library for PPC, then 
that would help us build in PPC.

>>> On 5/29/2009 at 7:39 AM, in message
<765d8e1d-f7ae-47bf-8ba0-8fb01e425...@gmail.com>, Tim Janzen
 wrote:
> The previous versions were built for PowerPC, so it should build with  
> a few tweaks to the current version. Unfortunately, I haven't been  
> able to build iFolder on 10.5 for Intel or PPC. It builds fine for me  
> on 10.4 Intel, but I don't currently have access to 10.4 ppc.
> 
> Has anyone been able to build iFolder 3.7 on Mac OS X 10.5?
> 
> Tim
> 
> On 25-May-09, at 12:55 AM, Vince D. Kimball wrote:
> 
> > Is there an iFolder Mac client that runs on PowerPC Macs available  
> > or can
> > one be built?  It appears that the existing Mac client is Intel only.
> >
> >  -- Vince
> >
> >
> > ___
> > ifolder-dev mailing list
> > ifolder-dev@forge.novell.com 
> > http://forge.novell.com/mailman/listinfo/ifolder-dev 
> 
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com 
> http://forge.novell.com/mailman/listinfo/ifolder-dev 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Re: Update

2009-05-24 Thread Balakrishnan KalIdas
Mono 2.4.1 fixes most of them including the RPC issue. But there are
certain other exceptions when we scale to 20k users. We are trying our
best to make sure this update to trunk will have very good
non-functional parameters.

Kalis

>>> On 5/24/2009 at 9:26 PM, in message ,
"Andrés G.
Aragoneses" wrote:
> Balakrishnan KalIdas wrote:
> > Hi All,
> > 
> >  Just providing certain updates on what is happening.
> > 
> > Newer-Mono
> > ~~
> > There are few exceptions we are facing with the newer mono. We are

> constantly working with Mono folks to get it running. Hopefully we
will have 
> the trunk fixed soon for newer mono.
> 
> I sent a message some days ago summarizing the problems with iFolder
> with the last Mono version released (2.4.0). I'm attaching them to
this
> message again? Is the list missing some item? Because, as I already
> stated on it, all seems to be fixed already with Mono 2.4.1 (which
> hasn't been released yet).
> 
> 
> > The SOAP RPC mechanism is changed and that is another reason why
the 
> clients and server fail to communicate - we are trying to work-around
this.
> 
> What's the bug number of this? I have no issues using iFolder trunk
and
> Mono 2.4.1.
> 
> Thanks,
> 
>   Andres
> 
> 
> > Once we get our fixes ready, we will update the source with the 
> consolidated fix, so that we do not break the current trunk.
> > 
> > New UI
> > ~~~
> > New UI effort is also going on in a separate branch in parallel -
to make 
> iFolder look and feel much better and add more usability.
> > 
> > The UI folks will update the list on when the code will be
compilable and a 
> usable UI is available for more feedback.
> > 
> > Kalis
> 
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com 
> http://forge.novell.com/mailman/listinfo/ifolder-dev 
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Update

2009-05-22 Thread Balakrishnan KalIdas
Hi All,

 Just providing certain updates on what is happening.

Newer-Mono
~~
There are few exceptions we are facing with the newer mono. We are constantly 
working with Mono folks to get it running. Hopefully we will have the trunk 
fixed soon for newer mono.

The SOAP RPC mechanism is changed and that is another reason why the clients 
and server fail to communicate - we are trying to work-around this.

Once we get our fixes ready, we will update the source with the consolidated 
fix, so that we do not break the current trunk.

New UI
~~~
New UI effort is also going on in a separate branch in parallel - to make 
iFolder look and feel much better and add more usability.

The UI folks will update the list on when the code will be compilable and a 
usable UI is available for more feedback.

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Bugzilla bugs

2009-05-22 Thread Balakrishnan KalIdas
Thanks Jan-Simon. Will update about newer-Mono in a different thread.
Kalis

>>> On 5/22/2009 at 1:38 PM, in message
<200905221008.35621.dl...@gmx.de>,
"Jan-Simon Möller"  wrote:
> Am Friday 22 May 2009 09:04:20 schrieb Balakrishnan KalIdas:
> > Hi All,
> > 
> >  As an activity to cleanup the current bugs, I would request all to

> additional hands to cleanup by testing the bugs and closing them if
already 
> fixed.
> > 
> >  There are ~258 bugs filed against iFolder_Denali product in
bugzilla. I 
> would recommend that if we close all the pre-3.7 version bugs
(possibly after 
> testing or by present knowledge of the product) it would being down
the bug 
> count heavily.
> > 
> >  Awaiting more inputs on how this can be achieved.
> > 
> 
> I'm willing to help, but we should solve the "newer mono" issue
first. I 
> cant reproduce/run ifolder atm here.
> I can run the client - kudos to ravi. But the server is still broken
here on 
> 11.0 and 11.1 .
> 
> If both runs, i'll happily co through the bugs and validate it
against 
> current code.
> 
> Best,
> Jan-Simon
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com 
> http://forge.novell.com/mailman/listinfo/ifolder-dev 
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Bugzilla bugs

2009-05-22 Thread Balakrishnan KalIdas
Hi All,

 As an activity to cleanup the current bugs, I would request all to additional 
hands to cleanup by testing the bugs and closing them if already fixed.

 There are ~258 bugs filed against iFolder_Denali product in bugzilla. I would 
recommend that if we close all the pre-3.7 version bugs (possibly after testing 
or by present knowledge of the product) it would being down the bug count 
heavily.

 Awaiting more inputs on how this can be achieved.

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Simple patch to fix configure.in warnings in simias

2009-05-12 Thread Balakrishnan KalIdas
Thanks for the patch. It will be reviewed by the team.

 As far the process is concerned, it would be really good, if the patch is sent 
to the ifolder-dev mailing list for discussion and review. A corresponding bug 
can be filed in Bugzilla under "iFolder Denali" product and 3.7 version or the 
respective version.

 In brief, file a bug and then send the patch to ifolder-dev with the subject 
containing the bug number. This would help us understand the problem and the 
respective patch for it.

Kalis

>>> Stephen Shaw  05/13/09 4:00 AM >>>
I fixed the configure.in file in simias to get rid of the warnings.
Its a really simple fix.  I'm not sure how you want this done.  Should
we be creating bugs and attaching the patch or should we be posting
them to the list?

Thanks,
Stephen

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Distributions

2009-04-20 Thread Balakrishnan KalIdas
Hi All,

>>> "Jan-Simon Möller"  04/21/09 12:09 AM >>>
Am Montag 20 April 2009 19:57:48 schrieb Brent McConnell:
> I also think this is a good idea.  I noticed this when browsing the
> installer sources.  We shouldn't rely on distro specific files for any
> of our configuration information.
>
> Brent

Hi Brent !

True - we should leave the distro-specific configuration to the packager but 
provide generic tools to setup the simias store, the webserver and so on.

I wouldn't do a bunch of distro-specific files - they'll become outdated 
anyways. But the provided setup-tools have to be configurable with the 
different needed values.

Kalis: we are making the necessary configuration changes so that build and 
packaging becomes easier. The fixes will be checked in soon after certain 
validation, but we need community support to validate non-SuSE distributions.

Kalis

> On Mon, 2009-04-20 at 09:02 +0200, Mario Fetka wrote:
> > Hallo iFolder Dev Team,
> >
> > packaging ifolder for a different dist then suse isn't that easy.
> >
> > so i am requesting a so called config file
> >
> > like config.SuSE config.Gentoo 
> > this file holds all the system specifc paths and vars
> >
> > config.Gentoo
> > <<>>
> > apache_user="apache"
> > apache_group="apache"
> > apache_uid_conf="/etc/apache2/httpd.conf"
> > simias_conf="/etc/simias/apache/gentoo/simias.conf"
> > ifolder_admin_conf="/etc/simias/apache/gentoo/ifolder_admin.conf"
> > ifolder_web_conf="/etc/simias/apache/gentoo/ifolder_web.conf"
> > mod_mon_conf="none"
> > old_conf_path="/var/lib/simias/.local/share/simias"
> > log_path="/var/log/ifolder-server/"
> > simias_data_path="/var/lib/simias/data"
> > linux_mapping_path="/etc/simias"
> > .
> > <<>>
> >
> > the example above shows that on gentoo you should not change the mod_mono
> > conf so all simias/src/server/setup/*Setup.cs dont write the mono conf
> >
> > and on compile you can specify --with-distribution=Gentoo
> >
> >
> > at the moment this is handeled via patching.
> > http://mars.arge.at/svn/linamh/trunk/ifolder/www-apps/ifolder-
> > server/files/ifolder-3.7-admin-setup-1.diff
> > http://mars.arge.at/svn/linamh/trunk/ifolder/www-apps/ifolder-
> > server/files/ifolder-3.7-web-setup-1.diff
> > http://mars.arge.at/svn/linamh/trunk/ifolder/www-apps/ifolder-
> > server/files/simias-1.8-server-setup-1.diff
> >
> > regards
> > Mario
> > ___
> > ifolder-dev mailing list
> > ifolder-dev@forge.novell.com
> > http://forge.novell.com/mailman/listinfo/ifolder-dev
>
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com
> http://forge.novell.com/mailman/listinfo/ifolder-dev


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

Re: [Ifolder-dev] just some ideas

2009-04-17 Thread Balakrishnan KalIdas
The policy attributes are not tied to any directory service. So the policy 
settings are available in all directory service configurations.
 
The webaccess needs localization. Currently it is a TODO item. It would be 
great if one of us can port the 3.6(pre-release) localized files to 3.7.2.
 
Server side trash-can is a good idea. We will analyze it, are there any takers 
to design/implement this, so that we can provide the required assistance?
 
The API's are available as part of the asmx (Web service). One can use Perl or 
other languages to access these exposed API's (via SOAP(gsoap) - if 'C' is 
used).
 
I think Mattew(mog) has provided some initial thoughts on the CLI. Hope that it 
matures.
 
Kalis

>>> On 4/12/2009 at 7:14 AM, in message 
>>> <16ce71b30904111844u7fd76299m719062a401f44...@mail.gmail.com>, Bastien 
>>> Jaillot  wrote:

Sorry for the shortness of this message, but I just want to give you some ideas.

- is it possible to easily configure a DisableSharingPolicy for an
user directly in openldap ?

- localized webaccess, i really don't understand why you delete this
possibility.

- trash ? In 2006 it was an idea, what now ?

- command line / soap command for creating new user. For now i
certainly will use ldap but i would prefer to just use the default
simias store to store users but with an external api to create them.

- ifolder cli client, it is a request from someone on the chan but the
idea is good :p.

Cya,

-- 
Bastien Jaillot
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

Re: [Ifolder-dev] Compile error on simias (trunk) with mono 2.4

2009-04-16 Thread Balakrishnan KalIdas
Mono 2.4 is not yet supported. Please wait for the fixes to come in, as the 
analysis is in progress.

Kalis

>>> "Jan-Simon Möller"  04/16/09 10:30 PM >>>
Hi !
Here's my report on compiling latest code:

#rpm -qv mono-core
mono-core-2.4-19.1


Making all in SimiasApp
make[3]: Entering directory 
`/home/dl9pf/user/scripts/ifolder-server-svn-setup-0.5.0/svn/simias-trunk/src/core/SimiasApp'
mcs /out:Simias.exe /optimize+ /d:LINUX /d:MONO /warn:4 /d:TRACE /d:MONONATIVE 
/target:exe  /r:System.dll /r:System.Data.dll /r:System.Xml.dll 
/r:System.Web.dll /r:SimiasClient.dll /r:Mono.WebServer.dll 
/lib:../SimiasClient /lib:../../../dependencies/external/Mono.WebServer 
/resource:./App.ico ./AssemblyInfo.cs ./Simias.cs ./SimiasAppInstallerClass.cs
/Simias.cs(1771,92): error CS1729: The type `Mono.WebServer.XSPWebSource' 
does not contain a constructor that takes `2' arguments
/usr/lib/mono/gac/Mono.WebServer/0.1.0.0__0738eb9f132ed756/Mono.WebServer.dll 
(Location of the symbol related to previous error)
Compilation failed: 1 error(s), 0 warnings
make[3]: *** [Simias.exe] Fehler 1
make[2]: *** [all-recursive] Fehler 1
make[1]: *** [all-recursive] Fehler 1
make: *** [all-recursive] Fehler 1
make[3]: Leaving directory 
`/home/dl9pf/user/scripts/ifolder-server-svn-setup-0.5.0/svn/simias-trunk/src/core/SimiasApp'
make[2]: Leaving directory 
`/home/dl9pf/user/scripts/ifolder-server-svn-setup-0.5.0/svn/simias-trunk/src/core'
make[1]: Leaving directory 
`/home/dl9pf/user/scripts/ifolder-server-svn-setup-0.5.0/svn/simias-trunk/src'


--with-runasclient
Has the same error. 


Next:

Why do we hardcode "/etc"  ?? 
make[4]: Entering directory 
`/home/dl9pf/user/scripts/ifolder-client-svn-setup/svn/ifolder/simias-trunk/src/core/SimiasLib.dll'
/bin/sh 
/home/dl9pf/user/scripts/ifolder-client-svn-setup/svn/ifolder/simias-trunk/install-sh
 -d /home/simiastest/lib/simias/web/bin /home/simiastest/lib/simias/web/modules 
/etc/simias /home/simiastest/share/simias
mkdir: cannot create directory `/etc/simias': Permission denied
mkdir: cannot create directory `/etc/simias': Permission denied
make[4]: *** [install-exec-local] Error 1
make[3]: *** [install-am] Error 2
make[2]: *** [install-recursive] Error 1
make[1]: *** [install-recursive] Error 1
make: *** [install-recursive] Error 1
make[4]: Leaving directory 
`/home/dl9pf/user/scripts/ifolder-client-svn-setup/svn/ifolder/simias-trunk/src/core/SimiasLib.dll'

We shouldn't hardcode "/etc/" in configure(.ac) but use  $sysconfigdir . This 
defaults to /etc but can be changed _if needed_ .

best,
Jan-Simon
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

[Ifolder-dev] License issue

2009-04-16 Thread Balakrishnan KalIdas
Hi All,

 My apologizes for the license mess-up. Due to template change, the source file 
had a different License header.

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

Re: [Ifolder-dev] License of last commits ?

2009-04-16 Thread Balakrishnan KalIdas
This is a copy error, not intentional.

Kalis

>>> "Jan-Simon Möller"  04/16/09 9:23 PM >>>
Hi !

While checking last commits I saw this header in some files:
https://forgesvn1.novell.com/viewsvn/ifolder/trunk/ifolder/src/UI/Linux/LinuxClient/library/ResetPasswordDialog.cs?revision=6707&view=markup

Is this done intentionally or a "copy error" that slipped through? 

Some press already covered this (german) 
http://www.pro-linux.de/news/2009/14077.html .

Could someone please clarify ? Brent ? Zonker ?

Best,
Jan-Simon
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

Re: [Ifolder-dev] Some troubles

2009-04-08 Thread Balakrishnan KalIdas
Hi Bastien,
 
 The current release is made in English only. The Readme and the documentation 
explicitly mentions this.  It would be great if we can get some localization 
done. I remember the 3.6(pre-release) branch had some localization, so if we 
can get it ported it would be good and add the additional strings as necessary 
for the new features.
 
 Is it possible to provide a patch for the string in Mac OS X client? If you 
already have a correct string, can you provide a patch?
 
 Irrespective of SSL configuration, the client login needs SSL channel as the 
user credentials are passed over wire in clear. Post login, the SSL 
configuration is respected. If the server configuration is BOTH, then the 
client by default uses SSL, but the user can change to non-SSL via the Account 
properties. For every login action, SSL will be used.
 
 For the Web access issue, it would be good if we know the Mono version being 
used on the Server. Also the file size that is being uploaded.
 
Hth,
Kalis


>>> Bastien Jaillot  04/09/09 3:25 AM >>> 
Hi all, 

Before filling bugs, i begin to talk about some troubles I had : 

1/ on webaccess, whatever the language i choose, it remains in 
English. Whereas the locale is setted correctly in the cookie 
(language=fr; viewed using firebug) 

2/ on mac os x client, both icons for "upload a directory" and 
"download a directory" have the same french localization : 
"télécharger" which means "download". I don't have another platform 
client so i can't tell you if it's general or not. 

3/ even if I said on the configuration that i donnot want an ssl 
encryption, it's impossible to configure an account on my mac os x 
client to my server. It seems to only want to connect to the server 
using 443, which i have not. Another user (tking156) on the chan 
complain about the same thing with windows client. Quite annoying 
regarding i've multiple domain so it's not easy to configure SSL :(... 
so not client for me. Is it normal ? 

4/ after a (successufl) upload on webaccess, i get this error when 
returning to the file list page : 

Exception Message: The remote server returned an error: (500) 
ArgumentNullException. 
Exception Type: System.Net.WebException 
Exception Site: Boolean CheckFinalStatus(System.Net.WebAsyncResult) 
Exception Source: System 

Exception Stack: 

System.Net.WebException: The remote server returned an error: (500) 
ArgumentNullException. 
at System.Net.HttpWebRequest.CheckFinalStatus 
(System.Net.WebAsyncResult result) [0x0] 
at System.Net.HttpWebRequest.SetResponseData 
(System.Net.WebConnectionData data) [0x0] 

That's all for tonight. 

See you tomorrow on the chan. 

-- 
Bastien Jaillot

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

[Ifolder-dev] Re: succesfully building ifolder client and server ondebian testing

2009-04-08 Thread Balakrishnan KalIdas
Thanks Matthew for the patch. Code updated.
 
Kalis

>>> On 4/7/2009 at 11:34 AM, in message <20090407060407.ga2...@woodman.lan>, 
>>> mog  wrote:

Oops forgot to attach patches.  they are also available where on the blog


-- 
Matthew O'Gorman
xim: m...@rldn.net
email: m...@rldn.net
site: http://blog.rldn.net
+---+
  A priest advised Voltaire on his death bed to renounce the devil.
  Replied Voltaire, "This is no time to make new enemies."
+---+
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

Re: [Ifolder-dev] Problem with multidomain

2009-04-08 Thread Balakrishnan KalIdas
Hi Bastien,
 
 For all aspx pages mono does a background compilation. iFolder is not 
currently supported with Mono 1.9 or later (we are fixing it). As documented, 
current support is only for Mono 1.2.6.
 
 Please wait for a patch that will make iFolder work on the latest Mono.
 
Kalis

>>> On 4/8/2009 at  5:22 AM, in message <49dbe72a.7060...@gmail.com>, Bastien 
>>> Jaillot  wrote:

Hi all,

My first installation of ifolder works likes a charm. So I tried to 
install a multi domain on the same server with two vhosts : 
ifolder.domain1.fr and ifolder.domain2.fr.

I haven't tried yet the client, all my tets used ifolder webaccess.

I login on domain1 then on domain2. I do everything I want on domain2. I 
come back to domain1 and I got that message :

===
Message: System.Web.Compilation.CompilationException: Exception of type 
System.Web.Compilation.CompilationException was thrown.
   at System.Web.Compilation.BaseCompiler.CheckCompilerErrors 
(System.CodeDom.Compiler.CompilerResults results) [0x0]
   at System.Web.Compilation.BaseCompiler.GetCompiledType () [0x0]
   at System.Web.Compilation.AspGenerator.GetCompiledType () [0x0]
   at System.Web.UI.PageParser.CompileIntoType () [0x0]
   at System.Web.UI.TemplateControlParser.GetCompiledInstance () [0x0]
   at System.Web.UI.PageParser.GetCompiledPageInstance (System.String 
virtualPath, System.String inputFile, System.Web.HttpContext context) 
[0x0]
   at System.Web.UI.PageHandlerFactory.GetHandler 
(System.Web.HttpContext context, System.String requestType, 
System.String url, System.String path) [0x0]
   at System.Web.HttpApplication.GetHandler (System.Web.HttpContext 
context, System.String url) [0x0]
   at System.Web.HttpApplication+<>c__CompilerGenerated1.MoveNext () 
[0x0]

Username: bast
User Full Name: bast

System iFolder Name: ifolder.domain1.fr iFolder
System iFolder Version: 1.0.0.0

Server iFolder Version: 1.8.2.0
Server CLR Version: 1.1.4322.2032
Server Host: sd-9**7
Server Machine: sd-9**7
Server Operating System: Unix 2.6.26.1
Server Username: www-data

===

In fact this message appears directly in the url bar :

===
http://ifolder.domain1.fr/ifolder/Error.aspx?Exception=System.Web.Compilation.CompilationException%3a+Exception+of+type+System.Web.Compilation.CompilationException+was+thrown.%0A++at+System.Web.Compilation.BaseCompiler.CheckCompilerErrors+(System.CodeDom.Compiler.CompilerResults+results)+[0x0]+%0A++at+System.Web.Compilation.BaseCompiler.GetCompiledType+()+[0x0]+%0A++at+System.Web.Compilation.AspGenerator.GetCompiledType+()+[0x0]+%0A++at+System.Web.UI.PageParser.CompileIntoType+()+[0x0]+%0A++at+System.Web.UI.TemplateControlParser.GetCompiledInstance+()+[0x0]+%0A++at+SystemWeb.UI.PageParser.GetCompiledPageInstance+(System.String+virtualPath%2c+System.String+inputFile%2c+System.Web.HttpContext+context)+[0x0]+%0A++at+System.Web.UI.PageHandlerFactory.GetHandler+(System.Web.HttpContext+context%2c+System.String+requestType%2c+System.String+url%2c+System.String+path)+[0x0]+%0A++at+System.Web.HttpApplication.GetHandler+(System.Web.HttpContext+context%2c+Sy
stem.String+url)+[0x0]+%0A++at+System.Web.HttpApplication%2b%3C%3Ec__CompilerGenerated1.MoveNext+()+[0x0]+

===

I'm on debian lenny with mono 1.9. The simple installation without 
multidomain works very well.

I don't use SSL and LDAP.

I can pastebin my config files, but I've tested a lot of thing and 
nothing changed the situation.

Any idea ?

-- 
Bastien Jaillot
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

Re: [Ifolder-dev] Simias log file

2007-12-05 Thread Balakrishnan KalIdas
Is it possible to give the directory listing of /var/simias/data/simias?

Kalis

>>> Chris Arnold <[EMAIL PROTECTED]> 12/5/2007 5:35 PM >>>
Balakrishnan KalIdas wrote:
> Is it possible to send the Simias.config file, simias.conf and uid.conf(will 
> be in apache conf dir). Also the store listing, basically an ls screenshot of 
> the store must do.
Here are the requested files. Also, found 2 places that were identical:
/var/lib/simias and /var/simias, both have the same exact folders and
files. Jan-Simon also found that flaim was not installed (we thought
ifolder would not install without flaim). Installed libflaim from his
opensuse repo. I can give you access to the box if you think that would
be easier. Just let me know off-list

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Simias log file

2007-12-04 Thread Balakrishnan KalIdas
Is it possible to send the Simias.config file, simias.conf and uid.conf(will be 
in apache conf dir). Also the store listing, basically an ls screenshot of the 
store must do.

Kalis

>>> Chris Arnold <[EMAIL PROTECTED]> 12/4/2007 9:47 PM >>>
Jan-Simon was helping me troubleshoot a "your session has closed. Please log 
in" error from the ifolder admin interface. Installed ifolder from OES2 disc. 
Here is the simias log:
2007-12-04 10:40:15,531 [-1259353184] INFO  Simias.Service.Manager - The 
database is being shut down.
2007-12-04 10:45:57,435 [-1239262304] ERROR Simias.Service.Manager - Failed to 
create Flaim DB.
Simias.CreateException: Failed to create Flaim DB. ---> Simias.SimiasException: 
Flaim error FERR_IO_ACCESS_DENIED FERR_IO_ACCESS_DENIED--- End of inner 
exception stack trace ---

  at Simias.Storage.Provider.Flaim.FlaimProvider.CreateStore () [0x0] 
  at Simias.Storage.Provider.Provider.Connect 
(Simias.Storage.Provider.ProviderConfig conf, System.Boolean& created) 
[0x0] 
  at Simias.Storage.Store..ctor () [0x0] 
  at Simias.Storage.Store.GetStore () [0x0] 
  at Simias.Storage.ChangeLog.Start () [0x0] 
  at Simias.Service.ThreadServiceCtl.Start () [0x0] 
  at Simias.Service.Manager.messageDispatcher (Simias.Service.Message msg) 
[0x0] 
2007-12-04 10:45:57,462 [-1239262304] ERROR Simias.Service.Manager - Exception 
has been thrown by the target of an invocation.
System.Reflection.TargetInvocationException: Exception has been thrown by the 
target of an invocation. ---> Simias.CreateException: Failed to create Flaim 
DB. ---> Simias.SimiasException: Flaim error FERR_IO_ACCESS_DENIED 
FERR_IO_ACCESS_DENIED--- End of inner exception stack trace ---

  at Simias.Storage.Provider.Flaim.FlaimProvider.CreateStore () [0x0] 
  at Simias.Storage.Provider.Provider.Connect 
(Simias.Storage.Provider.ProviderConfig conf, System.Boolean& created) 
[0x0] 
  at Simias.Storage.Store..ctor () [0x0] 
  at Simias.Storage.Store.GetStore () [0x0] 
  at Simias.LocalProvider..ctor () [0x0] 
  at <0x0> 
  at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke 
(object,object[])
  at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags 
invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, 
System.Globalization.CultureInfo culture) [0x0] --- End of inner exception 
stack trace ---

  at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags 
invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, 
System.Globalization.CultureInfo culture) [0x0] 
  at System.Reflection.MonoCMethod.Invoke (BindingFlags invokeAttr, 
System.Reflection.Binder binder, System.Object[] parameters, 
System.Globalization.CultureInfo culture) [0x0] 
  at System.Reflection.ConstructorInfo.Invoke (System.Object[] parameters) 
[0x0] 
  at System.Activator.CreateInstance (System.Type type, Boolean nonPublic) 
[0x0] 
  at System.Activator.CreateInstance (System.Type type) [0x0] 
  at System.Reflection.Assembly.CreateInstance (System.String typeName, Boolean 
ignoreCase) [0x0] 
  at System.Reflection.Assembly.CreateInstance (System.String typeName) 
[0x0] 
  at Simias.Service.ThreadServiceCtl.Start () [0x0] 
  at Simias.Service.Manager.messageDispatcher (Simias.Service.Message msg) 
[0x0] 
2007-12-04 10:45:57,479 [-1239262304] INFO  Simias.Service.Manager - "Simias 
Journal" service started.
2007-12-04 10:45:57,490 [-1239262304] ERROR Simias.Service.Manager - Failed to 
create Flaim DB.
Simias.CreateException: Failed to create Flaim DB. ---> Simias.SimiasException: 
Flaim error FERR_IO_ACCESS_DENIED FERR_IO_ACCESS_DENIED--- End of inner 
exception stack trace ---

  at Simias.Storage.Provider.Flaim.FlaimProvider.CreateStore () [0x0] 
  at Simias.Storage.Provider.Provider.Connect 
(Simias.Storage.Provider.ProviderConfig conf, System.Boolean& created) 
[0x0] 
  at Simias.Storage.Store..ctor () [0x0] 
  at Simias.Storage.Store.GetStore () [0x0] 
  at Simias.Server.EnterpriseDomain..ctor (Boolean Create) [0x0] 
  at Simias.Server.Service.Start () [0x0] 
  at Simias.Service.ThreadServiceCtl.Start () [0x0] 
  at Simias.Service.Manager.messageDispatcher (Simias.Service.Message msg) 
[0x0] 
2007-12-04 10:45:57,502 [-1239262304] ERROR Simias.Service.Manager - An 
exception was thrown by the type initializer for Simias.Server.Report
System.TypeInitializationException: An exception was thrown by the type 
initializer for Simias.Server.Report ---> Simias.CreateException: Failed to 
create Flaim DB. ---> Simias.SimiasException: Flaim error FERR_IO_ACCESS_DENIED 
FERR_IO_ACCESS_DENIED--- End of inner exception stack trace ---

  at Simias.Storage.Provider.Flaim.FlaimProvider.CreateStore () [0x0] 
  at Simias.Storage.Provider.Provider.Connect 
(Simias.Storage.Provider.ProviderConfig conf, System.Boolean& created) 
[0x0] 
  at Simias.Storage.Store..ct

Re: [Ifolder-dev] Login error

2007-12-03 Thread Balakrishnan KalIdas
After the permission change make sure Apache is stopped and no mono process is 
running, if any kill them before starting apache again.

 If you can afford to re-setup, then run the setup again and ensure Apache is 
mentioned as "Yes" during the prompt.

Kalis

>>> Chris Arnold <[EMAIL PROTECTED]> 12/4/2007 12:08 AM >>>
Patrik Dufresne wrote:
> Hi Chris,
>
> I'm sure it's just the permission you have on the simias data directory.
> it's must be set to mod 770 with user:group of apache.
Hi Patrick. That folder was owned by root and in the root group. I
changed it to wwwrun-WWW daemon Apache and file group as www with 700
permissions and still get the same error.
>
>
> Chris Arnold wrote:
>> Just got a fresh install of eDir and iFolder 3 on OES2. Everything went
>> OK until we got to the configuring iFolder section. At this we got a
>> "failed to configure ifolder 3" error. Nothing in /var/log/ifolder3
>> folder. We can get to the web interface of the admin and the interface
>> for /ifolder but can not login to anything. The admin interface gives
>> Your session has been closed. Please log in.error and the /ifolder
>> interface gives
>> Exception Message: Content is not 'text/xml' but 'text/html;
>> charset=utf-8'
>> Response error message:
>> -- 
>> 
>> Error 500> color="red">Server error in '/simias10' application
>> 
>> Description: Error processing request.
>> 
>> Error Message: HTTP 500. 
>> Stack Trace: > bgcolor="#c">
>> 
>> Simias.CreateException: Failed to create Flaim DB. --->
>> Simias.SimiasException: Flaim error FERR_IO_ACCESS_DENIED
>> FERR_IO_ACCESS_DENIED--- End of inner exception stack trace ---
>>
>>   at Simias.Storage.Provider.Flaim.FlaimProvider.CreateStore ()
>> [0x0]   at Simias.Storage.Provider.Provider.Connect
>> (Simias.Storage.Provider.ProviderConfig conf, System.Boolean&
>> created) [0x0]   at Simias.Storage.Store..ctor () [0x0]   at
>> Simias.Storage.Store.GetStore () [0x0]   at
>> Simias.Security.Web.AuthenticationModule.get_StoreReference ()
>> [0x0]   at
>> Simias.Security.Web.AuthenticationModule.VerifyPrincipalFromRequest
>> (System.Web.HttpContext context) [0x0]   at
>> Simias.Security.Web.AuthenticationModule.OnAcquireRequestState
>> (System.Object source, System.EventArgs eventArgs) [0x0]   at
>> (wrapper delegate-invoke)
>> System.MulticastDelegate:invoke_void_object_EventArgs
>> (object,System.EventArgs)
>>   at System.Web.HttpApplication+<>c__CompilerGenerated1.MoveNext
>> () [0x0] 
>> 
>> 
>> 
>> 
>> 
>> 
>> >
>>   at Simias.Storage.Provider.Flaim.FlaimProvider.CreateStore ()
>> [0x0]   at Simias.Storage.Provider.Provider.Connect
>> (Simias.Storage.Provider.ProviderConfig conf, System.Boolean&
>> created) [0x0]   at Simias.Storage.Store..ctor () [0x0]   at
>> Simias.Storage.Store.GetStore () [0x0]   at
>> Simias.Security.Web.AuthenticationModule.get_StoreReference ()
>> [0x0]   at
>> Simias.Security.Web.AuthenticationModule.VerifyPrincipalFromRequest
>> (System.Web.HttpContext context) [0x0]   at
>> Simias.Security.Web.AuthenticationModule.OnAcquireRequestState
>> (System.Object source, System.EventArgs eventArgs) [0x0]   at
>> (wrapper delegate-invoke)
>> System.MulticastDelegate:invoke_void_object_EventArgs
>> (object,System.EventArgs)
>>   at System.Web.HttpApplication+<>c__CompilerGenerated1.MoveNext
>> () [0x0] --- End of inner exception stack trace ---
>>
>> -->
>>
>> Exception Type: System.InvalidOperationException
>> Exception Site: Void InvalidOperation(System.String,
>> System.Net.WebResponse, System.Text.Encoding)
>> Exception Source: System.Web.Services
>>
>> Exception Stack:
>>
>> System.InvalidOperationException: Content is not 'text/xml' but
>> 'text/html; charset=utf-8'
>> Response error message:
>> -- 
>> 
>> Error 500> color="red">Server error in '/simias10' application
>> 
>> Description: Error processing request.
>> 
>> Error Message: HTTP 500. 
>> Stack Trace: > bgcolor="#c">
>> 
>> Simias.CreateException: Failed to create Flaim DB. --->
>> Simias.SimiasException: Flaim error FERR_IO_ACCESS_DENIED
>> FERR_IO_ACCESS_DENIED--- End of inner exception stack trace ---
>>
>>   at Simias.Storage.Provider.Flaim.FlaimProvider.CreateStore ()
>> [0x0]   at Simias.Storage.Provider.Provider.Connect
>> (Simias.Storage.Provider.ProviderConfig conf, System.Boolean&
>> created) [0x0]   at Simias.Storage.Store..ctor () [0x0]   at
>> Simias.Storage.Store.GetStore () [0x0]   at
>> Simias.Security.Web.AuthenticationModule.get_StoreReference ()
>> [0x0]   at
>> Simias.Security.Web.AuthenticationModule.VerifyPrincipalFromRequest
>> (System.Web.HttpContext context) [0x0]   at
>> Simias.Security.Web.AuthenticationModule.OnAcquireRequestState
>> (System.Object source, System.EventArgs eventArgs) [0x0]   at
>> (wrapper delegate-invoke)
>> System.MulticastDelegate:invoke_void_object_EventArgs
>> (object,System.EventArgs)
>>   at System.Web.HttpApplication+<>c__CompilerGene

Re: [Fwd: Re: [Ifolder-dev] iFolder Client running on Gusty]

2007-12-03 Thread Balakrishnan KalIdas
Hi Patrik,

 Thanks for the information. Yeah, mod_mono is an issue, Mono has different 
locations in different versions :-(. It would be great if someone can find a 
way to figure out where Mono has kept the mod_mono.conf file.

 For preparing the Server code, you can just use

/autogen.sh --prefix=/your/prefix

 This will ensure the whole system is installed under this prefix and is easier 
to debug and also easier to find the necessary files instead of providing 
different locations.

 After this configure; make; make install, run the simias-server-setup and 
provide the data path where the simias data (managed and un-managed) will be 
stored. If configured with apache, then ensure that the data path is marked 
with proper UID/GID for apache to access. (simias-server-setup automatically 
find this from the uid.conf with the assumption of this file being at 
/etc/apache2, if not it will prompt for the UID/GID)

 The simplest way to check if everything is working fine after an apache 
restart, use the browser and browse the following URL

http://localhost/simias10/Simias.asmx 

 It must ask for the admin credentials and must display the list of APIs. This 
display confirms that the simias is ready for usage.

 I heard from Jan-Simon the current SVN revision is broken due to the SSL 
support check-in. So would recommend to use the revision just before the SSL 
commit. I have to fix this one.

Kalis

 

 

>>> Patrik Dufresne <[EMAIL PROTECTED]> 12/3/2007 11:48 PM >>>
Hi Kalis,

Yes, I ran the simias-server-setup tool. It's create a configuration 
file (simias.conf) in /etc/apache2/conf.d. I modify this file to match 
the location of mod_mono.conf. It's the only thing I modify.

I want to confirm something with you. When I configure simias with 
/autogen.sh, I pass to it this paramaters : --prefix=/usr/local 
--with-simiasdatadir=/var/lib/simias --sysconfigdi=/etc 
--with-runasserver. I wan to know if the location /var/lib/simias must 
be use when I configure simias with the tool simias-server-setup. 
Because, It's what I do.

Also, I want to know If there is a way to only test if the server working.

Next step, I will take time to look at the code and search why I receive 
this error ... Maybe it's just a tiny small thing I miss.

Patrik Dufresne

Balakrishnan KalIdas wrote:
> Hi Patrik,
>
>  Just for confirmation, I suppose after the installation, simias-server-setup 
> is ran from the bin location.
>
> Kalis
>
>   
>>>> Patrik Dufresne <[EMAIL PROTECTED]> 12/2/2007 3:21 AM >>>
>>>> 
> Hi,
>
> This time, I really need help !
>
> After compiling the client under Gusty, I continue to compile an 
> appropriate server to use the client because nobody want to grant me an 
> access to his iFolder server. I thought it's will be more simple under 
> Gusty, but I was wrong. The mono-apache-server under Gusty seam broken 
> .. I well know that it's work under Dapper because I have an other 
> server running it.
>
> I follow the guide present on the wiki, named "HowTo:Building iFolder 
> Enterprise Server on Dapper". It's a very complete guide except it's out 
> of date like a lot of thing on the wiki. Finally, I got every thing 
> compileand install. Also, apache work with mono server version 1.
>
> When I try to login using the AdminWebService, I got this error in 
> adminweb.log.
>
> 2007-12-01 16:36:47,975 [-1224631376] INFO  Login - [192.168.1.125]
> CBA: key is Connection , value : keep-alive
> 2007-12-01 16:36:47,984 [-1224631376] INFO  Login - [192.168.1.125]
> CBA: key is Keep-Alive , value : 300
> 2007-12-01 16:36:47,984 [-1224631376] INFO  Login - [192.168.1.125]
> CBA: key is Accept , value :
> 
> text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
> 2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
> CBA: key is Accept-Charset , value : ISO-8859-1,utf-8;q=0.7,*;q=07
> 2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
> CBA: key is Accept-Encoding , value : gzip,deflate
> 2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
> CBA: key is Accept-Language , value : en-us,en;q=0.5
> 2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
> CBA: key is Cookie , value :
> ASPSESSION=892FC6EB2B19560FD63C0DCC035976; test=True
> 2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
> CBA: key is Host , value : 192.168.1.126
> 2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
> CBA: key is User-Agent , value : Mozilla/5.0 (X11; U; Linux i686;
> en-US; rv:1.8.1.10) Gecko/20071126 Ubuntu/7.10 (gutsy) Firefox/2.0.0.10
> 

Re: [Ifolder-dev] Login error

2007-12-03 Thread Balakrishnan KalIdas
Is it possible to run the simias-server-setup from /opt/novell/ifolder3/bin and 
reconfigure the service again with the same store path or different one. Ensure 
that you say "Yes" for apache, so that the apache restart will ensure iFolder 
starts.

Kalis 

>>> Chris Arnold <[EMAIL PROTECTED]> 12/3/2007 9:43 PM >>>
Just got a fresh install of eDir and iFolder 3 on OES2. Everything went
OK until we got to the configuring iFolder section. At this we got a
"failed to configure ifolder 3" error. Nothing in /var/log/ifolder3
folder. We can get to the web interface of the admin and the interface
for /ifolder but can not login to anything. The admin interface gives
Your session has been closed. Please log in.error and the /ifolder
interface gives
Exception Message: Content is not 'text/xml' but 'text/html; charset=utf-8'
Response error message:
--

Error 500Server error in '/simias10' application

Description: Error processing request.

Error Message: HTTP 500. 
Stack Trace: 

Simias.CreateException: Failed to create Flaim DB. --->
Simias.SimiasException: Flaim error FERR_IO_ACCESS_DENIED
FERR_IO_ACCESS_DENIED--- End of inner exception stack trace ---

  at Simias.Storage.Provider.Flaim.FlaimProvider.CreateStore ()
[0x0]   at Simias.Storage.Provider.Provider.Connect
(Simias.Storage.Provider.ProviderConfig conf, System.Boolean&
created) [0x0]   at Simias.Storage.Store..ctor () [0x0]   at
Simias.Storage.Store.GetStore () [0x0]   at
Simias.Security.Web.AuthenticationModule.get_StoreReference ()
[0x0]   at
Simias.Security.Web.AuthenticationModule.VerifyPrincipalFromRequest
(System.Web.HttpContext context) [0x0]   at
Simias.Security.Web.AuthenticationModule.OnAcquireRequestState
(System.Object source, System.EventArgs eventArgs) [0x0]   at
(wrapper delegate-invoke)
System.MulticastDelegate:invoke_void_object_EventArgs
(object,System.EventArgs)
  at System.Web.HttpApplication+<>c__CompilerGenerated1.MoveNext
() [0x0] 








Exception Type: System.InvalidOperationException
Exception Site: Void InvalidOperation(System.String,
System.Net.WebResponse, System.Text.Encoding)
Exception Source: System.Web.Services

Exception Stack:

System.InvalidOperationException: Content is not 'text/xml' but
'text/html; charset=utf-8'
Response error message:
--

Error 500Server error in '/simias10' application

Description: Error processing request.

Error Message: HTTP 500. 
Stack Trace: 

Simias.CreateException: Failed to create Flaim DB. --->
Simias.SimiasException: Flaim error FERR_IO_ACCESS_DENIED
FERR_IO_ACCESS_DENIED--- End of inner exception stack trace ---

  at Simias.Storage.Provider.Flaim.FlaimProvider.CreateStore ()
[0x0]   at Simias.Storage.Provider.Provider.Connect
(Simias.Storage.Provider.ProviderConfig conf, System.Boolean&
created) [0x0]   at Simias.Storage.Store..ctor () [0x0]   at
Simias.Storage.Store.GetStore () [0x0]   at
Simias.Security.Web.AuthenticationModule.get_StoreReference ()
[0x0]   at
Simias.Security.Web.AuthenticationModule.VerifyPrincipalFromRequest
(System.Web.HttpContext context) [0x0]   at
Simias.Security.Web.AuthenticationModule.OnAcquireRequestState
(System.Object source, System.EventArgs eventArgs) [0x0]   at
(wrapper delegate-invoke)
System.MulticastDelegate:invoke_void_object_EventArgs
(object,System.EventArgs)
  at System.Web.HttpApplication+<>c__CompilerGenerated1.MoveNext
() [0x0] 








  at System.Web.Services.Protocols.WebServiceHelper.InvalidOperation
(System.String message, System.Net.WebResponse response,
System.Text.Encoding enc) [0x0]   at
System.Web.Services.Protocols.SoapHttpClientProtocol.ReceiveResponse
(System.Net.WebResponse response,
System.Web.Services.Protocols.SoapClientMessage message,
System.Web.Services.Protocols.SoapExtension[] extensions) [0x0]   at
System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke
(System.String method_name, System.Object[] parameters) [0x0]   at
iFolderWeb.GetAuthenticatedUser () [0x0]   at (wrapper
remoting-invoke-with-check) iFolderWeb:GetAuthenticatedUser ()
  at Novell.iFolderApp.Web.Login.DoLogin (System.String username,
System.String password, Boolean check) [0x0]

Both of these are using the root account (as we have not been able to
create any users as of yet). How do we fix this?
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Fwd: Re: [Ifolder-dev] iFolder Client running on Gusty]

2007-12-03 Thread Balakrishnan KalIdas
Hi Patrik,

 Just for confirmation, I suppose after the installation, simias-server-setup 
is ran from the bin location.

Kalis

>>> Patrik Dufresne <[EMAIL PROTECTED]> 12/2/2007 3:21 AM >>>
Hi,

This time, I really need help !

After compiling the client under Gusty, I continue to compile an 
appropriate server to use the client because nobody want to grant me an 
access to his iFolder server. I thought it's will be more simple under 
Gusty, but I was wrong. The mono-apache-server under Gusty seam broken 
. I well know that it's work under Dapper because I have an other 
server running it.

I follow the guide present on the wiki, named "HowTo:Building iFolder 
Enterprise Server on Dapper". It's a very complete guide except it's out 
of date like a lot of thing on the wiki. Finally, I got every thing 
compileand install. Also, apache work with mono server version 1.

When I try to login using the AdminWebService, I got this error in 
adminweb.log.

2007-12-01 16:36:47,975 [-1224631376] INFO  Login - [192.168.1.125]
CBA: key is Connection , value : keep-alive
2007-12-01 16:36:47,984 [-1224631376] INFO  Login - [192.168.1.125]
CBA: key is Keep-Alive , value : 300
2007-12-01 16:36:47,984 [-1224631376] INFO  Login - [192.168.1.125]
CBA: key is Accept , value :

text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
CBA: key is Accept-Charset , value : ISO-8859-1,utf-8;q=0.7,*;q=0.7
2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
CBA: key is Accept-Encoding , value : gzip,deflate
2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
CBA: key is Accept-Language , value : en-us,en;q=0.5
2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
CBA: key is Cookie , value :
ASPSESSION=892FC6EB2B19560FD63C0DCC035976; test=True
2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
CBA: key is Host , value : 192.168.1.126
2007-12-01 16:36:47,985 [-1224631376] INFO  Login - [192.168.1.125]
CBA: key is User-Agent , value : Mozilla/5.0 (X11; U; Linux i686;
en-US; rv:1.8.1.10) Gecko/20071126 Ubuntu/7.10 (gutsy) Firefox/2.0.0.10
2007-12-01 16:36:57,028 [-1234187344] INFO  Login - [192.168.1.125]
Client Information: admin, 192.168.1.125, en-us, Mozilla/5.0 (X11;
U; Linux i686; en-US; rv:1.8.1.10) Gecko/20071126 Ubuntu/7.10
(gutsy) Firefox/2.0.0.10
2007-12-01 16:36:57,798 [-1234187344] INFO  Login - [192.168.1.125]
Login Failed
System.Web.Services.Protocols.SoapException:
System.NullReferenceException-Object reference not set to an
instance of an object
in <0x0043c>
System.Web.Services.Protocols.SoapHttpClientProtocol:ReceiveResponse
(System.Net.WebResponse response,
System.Web.Services.Protocols.SoapClientMessage message,
System.Web.Services.Protocols.SoapExtension[] extensions)
in <0x0024f>
System.Web.Services.Protocols.SoapHttpClientProtocol:Invoke
(System.String method_name, System.Object[] parameters)
in <0x00025> iFolderAdmin:GetSystem ()
in (wrapper remoting-invoke-with-check) iFolderAdmin:GetSystem ()
in <0x005c5> Novell.iFolderWeb.Admin.Login:DoLogin (System.String
username, System.String password, Boolean check)
2007-12-01 16:36:57,818 [-1234187344] ERROR Global - [192.168.1.125]
Application Error
System.Web.Services.Protocols.SoapException:
System.NullReferenceException-Object reference not set to an
instance of an object
in <0x0043c>
System.Web.Services.Protocols.SoapHttpClientProtocol:ReceiveResponse
(System.Net.WebResponse response,
System.Web.Services.Protocols.SoapClientMessage message,
System.Web.Services.Protocols.SoapExtension[] extensions)
in <0x0024f>
System.Web.Services.Protocols.SoapHttpClientProtocol:Invoke
(System.String method_name, System.Object[] parameters)
in <0x00025> iFolderAdmin:GetSystem ()
in (wrapper remoting-invoke-with-check) iFolderAdmin:GetSystem ()
in <0x005c5> Novell.iFolderWeb.Admin.Login:DoLogin (System.String
username, System.String password, Boolean check)


Also I try to login via iFolderClient 3.6 under Windows. The client 
display "Server not available".

Using the iFolder Web Access "http://exemple.com/ifolder"; give this
error message in the browser.
Exception Message: System.NullReferenceException-Object reference
not set to an instance of an object
Exception Type: System.Web.Services.Protocols.SoapException
Exception Site: System.Object[]
ReceiveResponse(System.Net.WebResponse,
System.Web.Services.Protocols.SoapClientMessage,
System.Web.Services.Protocols.SoapExtension[])
Exception Source: System.Web.Services

Exception Stack:

System.Web.Services.Protocols.SoapException:
System.NullReferenceException-Object reference not 

Re: [Ifolder-dev] tell me please, the first step to translate ifolder program

2007-11-26 Thread Balakrishnan KalIdas
Hi,

 The SVN repository contains po files for Linux client and resx files for 
Windows.

Kalis

>>> "Choi, Ji-Hui" <[EMAIL PROTECTED]> 11/24/2007 7:16 PM >>>
Hi, list

I'm Mr.Dust(is just my nick)
at first I really appreciate you and novell for this so nice program.
but ifolder doesn't support my own tongue, korean.

so I want to translate from english to korean.
but how can I do? I can't find any clues. ifolder doesn't have any po
files(gettext), nor any language files.
please tell me, the first step.

thank you, guys.

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr 
http://GIMP.kr
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Re: [Announce] Windows Client

2007-11-25 Thread Balakrishnan KalIdas
The auto-start during system startup is a known issue. Please run it from the 
start menu.

Kalis

>>> Anand Kumria <[EMAIL PROTECTED]> 11/25/07 12:37 AM >>>
On Sat, 24 Nov 2007 18:52:15 +, Anand Kumria wrote:

> 
> So, installation (attempt) feedback on Vista (Home Premium):
> 
> 1. The extraction of, and then running, a .MSI causes a security check
> (do you wish to run a downloaded program c:\users\user\appdata\roaming
> \downloaded installation\... ?)
> 
> 2. Installation fails when it attempts to run "RegAsm" to register
> something - the exact message is:
> 
> "Action RegASM_iFolderComponent, location: ...\iFolderCom..."
> 

3. When restarting, it attempts to start iFolder but fails (displays a 
splash screen) and the error says "incorrect or invalid path".

Was this iFolder client actually tested on a pristine installation?

Thanks,
Anand

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Re: [Announce] Windows Client

2007-11-25 Thread Balakrishnan KalIdas
I have already sent a mail with all the MD5 Sums. If needed I can send it again.

Kalis

>>> Anand Kumria <[EMAIL PROTECTED]> 11/24/07 11:43 PM >>>
On Thu, 22 Nov 2007 09:55:53 -0700, Balakrishnan KalIdas wrote:

> Hi All,
> 
>  Windows client is available for download from
>  http://forgeftp.novell.com/ifolder/client/released/3.6OES2/

Is there are reason it was uploaded are three partial ZIP files?

It just looks suspicious.

> 
> Check http://www.ifolder.com for news update and previous mail for MD5
> Sums

As far as I understand, ifolder is a mediawiki installation that has lots 
of spammers modifying the contents.  Why would the content of that site 
be trustworthy?

Why were you not able to include the various MD5 checksums in your email?

It just looks suspicious.

Anand

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Windows client

2007-11-22 Thread Balakrishnan KalIdas
You might want to try winzip, as I used winzip to split it. Open the first zip 
file which will use the z01 and z02 for extraction.

Kalis

>>> Chris Arnold <[EMAIL PROTECTED]> 11/23/2007 4:02 AM >>>
Hi All,

 I have uploaded the Windows client split into 3 parts at 
http://forgeftp.novell.com/ifolder/client/released/3.6OES2/. It is a zip file 
in 3 parts. Following are the MD5 sums for the 3 parts and the final extracted 
executable.

MD5 sums

ifolder-win.zip e62ca89a334ca62a1243dedaa0a190bb
ifolder-win.z01 14fb71be0d69645689f5d012114bf784
ifolder-win.z02 fabdf14c23217265cb14ae10c2e37f53

Final extracted exe  7d480ff2658356387d4f21becb57bfd5

I download the 3 zip files and try to extract the 3 files but get "file is of 
unknown format or damaged". I am using winrar to unzip the files. None of the 3 
files will unzip. How do you extract the files?
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] [Announce] Windows Client

2007-11-22 Thread Balakrishnan KalIdas
Hi All,

 Windows client is available for download from 
http://forgeftp.novell.com/ifolder/client/released/3.6OES2/

Check http://www.ifolder.com for news update and previous mail for MD5 Sums

Thanks,
Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Windows client

2007-11-22 Thread Balakrishnan KalIdas
Hi All,

 I have uploaded the Windows client split into 3 parts at 
http://forgeftp.novell.com/ifolder/client/released/3.6OES2/. It is a zip file 
in 3 parts. Following are the MD5 sums for the 3 parts and the final extracted 
executable.

MD5 sums

ifolder-win.zip e62ca89a334ca62a1243dedaa0a190bb
ifolder-win.z01 14fb71be0d69645689f5d012114bf784
ifolder-win.z02 fabdf14c23217265cb14ae10c2e37f53

Final extracted exe  7d480ff2658356387d4f21becb57bfd5

Thanks,
Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] ifolder client doesn't work on windows server 2003

2007-11-21 Thread Balakrishnan KalIdas
Novell iFolder 3.6 Win client does not support Win 2k3 server. It only supports 
Win 2k Professional and Win XP.

Kalis

>>> sANTo <[EMAIL PROTECTED]> 11/21/2007 2:17 PM >>>
I successfully installed and use the iFolder client on multiple windows XP
machines and an openSUSE 10.3 machine,
but for some reason I can't get it working on windows server 2003 machines.

The installation finishes successfully, but when I launch the client the
splash screen appears for several minutes and then
the application crashes with the following error:

Title: Unable to Start iFolder Services
Description: A software error is preventing iFolder from initializing.
Please contact your system administrator.
Details: Object reference not set to an instance of an object.

I tried uninstalling the client, removing all references to ifolder and
simias (both on the filesystem and in the registry) and then reinstalling
the client,
but that didn't help.
I also installed on several other windows server 2003 systems (without
previous ifolder installs),
some already had .Net framework v2, some had no .Net framework at all (and
thus use the .net runtime that comes with the client).
I even tried setting the compatibility mode of ifolderapp.exe and
simias.exeto "windows xp".

It must be something specific to windows server 2003, but I have no idea
what it can be.
On MSDN I found a list of fixes in windows server 2003 SP1, which indicates
several issues related to
"Object Reference not set to an instance of an object" were fixed.
But my windows server 2003 systems have SP1 (and one has SP2)

Oh, and I'm using the 3.6 client that comes with novel OES2
(My server runs the latest build from
http://download.opensuse.org/repositories/home:/dl9pf/openSUSE_10.2/ but
that doesn't matter,
because the client doesn't even come to the point where it should connect
with the server)

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] IDE used to develop iFolder & Simias

2007-11-16 Thread Balakrishnan KalIdas
There is no IDE as such, I use vi editor, some of my team folks use emacs. If 
you have windows env, then the solution files can be used mainly for browsing 
code faster but not for compilation. I suppose the project files are of VS 7.1 
and might be old and might have the latest files in the solution that are added 
to 3.6.

Kalis

>>> Patrik Dufresne <[EMAIL PROTECTED]> 11/16/2007 6:49 PM >>>
Hi there,

Since I don't get any reply about running iFolder on Gusty, I want to 
debug it my self. But I want to know witch IDE are you using to develop 
this project. I see there is a Visual Studio Project and Solution file, 
but according the recent present of Windows Release I'm note sure you 
develop this thing under Windows.

Thank for your help

Patrik Dufresne
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] iFolder Client running on Gusty

2007-11-16 Thread Balakrishnan KalIdas
Hi Patrik,

 Once you successfully compile the latest source of simias and ifolder, ensure 
that the following files are present in the /lib/simias/web
ClientUpdate.asmx 
Global.asax
IdentitySyncManager.asmx  
Registration.asmx  
SyncHandler.ashx  


ClientUpdateHandler.ashx  
HostAdmin.asmx 
Login.ashx
ReportLogHandler.ashx  
   
pubsfile.ashx  
web.config
DomainService.asmx
HostLocation.asmx  
POService.asmx
Simias.asmx
iFolder.asmx  
sfile.ashx

 These asmx files are necessary for the Web server to start properly. Or if you 
can send me the installed path directory structure and the files/dirs in that, 
I wil be able to provide more information on why it failed.

Kalis



>>> Patrik Dufresne <[EMAIL PROTECTED]> 11/14/2007 10:02 PM >>>
Hi,

I'm trtying to get running iFolder Client on Gusty without success. I 
can compile simias and iFolder without any problem. when I try to launch 
iFolder application in console mode I receive this error that is related 
to the starting process of simias.
Error: Cannot start the local web services.

When I'm trying to launch only simias I get the same error. So I getting 
my self in the code to find where is the problem. I add some 
Console.WriteLine to know where is the error. I find out that the 
process stopping on line ipcServerSocket = new Socket( 
AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp );

I'm using the version ifolder3-3.4.6214.1, simias-1.4.6214.1
I'm not really sure it's the best one to use with Ubuntu, but it's the 
one you suggest on the web site.

I also try with version simias-1.5.7031.1, but I get this error when I 
try to compile simias.
config.status: error: cannot find input file: src/server/Makefile.in

Thank for your help.

Patrik Dufresne

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] clients

2007-11-16 Thread Balakrishnan KalIdas
Hi Tim,

 I am copying Satya (in CC)  who will be able to help you in Mac issues. The 
Mac UI code might have a older iFolderService.m which might cause this issue as 
it will be incompatible with the new Simias provided web services.

 One easiest (but needs patients) way out is to compare the iFolderService.cs 
in the Linux UI code path (ifolder/src/WebService) against the iFolderService.m 
in mac and update it. This will help you fix all the issues.

 As everyone understands Simias has undergone drastic change in last one year 
for Multi-server support, multi-volume support, encryption, new sharing 
mechanism etc while the Mac UI never adapted to it due to time constraints. I 
would expect we get the Mac UI in par with the Linux UI for functionality with 
the community help as there is no Mac expertise or very less Mac expertise in 
the current team.

Kalis

>>> Tim Janzen <[EMAIL PROTECTED]> 11/14/2007 8:38 AM >>>
Hi Kalis,
I'm trying to build on Mac Intel. I've got Simias compiled, and the  
iFolder UI compiled. However, I'm getting a soap exception during the  
iFolderData refresh stage when I launch iFolder and am unable to  
connect to the server (running on Linux). I'm using the same gsoap  
version on both as far as I can tell, so I'm not sure what the issue  
is. Simias is version 6977, along with the latest client, 6652. Below  
is the output from the console
2007-11-13 21:53:12.891 iFolder 3[10061] Simias Process Running
2007-11-13 21:53:12.891 iFolder 3[10061] reading Simias credentials
2007-11-13 21:53:12.892 iFolder 3[10061] Initialized SimiasService on  
URL: http://127.0.0.1:8086/simias10/Simias.asmx 
2007-11-13 21:53:12.892 iFolder 3[10061] Initialized iFolderService  
on URL: http://127.0.0.1:8086/simias10/iFolder.asmx 
2007-11-13 21:53:12.892 iFolder 3[10061] initializing Simias Events
2007-11-13 21:53:12.893 iFolder 3[10061] Creating and loading  
iFolderData
2007-11-13 21:53:12.893 iFolder 3[10061] Refreshing iFolderData
2007-11-13 21:53:12.933 iFolder 3[10061] Exception refreshing  
iFolderData
2007-11-13 21:53:12.933 iFolder 3[10061] Exception in  
iFolderData:refres: SOAP Error 29 SOAP error in SimiasService.GetDomains
2007-11-13 21:53:12.934 iFolder 3[10061] Done Refreshing iFolderData

Any ideas on where the problem may be?

thanks
Tim

On 2007-Nov-13, at 11:10 AM, Balakrishnan KalIdas wrote:

> Justin,
>
>  The old Mac client might not work with the new server since the  
> sharing model is changed and the way files are synchronized have be  
> changed to improve performance. If anyone can complile latest  
> simias and the mac UI for Intel, then we will have a Mac client.  
> Simias currently compiles for both Intel and PPC, the only issue is  
> to compile the Mac UI.
>
> Kalis
>
>>>> "Justin Cress" <[EMAIL PROTECTED]> 11/5/2007 11:14 PM >>>
> I need to add about 20 clients to my ifolder server, 2 questions
> 1. can someone point me at the most up 2 date windows client?
> 2. if there isn't a new mac client, will the 3.4 mac clients work  
> on the
> newest server?
>
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com 
> http://forge.novell.com/mailman/listinfo/ifolder-dev 


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] clients

2007-11-13 Thread Balakrishnan KalIdas
Justin,

 The old Mac client might not work with the new server since the sharing model 
is changed and the way files are synchronized have be changed to improve 
performance. If anyone can complile latest simias and the mac UI for Intel, 
then we will have a Mac client. Simias currently compiles for both Intel and 
PPC, the only issue is to compile the Mac UI.

Kalis

>>> "Justin Cress" <[EMAIL PROTECTED]> 11/5/2007 11:14 PM >>>
I need to add about 20 clients to my ifolder server, 2 questions
1. can someone point me at the most up 2 date windows client?
2. if there isn't a new mac client, will the 3.4 mac clients work on the
newest server?

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Need help or instructions for integrating iFolder 3.6 with external LDAP service

2007-11-13 Thread Balakrishnan KalIdas
Novell iFolder 3.6 can use any external LDAP Identity service. It is well 
tested against Novell eDirectory, Active Directory and OpenLDAP. For Active 
Directory, the iFolder admin user and the iFolder proxy user must be 
pre-created before configuration, since the iFolder configuration does not 
create the users in AD.

 During simias-server-setup, mention "Y" for LDAP and configure the iFolder 
service. The setup auto-detects the type of Directory service and configures. 
Please mention the FDN for all identities(ifolder admin, ifolder proxy). 
Mention the container /context in which the user objects are present as the 
search context, this will enable the server to synchronize the identities to 
the local database. Rest of the administration can be done using the Web Admin 
interface.

Kalis


>>> Justin Freeman <[EMAIL PROTECTED]> 10/31/2007 2:48 PM >>>
Hi iFolder Community 

Has anyone been able to set up the latest iFolder 3.6 so that it can 
authenticate users against an external LDAP service? I can see in the iFolder 
Web Admin there is the capability, but it does not appear to be complete. 

Novell have of course, got this working with the OES2 release, such that 
iFolder 3.6 integrates nicely with the eDirectory Service. Would be great 
Novell if you could share knowledge some of this with the community :) 

So has anyone done this and got some quick instructions handy and willing to 
share? 

--- 
Justin Freeman | Director 

email: [EMAIL PROTECTED] | web: http://www.agileware.net 
office: +61 02 61112941 | mobile: +61 0402 027764 
address: Unit 17/160 Lysaght Street, Mitchell, ACT 2911, Australia 
Agileware Pty. Ltd. | ABN: 46 100 906 947 

Linux | Software Development & Support | Web Hosting | Novell Gold Partner | 
IBM Business Partner 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] iFolder SSL

2007-11-13 Thread Balakrishnan KalIdas
Hi All,

 Is there anyone tested the iFolder server by enabling SSL for the Public and 
Private URL during configuration or configured the server using --use-ssl 
option?

Kalis

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] windows client

2007-11-13 Thread Balakrishnan KalIdas
Novell iFolder 3.6 Win client is around 63 Meg. ForgeFTP.novell.com allows only 
50M per file. Jan-Simon, is there any other repository I can upload to? Justin?

 The wiki site is down, I have raised a ticket and the team is looking at the 
server, we must have is up any time.

Kalis

>>> Jan-Simon Möller <[EMAIL PROTECTED]> 10/31/2007 12:50 AM >>>
Am Dienstag 30 Oktober 2007 19:22:44 schrieb Justin Cress:
> i just tried the fedora client, it works well.  thanks!
>
> the newest windows client at
> http://forgeftp.novell.com/ifolder/client/ 
> is
> http://forgeftp.novell.com/ifolder/client/3.6/20070420-1235/win/ifolder3-3.
>6.7085.1-1-setup.exe
>
> where should i go for a newer version?

Good question!  @Kalis: Whats your answer ?


> Also, whenever I try to add a user to an ifolder using the web interface it
> fails with the following message:
> Is this a known issue, am i doing something wrong, or should i submit a bug
> report?
>
>
> Exception Message: Index is less than 0 or more than or equal to the list
> count.
> Parameter name: index
> 0
> Exception Type: System.ArgumentOutOfRangeException
> Exception Site: System.Object get_Item(Int32)
> Exception Source: mscorlib
>
> Exception Stack:
>
> System.ArgumentOutOfRangeException: Index is less than 0 or more than or
> equal to the list count.
> Parameter name: index
> 0
>   at System.Collections.ArrayList.get_Item (Int32 index) [0x0]
>   at System.Web.UI.WebControls.ListItemCollection.get_Item (Int32 index)
> [0x0]
>   at System.Web.UI.WebControls.ListControl.LoadViewState
> (System.ObjectsavedState) [0x0]
>   at System.Web.UI.Control.LoadViewStateRecursive (System.Object
> savedState) [0x0]
>   at System.Web.UI.Control.LoadViewStateRecursive (System.Object
> savedState) [0x0]
>   at System.Web.UI.Control.LoadViewStateRecursive (System.Object
> savedState) [0x0]
>   at System.Web.UI.Page.LoadPageViewState () [0x0]
>   at System.Web.UI.Page.InternalProcessRequest () [0x0]
>   at System.Web.UI.Page.ProcessRequest (System.Web.HttpContext context)
> [0x0]
>
> Username: jcress
> User Full Name: justin cress
>
> System iFolder Name: Western Kentucky University Debate iFiles
> System iFolder Version: 1.0.0.0
>
> Server iFolder Version: 1.5.7292.1
> Server CLR Version: 1.1.4322.2032
> Server Host: ip173-105
> Server Machine: ip173-105
> Server Operating System: Unix 2.6.22.9
> Server Username: wwwrun


First try this: 
Stop any client and stop apache
Remove the ifolder3-server-svn completely!
Remove /var/lib/simias/*

Then install the package again and retry!

Also update mono to the newest version you can get.

> > Best regards
> > Jan-Simon


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Trouble setting up ifolder3-server-3.5.7039.1-1

2007-11-05 Thread Balakrishnan KalIdas
The new ifolder server is available in the opensuse download area. Build is 
maintained by Jan-Simon for these distros. You can also get the link from 
www.ifolder.com.

Kalis

>>> <[EMAIL PROTECTED]> 11/6/2007 1:16 AM >>>
Dear list,
I was looking for some pointers on how to get ifolder server 
v3.5.7039.1-1 running on SuSE 10.2
Not quite sure if this is the right list... I did not see a general 
questions list, but I do apologies if I am intruding.

Basically, I can not get any of the pages to appear that are described in 
the directions.
The most I seem to be able to get is apache reporting a 500 error.  No 
other errors seem logged anywhere.
Also could not find anything one the web regarding this issue.

Any help is greatly appreciated!   -Cheers, Peter.

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Ifolder does not synchronize well

2007-11-05 Thread Balakrishnan KalIdas
It is possible the first synchronization only synced the new nodes and not the 
file, so try synchronizing the second time and check if the file is uploaded 
from the log (task bar right click-> Sync log).

 It is weird for Web based upload. Does the file appear in the WebAccess after 
upload? Is it possible to send the debug logs. Enable debug logging in 
Simias.log4net available at the store path.

Kalis

>>> IronBone <[EMAIL PROTECTED]> 11/5/2007 8:20 PM >>>
I have the package from download.opensue.org, opensuse 10.3, Gnome.

I have iFolder clients on 2 computers. I have one user and I login with  
the same user in that two clients.

If I add a file on one computer and synchronize with the server the  
changes are nor visible during the syncronization on the secomd computer.

The same I have if I add a file using the web interface - this file is not  
downloaded during the synchronization.

How to reproduce such an error:
1. Make a user in your serwer.
2. On the first computer login as this user and uploud a folder.
3. On the secound computer login as this user and download the folder.
4. Add a file do the folder on the secound computer and synchronize
5. Syncronize on the first computer - the added file in not coppied to the  
first computer

-- 
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ 
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] xmlexception on simias-server-setup

2007-11-01 Thread Balakrishnan KalIdas
Looks like the Simias.config in this build is corrupt or has invalid 
characters. I am attaching the default Simias.config, copy this to 
etc/simias/bill directory of your installation location. Now rerun the setup, 
it must work.

Kalis

>>> Patrick Scharrenberg <[EMAIL PROTECTED]> 11/1/2007 11:34 PM >>>
Hi list!

I installed ifolder3-server-svn-3.6.7303.1dl9pf-6.1on an opensuse 10.3
system.

After answering all questions of simias-server-setup (with the default
answers, but ldap=n, keyrecoveryagent=n)
I get the following XMLException and Simias.config is zero bytes long:

Configure Apache? [N]:

Working...

Configuring /data/simias/Simias.config...Failed

System.Xml.XmlException: Document element did not appear.
file:///data/simias/Simias.config Line 1, position 1.
  at System.Xml.XmlTextReader.Read () [0x0]
  at Mono.Xml.EntityResolvingXmlReader.Read () [0x0]
  at Mono.Xml.DTDValidatingReader.ReadContent () [0x0]
  at Mono.Xml.DTDValidatingReader.Read () [0x0]
  at Mono.Xml.Schema.XsdValidatingReader.Read () [0x0]
  at System.Xml.XmlValidatingReader.Read () [0x0]
  at System.Xml.XmlDocument.ReadNodeCore (System.Xml.XmlReader reader)
[0x0]
  at System.Xml.XmlDocument.ReadNode (System.Xml.XmlReader reader)
[0x0]
  at System.Xml.XmlDocument.Load (System.Xml.XmlReader xmlReader) [0x0]
  at System.Xml.XmlDocument.Load (System.String filename) [0x0]
  at Novell.iFolder.SimiasServerSetup.SetupSimias () [0x0]
  at Novell.iFolder.SimiasServerSetup.Configure () [0x0]
  at Novell.iFolder.SimiasServerSetup.Main (System.String[] args) [0x0]
  at System.Xml.XmlTextReader.Read () [0x0]
  at Mono.Xml.EntityResolvingXmlReader.Read () [0x0]
  at Mono.Xml.DTDValidatingReader.ReadContent () [0x0]
  at Mono.Xml.DTDValidatingReader.Read () [0x0]
  at Mono.Xml.Schema.XsdValidatingReader.Read () [0x0]
  at System.Xml.XmlValidatingReader.Read () [0x0]
  at System.Xml.XmlDocument.ReadNodeCore (System.Xml.XmlReader reader)
[0x0]
  at System.Xml.XmlDocument.ReadNode (System.Xml.XmlReader reader)
[0x0]
  at System.Xml.XmlDocument.Load (System.Xml.XmlReader xmlReader) [0x0]
  at System.Xml.XmlDocument.Load (System.String filename) [0x0]
  at Novell.iFolder.SimiasServerSetup.SetupSimias () [0x0]
  at Novell.iFolder.SimiasServerSetup.Configure () [0x0]
  at Novell.iFolder.SimiasServerSetup.Main (System.String[] args) [0x0]

FAILED


What can I do?

Patrick
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev



Simias.config
Description: application/xml
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

Re: [Ifolder-dev] How to upgrade from iFolder 3.5.6269 to iFolder 3.6?

2007-11-01 Thread Balakrishnan KalIdas
Hi All,

 The upgrade from previous version of server especially 3.5 to 3.6 must be 
straight forward. Also we have the simias-server-setup with an additional 
option --upgrade which will upgrade the older store format to newer one. It is 
possible I did not update the community about this new option which was done 
months ago for a cleaner upgrade, so that we need not rip and replace stuff.

  Meanwhile, is it possible for anyone to send the 3.5 store directory 
structure (starting from simias) and also the location of the Simias.config 
file if it is other than the store location itself. Afaik, the Simias.config 
location was different in 3.2 server.

Kalis

>>> "Matt Weisberg" <[EMAIL PROTECTED]> 10/31/2007 5:40 PM >>>

I couldn't find a good way to upgrade.  I was running 3.5.6172 on my server and 
I ended up doing a clean install and starting from scratch.


-- 

-
Matt Weisberg
Weisberg Consulting, Inc.
[EMAIL PROTECTED] 
www.weisberg.net 
ofc. 248.685.1970
cell 248.705.1950
fax 248.769.5963

>>> On Wed, Oct 31, 2007 at  5:13 AM, in message
<[EMAIL PROTECTED]>, Justin Freeman
<[EMAIL PROTECTED]> wrote:
> Hi iFolder Community, 
> 
> Will I be able to upgrade from iFolder 3.5.6269 to iFolder 3.6 by just 
> applying the latest 3.6 rpms? Are there are any post-upgrade changes 
> required? Or should I just perform a clean install and re-setup all the 
> users? 
> 
> Naturally, being able to upgrade an existing installation would be far 
> better than a clean install. 
> 
> Thanks for any help, 
> 
> --- 
> Justin Freeman | Director 
> 
> email: [EMAIL PROTECTED] | web: http://www.agileware.net 
> office: +61 02 61112941 | mobile: +61 0402 027764 
> address: Unit 17/160 Lysaght Street, Mitchell, ACT 2911, Australia 
> Agileware Pty. Ltd. | ABN: 46 100 906 947 
> 
> Linux | Software Development & Support | Web Hosting | Novell Gold Partner | 
> IBM Business Partner 



--- Scanned by M+ Guardian Messaging Firewall ---
Talk to Weisberg Consulting about protecting your systems with M+Guardian today!
http://www.weisberg.net 


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] windows client

2007-10-30 Thread Balakrishnan KalIdas
Mac client is not yet supported for the latest server.

Kalis

>>> "Justin Cress" <[EMAIL PROTECTED]> 10/31/2007 2:04 AM >>>
my server is on opensuse 10.3, all i did was install ifolder3-server-svn
from the yast repository, and go.  I dont think i configured anything

also, the most recent mac client i can find is
http://forgeftp.novell.com/ifolder/client/3.5/20060329-1135/mac/ 


do you think this will work?

On 10/30/07, Jan-Simon Möller <[EMAIL PROTECTED]> wrote:
>
> Am Dienstag 30 Oktober 2007 20:39:25 schrieb Justin Cress:
> > before i uninstall ifolder-server-svn is there a way to back up all of
> the
> > users that I have created?
>
> I thought you had installed 'only' a testing-server. My bad. Then use the
> update instead.
> But i need to know how you setup your server - RPM default or manual
> (simias-server-config).
>
> > do you think it might be easier to wait until a new build hits the
> > repository, and maybe that will fix it?
>
> I updated the community-repository already to the latest working state.
>
> Best regards
> Jan-Simon
>
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] ifolder 3.6 on CentOS 5

2007-10-24 Thread Balakrishnan KalIdas
Hi Dave,

 I have made a commit to SVN with a probable fix. I would like you to test it. 
As per your logs the apache configuration path is different in CentOS. Now the 
Simias setup will prompt for the configuration path if the default path is not 
found. If you provide the correct path then the configuration must be 
successful.

 Based on your input, I will fix the Web-Admin and Web-Access setups as well.

 One catch here is, the Mono's mod_mono config file for apache is supposed to 
be present at the apache configuration path that you specify during simias 
setup. If this file is in different location than the apache config path (which 
should not be the case), you might need to copy it to the config path as well. 
This will enable simias to start successfully when apache restarts.

 I assume the simias setup prompts for the apache user/group.

Thanks,
Kalis

>>> "Dave" <[EMAIL PROTECTED]> 10/23/2007 11:04 PM >>>
Hello Kallis,
To be honest what i've done feels more like a hack together job, i'm 
sure there are probably better ways of doing this. I can send you a list of 
rpms on this box, there are a lot of them, more than needed for ifolder, but 
i do other stuff with this machine. I've included the error below. My apache 
is httpd 2.2.3 and is running as user and group apache, which is also listed 
in my password and group files.
Please let me know if there's anything else i can do. I'd really like to 
see ifolder 3.6 server and client which i haven't got working yet, to be in 
one of the major centos repos perhaps rpmforge which would make 
installations easier.
Dave.

- Original Message - 
From: "Balakrishnan KalIdas" <[EMAIL PROTECTED]>
To: ; "Dave" <[EMAIL PROTECTED]>
Sent: Tuesday, October 23, 2007 1:08 AM
Subject: Re: [Ifolder-dev] ifolder 3.6 on CentOS 5


Hi Dave,

 Thanks for getting the CentOS build to work. It would be great and helpful 
if you can send the screenshot or the error displayed in the screen while 
performing simias-server-setup.

Thanks,
Kalis

>>> "Dave" <[EMAIL PROTECTED]> 10/23/2007 12:15 AM >>>
Hello,
I'm trying to get ifolder
server 3.6 and client going on Centos5. A lot of the docs are inaccurate as
they point to pages that are returning 404 errors, or indicate that 3.5
should be got, or they are for Centos 4.3 not 5.0. I've installed mono and
mod_mono for CentOS5, mainly by getting the packages from a guy who took the
src.rpms and compiled specifically for Centos5. This appears to work, i
wasn't liking having to use 4.3 rpms on a 5.0 box, i'd like to keep this as
clean as possible. Mod_mono i just picked up
and installed, from the download.fedora page it was for fc7 but it compiled
fine on CentOS5. So,
now i'm on to ifolder. I've downloaded an src.rpm for both server and
client, unfortunately it looks like they're made for suse box, not CentOS.
The repo again indicates 3.5 and it's for centos 4.3, and when i try it it
returns a 404 repo not found.
I've recompiled the src.rpm for the 3.6 server, it installed, i had to
change some values in the .spec file prefix to /usr, and some items in the
%post section, the user and group to chown items to. This worked and the rpm
installed, but when i run simias-server-setup it does not complete
successfully, it stalls out on the apache user and group which are both set
to apache.
I'd like to get ifolder going, i've heard what it can do and i'd like to
give it a go, i think it would solve a lot of my data storage problems.
Thanks.
Dave.

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] ifolder 3.6 on CentOS 5

2007-10-22 Thread Balakrishnan KalIdas
Hi Dave,

 Thanks for getting the CentOS build to work. It would be great and helpful if 
you can send the screenshot or the error displayed in the screen while 
performing simias-server-setup.

Thanks,
Kalis

>>> "Dave" <[EMAIL PROTECTED]> 10/23/2007 12:15 AM >>>
Hello,
I'm trying to get ifolder
server 3.6 and client going on Centos5. A lot of the docs are inaccurate as
they point to pages that are returning 404 errors, or indicate that 3.5
should be got, or they are for Centos 4.3 not 5.0. I've installed mono and
mod_mono for CentOS5, mainly by getting the packages from a guy who took the
src.rpms and compiled specifically for Centos5. This appears to work, i 
wasn't liking having to use 4.3 rpms on a 5.0 box, i'd like to keep this as 
clean as possible. Mod_mono i just picked up
and installed, from the download.fedora page it was for fc7 but it compiled
fine on CentOS5. So,
now i'm on to ifolder. I've downloaded an src.rpm for both server and
client, unfortunately it looks like they're made for suse box, not CentOS.
The repo again indicates 3.5 and it's for centos 4.3, and when i try it it
returns a 404 repo not found.
I've recompiled the src.rpm for the 3.6 server, it installed, i had to 
change some values in the .spec file prefix to /usr, and some items in the 
%post section, the user and group to chown items to. This worked and the rpm 
installed, but when i run simias-server-setup it does not complete 
successfully, it stalls out on the apache user and group which are both set 
to apache.
I'd like to get ifolder going, i've heard what it can do and i'd like to
give it a go, i think it would solve a lot of my data storage problems.
Thanks.
Dave.

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] compil ifolder server on ubuntu 6.06

2007-10-14 Thread Balakrishnan KalIdas
Hi Bastien,

 Thanks for the logs, it really helps to identify what the issue is.

 From the logs looks like apache doesn't know the key store, where it can get 
the Public/Private keys. This has to be setup. Apache documentation for Ubuntu 
should help or mono documentation for Ubuntu should help.

 In SuSE, the key store which apache/mono points to is 
/var/lib/wwwrun/.config/.mono/keypairs

Kalis

>>> "Bastien Jaillot" <[EMAIL PROTECTED]> 10/15/2007 3:13 AM >>>
Hi,

always on ubuntu 6.06, i compiled and installed from SVN. The
installation passed without problem, i do a simias-server-setup,
choices by default for all of parameters expect Use Key recovery Agent
and use LDAP which i said no.

I relaunch apache2 and then :
cat /var/lib/simias/log/Simias.log


2007-10-14 23:35:52,659 [-1237627984] INFO
Simias.Storage.Provider.Provider - Created new store /var/lib/simias.
2007-10-14 23:35:53,655 [-1237627984] ERROR Simias.Service.Manager -
Object reference not set to an instance of an object
System.NullReferenceException: Object reference not set to an instance
of an object
in <0x00064> Simias.Storage.Identity:get_Credential ()
in <0x00016> Simias.Storage.Identity:get_PublicKey ()
in <0x00518> Simias.Storage.Store:.ctor ()
2007-10-14 23:35:53,739 [-1237627984] INFO
Simias.Storage.Provider.Provider - Created new store /var/lib/simias.
2007-10-14 23:35:54,735 [-1237627984] ERROR Simias.Service.Manager -
Exception has been thrown by the target of an invocation.
System.Reflection.TargetInvocationException: Exception has been thrown
by the target of an invocation. ---> System.NullReferenceException:
Object reference not set to an instance of an object
in <0x00064> Simias.Storage.Identity:get_Credential ()
in <0x00016> Simias.Storage.Identity:get_PublicKey ()
in <0x00518> Simias.Storage.Store:.ctor ()--- End of inner exception
stack trace ---

in <0x0010e> System.Reflection.MonoCMethod:Invoke (System.Object obj,
BindingFlags invokeAttr, System.Reflection.Binder binder,
System.Object[] parameters, System.Globalization.CultureInfo culture)
in <0x0001c> System.Reflection.MonoCMethod:Invoke (BindingFlags
invokeAttr, System.Reflection.Binder binder, System.Object[]
parameters, System.Globalization.CultureInfo culture)
in <0x00035> System.Reflection.ConstructorInfo:Invoke (System.Object[]
parameters)
in <0x00105> System.Activator:CreateInstance (System.Type type,
Boolean nonPublic)
in <0xc> System.Activator:CreateInstance (System.Type type)
in <0x0003a> System.Reflection.Assembly:CreateInstance (System.String
typeName, Boolean ignoreCase)
in <0x00012> System.Reflection.Assembly:CreateInstance (System.String typeName)
in <0x00055> Simias.Service.ThreadServiceCtl:Start ()
in <0x0008b> Simias.Service.Manager:messageDispatcher
(Simias.Service.Message msg)
2007-10-14 23:35:54,740 [-1237627984] INFO  Simias.Service.Manager -
"Simias Journal" service started.
2007-10-14 23:35:54,807 [-1237627984] INFO
Simias.Storage.Provider.Provider - Created new store /var/lib/simias.
2007-10-14 23:35:57,091 [-1237627984] ERROR Simias.Service.Manager -
Object reference not set to an instance of an object
System.NullReferenceException: Object reference not set to an instance
of an object
in <0x00064> Simias.Storage.Identity:get_Credential ()
in <0x00016> Simias.Storage.Identity:get_PublicKey ()
in <0x00518> Simias.Storage.Store:.ctor ()
2007-10-14 23:35:57,151 [-1237627984] INFO
Simias.Storage.Provider.Provider - Created new store /var/lib/simias.
2007-10-14 23:35:58,159 [-1237627984] ERROR Simias.Service.Manager -
An exception was thrown by the type initializer for
Simias.Server.Report
System.TypeInitializationException: An exception was thrown by the
type initializer for Simias.Server.Report --->
System.NullReferenceException: Object reference not set to an instance
of an object
in <0x00064> Simias.Storage.Identity:get_Credential ()
in <0x00016> Simias.Storage.Identity:get_PublicKey ()
in <0x00518> Simias.Storage.Store:.ctor ()--- End of inner exception
stack trace ---

in <0x0> 
in <0x00021> Simias.Server.ReportService:Start ()
in <0x00102> Simias.Service.ThreadServiceCtl:Start ()
in <0x0008b> Simias.Service.Manager:messageDispatcher
(Simias.Service.Message msg)
2007-10-14 23:35:58,159 [-1237627984] INFO  Simias.Service.Manager -
Services started.
2007-10-14 23:35:58,348 [-1263129680] INFO
Simias.Storage.Provider.Provider - Created new store /var/lib/simias.
2007-10-14 23:36:00,455 [-1224926288] INFO
Simias.Storage.Provider.Provider - Created new store /var/lib/simias.
-

apparently it doesn't like the missing of "publickey()'. What I've to do?

thx for all

On 10/8/07, Balakrishnan KalIdas <[EMAIL PROTECTED]> wrote:
> Gsoap assumes the libraries are in /usr/lib, if you are compiling for 64bit

Re: [Ifolder-dev] iFolder 3.6 released as part of Novell OES 2 - so where is the open source version?

2007-10-12 Thread Balakrishnan KalIdas
Hi All,

 The recent Jan-Simon builds are the latest builds which is considered stable. 
Compared to OES 2, Open Source has the additional SSL feature, which is not 
present in OES 2.

 We need to test the SSL feature to figure out if there are any bugs associated 
with it. OES 2 has the windows client, which I think many people will love 
getting it as part of OES 2. I would like to know where to upload the windows 
client for everyone's access. I can send it to Jan-Simon and he can post it in 
his download area. Or, if anyone has the OES 2 download, they can send the 
client to Jan-Simon.

 We are still working on a production quality wiki to migrate, so that the spam 
can be avoided.

 The latest server links are in the wiki's main page, posted on Oct 4.

Kalis

>>> "Bastien Jaillot" <[EMAIL PROTECTED]> 10/12/2007 7:38 AM >>>
I'm also intersted for a response...
I will test OES 2 to see if a better windows client is inscluded.

see ya.

On 10/8/07, Justin Freeman <[EMAIL PROTECTED]> wrote:
> Hi Guys
>
> Just saw the Novell OES 2 has been released and includes iFolder 3.6
> http://www.novell.com/products/openenterpriseserver/ifolder.html 
>
> My question is this - when will the open source version of iFolder 3.6 also
> be stable and available to the community? I have been waiting for a fairly
> long time for a stable version of iFolder client for Windows and Linux, as
> well as a stable iFolder server.
>
> I've searched the iFolder wiki and there are multiple references to
> different builds which is a bit confusing.
>
> If iFolder 3.6 is now stable and available then can we please have some
> links to download and also get the wiki updated?
>
> Cheers
> Justin
>
> ___
> ifolder-dev mailing list
> ifolder-dev@forge.novell.com 
> http://forge.novell.com/mailman/listinfo/ifolder-dev 
>


-- 
Bastien Jaillot
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] [Patches] Patches and "Hacks" used for buildservice ...

2007-10-08 Thread Balakrishnan KalIdas
Thanks Jan-Simon for the patches. For the first one, I would prefer

ifndef (lib)
lib=$lib
endif

so that we can export lib to either lib or lib64 in our spec file.

 My patch had the typo of missing $ in the check-in.

 I agree with the second patch, the patch was more to do with RPM upgrades 
where the ldconfig couldn't set the library path for Flaim to load.

Kalis

>>> Jan-Simon Möller <[EMAIL PROTECTED]> 10/8/2007 6:46 PM >>>
Here are the Patches I use to get simias and ifolder build inside the 
buildservice.

Client/Server:
1st fix is for 64bit/flex . (quick hack, only applied to 64bit-builds !)
flex_in_lib64.diff
(Better eval system and assign automagically.)

Server:
2nd fix is done because of "make install" writes to /etc/simias/ (hardcoded) 
which is not allowed in buildservice (non-root "make install").
no_write_to_etc_during_install.diff

The steps are therefore done in rpm %post .

Greets
Jan-Simon

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] compil ifolder server on ubuntu 6.06

2007-10-07 Thread Balakrishnan KalIdas
Gsoap assumes the libraries are in /usr/lib, if you are compiling for 64bit, 
then set $lib to lib64 before compiling, so that gsoap gets the correct path.

Kalis

>>> "Bastien Jaillot" <[EMAIL PROTECTED]> 10/5/2007 2:06 PM >>>
Hi,

I tried to compile simias server on an ubuntu 6.06 LTS but i've
problems with gsoap :


make -C ../../../tools/gsoap/gsoap-linux-2.7/src && cp
./../../tools/gsoap/gsoap-linux-2.7/src/soapcpp2
./../../tools/gsoap/gsoap-linux-2.7
make[4]: Entering directory `/root/simias/tools/gsoap/gsoap-linux-2.7/src'
gcc -Wall -O1  -DWITH_BISON -DWITH_FLEX symbol2.o error2.o
soapcpp2_yacc.tab.o lex.yy.o init2.o soapcpp2.o /usr/lib/libfl.a -o
soapcpp2
gcc: /usr/lib/libfl.a: No such file or directory
make[4]: *** [soapcpp2] Error 1
make[4]: Leaving directory `/root/simias/tools/gsoap/gsoap-linux-2.7/src'
make[3]: *** [stdsoap2.c] Error 2
make[3]: Leaving directory `/root/simias/src/core/libsimias'
make[2]: *** [install-recursive] Error 1
make[2]: Leaving directory `/root/simias/src/core'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/root/simias/src'
make: *** [install-recursive] Error 1


somebody got an idea ?

thanks for your help.

-- 
Bastien Jaillot
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] community builds / buildservice

2007-10-04 Thread Balakrishnan KalIdas
For server, you need to run the simias-server-setup. Then restart apache, if it 
is configured behind apache.

 Before starting apache, stop apache and check if there are any mono process 
already running (ps -ef | grep mono).

 If there are with application name simias/web/admin, then kill those and then 
start apache.

 Now accessing http:///simias10/Simias.asmx, will give you the 
authentication prompt.

Kalis

>>> Brian Thomason <[EMAIL PROTECTED]> 10/4/2007 1:05 AM >>>
Hey there,

I sent a message to the list after signing up but it bounced.  Here's my 
message:

I got ifolder and simias to build but can't get the
client or server to run properly.  The client launches,
displays a splash screen and tray icon, but then:

Cannot open assembly ../lib/simias/web/bin/Simias.exe.

Unhandled Exception: System.ApplicationException: The Simias process
returned an error: 2
  at Simias.Client.Manager.Start () [0x0]
  at Novell.iFolder.iFolderApplication.StartiFolder () [0x0]
  at (wrapper delegate-invoke) System.MulticastDelegate:invoke_void ()

I'm mono illiterate so don't even know where to begin to look.  I didn't
see anything in /var/log.

On the server end, I followed the instructions of getting it to run with
Apache, and it seems to start, but after running the config script and
subsequently going to /simias10, I get a 404 error. (a 404 error from
the simias server, btw, not the standard Apache 404 error)

Any ideas?

Any help would be appreciated.

Thanks!


-Brian

Jan-Simon Möller wrote:
> Ask your questions/detailed problems here on the list. Without logs/info we 
> can't help you.
>
> Greets
> Jan-Simon
>
> Am Dienstag, 2. Oktober 2007 21:48:40 schrieben Sie:
>   
>> Hi,
>>
>> Would you or someone at Novell be able to assist me in building iFolder
>> packages for Ubuntu?  We would handle the packaging but would need some
>> assistance with the product itself.  I have been unable to get it
>> working. (it build, launches a tray icon, and then hangs.  The server
>> builds too but also doesn't run - it dies shortly after starting.)
>>
>> -Brian
>>
>> Jan-Simon Möller wrote:
>> 
>>> Hi folks!
>>>
>>> At last, I havw a net connection again and was able to update the
>>> openSUSE buildservice repos with my builds of ifolder to the latest
>>> sources.
>>>
>>> Builds should be available now for:
>>>
>>> Fedora_7
>>> Fedora_Extras_6
>>> SLE_10
>>> SUSE_Linux_10.1
>>> openSUSE_10.2
>>> openSUSE_10.3
>>> openSUSE_Factory
>>>
>>>
>>> I will test the 10.2 and 10.3 today.
>>> Please any feedback to this list !
>>>
>>>
>>> Greets
>>> Jan-Simon
>>> ___
>>> ifolder-dev mailing list
>>> ifolder-dev@forge.novell.com 
>>> http://forge.novell.com/mailman/listinfo/ifolder-dev 
>>>   
>
>
>   

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Recovery Agent Certificate Path on iFolder 3.6?

2007-10-04 Thread Balakrishnan KalIdas
The current support is for .DER certificates. OpenSSL allows conversion from 
.PEM to .DER, so please use .DER certificates as Recovery agents.

 Copy the .der certs to the configured location and restart apache. Now the new 
certificate should be fetched by the server.

Kalis

>>> Russ Jury <[EMAIL PROTECTED]> 10/4/2007 6:43 AM >>>
I'm trying tonight with latest builds from 
http://download.opensuse.org/repositories/home:/dl9pf/ so I'll let you 
know how it goes... in the mean time...

Also, to clarify, I'm creating PEM certificates here... does it matter if 
they're PEM or DER?  According to Novell's docs on iFolder 3.6, it 
doesn't, but just want to make sure.

I created self signed certs for apache the way I've done it hundreds of 
times before:

create CA:
   openssl genrsa -des3 -out ca.key 4096
   openssl req -new -x509 -days 3650 -key ca.key -out ca.crt

create server key:
   openssl genrsa -des3 -out server.key 4096
   openssl req -new -key server.key -out server.csr

sign csr:
   openssl x509 -req -days 3649 -in server.csr -CA ca.crt -CAkey ca.key \
 -set_serial 01 -out server.crt

remove password from server.key (for apache)
   openssl rsa -in server.key -out server.key.insecure

I copied the server.crt into a directory I created beforehand (and 
configured in the simias-server-setup: /disk1/iFolderCert (owner wwwrun, 
perms 0755, and cert owner wwwrun, perms 0644)

The cert works just fine for apache and also for the iFolder client (once 
I went into IE and accepted the certificate/or CA cert into my trusted 
certs).  I have pure SSL working between my client (windows 3.6.something) 
and my server openSuSE 10.2

I'm just not getting anything to work with the recovery agent cert piece...

Thanks yet again,

Russ J.



Sujatha Narasimhan wrote:
> Russ,
> 
> It is possible for you try with the latest builds?
> 
> In the mean time, Can you share the way you created the .DER certificates? 
> 
> Thanks,
> Suja
> 

.. cut for brevity ...
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] [Announce] New Build

2007-10-04 Thread Balakrishnan KalIdas
Hi All iFolder enthusiasts,

 The new builds are available

http://download.opensuse.org/repositories/home:/dl9pf/

 Check www.ifolder.com 

Kalis



___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


RE: [Ifolder-dev] Ifolder + SSL

2007-09-20 Thread Balakrishnan KalIdas
The SSL fix is just unit tested, so please test it and let us find bugs if any.

Kalis

>>> "Matt Weisberg" <[EMAIL PROTECTED]> 9/11/2007 8:30 AM >>>

Ugh.  That is truly painful... The weird thing is, I originally setup the 
folder over an SSH tunnel! So I don't know how it got switched to the actual 
private IP.  I think it is stored in the Flaim DB, so I agree, there is 
probably no easy way for me to change this without really mucking things up.  

I may just try my SSL VPN solution for a while.  I wish it would just support 
SSL already and I'd just go direct!

Thanks.


-- 

 
Matt Weisberg
[EMAIL PROTECTED] 
Weisberg Consulting, Inc.
www.weisberg.net 
ofc. 248.685.1970
cell 248.705.1950
fax 248.769.5963


>>> On 9/10/2007 at 7:21 PM, in message <[EMAIL PROTECTED]>,
"Edmund" <[EMAIL PROTECTED]> wrote:
> Hi Matt,
> 
>> Hmmm..I'm on 3.6.7085 client and I can't seem to change the IP address
>> of the ifolder server.  I go into accounts settings, accounts, and
>> select properties of the ifolder account, change the IP address click
>> ok all the way back out, but when I go back and look, the original IP
>> address is still in there.  I can't seem to change it to anything else.
>> It always reverts back to the original address.  Is there something I'm
>> missing here?
> 
>   iFolder seems to be really fragile with this kind of stuff.  Best I can
> suggest is to delete the account and try to add it again - you'll have to
> re-synchronise, but I've only ever deployed ifolder in this configuration
> and not had any problems with it.  I don't think that the settings are
> stored in a way that you can edit it manually (unless anyone else knows
> better?)
> 
>   When I say delete the account, you may have to go as far as totally
> removing ifolder, deleting the ifolder and simias directories in program
> files, the user profile and the all users profile - some settings stick
> around!



--- Scanned by M+ Guardian Messaging Firewall ---
Talk to Weisberg Consulting about protecting your systems with M+Guardian today!
http://www.weisberg.net 


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


RE: [Ifolder-dev] Ifolder + SSL

2007-09-20 Thread Balakrishnan KalIdas
Hi All,

 I have committed enabling Simias to work over HTTPS. Following are the steps 
needs to be done while setting up simias in the server side. Both Server and 
client needs to be re-built.

During simias-server-setup

1. For Private and Public URL, provide https:///simias10

If the server is already setup, then
1. Stop apache or simias if running behind XSP
2. Edit the Simias.config file present at the data store path
3. Replace http with https for both public and private URL
4. Replace "no" for SimiasRequireSSL option with "yes", if this option is not 
present then add


under the section "Authentication"

5. Save Simias.config and restart apache or simias xsp script

At Client side
1. Create an new account to the server, existing account will not work (we have 
to find a work-around)
2. For server address provide https://:
3. Login 
4. Accept the Certifcate Trust
5. The account gets created and all communication happens using SSL.

Kalis



>>> "Matt Weisberg" <[EMAIL PROTECTED]> 9/11/2007 8:30 AM >>>

Ugh.  That is truly painful... The weird thing is, I originally setup the 
folder over an SSH tunnel! So I don't know how it got switched to the actual 
private IP.  I think it is stored in the Flaim DB, so I agree, there is 
probably no easy way for me to change this without really mucking things up.  

I may just try my SSL VPN solution for a while.  I wish it would just support 
SSL already and I'd just go direct!

Thanks.


-- 

 
Matt Weisberg
[EMAIL PROTECTED] 
Weisberg Consulting, Inc.
www.weisberg.net 
ofc. 248.685.1970
cell 248.705.1950
fax 248.769.5963


>>> On 9/10/2007 at 7:21 PM, in message <[EMAIL PROTECTED]>,
"Edmund" <[EMAIL PROTECTED]> wrote:
> Hi Matt,
> 
>> Hmmm..I'm on 3.6.7085 client and I can't seem to change the IP address
>> of the ifolder server.  I go into accounts settings, accounts, and
>> select properties of the ifolder account, change the IP address click
>> ok all the way back out, but when I go back and look, the original IP
>> address is still in there.  I can't seem to change it to anything else.
>> It always reverts back to the original address.  Is there something I'm
>> missing here?
> 
>   iFolder seems to be really fragile with this kind of stuff.  Best I can
> suggest is to delete the account and try to add it again - you'll have to
> re-synchronise, but I've only ever deployed ifolder in this configuration
> and not had any problems with it.  I don't think that the settings are
> stored in a way that you can edit it manually (unless anyone else knows
> better?)
> 
>   When I say delete the account, you may have to go as far as totally
> removing ifolder, deleting the ifolder and simias directories in program
> files, the user profile and the all users profile - some settings stick
> around!



--- Scanned by M+ Guardian Messaging Firewall ---
Talk to Weisberg Consulting about protecting your systems with M+Guardian today!
http://www.weisberg.net 


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


[Ifolder-dev] Re: Ifolder + SSL

2007-09-13 Thread Balakrishnan KalIdas
Both SSL and IP address has bugs in Bugzilla.

Kalis

>>> "Andrés G. Aragoneses [ knocte ] " <[EMAIL PROTECTED]> 9/13/2007 4:41 PM >>>
Balakrishnan KalIdas escribió:
>  Changing IP address in the Windows client is a known bug, though it works in 
> Linux. We should fix that soon. Other workaround is to use the Simias Store 
> Browser and change it directly in the database OR recreate the account with 
> the new IP address, if you do not have any iFolders downloaded.

Is there a ticket (in NovellBugzilla) about this?

Thanks in advance,

Andrés  [ knocte ]

P.S. Having it as a bug is good so as track its progress or also for 
externalizing it to a resource, in case anyone wanted to contribute.

-- 


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] PATCH: trivial configure.in change to allow svn compile

2007-09-12 Thread Balakrishnan KalIdas
Hi Chris,

 Thanks for the log. For me the stub gets generated with

"xsd__boolean__true_" instead of "true_", looks like the stub generation 
differs between Linux flavors (though I am not sure if the generation is 
different).

 I have updated the source with a unique xsd__boolean so that we do not get 
conflicts.

Thanks,
Kalis

>>> "Christopher Brown" <[EMAIL PROTECTED]> 9/12/2007 2:58 PM >>>
Hello Kalis,

On 11/09/2007, Balakrishnan KalIdas <[EMAIL PROTECTED]> wrote:
>
> Thanks Chris, I have updated the gsoap directory name to what the source
> tar displays, so the configure.in changed as well. The second patch about
> the removal of the boolean declaration gives me error while compiling in
> SuSE, as it is being used in simiasweb.c. Let me know if you get a
> redeclaration and also the error log, so that it will help me fix.


In file included from simiasweb.c:29:
/simiasStub.h:28: error: redeclaration of enumerator 'false_'
simiasweb.h:41: error: previous definition of 'false_' was here
/simiasStub.h:28: error: redeclaration of enumerator 'true_'
simiasweb.h:41: error: previous definition of 'true_' was here
make[3]: *** [libsimias_la-simiasweb.lo] Error 1

Does this help?

Regards
Chris


-- 
http://www.chruz.com

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] PATCH: trivial configure.in change to allow svn compile

2007-09-11 Thread Balakrishnan KalIdas
Thanks Chris, I have updated the gsoap directory name to what the source tar 
displays, so the configure.in changed as well. The second patch about the 
removal of the boolean declaration gives me error while compiling in SuSE, as 
it is being used in simiasweb.c. Let me know if you get a redeclaration and 
also the error log, so that it will help me fix.

Kalis

>>> "Christopher Brown" <[EMAIL PROTECTED]> 9/11/2007 7:32 PM >>>
Hello Kalis,

On 11/09/2007, Balakrishnan KalIdas <[EMAIL PROTECTED]> wrote:
>
> Hi Chris,
>
> We would like to know which version of gsoap are you using. Is it 2.7.0 or
> 2.7.9k? Since both has different directory structure and the second patch
> is needed for 2.7.9k.


I am using 2.7.9k

Regards
Chris


-- 
http://www.chruz.com

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] PATCH: trivial configure.in change to allow svn compile

2007-09-11 Thread Balakrishnan KalIdas
Hi Chris,

 We would like to know which version of gsoap are you using. Is it 2.7.0 or 
2.7.9k? Since both has different directory structure and the second patch is 
needed for 2.7.9k.

Kalis

>>> "Christopher Brown" <[EMAIL PROTECTED]> 9/11/2007 6:39 PM >>>
Both patches attached.

These can also be found at:

http://snecker.fedorapeople.org/simias/ 

I would appreciate comments on the second which is a one-liner and I think
is good but need a competent coder to confirm.

Regards
Chris

-- 
http://www.chruz.com

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


RE: [Ifolder-dev] Ifolder + SSL

2007-09-10 Thread Balakrishnan KalIdas
Hi Matt, 

 Changing IP address in the Windows client is a known bug, though it works in 
Linux. We should fix that soon. Other workaround is to use the Simias Store 
Browser and change it directly in the database OR recreate the account with the 
new IP address, if you do not have any iFolders downloaded.

Kalis

>>> "Matt Weisberg" <[EMAIL PROTECTED]> 9/11/2007 1:50 AM >>>

Hmmm..I'm on 3.6.7085 client and I can't seem to change the IP address of the 
ifolder server.  I go into accounts settings, accounts, and select properties 
of the ifolder account, change the IP address click ok all the way back out, 
but when I go back and look, the original IP address is still in there.  I 
can't seem to change it to anything else.  It always reverts back to the 
original address.  Is there something I'm missing here?  

Luckily, I have a Novell Access Manager SSL VPN running, so I was able to 
connect through that! But I liked the SSH tunnel for the simplicity (I ran my 
3.5/3.4 environment that way for a year and a half).

I can't even put a host name in there, otherwise I would do the DNS/host file 
thing.  No matter what, it reverts back to the original address.


-- 

 
Matt Weisberg
[EMAIL PROTECTED] 
Weisberg Consulting, Inc.
www.weisberg.net 
ofc. 248.685.1970
cell 248.705.1950
fax 248.769.5963


>>> On 9/10/2007 at 1:36 PM, in message <[EMAIL PROTECTED]>,
"Edmund" <[EMAIL PROTECTED]> wrote:
> Hi Matt,
> 
>> Does this work with the latest clients?  I used to do this exact thing
>> with the 3.4 client, just tunnel via SSH  and point my ifolder client
>> at the loopback. But with the latest available 3.6 build for windows, I
>> put in the loopback and somehow, the client switches it back to actual
>> (private) address of the iFolder server.  What is causing that?  Is
>> there any way to continue to do the SSH tunnel trick with the 3.6
>> client?
> 
>   Doing it with stunnel works fine with the 3.6.7085 build from the ifolder
> site (I'm using it right now).  Didn't have to do anything extra, it just
> worked.  The simias server only listens on localhost on port 80 (or
> something like that, it's been a while since I set it up!)  All incoming
> traffic is tunnelled, even web access.
> 
>   I have in the past dealt with this kind of thing by setting the DNS entry
> to point to 127.0.0.1 or hosts file tweaking, if that's any use.



--- Scanned by M+ Guardian Messaging Firewall ---
Talk to Weisberg Consulting about protecting your systems with M+Guardian today!
http://www.weisberg.net 


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


RE: [Ifolder-dev] Ifolder + SSL

2007-09-10 Thread Balakrishnan KalIdas
Hi All,

 Currently iFolder in port 443 is not supported. I will soon post a patch for 
this, so that thick clients can work via SSL.

Kalis

>>> "Edmund" <[EMAIL PROTECTED]> 9/10/2007 11:06 PM >>>
Hi Matt,

> Does this work with the latest clients?  I used to do this exact thing
> with the 3.4 client, just tunnel via SSH  and point my ifolder client
> at the loopback. But with the latest available 3.6 build for windows, I
> put in the loopback and somehow, the client switches it back to actual
> (private) address of the iFolder server.  What is causing that?  Is
> there any way to continue to do the SSH tunnel trick with the 3.6
> client?

  Doing it with stunnel works fine with the 3.6.7085 build from the ifolder
site (I'm using it right now).  Didn't have to do anything extra, it just
worked.  The simias server only listens on localhost on port 80 (or
something like that, it's been a while since I set it up!)  All incoming
traffic is tunnelled, even web access.

  I have in the past dealt with this kind of thing by setting the DNS entry
to point to 127.0.0.1 or hosts file tweaking, if that's any use.

-- 
Best regards,
Edmund

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Invalid FolderID

2007-09-09 Thread Balakrishnan KalIdas
This is a known issue due to events getting fired before the actual domain 
refresh happens in the client. The current work-around is to perform a 
right-click "Refresh" and then download the iFolder.

Kalis

>>> "Matt Weisberg" <[EMAIL PROTECTED]> 9/10/2007 2:59 AM >>>

I am having a lot of trouble with Invalid FolderID errors.  I create a new 
iFolder on my desktop, sync it to the server, then I go to download it on my 
laptop, and the laptop says:

Server was unable to process request --> Invalid FolderID

Server build is 3.6.7085.1-8.3 (x86_64) running on SLES10SP1.

Clients are WinXP with build 3.6.7085.1-1 

If I keep restarting the iFolder client, it seems that I can finally get the 
laptop to pull the folder down.


Matt



-- 

 
Matt Weisberg
[EMAIL PROTECTED] 
Weisberg Consulting, Inc.
www.weisberg.net 
ofc. 248.685.1970
cell 248.705.1950
fax 248.769.5963




--- Scanned by M+ Guardian Messaging Firewall ---
Talk to Weisberg Consulting about protecting your systems with M+Guardian today!
http://www.weisberg.net 


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Unable to start iFolder Services

2007-09-08 Thread Balakrishnan KalIdas
Hi Matt,

 Looks like some files are missing. I would recommend you to un-install the 
client, remove the C:\Program Files\iFolder directory and then install again. 
This should work, there are some issues in upgrades, since certains files are 
not replaced by the install shield, as Windows holds a reference and replace 
fails.

Thanks,
Kalis

Kalidas Balakrishnan,
 S/w Consultant - Storage Management Services (SMS) 
 [EMAIL PROTECTED] 
 Office: +918025731856 Extn: 2329

Novell, Inc. 
Software for the Open Enterprise 
http://www.novell.com/open
>>> "Matt Weisberg" <[EMAIL PROTECTED]> 09/08/07 11:38 AM >>>

I just setup iFolder 3.6 (7085 build) on a SLES10 server and I installed the 
7085 client on 3 XP desktops.  Two of them run fine, but on the third, I get an 
error dialog saying "Unable to Start iFolder Services" with an error of:

Object reference not set to an instance of an object.


Any ideas?

Thanks.

Matt


-- 

 
Matt Weisberg
[EMAIL PROTECTED]
Weisberg Consulting, Inc.
www.weisberg.net
ofc. 248.685.1970
cell 248.705.1950
fax 248.769.5963




--- Scanned by M+ Guardian Messaging Firewall ---
Talk to Weisberg Consulting about protecting your systems with M+Guardian today!
http://www.weisberg.net


___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Found a bug I think.

2007-08-28 Thread Balakrishnan KalIdas
Thanks Tim for the information, is it possible to file a bug in Bugzilla 
(bugzilla.novell.com).

Kalis

>>> "Tim Uckun" <[EMAIL PROTECTED]> 08/28/07 9:59 AM >>>
I think I found a pretty good bug in folder clients. Here are the
steps to reproduce it.

1) Create a folder on the server using the web interface.
2) Invite some users as read only.
3) Subscribe to folder on the users computer.
4) Place some files in the ifolder on the user's computer.
5) Sync.

Ooops the user is read only so no files go back to server.

6) Change the user to read write on the server.
7) Refresh the ifolder (nothing happens).
8) Shut down ifolder and restart it (it detects that it's now read write)
9) Sync the folder (nothing happens).

Ifolder thinks that it has already synced these files so it refuses to
process them again. The only solution is to remove the files from the
folder, sync, add the files back, sync again.


This bug and also several other bugs and feature requests such as
downloading to a non empty folder could be fixed if there was a
"process this folder from scratch and compare with server" button
someplace.
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Compiling gsoap

2007-08-25 Thread Balakrishnan KalIdas
I have updated the gsoap and the compilation issue with the new GSOAP. 
Currently the gsoap code is getting commit, lots of files so might take some 
time.

 The build can be done in another hour or so.

Kalis

>>> Jan-Simon Möller <[EMAIL PROTECTED]> 08/23/07 11:31 AM >>>
Am Donnerstag, 23. August 2007 06:45:10 schrieb Balakrishnan KalIdas:
> The new gsoap worked with one fix in the Simias code. Also your patch files
> refer to the 2.7.9 version rather than 2.7.0 version, since the 2.7.0
> version doesn't have a directory called gsoap-linux-2.7, instead has
> gsoap-2.7. Also the directory locations are incorrect in the patch.
>
>  I will update the SVN trunk with new gsoap soon.
>
> Kalis

So can i just wait for svn (community builds) ?
Greets
Jan-Simon
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] renaming or moving ifolders.

2007-08-25 Thread Balakrishnan KalIdas
Hi Tim,

 There is hack to perform this, but needs a windows machine and the SVN source. 
If you already have the SVN code, then in "simias/src/core/Simias.Web" you will 
be able to find the file called SimiasBrowser.asmx

 If you are using Windows client, then copy that file to /web. If you are using Linux client, then copy that file to /lib/simias/web

 Start the iFolder client, and log off from the domain. If already logged in or 
auto login is enabled, ensure the user is logged-off. Now in the SVN source the 
FormsStoreBrowser is available at simias/tools/FormsStoreBrowser/bin, execute 
the binary and provide the URL (eg: http:///simias10). When it 
asks for the username and password, provide the information present in 
.local.if file.

 The port file and the .local.if for the client is available in the client's 
data area (Linux-> //.local/share/simias/xspport.cfg; Windows -> 
C:\Documents and Settings\\Local Settings\Application Data\simias)

 The username/password is in the format username:password in the .local.if 
file. The password is a 256 bit GUID for the local database.

 Entering this information should provide the store. Expand the store and 
browse into the respective iFolder node. Inside that there will be the iFolder 
directory with the same iFolder name, selecting that will display the node 
information at the right pane.

 In the information displayed in the right pane, edit the property name Root, 
using the Right click menu. Now the change the directory to where the iFolder 
needs to be moved. Once done, repeat for every iFolder that needs to be moved. 
After that, close the StoreBrowser.

 Now move the actual folders to the new locations. Once the actual movement is 
done, then login to the client, the iFolder will reflect the new path.

Note: iFolder client should be running while using the store browser, but not 
logged in.

 Hope this helps,

Kalis





>>> "Tim Uckun" <[EMAIL PROTECTED]> 08/23/07 5:24 AM >>>
I want to rename and/or move the ifolders from where I downloaded them
to another drive. What is the best way to accomplish this. I am hoping
I don't have to resync the entire folder because it's a lot of data.
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] /trunk/simias/src/core/CollectionStore/DataStore.cs

2007-08-22 Thread Balakrishnan KalIdas
Jan-Simon,

 If you see the simias-server-setup, it takes 2 parameters to configure the 
apache user. Also the code has interactive prompts to ask for Apache User and 
group. So this shouldn't be an issue, the prompts were added to make is 
portable.

Kalis

>>> Jan-Simon Möller <[EMAIL PROTECTED]> 8/23/2007 11:25 AM >>>


/trunk/simias/src/core/CollectionStore/DataStore.cs

contains:
 /// 
 private const string apacheUser = "wwwrun";
 
 /// 
 private const string apacheGroup = "www";

 else if( Execute( "chown", "-R {0}:{1} {2}", 
apacheUser, apacheGroup, this.FullPath ) != 0 )


This will fail on other distros where the user for apache is e.g. www-data:www 
or similar!
(IMHO unportable by design) - remember the discussion about 
simias-server-setup and the apache-user/group ?

Greets
Jan-Simon

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Downloading an ifolder to a non empty directory.

2007-08-22 Thread Balakrishnan KalIdas
The cold-merge feature is not yet available. The current implementation looks 
at the Simias database for the file existence and not the File system.

Kalis

>>> "Tim Uckun" <[EMAIL PROTECTED]> 8/23/2007 10:04 AM >>>
I know somebody talked about this before and I though this was
implemented but apparently it's not.   Here is the scenario.

I have an ifolder which contains over 700 megs of data. I burn this
data on to a DVD and I send it somebody. They copy the data on to
their drive and then subscribe to the ifolder with the hope that they
won't have to download 700 megs over the internet. They are sorely
disapointed.

I tried renaming the folder, subscribing, shutting down the ifolder,
moving the files into the new directory and the firing up the ifolder
but somebody ifolder could not understand that the same files were
already on the drive.

How do we do this? I really don't think it's right that every single
person has to download 700 megs over the network. That's just silly.
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Compiling gsoap

2007-08-22 Thread Balakrishnan KalIdas
The new gsoap worked with one fix in the Simias code. Also your patch files 
refer to the 2.7.9 version rather than 2.7.0 version, since the 2.7.0 version 
doesn't have a directory called gsoap-linux-2.7, instead has gsoap-2.7. Also 
the directory locations are incorrect in the patch.

 I will update the SVN trunk with new gsoap soon.

Kalis

>>> "Travis Hansen" <[EMAIL PROTECTED]> 8/22/2007 8:37 PM >>>
Balakrishnan

I tried to use gsoap newer than 2.7.0 and it didn't work.  The copied
c and .h file were incompatible with some of the ifolder code (it
appeared).  I would *highly* suggest sticking with the link that I
sent until the next release of ifolder when you update everything else
to work with a later version of gsoap.

On 8/22/07, Balakrishnan KalIdas <[EMAIL PROTECTED]> wrote:
> For the patch which Travis has sent, the gsoap download URL should be
>
> http://sourceforge.net/project/downloading.php?group_id=52781&use_mirror=osdn&filename=gsoap_linux_2.7.9k.tar.gz&33806367
>  
>
> Kalis
> >>> "Travis Hansen" <[EMAIL PROTECTED]> 8/18/2007 2:35 PM >>>
> Team
>
> I'm starting to package ifolder for gentoo and I didn't like the idea
> of installing libstdc++ (gcc 3.6 or something similar) just to get
> so.5 (I'm using gcc 4.2.0) so I hacked things a bit to get compilation
> working.
>
> Please get the correct gsoap version (terribly outdated but newer
> version don't work) here:
> http://downloads.sourceforge.net/gsoap2/gsoap-2.7.tar.gz?modtime=1106566693&big_mirror=0
>  
>
> and unzip inside the simias/tools/gsoap/ directory.
>
> After that apply the two attached patches to get ifolder to compile
> without installing the old libstdc++ stuff.
>
> Hope this is helpful to someone besides myself.  Happy hacking.
>
>

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Deleting files programatically.

2007-08-22 Thread Balakrishnan KalIdas
Yes, the existing UI can be modified to do this.

>>> "Tim Uckun" <[EMAIL PROTECTED]> 8/22/2007 5:34 PM >>>
>  Client cannot automatically accept the iFolder membership, unless the user 
> downloads the shared iFolder. There is no more invitation-subscription model 
> for sharing. It is more a membership model, where the shared user gets the 
> iFolder to be downloaded at his/her wish.


Would it be possible to write a SOAP client to interact with the
server to periodically pull the list of available folders and download
them?  I just want to do it without user interaction.

I guess I would also like to second the request for a "service" client
without a GUI.

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Compiling gsoap

2007-08-22 Thread Balakrishnan KalIdas
For the patch which Travis has sent, the gsoap download URL should be

http://sourceforge.net/project/downloading.php?group_id=52781&use_mirror=osdn&filename=gsoap_linux_2.7.9k.tar.gz&33806367

Kalis
>>> "Travis Hansen" <[EMAIL PROTECTED]> 8/18/2007 2:35 PM >>>
Team

I'm starting to package ifolder for gentoo and I didn't like the idea
of installing libstdc++ (gcc 3.6 or something similar) just to get
so.5 (I'm using gcc 4.2.0) so I hacked things a bit to get compilation
working.

Please get the correct gsoap version (terribly outdated but newer
version don't work) here:
http://downloads.sourceforge.net/gsoap2/gsoap-2.7.tar.gz?modtime=1106566693&big_mirror=0
 

and unzip inside the simias/tools/gsoap/ directory.

After that apply the two attached patches to get ifolder to compile
without installing the old libstdc++ stuff.

Hope this is helpful to someone besides myself.  Happy hacking.

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Deleting files programatically.

2007-08-22 Thread Balakrishnan KalIdas
Hi Tim,

 Any file operation should be done at the client side. Modifying/deleting files 
in the server does hurt iFolder, as the meta-data of these files are stored in 
the Flaim Database, which will not match if such operations are done. Also the 
synchronization is initiated by the client, so performing such operations at 
the client will help.

 Client cannot automatically accept the iFolder membership, unless the user 
downloads the shared iFolder. There is no more invitation-subscription model 
for sharing. It is more a membership model, where the shared user gets the 
iFolder to be downloaded at his/her wish.

Kalis

>>> "Tim Uckun" <[EMAIL PROTECTED]> 8/22/2007 6:26 AM >>>
I would like to use something like logrotate to delete old files in
the /var/lib/simias/SimiasFiles directory

would this hurt ifolders?

Would the clients get confused and place the files back into the server?

If this is not a good way to go I would like to set up a machine which
would automatically subscribe to every ifolder it's invited to and run
the logrotate on that machine instead.  Is it possible to set up a
client to automatically subscribe to every ifolder it's invited to and
put the ifolders in a pre-determined path?
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Suggestion for the new client.

2007-08-22 Thread Balakrishnan KalIdas
Hi Tim,

 We are working on this View grid to make it more user-friendly like that of 
Windows explorer, so that it has multiple views.

Kalis

>>> "Arul Selvan" <[EMAIL PROTECTED]> 8/22/2007 10:45 AM >>>
Thanks for the suggestion, will consider it for our next release.

>>> "Tim Uckun" <[EMAIL PROTECTED]> 8/22/2007 3:32 AM >>>
I would like to suggest that the view showing your ifolders be more
compact.  If you have a lot of ifolders you have to scroll down the
list to see what is going on.

My suggestion would be to have something more like a grid with smaller
icons representing the state and the text on the right hand side.

The user already knows these are ifolders, so there is no need to
display a folder icon, maybe just some icons to represent the state
like a clock for waiting, double arrows for syncing, and a check box
showing done or something.

At least have that as on option.
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Ifolder + SSL?

2007-08-21 Thread Balakrishnan KalIdas
Hi Paul,

 Novell iFolder against SSL is not yet tested. The initial login takes place 
using the NetworkCredentials object formed out of the user name/password.

 Web Admin and Web Access use Browser SSL to communicate with the server, this 
can be enabled using the the ./ifolder-admin-setup and ./ifolder-web-setup.

 Just appending the port might not work, the code might need some fixes for 
this to work.

Thanks,
Kalis

>>> "Trudt, Paul" <[EMAIL PROTECTED]> 8/21/2007 8:19 PM >>>
Is Ifolder compatible with Apache mod_ssl?  With Apache SSL-enabled can clients 
be configured by simply appending ":port number" at the end of the server 
address?
 
I understand encryption is available - but how does the client - or a web 
console login - avoid sending user/password in clear text?
 
Any experience regarding securing an ifolder install in a school/university 
environment is greatly appreciated
 
Paul 

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] Compiling gsoap

2007-08-21 Thread Balakrishnan KalIdas
Thanks Travis for the patch, this really helps to keep iFolder current.

 Jan-Simon, is it possible to get this in the community builds?

Kalis

>>> "Travis Hansen" <[EMAIL PROTECTED]> 8/18/2007 2:35 PM >>>
Team

I'm starting to package ifolder for gentoo and I didn't like the idea
of installing libstdc++ (gcc 3.6 or something similar) just to get
so.5 (I'm using gcc 4.2.0) so I hacked things a bit to get compilation
working.

Please get the correct gsoap version (terribly outdated but newer
version don't work) here:
http://downloads.sourceforge.net/gsoap2/gsoap-2.7.tar.gz?modtime=1106566693&big_mirror=0
 

and unzip inside the simias/tools/gsoap/ directory.

After that apply the two attached patches to get ifolder to compile
without installing the old libstdc++ stuff.

Hope this is helpful to someone besides myself.  Happy hacking.

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] headless ifolder client

2007-08-21 Thread Balakrishnan KalIdas
Current release doesn't support this functionality, the UI is necessary. Or we 
should write a utility to perform the UI functionality in minimalistic way in 
console.

Kalis

>>> "Joel Brooks" <[EMAIL PROTECTED]> 8/18/2007 3:13 AM >>>
hey gang,

i'm new to ifolder.  love the concept.

i was wondering if there's a relatively easy way to compile the
ifolder client for linux wihtout a front end... i.e. just the sync
engine.  i'd like to run it as a daemon.  i don't have all the
required gnome libs on my box (and would rather not have to)...

is this possible?

i didn't see any ./configure parameters to disable them.

Thanks!

J
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: [Ifolder-dev] How close to production?

2007-08-09 Thread Balakrishnan KalIdas
Hi Tim,

 Currently Novell iFolder 3.6 is in Beta and you might try the builds posted by 
Jan-Simon. It will get the final touches by Mid September 07.

 Let us know if there are certain issues that needs a fix so that we can 
prioritize. We can provide the SuSE build if needed for other flavors Jan-Simon 
has done build (possible only a couple). The latest SVN code should help you 
pilot Novell iFolder before getting into production by September.

Kalis

>>> "Tim Uckun" <[EMAIL PROTECTED]> 8/9/2007 3:44 AM >>>
Well guys push has come to shove for me.

I need to put something into production right now.  I need to choose
either powerfolders or ifolder.  They both have their features and
faults but overall I think I prefer ifolders.

Here is my problem.

Nobody seems to be willing answer the question of how stable
ifolder3.6 is or when they expect a usable product.

Can somebody PLEASE step up to the plate and answer for us whether
they consider ifolder3.6 codebase to alpha quality, beta quality,
release candidate quality or "don't use it unless you are brave"
quality.

Also is there any kind of a target date for this product? Anything at
all? Even a ballpark figure like "sometime this quarter" or even
"sometime this year".  Surely the developers have milestones they are
working against.
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com 
http://forge.novell.com/mailman/listinfo/ifolder-dev

___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


  1   2   >