Problem withe file system repository

I configured a windows file system to the portal.
And the folder is showing well in the KM content.(along with its content) which is fine.
Now when i am trying to edit the file (by clicking on the 'Edit Locally' ) it is not responding and a message like operation failed is appearing.
NOTE: The Windows folder has given the full permissions.
           The folder in theKM was also given full permissions to user.
can any one help me.
Thanks in advance,
Mr.Chowday

Hi
check this
Internet Explorer settings:
Regardless of whether you are using ActiveX or the Applet, you have to make ActiveX settings in the browser (Internet Explorer) in order to use the Edit Locally function.
Call up the security settings for the browser: Choose Tools ® Internet Options ® Security ® Custom Level in the menu bar. Make the following settings
Download signed ActiveX controls = Enable
Download unsigned ActiveX controls = Disable
Initialize and script ActiveX controls not marked as safe = Disable
Run ActiveX controls and plug-ins = Enable
Script ActiveX controls marked safe for scripting = Enable
and also If you are using the repository in read-only mode, the creating, changing, renaming, and deleting of files and directories is not supported.
http://help.sap.com/saphelp_nw04/helpdata/en/a6/181b09bcc7fe4389c8c17d2ad849cc/content.htm
Regards
Krishna.

Similar Messages

  • Problem with File System Repository after release change

    Hello,
    we have been changing the Portal release from EP 6.0 to SAP NetWeaver Portal 7.0 SP17. The OS of the host is Windows 2003 Server.
    If I open the component monitor to watch the repostitories, the state of the file system repositories are red and a error message occurred:
    Startup Error:  getting mapped math - Logon failure: unknown user name or bad password
    I checked the logon credentials....they are ok. Also I checked the access from the Portalhost to the Windows File System....it´s ok too.
    In our previous portal release the FSR were ok!!
    Is there a difference between the file system repository configuration in portal 6.0 and portal 7.0?
    Thanks and regards
    Tom

    Hello Hussain,
    I have checked the username and the password of the user who have full access on the Windows file system, but the same error occurred. In the Network Path we have configured a domain user for the file system access. Here is the configuration of the network path:
    Name: Test
    Description: Test
    Networkpath:
    Host\share
    Password: ****
    Re-enter Password: ****
    User: domain\user
    Here the configuration of the repository:
    Name: Test
    Description: Test
    Prefix: /Test
    Lookup Mode: caseless
    Root Directory:
    Host\share
    Repository Services: Nothing
    Property Search Manager: com.sapportals.wcm.repository.manager.generic.search.SimpleManagerSearchManager
    Security Manager: AclSecurityManager
    ACL Manager Cache: ca_cm_rep_acl
    Windows Landscape System: Microsoft_Windows_KM
    Read only: unchecked
    Could it be that I need a user mapping for the access of the windows file system?
    Perhaps the configuration of the Windows Landscape System is wrong?
    regards
    Tom

  • Problems with file based repository

    I am facing problems with Oracle 10g cluster which is using file based repository.Every now and then one of the nodes in the cluster gives problems and I get error message
    "The DCM repository is not currently available. The Oracle Application Server ins
    tance, "abc", is using a cached copy of the repository information. This operation will update the repository, therefore the repository must be available."
    When I check the repository host its up and running. This happens intermittently. Is there any way to bring this node back in sync with repository? dcmctl resyncinstance doesnt seem to work.
    Thanks
    - Jayram

    Generally this issue comes if esb-dt and BPEL runs on the same server. Try this:
    1> go to <SOA_HOME>/integration/esb/config
    2> edit esb_config.ini
    add 2 parameters at the end of the file
    PingCount = 30
    PingInterval = 30
    3> save it and restart soa

  • Problems with file system functions

    I've been using CLibInit.supplyFile( ); to feed files to the
    C code to work with. My code looks like:
    //in Flash:
    cLibInit.supplyFile("./myfile", _myFileByteArray);
    if ( !access (file, R_OK) )
    // later:
    if ( (handle = open (file,O_RDONLY ) == -1)
    printf (" couldn't open %s\n",file);
    return;
    The access test passes, signalling that the file exists and
    everything is well. BUT, the open fails with a "File or directory
    does not exist" error.
    I tinkered around some, and noticed that the open() works
    when I removed the access() call. Similarly, if I put the open in
    front of the acess, the open succeeds, but the access fails. This
    makes me think that supplyFile might be "one use," meaning that the
    library 'forgets' the file once a system call accesses it. Is that
    the case? If so, it's truly bizarre functionality! But it's very
    possible that I'm missing some nuance of the UNIX system libs...
    :)

    Is it possible to open file in C?
    I tried to open file but it makes error "Can not Open File "
    // in fileread.c
    static AS3_Val fileread2(void* self, AS3_Val args)
    char* val = NULL;
    AS3_ArrayValue( args, "StrType", &val );
    char result[256];
    FILE *fp1;
    char s[256];
    if((fp1=fopen(val,"r"))==NULL)
    sprintf(result,"Can not Open File : %s", val);
    return AS3_String(result);
    while(fgets(s,256,fp1)!=NULL) {
    sprintf(result,"_%s",s);
    fclose(fp1);
    return AS3_String(result);
    int main() {
    AS3_Val fileread2Val = AS3_Function( NULL, fileread2 );
    AS3_Val result = AS3_Object( "fileread2: AS3ValType",
    fileread2Val );
    AS3_Release( fileread2Val );
    AS3_LibInit( result );
    return 0;
    // In fileread.as
    import cmodule.fileread2.CLibInit;
    private function init():void
    var loader:CLibInit = new CLibInit;
    var lib:Object = loader.init();
    //trace(lib.fileread2("_ReadMe.txt"));
    var arr:ByteArray = new ByteArray();
    loader.supplyFile("_ReadMe.txt", arr);
    trace("Array : " + arr);
    }

  • Problem with file system logging in Solaris7

    Hi,
    Solaris7 by default provides filesystem logging option. I mount a filesystem with "-o logging" option and then crash the filesystem. Next time i am able to mount the same filesystem without having to do an fsck.
    But the same does not happen if i mount the filesystem with mount(2) system call with the flag MNTOPT_LOGGING. Sample code is below
    --------------Ex code ---------------
    struct ufs_args ufs_mount;
    ufs_mount.flags = UFSMNT_LARGEFILES|UFSMNT_LOGGING;
    length = sizeof(ufs_mount);
    mount(dev,mntpoint[i],MS_DATA,filesys,(char *)&ufs_mount,length);
    I could avoid this by following the below steps:
    1. mount the required filesystem with mount(1) command
    mount -o logging /dev/dsk/c1t5d0s0 /mnt
    2. Do some activity on it. ex cp,rm and then unmount.
    3. Now use the mount(2)system call and mount the filesystem(above prog).
    After following these steps even if the filesystem crashed it can be mounted next time with the mount(2) system call without an fsck(1).
    I have also observed that a filesystem mounted using mount(2) call very frequently gives a "ufs log error , errno = 5" and needs an fsck after very few crashes.
    I have tried this on both 32 & 64 bit Solaris7.
    thanks in advance,
    rakesh.

    Hi,
    Solaris7 by default provides filesystem logging option. I mount a filesystem with "-o logging" option and then crash the filesystem. Next time i am able to mount the same filesystem without having to do an fsck.
    But the same does not happen if i mount the filesystem with mount(2) system call with the flag MNTOPT_LOGGING. Sample code is below
    --------------Ex code ---------------
    struct ufs_args ufs_mount;
    ufs_mount.flags = UFSMNT_LARGEFILES|UFSMNT_LOGGING;
    length = sizeof(ufs_mount);
    mount(dev,mntpoint[i],MS_DATA,filesys,(char *)&ufs_mount,length);
    I could avoid this by following the below steps:
    1. mount the required filesystem with mount(1) command
    mount -o logging /dev/dsk/c1t5d0s0 /mnt
    2. Do some activity on it. ex cp,rm and then unmount.
    3. Now use the mount(2)system call and mount the filesystem(above prog).
    After following these steps even if the filesystem crashed it can be mounted next time with the mount(2) system call without an fsck(1).
    I have also observed that a filesystem mounted using mount(2) call very frequently gives a "ufs log error , errno = 5" and needs an fsck after very few crashes.
    I have tried this on both 32 & 64 bit Solaris7.
    thanks in advance,
    rakesh.

  • Problems with the File System Repository & User Mapping!

    Hi All
    I am having a problem with a file system repository, and setting up user mapping for that repository.
    I have done the following:
    Created a File System Repository
    Created a Network Path
    Created a System (Including the alias)
    Now when I go into User Administration and select my user the is no user mapped systems to select.
    All this system is doing is connecering to a folder on our File System.
    Any help would be great as this is really frustrating!
    Thanks
    Phil

    I am using EP7 Stack 11 and unfortunately the only options I have are:
    user
    admin
    admin,user
    It is currently set to admin, user and does not seem to work!
    Phil
    Message was edited by:
            Phil Wade

  • Problem in create index on file system repository

    I want to create an index on file system repository,but have some problem. 
    1) create a windows filesystem repository
    2) I can found the repository entry in KM content
    3) go into "index administration" and create index,but I can not found the entry when I pressed "add" button on datasources page

    hello Karsten
    thanks for your consideration.
    After create a Windows file system Repository,I create the index as the fowllowing step.
    1) go to the page System Administration=>Knowledge Managment=>Index Administration and click Create button for creating index, then a form appeared.
    2) fill in the for specified value, then press Create Index button to create index
    3) click on DataSource link, in the Datasource Tab, click the Add button, then I could see all of folders on the screen( such as documents,calendar,etc), but I can not found the Windows File system Entry that just I created.
    I can not create a index for the Windows File System
    what is the wrong with it?
    thanks

  • File System Repository problem

    Hello guys,
    I'm on:
    J2EE Engine 6.40 PatchLevel 98256.313
    Portal 6.0.14.0.0
    KnowledgeManagementCollaboration 6.0.14.4.0 (NW04 SPS14 Patch 4)
    running on a Windows machine.
    I'm trying to set up a File System Repository to connect to a remote share on another Windows machine. I followed the documentation and also some hints here from SDN and still can't connect to the share.
    In component monitor it says:
    Startup Error:  The localroot does not exist:
    10.80.1.55\Test_portal
    In a trace log I'm getting this:
    #1.5#000BCD3F823F00260000000800000AB000040D879131A728#1140775814806#com.sapportals.wcm.service.fsmount.FSMountService#sap.com/irj#com.sapportals.wcm.service.fsmount.FSMountService#Guest#59####3a9c7e20a51d11da928e000bcd3f823f#Thread[ConfigurationEventDispatcher,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###Error mounting drive ,path
    10.80.1.55
    Test_portal#
    #1.5#000BCD3F823F00260000000900000AB000040D879131ABAB#1140775814806#com.sapportals.wcm.service.fsmount.FSMountService#sap.com/irj#com.sapportals.wcm.service.fsmount.FSMountService#Guest#59####3a9c7e20a51d11da928e000bcd3f823f#Thread[ConfigurationEventDispatcher,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Warning##Plain###FSMountService Reconfiguration (New path) failed to mount network path
    pr1141
    Test_portal - com.sapportals.wcm.service.fsmount.RemoteAccessException:  Network component not started:
    10.80.1.55
    Test_portal
         at com.sapportals.wcm.service.fsmount.FSMountService.mountDrive(FSMountService.java:90)
         at com.sapportals.wcm.service.fsmount.FSMountService.updateConfigurables(FSMountService.java:349)
         at com.sapportals.wcm.service.fsmount.FSMountService.reconfigure(FSMountService.java:287)
         at com.sapportals.wcm.crt.CrtThreadSafeComponentHandler.tryToReconfigure(CrtThreadSafeComponentHandler.java:297)
         at com.sapportals.wcm.crt.CrtThreadSafeComponentHandler.handleReconfigure(CrtThreadSafeComponentHandler.java:147)
         at com.sapportals.wcm.crt.CrtComponentManager.reconfigureComponent(CrtComponentManager.java:343)
         at com.sapportals.wcm.crt.CrtConfigurationEventListener.notifyComponentConfigChanged(CrtConfigurationEventListener.java:79)
         at com.sapportals.wcm.repository.runtime.CmConfigurationProvider.sendChangeEvent(CmConfigurationProvider.java:1288)
         at com.sapportals.wcm.repository.runtime.CmConfigurationProvider.sendChangeEventOrRestart(CmConfigurationProvider.java:1237)
         at com.sapportals.wcm.repository.runtime.CmConfigurationProvider.configEvent(CmConfigurationProvider.java:256)
         at com.sapportals.config.event.ConfigEventService.dispatchEvent(ConfigEventService.java:210)
         at com.sapportals.config.event.ConfigEventService.configEvent(ConfigEventService.java:98)
         at com.sapportals.config.event.ConfigEventDispatcher.callConfigListeners(ConfigEventDispatcher.java:299)
         at com.sapportals.config.event.ConfigEventDispatcher.flushEvents(ConfigEventDispatcher.java:248)
         at com.sapportals.config.event.ConfigEventDispatcher.run(ConfigEventDispatcher.java:105)
    I had an idea that it could be because of the Serverlet Engine User, which is set up due to documentation, but is only a local user not a domain user. I don't know to which extent this user is important for FS Mount Service. I thought, that for connecting to a remote share, there is only important the user and password set up in Network Path settings in CM.
    Changing the user on which is EP running is quite a difficult step due to our security policies and so on. So I would rather not experiment with this until I try all the other possibilities.
    Could you, please, give me some advice?

    Hi Jiri,
    have you used double forward slashes in your network path? Please try: //10.80.1.55/Test_portal
    You can also test from the portal machine that you can mount the drive via command shell:
    "net use t:
    10.80.1.55\Test_portal /user:DOMAIN\USER"
    (make sure you specify the user with domain)
    Hope this helps,
    Robert

  • Remote Resources: "A problem with the system proxy caused the connection to fail: End of file"

    Hi, I am trying to use "Remote Resources" on the current version of the Microsoft Remote Desktop for Android app, I can input the webfeed and it even shows the apps that I have configured on the server for "Remote App", sadly whenever
    I try to load any of the RemoteApps, I receive an error stating " A problem with the system proxy caused the connection to fail. End of File".
    I don't know what I can do to fix this, I've tried many things to no avail, also, normal Remote Desktop connections from the Microsoft Android app work flawlessly to the server.
    The relevant log is the following:
    [2014-Jan-09 04:40:54] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jan-09 04:40:54] RDP (0): Final rdp configuration used: memory bookmark [
    label 
    hostname DIAZSERVER
    port 3389
    loadbalanceinfo 
    ui.swapmousebutton false
    remote.program ||ZWaveUtil
    remote.workingdirectory 
    remote.name ZWave Adapter Utility
    remote.args 
    rail true
    soundmode 0
    connect_to_console false
    redirectsdcard true
    performance_flags 134
    arc.sessionid 0
    anonymous_username 
    authentication_level 2
    use_redirection_server_name false
    username administrator
    gateway [
      host = DIAZSERVER
      port = 443
      bypass = false
    connect info[
      hostnames = [localhost]
      gatewayHost = DIAZSERVER
      gatewayPort = 443
      routingToken = Cookie: mstshash=administrator
      redirectionGUID = 
      proxyHost = 200.5.68.10
      proxyPort = 8080
      sessionId = -1
    [2014-Jan-09 04:40:54] RDP (0): Using HttpConnect proxy at 200.5.68.10:8080
    [2014-Jan-09 04:40:54] RDP (0): Using Basic Authentication with username ''
    [2014-Jan-09 04:40:54] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    AsioEndpointContext (0): startup(): starting up down context
    [2014-Jan-09 04:40:54] RDP (0): Resolved '200.5.68.10' to '200.5.68.10' using NameResolveMethod_DNS(1)
    [2014-Jan-09 04:40:54] RDP (0): Resolved '200.5.68.10' to '200.5.68.10' using NameResolveMethod_DNS(1)
    ASIOSocketAdapter (9): readSomething error. message: End of file. instance: 0x5d39d5c0
    RpcOverHttp (9): Stream error in endpoint 0x5abbc170 : A problem with the system proxy caused the connection to fail: End of file
    [2014-Jan-09 04:40:55] RDP (0): Error message: A problem with the system proxy caused the connection to fail: End of file
    [2014-Jan-09 04:40:55] RDP (0): Error message: A problem with the system proxy caused the connection to fail: End of file
    [2014-Jan-09 04:40:55] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    ASIOSocketAdapter (9): handleRead(): exception: Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : Failed to read from channel: -1. instance: 0x5d39d5c0
    [2014-Jan-09 04:40:55] RDP (0): Disconnect initiated by client
    RpcOverHttp (9): Exception in endpoint 0x5abbc170 : Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : A problem with the system proxy caused the connection to fail: Failed to read from channel: -1
    [2014-Jan-09 04:40:55] RDP (0): Exception caught: Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : A problem with the system proxy caused the connection to fail: Failed to read from channel: -1
    [2014-Jan-09 04:40:55] RDP (0): Exception caught: Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : A problem with the system proxy caused the connection to fail: Failed to read from channel: -1
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    [2014-Jan-09 04:40:57] RDP (0): ------ END ACTIVE CONNECTION ------

    My problem is that the "proxy" is the proxy set up by my 3G configuration so, I tried connecting to the remote resources through my work wifi and I get the following:
    [2014-Jan-14 16:58:13] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jan-14 16:58:13] RDP (0): Final rdp configuration used: memory bookmark [
    label 
    hostname DIAZSERVER
    port 3389
    loadbalanceinfo 
    ui.swapmousebutton false
    remote.program ||chrome
    remote.workingdirectory 
    remote.name Google Chrome
    remote.args 
    rail true
    soundmode 0
    connect_to_console false
    redirectsdcard true
    performance_flags 134
    arc.sessionid 0
    anonymous_username 
    authentication_level 2
    use_redirection_server_name false
    username Administrator
    gateway [
      host = DIAZSERVER
      port = 443
      bypass = false
    connect info[
      hostnames = [localhost]
      gatewayHost = DIAZSERVER
      gatewayPort = 443
      routingToken = Cookie: mstshash=Administrator
      redirectionGUID = 
      proxyHost = 
      proxyPort = 0
      sessionId = -1
    [2014-Jan-14 16:58:13] RDP (0): Not using any proxy
    [2014-Jan-14 16:58:13] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    AsioEndpointContext (0): startup(): starting up down context
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d474090
    RpcOverHttp (9): Stream error in endpoint 0x5d46b678 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d445158
    RpcOverHttp (9): Stream error in endpoint 0x5d49fa30 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Disconnect initiated by client
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    [2014-Jan-14 16:58:17] RDP (0): ------ END ACTIVE CONNECTION ------
    Now, I know the host can be resolved because: if I connect to the same host but on a full remote desktop (as opposed to just RemoteApp on it) I have no trouble either through 3G OR through my work connection.
    Moreover, I also tried directly inputting the IP as opposed to the web address of my server, I get the same error, that is the Remote Resources tab is able to access the feed (because it shows the available RemoteApps) but when I click an app it says it can't
    find the Host, here's the log for the connection directly to the IP address/rdweb/feed/webfeed.aspx :
    [2014-Jan-14 17:09:27] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jan-14 17:09:27] RDP (0): Final rdp configuration used: memory bookmark [
    label 
    hostname DIAZSERVER
    port 3389
    loadbalanceinfo 
    ui.swapmousebutton false
    remote.program ||chrome
    remote.workingdirectory 
    remote.name Google Chrome
    remote.args 
    rail true
    soundmode 0
    connect_to_console false
    redirectsdcard true
    performance_flags 134
    arc.sessionid 0
    anonymous_username 
    authentication_level 2
    use_redirection_server_name false
    username administrator
    gateway [
      host = DIAZSERVER
      port = 443
      bypass = false
    connect info[
      hostnames = [localhost]
      gatewayHost = DIAZSERVER
      gatewayPort = 443
      routingToken = Cookie: mstshash=administrator
      redirectionGUID = 
      proxyHost = 
      proxyPort = 0
      sessionId = -1
    [2014-Jan-14 17:09:27] RDP (0): Not using any proxy
    [2014-Jan-14 17:09:27] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    AsioEndpointContext (0): startup(): starting up down context
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d372f28
    RpcOverHttp (9): Stream error in endpoint 0x5dd6b168 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d378de0
    RpcOverHttp (9): Stream error in endpoint 0x5e9cc1f0 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Disconnect initiated by client
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    [2014-Jan-14 17:09:31] RDP (0): ------ END ACTIVE CONNECTION ------
    I'm really puzzled here, I've tried checking if ports where open, and ports 443 and 3389 are wide open, I don't know what else it could be.

  • Problem of Network File System repository

    Hi all:
    I want to set up a File system repository on a remote server.
    The steps are here:
    1.Define a Network Path.
    2.Set up a File system repository.
    Things done when the file system and the portal server are in the same zone of address,like  10.XXX.5.XX and 10.XXX.5.XXX,  but when reference to another file system, which IP is 10.XXX.10.XX, the repository can never start up!
    The message in Component Monitoring is "The localroot does not exist:
    10.XXX.10.XX"
    How can I solve this problem?

    Hi Rani,
    1.I think I have done all the steps setting up a File system repository. And when the server and File system are in the same segment of IP address, the repository works.
    Security Manager:AclSecurityManager
    ACL Manager Cache: not set
    Windows Landscape System: not set
    2.when use servername as the path, the message on monitoring is still on IP address.
    3.I can't see the folder
    4. I can open the path from the server on exploer.

  • New WIN7 System, FFox gives error "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory" - will not go to any site.

    New Windows 7 computer. After installing Firefox, every time I bring it up I get the following message:
    "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features."
    Then Firefox comes up, but will not function at all - can enter url address, but will not respond to ANY clicks, so can not go to any site.

    This link shows how to fix this - https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • File System Repository - User Mapping not Working

    Hi,
    I tried to integrate a file system into KM. For doing so, I followed the guide located at [http://help.sap.com/saphelp_nw04/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/frameset.htm|http://help.sap.com/saphelp_nw04/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/frameset.htm].
    The only problem is, tht the user mapping doesn't seem to work...
    The portal is running on a UNIX system, whereas the file share to be integrated is running on a Windows 2003 Server.
    Here are the single steps that I performed:
    -  Creation of a KM Windows System in the system landscape directory with the ID "MySystem". User Mapping is set to "User,Admin"
    -  Creation of a Windows System in the system landscpe of the KM with the ID "MySystem"
    - Creation of a Network Path in KM with following settings:
    jCIFS Protocol is activated; Network Path = "
    My Server\My Share"; User = "My Windows Domain\My User" and the according password. The specified user has administration permissions on the server.
    - Creation of a readonly File System Repository Manager with following settings:
    Root-Directory = "
    My Server\My Share", SecurityManager = W2kSecurityManager, ACL Manager Cache = ca_rsrc_acl, Windows Landscape System = "MySystem"
    - Configuration of the W2KSecurityManager: I specified the DomainFile-setting as "/etc/companydomaincontrollers.txt"
      and placed such a file in the KM with following setting: "My.Server.Domain=According IP Adress"
    - In UME I carried out user mapping for index_service user and placed the above mentioned admin user into the user mapping.
    Result: The indexing works fine, all fles are indexed. When I however try to carry out a user mapping for a "normal" portal user in the UME it doesn't work: The portal user has no access to the file system. (I used the same admin user for mapping... so it should work).
    Any help is appreciated...
    P.S. With portal super admin users I can however access the fle system repository, even without user mapping. But I think this is ok, because I read in one forum message that admin users have always access in general....

    >
    Frank Friedrich wrote:
    > Hi Clemens,
    >
    > so the good think is that indexing is working and you can navigate with your admin portal user through the file system repository. In this case the most configuration settings must be correct.
    >
    > I am not quite sure regarding your System objects with the ID "MySystem". Do you have as well define an Alias Name for this System Object with the same name "MySystem" ? As well upper and lower letters are important.
    >
    > Because the reference is all the time the Alias name and not the ID or Name of your System object.
    >
    > Best regards
    > Frank
    Hi Frank,
    thanks for your reply.
    I have as well definied an Alias Name with exactly the same id. So this gives us following:
    System landscape directory: KM Windows System with id="MySystem" and Alias="MySystem"
    KM System Landscape: Windows System with id="MySystem"
    In the created file system repository manager I also set "MySystem" for the Windows Landscape System parameter.
    So I think that this should be correct (I also considered upper- and lowercase letters).
    Maybe the probem lies in specifying the domain names? When I applied user mapping I always additionally specified the Windows domain name of the users, which is correct I think.
    In the security manager configuration for the domain controllers (-> [http://help.sap.com/saphelp_nw04s/helpdata/en/a9/c54e9e09448d46b73d154e93d5e995/content.htm]) I however mapped the network domain of the file share server to the according IP adress. Maybe this is wrong?

  • Unable to create File System Repository using Network Path

    Hi All,
    I am trying to create a File System Repository.
    I created a networkpath and windows system and used the same while creating File Repository according to the steps in help.
    With out using Networkpath(i.e.,If I use IP address,I am able to create File System Repository).
    But with the network path,it throws the following error as seen in Component Monitor.
    <b>Startup Error:    The localroot does not exist: C:\usr\sap\IGTE\j2ee\j2ee_00\cluster\server\NWP_001
    My network path is NWP_001
    </b>
    Did any one face this problem?
    Any help please........
    Rgds,
    Santhosh

    Hi,
    I am getting the same error even if I replace(\) by slashes(/).
    I tried on EP6SP12 as well as EP6SP2 and got the same error on both.
    The repository is searching for a folder named with
    n/w path on the portal server itself(i.e, it is searching in the following folder
    <b>C:\usr\sap\IGTE\j2ee\j2ee_00\cluster\server\NWP_001
    My network path is NWP_001</b>),instead of searching on the remote system.
    Can any one help me in solving the problem
    Thanks in Advance.
    Rgds,
    Santhosh

  • Custom property for file in File System Repository

    Hi,
    I have create a folder on KM using File system Repository access a network path, but facing a problems that the folder can't support custom property and can't classifiable.

    hi
    http://help.sap.com/saphelp_nw04/helpdata/en/69/d96b83a84611d5993600508b6b8b11/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/43/2e6868c6ce72408d982213e314fda1/content.htm.<b>please don,t forget points</b>
    with regards
    subrato kundu

  • Unable to see created File System Repository

    Hi,
         I have created a File System Repository following the link below:
    http://help.sap.com/saphelp_nw04s/helpdata/en/e3/92322ab24e11d5993800508b6b8b11/frameset.htm
    I am  not able to do user mapping by going in personalize as I can found my windows System there.
    Do I have to create a new system mwhere else.
    BTW, I am mapping to a remote window system with the KM.
    Please give useful suggestions.
    Points given for problem solving answers.
    Sumit

    Hi,
    Example configuration of a WINDOWS® file system repository manager given in the Help.sap.com.
    Creating System:
    http://help.sap.com/saphelp_nw04s/helpdata/en/e3/92322ab24e11d5993800508b6b8b11/frameset.htm
    Specifying User Mapping:
    http://help.sap.com/saphelp_nw04s/helpdata/en/e3/92322ab24e11d5993800508b6b8b11/frameset.htm
    Senthil K.

Maybe you are looking for

  • Can I put an aperture library on a network drive and edit from multiple computers?

    I have an Imac desktop and a macbook pro.  I want to be able to edit pictures from multiple computers.  If I simply put the aperture library on a network server drive in my home, can I edit the same aperture library from both the Imac and the macbook

  • IPHOTO 09+SNOW LEOPARD= TOTAL CRASH !

    Last july I upgraded from Tiger , iphoto 06, Powerbook G4 to the newest MBP 2,26,2 gb, 500 gb, iphoto 09 and now Snow Leopard. The first migration was not so bad. But There were many duplicates and many Thumbnails without original pictures. so the li

  • Add-on won't run on some clients

    As soon as an add-on users de DI SDK, it crashes at startup on some systems and I don't know why. I'm using the DI Basic Operations example that came with the SDK. I build it, and used the SAP B1 SDK setup .NET Wizard to create the installer and lice

  • Method to locate row and column in TableView

    In a TableView.setOnMouseClicked () How to capture that row and column were clicked?

  • How to Prepare for MM interview ( Guidance )

    Hi MM Gurus,         I was Preparing for interviews on MM, and working as ABAP side. I need to go on technofunctional side. in mm side what are the areas that i should cover best to get through an interview and topics on which people work less and sh