[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ëlj...@systella.fr 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
lists+ifol...@bsharah.com 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
 
 
  /div
 
 
 
  /div
 
 
 ___
 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 - 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


[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


[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


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_forump_action=1binderId=2458action=view_folder_entryentryId=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] 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. Aragoneseskno...@gmail.com 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 mhol...@innerthought.us
 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
bmcconn...@novell.com 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 banners i use iFolder (110x32 pixels)

2009-07-14 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
bmcconn...@novell.com 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 rgn...@gmail.com 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-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
rgn...@gmail.com 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 bmcconn...@novell.com
 
   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 rgn...@gmail.com 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 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
ovikh...@gmail.com 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 bkali...@novell.com
 
  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 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
pni...@novell.com 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 path for uploading iFolder   ex: 
 ./ifolder-cli -u /home/user/upload
 2.To sync iFolder  it is ifolder-cli -s -f ifolder name ex: ./ifolder-cli 
 -s -f 
 upload
 3.To download iFolder it is ifolder-cli -d -f ifolder name  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


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 hegd...@novell.com 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
 bkali...@novell.com 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


 

 ___
 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://forgenovell.com/mailman/listinfo/ifolder-dev
 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
bae3a6310906110925y7211013fx1beabda6e4f8c...@mail.gmail.com, Stephen Shaw
ss...@decriptor.com 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
 KalIdasbkali...@novell.com 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
bastn...@gmail.com 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


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

2009-05-29 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
timothy.jan...@gmail.com 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-25 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 gvbquq$qn...@ger.gmane.org,
Andrés G.
Aragoneseskno...@gmail.com 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


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 dl...@gmx.de 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] 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] 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 ss...@decriptor.com 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 dl...@gmx.de 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 bastn...@gmail.com 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] 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 bastn...@gmail.com 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 unknown method
  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..ctor () 

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 set to an
instance of an 

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:
--
html
titleError 500/titlebody bgcolor=whiteh1font
color=redServer error in '/simias10' application/font/h1hr
h2font color=marooni/i/font/h2
bDescription: /bError processing request.
p
bError Message: /bHTTP 500. p
bStack Trace: /btable summary=Stack Trace width=100%
bgcolor=#c
trtdcodepre
Simias.CreateException: Failed to create Flaim DB. ---gt;
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.Booleanamp;
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+lt;gt;c__CompilerGenerated1.MoveNext
() [0x0] /pre/code
/td/tr
/table
p
hr
/body
/html
!--
System.Web.HttpException:  ---gt; Simias.CreateException: Failed to
create Flaim DB. ---gt; 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.Booleanamp;
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+lt;gt;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:
--
html
titleError 500/titlebody bgcolor=whiteh1font
color=redServer error in '/simias10' application/font/h1hr
h2font color=marooni/i/font/h2
bDescription: /bError processing request.
p
bError Message: /bHTTP 500. p
bStack Trace: /btable summary=Stack Trace width=100%
bgcolor=#c
trtdcodepre
Simias.CreateException: Failed to create Flaim DB. ---gt;
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.Booleanamp;
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+lt;gt;c__CompilerGenerated1.MoveNext
() [0x0] /pre/code
/td/tr
/table
p
hr
/body
/html
!--
System.Web.HttpException:  ---gt; Simias.CreateException: Failed to
create Flaim DB. 

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
 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

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:
 -- 
 html
 titleError 500/titlebody bgcolor=whiteh1font
 color=redServer error in '/simias10' application/font/h1hr
 h2font color=marooni/i/font/h2
 bDescription: /bError processing request.
 p
 bError Message: /bHTTP 500. p
 bStack Trace: /btable summary=Stack Trace width=100%
 bgcolor=#c
 trtdcodepre
 Simias.CreateException: Failed to create Flaim DB. ---gt;
 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.Booleanamp;
 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+lt;gt;c__CompilerGenerated1.MoveNext
 () [0x0] /pre/code
 /td/tr
 /table
 p
 hr
 /body
 /html
 !--
 System.Web.HttpException:  ---gt; Simias.CreateException: Failed to
 create Flaim DB. ---gt; 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.Booleanamp;
 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+lt;gt;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:
 -- 
 html
 titleError 500/titlebody bgcolor=whiteh1font
 color=redServer error in '/simias10' application/font/h1hr
 h2font color=marooni/i/font/h2
 bDescription: /bError processing request.
 p
 bError Message: /bHTTP 500. p
 bStack Trace: /btable summary=Stack Trace width=100%
 bgcolor=#c
 trtdcodepre
 Simias.CreateException: Failed to create Flaim DB. ---gt;
 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.Booleanamp;
 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 

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
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] 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


[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


[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


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


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] 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] 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 installed path/lib/simias/web
ClientUpdate.asmx 
Global.asax
IdentitySyncManager.asmx  
Registration.asmx  
SyncHandler.ashx  
modules
update
ClientUpdateHandler.ashx  
HostAdmin.asmx 
Login.ashx
ReportLogHandler.ashx  
bin   
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] 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


[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] 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


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] 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] xmlexception on simias-server-setup

2007-11-02 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] 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: ifolder-dev@forge.novell.com; 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] 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 unknown method
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, 
 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

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] 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-05 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://ipaddress/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


[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] 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] Ifolder + SSL

2007-09-11 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] 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] /trunk/simias/src/core/CollectionStore/DataStore.cs

2007-08-23 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:
 /// /summary
 private const string apacheUser = wwwrun;
 
 /// /summary
 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] 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] 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] 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=52781use_mirror=osdnfilename=gsoap_linux_2.7.9k.tar.gz33806367

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=1106566693big_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] 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] What is the password recovery agent used for?

2007-08-07 Thread Balakrishnan KalIdas
I assume you are mentioning about the Key recovery agent. It is already present 
in the server bin directory named as utility.exe.

 In upcoming builds we will have script that runs this utility, so that the 
user need not use the mono command. This will be distributed by the 
administrator to the recovery agent person-in-concern for recovery of the 
encrypted iFolder keys.

Kalis

 Tim Uckun [EMAIL PROTECTED] 8/6/2007 8:50 AM 
Should I install a password recovery agent? What is it for? Is there
some documentation someplace about it?
___
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] New default config for rpm or other magic

2007-07-20 Thread Balakrishnan KalIdas
Just went through this mail chain, here are my 2 cents

1. Have a default Simias.config file (the etc/simias/bill/Simias.config can be 
extended to have the default values). SimiasServerSetup anyway takes care of 
recreating the whole file, so no code change is needed. This should be copied 
to the store location. Also Simias.log4net from etc/simias along with the 
modules directory in etc/simias/bill.

2. For apache, we can have soft links to the already existing conf files in 
etc/simias/default from the respective apache directories of the linux flavors. 
Only thing is to make mod_mono.conf to load before, but I assume this is 
handled in the discussion below.

 Or I would suggest have simias-server-setup --simple-setup kinda option, so 
that we need not do so many things in the %post section of RPM.

Kalis

 Jan-Simon Möller [EMAIL PROTECTED] 7/20/2007 11:44 AM 
I reviewed my ideas and put in some comments from tim, jony, srinidhi ...

Am Donnerstag, 19. Juli 2007 08:58:02 schrieb Jan-Simon Möller:
 I'll make a new thread for this topic.


 My proposals for a default config shipped with the rpms would be:

 Store in /var/lib/simias
 No Slave
 No LDAP
 (No?) SSL  (as we don't know the SSL in apache is running ... no)
 admin/novell
 no recovery-cert
 and - configure apache

 I understand that for any external client to connect to the server the IPs
 of the PC has to be used (no loopback).

 3 possibilities:

 a) use simias-server-setup with some args in %post of the rpm (check for
 old install!) - what about simias-server-setup --use-simple-defaults.

Atm. my favourite!
BUT: simias-server-setup has to be extended for other locations of the apache 
config files (fedora=/etc/httpd/, debian=. ).
AND the old bootstrap code needs to be checked to remove the use of the old 
files.

 b) use an template config and sed to pipe the ip of the system into a
 config.
Fast solution. Can be done without code-change. Problem is moved e.g. to the 
buildservice. script + sed to update configuration-template. ToDo: check if 
working also for recompiled src.rpms.

 c) remove all and kick the users to only use simias-server-setup (wanna
 answer all questions ? /me runs )
Same BUT: as in a)


Here we need to discuss what is possible at this time.

Without bugging the devs for now, i can implement  b)  in the buildservice 
packages.

a) and c) need some work on the code.


Hey, devs, what do you think ?  (/me runs ;) )


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


Re: [Ifolder-dev] Wondering about latest version

2007-07-19 Thread Balakrishnan KalIdas
The SVN trunk has the 3.6 code and compatible nautilus plugin. Please use the 
3.6 code and not 3.4 code.

Kalis

 Christian Svensson [EMAIL PROTECTED] 7/19/2007 1:40 PM 
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello.

As my previous email stated, I'm packing iFolder to Ubuntu.
I've started with packing 3.4 (not finished), but I found various mention
about a 3.6 on the mainsite?
The download page states that 3.4 is the way to go, well it's a bit vague.

But I can't seem to find any information nor source to 3.6 only pre-built
binaries.
Is 3.6 a SVN-trunk thing or does it have releases?

And what about 3.5? There I've found tarballs, but not for things like
ifolder-nautilus that 3.4 has.

Please enlighten me.
Thanks
Christian
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: http://firegpg.tuxfamily.org 

iD8DBQFGnxxwIGp7m0mdQiMRAh61AJ41y4Eua41OL+zKBHF37pb0ZMRucACfaJGi
XwGmygubeffl9YhqGnIoSP4=
=X2L6
-END PGP SIGNATURE-

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


Re: [Ifolder-dev] Community or not ? (related to the wiki thread)

2007-07-12 Thread Balakrishnan KalIdas
Hi All,

 The Novell iFolder Wiki is being moved to a production server under Novell 
IST for better maintenance and high availability. We will hear soon after the 
migration is done. Meanwhile we are welcome to add to the wiki, so that the new 
data can be migrated once the new server is up and running.

 This is other reason why there are no updates to the Wiki. The first phase 
movement is over, and is undergoing some testing, so we should have it up soon.

 Thanks for all your help in iFolder, Novell needs the community for mutual 
growth. Currently there is less activity from Novell in the community due to 
closure of huge list of pending bugs in iFolder, the whole team is working day 
and night testing and fixing issues, so that we have a stable build that can be 
provided to the community and take is forward from there.

 Due to the wiki movement, the daily build server is currently off. We are 
working on a way to get builds to the community. I should heartily thank 
Jan-Simon for providing builds. Also others for helping in various build and 
setup issues. IMO, we as Novell are working to get a stable build to the 
community as that has been the major concern in the community. It would be 
great if the community can help us provide support for other flavors of Linux 
like CentOS, FC and others, as we do not have resource to look at those issues.

 We will share more in forth-coming mails.

Thanks,
Kalis

 Jan-Simon Möller [EMAIL PROTECTED] 07/10/07 2:40 PM 
Hi all !

My thoughts ... on the wiki-spam thread - applies to the whole 
iFolder project.


SRI, but it's that simple: if Novell want's a Community to do some work on 
a wiki, _we_ (=both) need to have the technical requirements (=good 
functioning wiki) and _we_ need communication (to share 
ideas/positions/information).
I attended some of the openSUSE status meetings and i really think that's the 
way to go. No one wants to prevent novell from making money (ok, competitors 
maybe ;) ... but at least no one out of the community committed to the 
several projects) - so fantastic that iFolder is part of OES2 - great to have 
a professional solution for that. But why is there no communication ... ? The 
code is GPLed so that's no secret. That's more likely the integration in eDir 
and the management interface in OES2. 

I really know the team in Bangalore is busy (OES2). So don't feel blamed by my 
writing here. My intention is more likely to establish a good way where you 
(devs/novell) profit from an active community and we (community) get a 
fascinating piece of software in return.

My thoughts about iFolder is that it's a great software, but it needs more 
publicity. This means more users. If they feel comfortable with it (and i've 
no doubt they will), this also leads to more bussiness for novell because 
companies then use it and need solutions for their environments.
So why not create a community and use word of mouth propaganda _in addition 
to_ the typical marketing.



So these were my 2 cent on the situation ... what are your's ?

Sincerely yours

Jan-Simon Möller
___
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] Lost admin password

2007-07-12 Thread Balakrishnan KalIdas
Hi Chris,

 What kind of Identity store is your organization using? Is it LDAP or local 
Simias Store?

Kalis

 Chris Arnold [EMAIL PROTECTED] 07/13/07 2:55 AM 
Yep, i have done the silliest!!! Is there anyway to reset the admin
password?

Chris
___
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] revision 6918 - timing issue

2007-07-12 Thread Balakrishnan KalIdas
Great. I am in touch with the Mono team for a fix for the BlockCopy issue.

Thanks Jan-Simon, you rock

Kalis

 Jan-Simon Möller [EMAIL PROTECTED] 07/13/07 3:04 AM 
Am Donnerstag, 12. Juli 2007 21:04:05 schrieb Jan-Simon Möller:
 Fix for a timing issue where OutStream gets overwritten


 I'll deploy this latest code and test it !

 Thanks for looking into this issue !

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

Patch is working really good. Overall speed has increased (because of no more 
timeouts/resends).

The logged errors are only:


2007-07-12 23:24:45,765 [-1327498336] DEBUG Simias.Sync.Log - Request Failed 
exception
Argument cannot be null.
Parameter name: src
  at System.Buffer.BlockCopy (System.Array src, Int32 srcOffset, System.Array 
dest, Int32 destOffset, Int32 count) [0x0]
  at Mono.WebServer.ModMonoWorkerRequest.ReadEntityBody (System.Byte[] buffer, 
Int32 size) [0x0]
  at System.Web.HttpRequest.MakeInputStream () [0x0]
  at System.Web.HttpRequest.get_InputStream () [0x0]
  at Simias.Sync.Http.HttpService.PutHashMap (System.Web.HttpRequest request, 
System.Web.HttpResponse response) [0x0]
  at Simias.Sync.Web.SyncHandler.ProcessRequest (System.Web.HttpContext 
context) [0x0]
2007-07-12 23:24:45,791 [-1312158816] DEBUG Simias.Storage.Journal - Updating 
journal in tiddlywiki
2007-07-12 23:24:45,792 [-1312158816] DEBUG Simias.Storage.Journal -record 
= 
17:24aa134b-9364-4c99-af08-343e2d8e70d0:3ba34400-f5f2-4ace-af87-f82c8c992219:633198794857732280:tiddlywiki/backup/tiddlywiki2.20061228.0248200189.html




Which is already a known xsp issue. 

Well done !

Greetings
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: [PATCH] Re: [Ifolder-dev] xsp - check in configure.in ... - issues with Requires: in RPM

2007-06-18 Thread Balakrishnan KalIdas
Initially Mono.WebServer.dll was provided by a different RPM, I suppose. That 
is the reason to check the dll directly. Srinidhi correct me if I am wrong.

Kalis

 Jan-Simon Möller [EMAIL PROTECTED] 06/19/07 12:26 AM 
Am Montag, 18. Juni 2007 20:23:30 schrieb Jan-Simon Möller:
 What about this patch ...

 . took srinidhi's original and made it more generic.

 Please review !

 Greets
 Jan-Simon


Grr ... small mistake big issue ;) 

Please review this version instead !




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


Re: [Ifolder-dev] Can't build 3.6

2007-05-23 Thread Balakrishnan KalIdas
3.6 server build needs the LibFlaim to be installed.

Kalis

 Tim Uckun [EMAIL PROTECTED] 5/24/2007 5:53 AM 
Since 3.5 isn't working for me I tried to build 3.6 on centos. The
configure gives the following error message.

checking for resgen... resgen
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
/configure: line 3322: syntax error near unexpected token `LIBFLAIM,'
/configure: line 3322: `   PKG_CHECK_MODULES(LIBFLAIM, libflaim = 4.8.0)'
[EMAIL PROTECTED] simias]# grep LIBFLAIM *
config.log:LIBFLAIM_CFLAGS=''
config.log:LIBFLAIM_LIBS=''
config.log:LIBFLAIM_PREFIX=''


This is from the 3.6 trunk.  Does anybody feel like giving me a hint
as to what to do next?
___
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] Can't build 3.6

2007-05-23 Thread Balakrishnan KalIdas
Is it possible to download the 4.9 Libflaim from the web and try the build?

Thanks,
Kalis

 Tim Uckun [EMAIL PROTECTED] 5/24/2007 9:42 AM 
On 5/24/07, Balakrishnan KalIdas [EMAIL PROTECTED] wrote:
 3.6 server build needs the LibFlaim to be installed.


I installed libflaim from the 3.6 source RPMS.  I then tried the
install the server from the same set of source RPMs and got the exact
same message.

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


Re: [Ifolder-dev] [PATCH] server-setup : check ServerName for invalid chars

2007-04-17 Thread Balakrishnan KalIdas
Good to go

Kalis

 Jacob Johnny [EMAIL PROTECTED] 4/17/2007 12:20 PM 
For 'servername' check for invalid characters. If the setup is
+ Interactive : re-prompt.
+ Non-Interactive : throw exception.

Patch attached.

New strings need review and also pl check the completeness of
'InvalidChars' list.

Thanks,
Johnny



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


Re: [Ifolder-dev] WebAdmin - Persistant Identity Sync Interval

2007-03-07 Thread Balakrishnan KalIdas
Hi,

 Can you convert all magic numbers to local static, so that we understand why 
such numbers are used.

Kalis

 Johnny Jacob [EMAIL PROTECTED] 03/07/07 11:48 AM 
Hi,

Patch for a UI in WebAdmin to set External Identity Sync Interval.

Please review.

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


Re: [Ifolder-dev] ifolder config issue on sles10

2007-03-05 Thread Balakrishnan KalIdas
Can you send across the access details, in case you didn't get any answer today.

Kalis

 Nabeel K Nizar 03/05/07 8:39 AM 
Hi,

I did a quick check online and it looks to be very similar to the problem as 
outlined in setting up ifolder server on Fedora core 4/5 but only I'm running 
into this on my SLES10 server.  Should I still create the /var/www/.config 
folder? and assign rights to the apache user even though www has rights to 
/var/lib/simias? and my ifolder install path?

Nabeel Nizar
Senior Identity Specialist
[EMAIL PROTECTED] 
Off:   (315)635-2223
Cell:  (315)491-8085

Novell, Inc.
Novell BrainShare 2007
This is Your Open Enterprise
Register at http://www.novell.com/brainshare 

This message is sent from SUSE Linux Enterprise Desktop 10
Your Linux is ready
http://www.novell.com/linux 









 Nabeel K Nizar [EMAIL PROTECTED] 03/04/07 4:01 PM 
That did the trick!  Thanks.

Now I'm getting the following error message when accessing 
simias10/DomainService.asmx

Am I missing another file somewhere?  This one seems to point to the creation 
or access of the flaim db.

Nabeel Nizar
Senior Identity Specialist
[EMAIL PROTECTED] 
Off:   (315)635-2223
Cell:  (315)491-8085

Novell, Inc.
Novell BrainShare 2007
This is Your Open Enterprise
Register at http://www.novell.com/brainshare 

This message is sent from SUSE Linux Enterprise Desktop 10
Your Linux is ready
http://www.novell.com/linux 









 Balakrishnan KalIdas [EMAIL PROTECTED] 03/04/07 1:24 AM 
Hi,

 You need to copy the SimiasLib.dll available at install 
path/lib/simias/web/bin to install path/lib/simias/webaccess/bin and 
install path/lib/simias/admin/bin/

 This issue is fixed in the latest revision of svn. Srinidhi has made the 
changes for the Makefile to enable this process automatically.

Thanks,
Kalis

 Nabeel K Nizar [EMAIL PROTECTED] 03/03/07 2:28 AM 
Thanks for all the replies.  I ended up updating mono to 1.2 and also 
libflaim-4.9 and xsp-1.2 and ifolder3 server installed.

I have now gone through the simias-server-setup and was able to complete the 
setup using a ldap source.  But when I kick off the server startup script, I 
get a port 80 not available.  I have other webservices running on port 80 and I 
was under the impression that I could just use that with a /ifolder.  And when 
I go to localhost/ifolder or localhost/admin, I get the attached error message.


Any ideas?


 Srinidhi B [EMAIL PROTECTED] 03/02/07 12:44 AM  
Hi,

On Thu, 2007- 03- 01 at 10:24 - 0700, Nabeel K Nizar wrote:
 Hi all,
 
 I'm trying to install ifolder3- server- 3.5.7039.1- 1  on a sles10 server and 
 am running into dependency issues.
 I have libflaim- 4.8.0- 1 and mono- web- 1.1.13.8- 2.15 installed but the 
 dependency checker comes back and says that I need libflaim.so.4.1 and 
 mono(mono.webserver) 0.1.0.0 is needed.
 
 Any ideas?
 

You need to install libflaim- 4.9 or above and xsp- 1.1.18 or above.

Hope this helps.

Srinidhi.

___
ifolder- dev mailing list
ifolder- [EMAIL PROTECTED] 
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 config issue on sles10

2007-03-05 Thread Balakrishnan KalIdas
For LDAP, looks like the issue is with the LDAP library, so we should contact 
the Novell LDAP and get it resolved.

 Before that I would recommend you to do the following if it is feasible

Delete /opt/novell/ifolder3/simias directory

 Run /opt/novell/ifolder3/bin/simias-server-setup and reconfigure the server 
again and let us know how it goes. Make sure when it asks for configuring the 
Apache, you mention 'Y', this will set the permissions accordingly.

 Also I assume /opt/novell/ is not in NSS.

Kalis

 Nabeel K Nizar 03/05/07 10:34 PM 
 Hi,

So the permissions to my ifolder3 directory is set to 755 and the owner:group 
is wwwrun:www

Attached is the output of my apache log file.  Also attached is the output of 
my simias.log file which shows errors connecting to my ldap source - which 
happens to be eDirectory.

When I ran the simias-server-setup script, it did create my proxy and admin 
accounts

 
 Balakrishnan KalIdas [EMAIL PROTECTED] 03/05/07 11:53 AM  
Can you send across the access details, in case you didn't get any answer today.

Kalis

 Nabeel K Nizar 03/05/07 8:39 AM 
Hi,

I did a quick check online and it looks to be very similar to the problem as 
outlined in setting up ifolder server on Fedora core 4/5 but only I'm running 
into this on my SLES10 server.  Should I still create the /var/www/.config 
folder? and assign rights to the apache user even though www has rights to 
/var/lib/simias? and my ifolder install path?

Nabeel Nizar
Senior Identity Specialist
[EMAIL PROTECTED] 
Off:   (315)635- 2223
Cell:  (315)491- 8085

Novell, Inc.
Novell BrainShare 2007
This is Your Open Enterprise
Register at http://www.novell.com/brainshare 

This message is sent from SUSE Linux Enterprise Desktop 10
Your Linux is ready
http://www.novell.com/linux 









 Nabeel K Nizar [EMAIL PROTECTED] 03/04/07 4:01 PM 
That did the trick!  Thanks.

Now I'm getting the following error message when accessing 
simias10/DomainService.asmx

Am I missing another file somewhere?  This one seems to point to the creation 
or access of the flaim db.

Nabeel Nizar
Senior Identity Specialist
[EMAIL PROTECTED] 
Off:   (315)635- 2223
Cell:  (315)491- 8085

Novell, Inc.
Novell BrainShare 2007
This is Your Open Enterprise
Register at http://www.novell.com/brainshare 

This message is sent from SUSE Linux Enterprise Desktop 10
Your Linux is ready
http://www.novell.com/linux 









 Balakrishnan KalIdas [EMAIL PROTECTED] 03/04/07 1:24 AM 
Hi,

 You need to copy the SimiasLib.dll available at install 
path/lib/simias/web/bin to install path/lib/simias/webaccess/bin and 
install path/lib/simias/admin/bin/

 This issue is fixed in the latest revision of svn. Srinidhi has made the 
changes for the Makefile to enable this process automatically.

Thanks,
Kalis

 Nabeel K Nizar [EMAIL PROTECTED] 03/03/07 2:28 AM 
Thanks for all the replies.  I ended up updating mono to 1.2 and also libflaim- 
4.9 and xsp- 1.2 and ifolder3 server installed.

I have now gone through the simias- server- setup and was able to complete the 
setup using a ldap source.  But when I kick off the server startup script, I 
get a port 80 not available.  I have other webservices running on port 80 and I 
was under the impression that I could just use that with a /ifolder.  And when 
I go to localhost/ifolder or localhost/admin, I get the attached error message.


Any ideas?


 Srinidhi B [EMAIL PROTECTED] 03/02/07 12:44 AM  
Hi,

On Thu, 2007-  03-  01 at 10:24 -  0700, Nabeel K Nizar wrote:
 Hi all,
 
 I'm trying to install ifolder3-  server-  3.5.7039.1-  1  on a sles10 server 
 and am running into dependency issues.
 I have libflaim-  4.8.0-  1 and mono-  web-  1.1.13.8-  2.15 installed but 
 the dependency checker comes back and says that I need libflaim.so.4.1 and 
 mono(mono.webserver) 0.1.0.0 is needed.
 
 Any ideas?
 

You need to install libflaim-  4.9 or above and xsp-  1.1.18 or above.

Hope this helps.

Srinidhi.

___
ifolder-  dev mailing list
ifolder-  [EMAIL PROTECTED] 
http://forge.novell.com/mailman/listinfo/ifolder-  dev


___
ifolder- dev mailing list
ifolder- [EMAIL PROTECTED] 
http://forge.novell.com/mailman/listinfo/ifolder- dev 

___
ifolder- dev mailing list
ifolder- [EMAIL PROTECTED] 
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 config issue on sles10

2007-03-04 Thread Balakrishnan KalIdas
Hi,

 I suppose the permissions of the store path is not set to the current system's 
apache User/Group. If it is set, then delete all the Flaim* files and restart 
the apache server again.

Kalis

 Nabeel K Nizar 03/05/07 2:31 AM 
That did the trick!  Thanks.

Now I'm getting the following error message when accessing 
simias10/DomainService.asmx

Am I missing another file somewhere?  This one seems to point to the creation 
or access of the flaim db.

Nabeel Nizar
Senior Identity Specialist
[EMAIL PROTECTED] 
Off:   (315)635-2223
Cell:  (315)491-8085

Novell, Inc.
Novell BrainShare 2007
This is Your Open Enterprise
Register at http://www.novell.com/brainshare 

This message is sent from SUSE Linux Enterprise Desktop 10
Your Linux is ready
http://www.novell.com/linux 









 Balakrishnan KalIdas [EMAIL PROTECTED] 03/04/07 1:24 AM 
Hi,

 You need to copy the SimiasLib.dll available at install 
path/lib/simias/web/bin to install path/lib/simias/webaccess/bin and 
install path/lib/simias/admin/bin/

 This issue is fixed in the latest revision of svn. Srinidhi has made the 
changes for the Makefile to enable this process automatically.

Thanks,
Kalis

 Nabeel K Nizar [EMAIL PROTECTED] 03/03/07 2:28 AM 
Thanks for all the replies.  I ended up updating mono to 1.2 and also 
libflaim-4.9 and xsp-1.2 and ifolder3 server installed.

I have now gone through the simias-server-setup and was able to complete the 
setup using a ldap source.  But when I kick off the server startup script, I 
get a port 80 not available.  I have other webservices running on port 80 and I 
was under the impression that I could just use that with a /ifolder.  And when 
I go to localhost/ifolder or localhost/admin, I get the attached error message.


Any ideas?


 Srinidhi B [EMAIL PROTECTED] 03/02/07 12:44 AM  
Hi,

On Thu, 2007- 03- 01 at 10:24 - 0700, Nabeel K Nizar wrote:
 Hi all,
 
 I'm trying to install ifolder3- server- 3.5.7039.1- 1  on a sles10 server and 
 am running into dependency issues.
 I have libflaim- 4.8.0- 1 and mono- web- 1.1.13.8- 2.15 installed but the 
 dependency checker comes back and says that I need libflaim.so.4.1 and 
 mono(mono.webserver) 0.1.0.0 is needed.
 
 Any ideas?
 

You need to install libflaim- 4.9 or above and xsp- 1.1.18 or above.

Hope this helps.

Srinidhi.

___
ifolder- dev mailing list
ifolder- [EMAIL PROTECTED] 
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] Invalid URI

2007-03-01 Thread Balakrishnan KalIdas
Hi Xabier,

 I assume you have run the ifolder-web-setup before trying to access the URL. 
Also make sure that install path/lib/simias/web/bin/SimiasLib.dll is copied 
to install path/lib/simias/webaccess/bin, this is necessary for proper 
working of Web access. This issue is fixed in the latest 7057 build.

Thanks,
Kalis

 Johnny Jacob [EMAIL PROTECTED] 03/01/07 1:09 PM 
Hi Xabier,

On Mon, 2007-02-26 at 12:17 +0100, Xabier Ezpeleta wrote:
 Hi everybody,
 
 I have installed iFolder Server 3.5.7039. It's running successfully (I 
 can connect and synchronize through the client). But when I try to use 
 the web interface I get this error:
 
 
 Exception Message: Invalid URI: The format of the URI could not be 
 determined.
 ..
 
 iFolder Server: 3.5.7039
 Mono: 1.2.3.1_0
 Mod Mono: 1.2.1
 
 It's something related with mono version? Can anybody help me?
 

No this is not a problem with mono version. Can u pl attach your server
configuration details.

Thanks,
Johnny.

___
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] remove-membership issue.

2007-03-01 Thread Balakrishnan KalIdas
Looks good...

Kalis

 Johnny Jacob [EMAIL PROTECTED] 03/01/07 5:12 PM 
Hi,

Attached patches for removing member in a collection from ifolder-ui.

Pl review.

Thanks,
Johnny

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


Re: [Ifolder-dev] Problems running ifolder with namevirtualhost

2007-03-01 Thread Balakrishnan KalIdas
Hi Tim,

 Glad to know that you got something good. I have made the required changes 
inline.

Kalis

 Tim Uckun [EMAIL PROTECTED] 03/01/07 3:17 AM 
I have finally gotten a good install of Ifolder thanks to the RPMs
posted here.  I am trying to set up the server under it's own domain
but when I fire up apache the following error occurs in the
httpd-error log

Another mod-mono-server with the same arguments is already running.
Another mod-mono-server with the same arguments is already running.
Another mod-mono-server with the same arguments is already running.
Another mod-mono-server with the same arguments is already running.
Another mod-mono-server with the same arguments is already running.


On this machine I have a web server running a domain so I created a
new domain for ifolder and I called it ifolder.panztel.biz.  I took
the example.com files, copied them and changed them to what I think
they should be.

Can you see what I am doing wrong here?  Here are my files.

-- cat /etc/httpd/conf.d/ifolder.panztel.biz.conf

Include /etc/httpd/conf.d/mod_mono.conf

VirtualHost *:80
   ServerAdmin [EMAIL PROTECTED] 
   DocumentRoot  /var/www/ifolder
   ServerName ifolder.panztel.biz
   Include conf.d/ifolder_files/*.conf
   ErrorLog logs/ifolder-error_log
   CustomLog logs/ifolder-access_log common

/VirtualHost

--- cat /etc/httpd/conf.d/ifolder_files/ifolder_admin.conf

Alias /admin /usr/lib/simias/admin
AddMonoApplications admin /admin:/usr/lib/simias/admin
MonoSetEnv admin 
SimiasUrl=http://ifolder.panztel.biz;SimiasLogDir=/var/lib/simias/ifolder_panztel_biz;
Location /admin 
   MonoSetServerAlias admin 
   Order allow,deny
   Allow from all
   AddHandler mono asax aspx ascx asmx ashx
   DirectoryIndex Default.aspx index.html
/Location

cat /etc/httpd/conf.d/ifolder_files/ifolder_webaccess.conf

Alias /ifolder /usr/lib/simias/webaccess
AddMonoApplications ifolder /ifolder:/usr/lib/simias/webaccess
MonoSetEnv ifolder 
'SimiasUrl=http://ifolder.panzel.biz;SimiasLogDir=/var/lib/simias/ifolder_panztel_biz;
Location /ifolder 
   MonoSetServerAlias ifolder 
   Order allow,deny
   Allow from all
   AddHandler mono asax aspx ascx asmx ashx
   DirectoryIndex Default.aspx index.html
/Location

  cat /etc/httpd/conf.d/ifolder_files/simias_server.conf

Alias /simias10 /usr/lib/simias/web
AddMonoApplications simias10  /simias10:/usr/lib/simias/web
MonoSetEnv simias10 
SimiasRunAsServer=true;SimiasDataDir=/var/lib/simias/ifolder_panztel_biz/simias
Location /simias10 
   MonoSetServerAlias simias10 
   Order allow,deny
   Allow from all
   SetHandler mono
/Location
___
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] SimiasServerSetup - apache user/group

2007-03-01 Thread Balakrishnan KalIdas
Looks good.

Kalis

 Johnny Jacob [EMAIL PROTECTED] 03/02/07 12:36 PM 
Hi,

Patch for :
1. Prompt for Apache User/Group if uid.conf is n/a.
2. In Slave Server use sysadmin credentials to connect to LDAP server.

Please review.

Thanks,
Johnny


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


Re: [Ifolder-dev] LDAP secured ?

2007-02-28 Thread Balakrishnan KalIdas
Open Source iFolder doesn't have this functionality automated yet. We need an 
utility that can fetch the CA certificate from the LDAP server and install it 
in the local machines certificate store.

 Work-around is to get the LDAP certificate and install it in the local machine 
using certmgr utility provided by Mono. Then using simias-server-setup script 
secure LDAP can be selected.

 Is it possible to find an open source utility that can fetch the certificate 
from the LDAP server in DER format, so that it can be installed using the Mono 
utility?

Thanks,
kalis

 Bast [EMAIL PROTECTED] 02/28/07 12:54 PM 
Hello,

Is ifolder supporte ldap secured now ? My installation don't work so i
can't test...

Thanks,

--
Bast
___
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] Client UMASK problem?

2007-02-28 Thread Balakrishnan KalIdas
Hi Nico,

 This is not related to the Umask issue, iFolder creates the file only with 
permissions for the owner since it doesn't maintain the actual File ACL and 
assumes only the user who is downloading the iFolder has permissions. For your 
case, all users who share a file should use iFolder sharing to perform a 
combined update.

Thanks,
Kalis

 Nico [EMAIL PROTECTED] 02/27/07 2:56 PM 
Hi,

I'm running a iFolder client 3.4.6214.1 on SuSE 10.1 machine.

The problem is that the client changes the rights of the files when 
updating from the server from 766 to 744.

It seems to be a umask problem.

Is there a way to set the UMASK being used by the client?

The problem being that the data which is synchronised is used by a 
number of users and not only the owner.  Most of the other users are on 
WinXP with an appropriate client.

Otherwise, iFolder is a joy.

Thanks

Nico
___
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] last svn simias version don't work

2007-02-25 Thread Balakrishnan KalIdas
Hi Bast,

 Make sure the simias directory in the store path has the apache user/group 
permissions for file creation. iFolder gets the user/group from 
/etc/apache/uid.conf file, if it is not present then iFolder defaults to 
wwwrun:www.

 Let us know if this is the case.

Kalis

 Bast [EMAIL PROTECTED] 02/26/07 5:01 AM 
Hello everybody,

On a perfectly clean installation of ubuntu 6.06 LTS i tried to
install simias grabbed from svn. Everything seems to work,
compilation, installation and simias-server-setup.

But when i try to access to it  i have : http://pastebin.com/888935 

Any idea ??

Thanks you very mutch.

--
Bast
___
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] Incompatible database version

2007-02-23 Thread Balakrishnan KalIdas
Hi Xabier

 This issue is fixed in the latest version. I will let Ramesh respond to this 
about the revision in which it has been fixed.

 We would like to know if it is ok for you to take a patch in case you are 
unable to get the latest source RPM or check-out from svn.

Thanks,
Kalis
 Xabier Ezpeleta [EMAIL PROTECTED] 02/23/07 4:12 PM 

Hi,

We had installed iFolder Server 3.5.6269 and running succesfully in 
Debian Sarge. We have tried updating this version to iFolder Server 
3.5.7039, using the same simiasdatadir.

Now when we start the server we have this error:

ERROR Simias.Service.Manager - Incompatible database version. Expected 
version 1.1.0 - Found version 1.0.1.
Simias.SimiasException: Incompatible database version. Expected version 
1.1.0 - Found version 1.0.1.


The problem seems quite obvius, it seems that there is a database 
version change, but what is the solution ?

I can't find any tool or howto explaining anything about this migration. 
Could anyone please help me or refer me to some information
about this topic ?

Thank you very much.
___
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 Status?

2007-02-21 Thread Balakrishnan KalIdas
Yes, most of them are complete, while there are some bugs making the build 
little un-stable in SuSE Servers. We are targeting 2nd week of March so 
something stable in terms of these mentioned features and the team is working 
hard to get the issues fixed at a faster pace.

 The testing team is also working hard to make the release a quality one and 
they are also looking at the Open source bugs filed in Bugzilla during the last 
couple of years and ensuring those are fixed (not the enhancements).

 There is tremendous work getting into iFolder and hoping a great demo at 
Novell Brainshare 2007.

Kalis

 Ernst Persson [EMAIL PROTECTED] 02/21/07 7:31 PM 
Hi,

I see that a lot of those features are marked as Complete, is iFolder 
3.6 getting close to being complete?

BR
/Ernst Persson

Balakrishnan KalIdas wrote:
 Hi Vince/Tim,
cut
 Also check-out http://www.ifolder.com/index.php/IFolder3.6 for the new 
 features that are available in the upcoming release.

 Thanks,
 Kalis
-- 
---
Ernst PerssonStickybit AB
IT ConsultantGustav Adolfs Torg 10 A
+46 40 631 15 08 SE-211 39 Malmö
[EMAIL PROTECTED]   http://www.stickybit.se/ 

___
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 Status?

2007-02-21 Thread Balakrishnan KalIdas
Thanks David, that is really a great news.

 With the new source in svn, we have removed the dependency with Log4Net and is 
embedded within iFolder. So building iFolder server should get the log4net 
functionality as well and you don't need to build log4net with the latest 
sources. This move was made since Log4Net doesn't have L3 support which is 
required by our customers.

Thanks,
Kalis

 David S. Madole [EMAIL PROTECTED] 02/21/07 7:36 PM 
  Vince D. Kimball [EMAIL PROTECTED] 02/19/07 3:09 AM 
 
 It's pretty clear that no work has been done to get the current code
 base working on anything but Novell SLES 10 or Suse Linux 10.1.  You're
 just setting yourself up for more frustration by trying to get it to
 work on Centos.

I have been able over the last couple of weeks to successfully build and 
install iFolder 3.5 on Slackware 11.0 from source. I am running behind Apache 
using mod_mono with multiple virtual domains. Everything seems to work properly 
and no patches were necessary.

It was a bit of a bear collecting and building some of the prerequisites. In 
particular, I could not find one single version of Mono that would build both 
log4net and iFolder successfully. In the end, I build them with different 
versions and all is well.

I don't think there is anything unique about the process I went through in 
regard to Slackware, I expect the build process would work on most any Linux 
with only minor tweaks. This bare experience hardly makes me an expert but I 
would be glad to try to help someone else through the same and maybe together 
we could some up with some notes that could help others.

David


___
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] [Patch] simias-server-setup fixed for LDAP issues and apache permissions issue

2007-02-17 Thread Balakrishnan KalIdas
Please review the attached patch which fixes all LDAP related issues for a 
Slave server configuration and also the issue reported for changing the 
permissions for the store path's parent directory.

Thanks,
Kalis


setup.diff
Description: Binary data
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

[Ifolder-dev] [Patch] iFolder slave server configuration deletes the catalog nodes

2007-02-17 Thread Balakrishnan KalIdas
Hi,

 Attached is the patch for the issue where the iFolder catalog in slave mode 
deletes all its nodes due to a synchronization timing issue between the Domain 
collection sync and the Catalog collection sync threads.

Kalis


Tombstone.diff
Description: Binary data
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

[Ifolder-dev] [Patch] Disabling LDAP Identity sync thread in Slave

2007-02-17 Thread Balakrishnan KalIdas
Hi,

 Attached is the patch that disabled the Identity sync thread for Slaves, since 
the slaves get the Identity through the Domain that is synced from the master.

Kalis


Slave_Ldap.diff
Description: Binary data
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

Re: [Ifolder-dev] Your session has been closed. Please log in. (was How do I specify the library p

2007-02-15 Thread Balakrishnan KalIdas
Hi Tim,

 The iFolder Web Admin doesn't throw the exception explicitly. I would 
recommend you to check the iFolder Web access which explicitly throws the 
exception and send across the exception content, for us to analyse it.

Thanks,
Kalis

 Tim Uckun [EMAIL PROTECTED] 02/16/07 3:50 AM 
 Tim we are working on this issue,but there is work around for this issue .
 1.Actually the problem is with installation ,while installing It should
create to soft link to the file SimiasLib.dll
  The location of file is
/opt/novell/ifolder3/lib/simias/web/bin/SimiasLib.dll
 2.You only have to create two soft links in the following directories for
the above file.
 /opt/novell/ifolder3/lib/simias/admin/bin/
/opt/novell/ifolder3/lib/simias/webaccess/bin/
 3.The link should be.
 SimiasLib.dll-/opt/novell/ifolder3/lib/simias/web/bin/SimaisLib.dll
 4.Restart the server it will work.


When I build the server I used the prefix /usr like the instuctions stated
so my files are not in /opt/novell/ifolders3 they are in /usr/lib/simias  Is
that wrong?

Anyway I made symlinks from /usr/lib/simias/web/bin into
/usr/lib/simias/admin/bin and webaccess.bin and I no longer get that error.

What I get now is the Your session has been closed. Please log in.
error.  /var/www/.config does exist and is set to the proper ownership. Just
to make sure I set the permissions to be 777. Still no joy.
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev


Re: Re[2]: [Ifolder-dev] updating Debian howto and Simias Server

2007-01-21 Thread Balakrishnan KalIdas
Hi,

 Log4Net should be installed @ /usr/lib/mono/log4net directory. Add this to the 
MONO_PATH of the server script generated by simias-server-setup.

 Or, you can perform
find /usr -iname log4net*

get the log4net.dll path and add that to the MONO_PATH.

Kalis

 Carsten Guthardt-Schulz [EMAIL PROTECTED] 01/20/07 2:33 AM 
Maybe another solution:

I downloaded the source for iFolder build 6109, since this was the one the 
author of the Debian howto apparently used. Compilation went fine, but when I 
start simiasserver I get the following error message. Maybe someone can help 
here:


** (/opt/ifolder6109/lib/simias/web/bin/Simias.exe:19218): WARNING **: The 
following assembly referenced from 
/tmp/root-temp-aspnet-0/f8f4718c/shadow-5IzU6p could not be loaded:
 Assembly:   log4net(assemblyref_index=4)
 Version:1.2.9.0
 Public Key: 200a2bd1219e83a8
The assembly was not found in the Global Assembly Cache, a path listed in the 
MONO_PATH environment variable, or in the location of the executing assembly 
(/tmp/root-temp-aspnet-0/f8f4718c).


** (/opt/ifolder6109/lib/simias/web/bin/Simias.exe:19218): WARNING **: Could 
not load file or assembly 'log4net, Version=1.2.9.0, Culture=neutral, 
PublicKeyToken=200a2bd1219e83a8' or one of its dependencies.

** (/opt/ifolder6109/lib/simias/web/bin/Simias.exe:19218): WARNING **: Missing 
method GetLogger in assembly /tmp/root-temp-aspnet-0/f8f4718c/shadow-5IzU6p, 
type log4net.LogManager
Error: Cannot start the local web services.
Error: The Simias process failed to initialize.
   Use the command line switch --showconsole to view the error.



Looks like it cannot find log4net. But it is installed, and the compilation 
stopped complaining about not findet it, after I added the path 
/usr/share/pkgconfig to the environment variable PKG_CONFIG_PATH.


-- 
Gruß/Rgds,
Carsten

Original Message--
Date: 19.1.07 21:27
Carsten Guthardt-Schulz wrote in mid:[EMAIL PROTECTED] 
Subject: [Ifolder-dev] updating Debian howto and Simias Server
Noone has answered, yet. Maybe you can help me if I ask more precice questions:

1) What paths am I supposed to enter when being asked for Server's Data Path 
and Default Configuration Path? As I installed everything into /opt 
(following the Debian howto), I guess I can't follow the suggested paths that 
the Ubuntu-HowTo names.

2) Is there a way to get iFolder running without simbias-server-setup? Can I 
edit the config files directly, where are they supposed to be and are they 
documented?

3) How did it work before the existence of simbias-server-setup? The Debian 
howto doesn't even mention this setup process, it just tells you to start 
simbiasserver. 

If anyone of you could answer some of these questions it would be of great help.


-- 
Best Regards,
Carsten

Original Message--
Date: 18.1.07 01:30
Carsten Guthardt-Schulz wrote in mid:[EMAIL PROTECTED] 
Subject: [Ifolder-dev] updating Debian howto and Simias Server
Hi folks,

I'm about to install iFolder on a Debian Sarge system. Following the Debian 
howto I realized that it was completely out of date, many links did not work 
anymore, compilations did not work as suggested, etc.

I updated the HowTo, up to the point where I get stuck myself: Under

Now to configure iFolder

there is point 2. where it asks you to start
/opt/ifolder/bin/simiasserver

Obviously, the file is now called simias-server, but it refuses to start, 
saying the server is not configured. Running the simias-server-setup brings up 
a lot of questions, none of which are answered by the Howto.

Whatever I enter there (mainly following the HowTo for Ubuntu) brings up the 
error message

---
Configuring ...Failed

System.ArgumentNullException: Argument cannot be null.
Parameter name: Either baseUri or relativeUri are required.
  at System.Xml.XmlResolver.ResolveUri (System.Uri baseUri, System.String 
relativeUri) [0x0] 
  at System.Xml.XmlTextReader.GetStreamFromUrl (System.String url, 
System.String absoluteUriString) [0x0] 
  at System.Xml.XmlTextReader..ctor (System.String url, System.Xml.XmlNameTable 
nt) [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.XmlResolver.ResolveUri (System.Uri baseUri, System.String 
relativeUri) [0x0] 
  at System.Xml.XmlTextReader.GetStreamFromUrl (System.String url, 
System.String absoluteUriString) [0x0] 
  at System.Xml.XmlTextReader..ctor (System.String url, System.Xml.XmlNameTable 
nt) [0x0] 
  at System.Xml.XmlDocument.Load (System.String filename) [0x0] 
  at Novell.iFolder.SimiasServerSetup.SetupSimias () [0x0] 
  at Novell.iFolder.SimiasServerSetup.Configure () [0x0] 
  at 

Re: [Ifolder-dev] [PATCH] Fix for Invalid ifolder ID issue. #236120

2007-01-19 Thread Balakrishnan KalIdas
Looks good...commit it...

 Johnny Jacob [EMAIL PROTECTED] 01/19/07 3:01 PM 
Attached a patch for invalid ifolder issue in ifolder clients.

Please review.

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


Re: [Ifolder-dev] [PATCH] striplocalproperties before serialization

2007-01-18 Thread Balakrishnan KalIdas
Good, better than all...thanks for taking in all review comments and 
interacting with mono team

Kalis

 Johnny Jacob [EMAIL PROTECTED] 01/18/07 3:40 PM 
I hope i got it right this time .. :)

Attached a better patch.
Please review.

-- Johnny

On Wed, 2007-01-17 at 19:12 +0530, Johnny Jacob wrote:
 oops !! forgot to add local-property check.
 Another updated patch.
 
 Please Review. :)
 
 Thanks,
 Johnny
 
 On Wed, 2007-01-17 at 17:28 +0530, Johnny Jacob wrote:
  Attaching updated patch.
  Please review.
  
  Thanks,
  Johnny.
  
  On Wed, 2007-01-17 at 13:04 +0530, Johnny Jacob wrote:
   Hi,
   
   Fix for striping off local properties before serialization.
   
   Please review.
   
   Thanks,
   Johnny
   ___
   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


[Ifolder-dev] [Patch]Setup enhancements for Web Access and Web Admin

2007-01-12 Thread Balakrishnan KalIdas
Hi,

 Please find the attached patch for setting up Web Access and Web Admin. There 
are new binaries in the build for setting up Web Access and Web Admin to run 
behind apache.

Thanks,
Kalis


setup.diff
Description: Binary data
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

[Ifolder-dev] [Patch] Webaccess indirection fix

2006-12-26 Thread Balakrishnan KalIdas
Hi,

 Find the attached fix which was broken in recent builds, reported by Bast for 
Webaccess ifolder creation not creating the indirection.

 Testing:
1. iFolder creation from Web Access now creates the indirection
2. iFolder deletion from Web Access removes the data from that server (the 
indirection might still remain for other ifolders to get distributed).

Regards,
Kalis
Index: simias/src/core/Simias.Web/SharedCollection.cs
===
--- simias/src/core/Simias.Web/SharedCollection.cs  (revision 6642)
+++ simias/src/core/Simias.Web/SharedCollection.cs  (working copy)
@@ -783,9 +783,8 @@
 // create a root dir node for this 
iFolder in the
 // 
~/.local/shared/simias/SimiasFiles/guid/name
 // directory
-dirNodePath = 
Path.Combine(StoreStorePath, FilesDirName);
-dirNodePath = 
Path.Combine(dirNodePath, c.ID);
-dirNodePath = 
Path.Combine(dirNodePath, Name);
+   dirNodePath = c.UnmanagedPath;
+   dirNodePath = 
Path.Combine(dirNodePath, Name);
 
 if(!Directory.Exists(dirNodePath) )
 
Directory.CreateDirectory(dirNodePath);
___
ifolder-dev mailing list
ifolder-dev@forge.novell.com
http://forge.novell.com/mailman/listinfo/ifolder-dev

Re: [Ifolder-dev] [PATCH] Set default idsync interval to 24 hours.

2006-12-19 Thread Balakrishnan KalIdas
Patch looks good, will await for the Web Admin patch, so that it becomes 
configurable from the Admin console.

Kalis

 Johnny Jacob [EMAIL PROTECTED] 12/19/2006 2:11 PM 
Kalis,

Yep .. it does. Sync happens when the server starts and the next sync
would be at the specified interval (default 24 hours).

Thanks,
Johnny

On Tue, 2006-12-19 at 13:56 +0530, Balakrishnan Kalidas wrote:
 Does it also ensures that whenever the server starts the Identity sync 
 happens and the 24 hr period is after this start, so that the server doesn't 
 wait for the 24 hrs to do the first sync itself.
 
 Kalis
 
  Johnny Jacob [EMAIL PROTECTED] 12/19/2006 1:16 PM 
 Hi,
 
 Attached a patch to set the default idsync interval from 30 seconds to
 24 hrs. Later a UI in webadmin will be provided to change the interval
 and make it persistent.
 
 Thanks,
 Johnny

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