Cache Mapping & Distributed Scheme not working.

I have a set of cache mapping and its corresponding distributed scheme defined. When i run it on its own it works fine, but when I add the same cache mapping and distributed scheme to a set of cache mappings and distributed schemes i.e. HibernateCacheStore which are all binded to a service-name, i get the message "com.tangosol.net.RequestPolicyException: No storage-enabled nodes exist for service .... "
I am using a cache config in which local storage is enabled for server side and my application connects to it with localstorage=false. Have tried the system property option also but of no use.
I have tried it using coherence standalone as well as running it from JBOSS. Same behavior persists.
My intention is to keep this cache mapping different from existing service (i.e. service-name).
Is anyone aware of any conflicts when simulating such type of scenario. Looking forward for some pointers.
Am using Coherence 3.6.1 with JBoss 5.x
Edited by: Kapil Naudiyal on Jan 1, 2012 8:47 PM
Little More research to be more specific. I tried with following combo.
Coherence Server ----------> Client to initialize
|
|
|
Client to use cache
This works fine with the scenario mentioned above.
But when i use the scenario where
Coherence Server + client to initialize Cache ---------------> Client to use cache, cache doesn't work. This scenario is implemented within JBoss. Is there is a limitation that an embedded Cache instance loads only one service..
Thanks in advance for any insights..

Hi,
The message "com.tangosol.net.RequestPolicyException: No storage-enabled nodes exist for service .... " implies that your clients are unable to coonect to storage-enabled nodes so you need to ensure if clients are able to connect to the Coherence servers. The easier way to find out is to use the JMX and then look for node details or cluster size. Setting up JMX is quite simple and documentation can be found here - http://docs.oracle.com/cd/E15357_01/coh.360/e15723/manage_jmx.htm
Hope this helps!
Cheers,
NJ

Similar Messages

  • TS1702 Maps program does not work. In standard it only shows a grid. If I ask for a route it shows start and end point and three route boxes but nothing else. It does show directions. If I switch to hybrid it shows to routes but no roads. Background is a

    Maps program does not work. In standard it only shows a grid. If I ask for a route it shows start and end point and three route boxes but nothing else. It does show directions. If I switch to hybrid it shows to routes but no roads. Background is a blur.

    Do you have a question? This is a user to user help forum. Apple is not here only other users like yourself. You don't report problems to Apple here.
    By the way, it might help if you indicated where you are located.
    To complain to Apple use http://www.apple.com/feedback/ipad.html

  • IPAD 2 ,MY  iPAD IS UPDATED, BUT MAP SOFTWARE IS NOT WORKING PROPERLY ,LOCATION/ROUTE

    iPAD 2 ,MY  iPAD IS UPDATED, BUT MAP SOFTWARE IS NOT WORKING PROPERLY ,LOCATION/ROUTE & DISTANCE ALSO...
    CAN YOU GUIDE HOW TO SOLVE THIS PROBLEM....WAITING FOR SAME.
    VIRAL THAKKER- INDIA.
    ALSO, I HVE SOME PROBLEM IN MACBOOK SOFTWARE OPREATRING SYSTEM IS 10.6.1 AND TRY DOWNLOAD 10.6.8...BUT DON'T KNOW AFTER DOWNLOADING,I M NOT ABEL TO RUN IN MY MACHINE .
    ANY BODY CAN GUIDE ME? TO SOLVE THIS PROBL.
    VIRAL THAKKER INDIA

    Try this: Open up her Home folder (house icon), click Library then Preferences. Locate com.apple.softwareupdate.plst (I don't have my Mac handy so I can't double-check the name; that should be correct) and move it to the desktop or trash, then try running Software Update again. Also try running Software Update while logged in as another administrator.
    ~Lyssa

  • Cachestore for distributed scheme not getting invoked to "load" the entries

    Hi,
    We have a distributed scheme with CacheStore as below,
    SERVER PART
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <caching-scheme-mapping>          
         <cache-mapping>
                   <cache-name>ReferenceData-Cache</cache-name>
                   <scheme-name>RefData_Distributed_Scheme</scheme-name>
         </cache-mapping>
         <!--
         FEW OTHER DISTRIBUTED CACHE
         -- >
    </caching-scheme-mapping>
    <caching-schemes>
    <!-- definition of other cache schemes including one proxy scheme -->
    <distributed-scheme>
         <scheme-name>RefData_Distributed_Scheme</scheme-name>
         <service-name>RefData_Distributed_Service</service-name>     
         <serializer>
         <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>                    
         <init-params>
              <init-param>
                   <param-type>string</param-type>
                   <param-value>TradeEngine-POF.xml</param-value>
              </init-param>
         </init-params>     
         </serializer>                         
         <backing-map-scheme>
         <read-write-backing-map-scheme>
         <internal-cache-scheme>
         <local-scheme>
         <expiry-delay>1m</expiry-delay>
         </local-scheme>
         </internal-cache-scheme>
         <cachestore-scheme>
         <class-scheme>
         <class-name>com.csfb.fid.gtb.referencedatacache.cachestore.RefDataCacheStore</class-name>     
         <init-params>
                        <init-param>
                             <param-type>string</param-type>
                             <param-value>{cache-name}</param-value>
                        </init-param>
                        </init-params>                    
         </class-scheme>
         </cachestore-scheme>
         <read-only>true</read-only>
         <refresh-ahead-factor>.5</refresh-ahead-factor>
         </read-write-backing-map-scheme>
         </backing-map-scheme>
         <backup-count>1</backup-count>
         <autostart system-property="tangosol.coherence.distributed-service.enabled">false</autostart>           
    </distributed-scheme>
    </caching-schemes>
    </cache-config>
    The above configuration is used on tcp extend proxy node with localstorage=false
    There is similar configuration on storage node,
    - with no proxy,
    - with same "ReferenceData-Cache" (autostart=true)
    - and localstorage=true.
    Following is my CacheStore implementation.
    NOTE: This Cachestore is only for loading the cache entry from cache store.i.e. from some excel file in my case, i.e. only load() and loadAll() methods.
    NO store() or storeAll().
    package com.csfb.fid.gtb.referencedatacache.cachestore;
    import java.util.Collection;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import com.creditsuisse.fid.gtb.common.FileLogger;
    import com.csfb.fid.gtb.referencedatacache.Currency;
    import com.csfb.fid.gtb.utils.refdada.DBDetails;
    import com.csfb.fid.gtb.utils.refdada.ReferenceDataReaderUtility;
    import com.tangosol.net.NamedCache;
    import com.tangosol.net.cache.CacheStore;
    public class RefDataCacheStore implements CacheStore
         private DBDetails dbDetails = null;
         private ReferenceDataReaderUtility utils = null;
    public RefDataCacheStore(String cacheName)
         System.out.println("RefDataCacheStore constructor..");
         //dbDetails = DBDetails.getInstance();
         utils = new ReferenceDataReaderUtility();
    public Object load(Object key)
         return utils.readCurrency(key);
    public void store(Object oKey, Object oValue)
    public void erase(Object oKey)
         public void eraseAll(Collection colKeys)
         public Map loadAll(Collection colKeys)
              System.out.println("RefDataCacheStore loadAll..");
              Map<String, Object> obejctMap = new HashMap<String, Object>();
              List<Object> list = utils.readAllCurrencies();
              Iterator<Object> listItr = list.iterator(colKeys);
              while(listItr.hasNext()){
                   Object obj = listItr.next();
                   if(obj != null){
                        String key = "CU-"+((Currency)obj).getId();
                        obejctMap.put(key, (Currency)obj);
              return obejctMap;
         public void storeAll(Map mapEntries)
    CLIENT PART
    I connect to this cache using extend client with follwing config file,
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
         <caching-scheme-mapping>
              <cache-mapping>
                        <cache-name>ReferenceData-Cache</cache-name>
                        <scheme-name>coherence-remote-scheme</scheme-name>
              </cache-mapping>     
         </caching-scheme-mapping>
         <caching-schemes>
              <remote-cache-scheme>
                   <scheme-name>coherence-remote-scheme</scheme-name>
                   <initiator-config>
                        <serializer>
                             <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>                         
                             <init-params>
                                  <init-param>
                                       <param-type>string</param-type>
                                       <param-value>TradeEngine-POF.xml</param-value>
                                  </init-param>
                             </init-params>                         
                        </serializer>
                        <tcp-initiator>
                             <remote-addresses>                              
                                  <socket-address>
                                       <address>169.39.30.182</address>
                                       <port>9001</port>
                                  </socket-address>
                             </remote-addresses>
                        <connect-timeout>10s</connect-timeout>
                        </tcp-initiator>
                        <outgoing-message-handler>
                             <request-timeout>3000s</request-timeout>
                        </outgoing-message-handler>                                   
                   </initiator-config>
              </remote-cache-scheme>
         </caching-schemes>
    </cache-config>
    PROBLEM
    From my test case (with extend client file as configuration), when i try to connect to get cache handle of this cache, as
    refDataCache = CacheFactory.getCache("ReferenceData-Cache");
    I get following error on server side,
    2010-05-12 18:28:25.229/1687.847 Oracle Coherence GE 3.5.3/465 <Error> (thread=DistributedCache, member=2): BackingMapManager com.tangosol.net.DefaultConfigurableCacheFactory$Manager: failed to instantiate a cache: ReferenceData-Cache
    2010-05-12 18:28:25.229/1687.847 Oracle Coherence GE 3.5.3/465 <Error> (thread=DistributedCache, member=2):
    java.lang.IllegalArgumentException: No scheme for cache: "ReferenceData-Cache"
         at com.tangosol.net.DefaultConfigurableCacheFactory.findSchemeMapping(DefaultConfigurableCacheFactory.java:507)
         at com.tangosol.net.DefaultConfigurableCacheFactory$Manager.instantiateBackingMap(DefaultConfigurableCacheFactory.java:3486)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$Storage.instantiateResourceMap(DistributedCache.CDB:22)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$Storage.setCacheName(DistributedCache.CDB:27)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ConfigListener.entryInserted(DistributedCache.CDB:15)
         at com.tangosol.util.MapEvent.dispatch(MapEvent.java:266)
         at com.tangosol.util.MapEvent.dispatch(MapEvent.java:226)
         at com.tangosol.util.MapListenerSupport.fireEvent(MapListenerSupport.java:556)
         at com.tangosol.util.ObservableHashMap.dispatchEvent(ObservableHashMap.java:229)
         at com.tangosol.util.ObservableHashMap$Entry.onAdd(ObservableHashMap.java:270)
         at com.tangosol.util.SafeHashMap.put(SafeHashMap.java:244)
         at com.tangosol.coherence.component.util.collections.WrapperMap.put(WrapperMap.CDB:1)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid$ServiceConfigMap.put(Grid.CDB:31)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$StorageIdRequest.onReceived(DistributedCache.CDB:45)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onMessage(Grid.CDB:9)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:136)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onNotify(DistributedCache.CDB:3)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
         at java.lang.Thread.run(Thread.java:619)
    However, with this error also i am able to do normal put operation and get operation against those put.
    But when i try to get the cache entry which doesnt exists in cache, like
    refDataCache.get("CU-1");
    I expected that call would go to RefDataCacheStore.load method. But in my case i dont see it happening.
    Also i debugged my jvms in debug mode and i put a class load breakpoint for RefDataCacheStore, but even that is not hit. I have RefDataCacheStore in my server classpath.
    Hope to see reply on this soon.
    Thanks
    Manish

    Hi Manish,
    <<previous advice deleted>>
    user13113666 wrote:
    Hi,
    I have my server picking up the correct configuration files for "ReferenceData-Cache". In my local jconsole i could see that the service named "RefData_Distributed_Service" is started under service mbean. Also i am able to perform a put and get on "ReferenceData-Cache", i could even see StorageManager mbean showing my inserted entries for "RefData_Distributed_Service".With the local jconsole, are you monitoring the server/proxy node, or the TCP*Extend cleint node?
    The client can have the service with the server still not having it.
    Could you please post the startup log for the storage node on the server...
    Best regards,
    Robert
    Edited by: robvarga on May 17, 2010 12:33 PM

  • Xml schema not working in excel 2010 - xml corrupt

    I originally posted this thread in Microsoft Answers but was suggested to post here...
    I upgraded from xl2003 to xl2010. I'm trying to map xml schemas to xl2010 (using the source pane just as I did for xl2003) and the mapping works fine until I save the file and reopen it. Once I reopen the file and try accessing the map through the XML source
    pane, I get an error identifying the xml map is corrupt as follows:
    "The operation cannot be completed because the XML map is corrupt
    To fix this problem, remove the associated xml map from the workbook and then add the XML map back to the workbook.
    /schecma/element[1][@name = 'returnData']/complextype[1]/complexContent[1]/extension[1]Undefined <complexType>, '{http://www.....' is used as a base type."
    I've tried this in xl2007 and it works fine. I also read some blogs about xl2010 xml features and in some I found that this new version has enhanced security xml features.
    Any help would be appreciated.
    "innovation is the key to success"

    Interesting to note this is still a problem, but even more interesting is as to why Excel works fine the first time you bring in the xsd, but not after you save it.  I found information that says it's related to resolving externally referenced xsds,
    which is fine, but again, why does it work the first ime and not the second?   If it were a problem with external xsds then it should never work at all so I think that answer is bogus.
    Something has to be getting corrupted on the save and it's not important enough to MS to spend the time to fix it.

  • Google maps 3.01 not working

    I used the previous version well on my BlackBerry Curve with T-mogile. Updated to the latest 3.0 and than the 3.01 version and it is not working. During opening the program the progress bar fill up to about 3/4 than the application quits and returns to the main screen. Tried reloading and changing permissions. Nothing helped.
    Any body with a solution?
    Thank you
    Solved!
    Go to Solution.

    Hi,
    I just downloaded it today!
    Start the browser, menu key, options, select browser cache.
    Clear all categories.
    Before you install Google 3.01 try removing the old app.
    Home screen, options, advanced options, applications.
    Let the table build. Highlight Google maps, menu key, delete.
    Reset via battery pull.
    Download Google maps 3.01.
    As a matter of course I always do a battery pull after installation of an app.
    Let us know how it goes!
    Thanks,
    Bifocals
    No data will be lost when doing the following: pull the battery while the device is ON.
    Replace after a minute, Let the device reboot 1-3 min, see if the problem is fixed.
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Map id's not working

    Hi all
    My map id's are not working properly.  I am getting the defintions to display properly but for some reason my books on the left side (t.o.c) do not expand and go to where the topic came from.  The left side has the books collapsed and stay on the name of the file.
    Any idea what I need to do?
    thanks
    Caryn

    Hi, again,
    > Do I need to enter a file name in Custom image file?
    No, that's an optional facility that is unrelated to what you want to do. In fact, the facility to replace the icons in the TOC pane with your own icons is so crippled as to be not worth using. (The problem is in HTML Help itself, not RoboHelp.)
    > Tested my map id's and they did not work.
    Just checking: did they work before you enabled the Synchronize TOC feature? Have you made any other changes that could break the context help mappings?
    > I dont have to use ?what's this feature for field context sensitive help, do I?
    No, you don't need to, but this is something that has to be agreed with the developer whose software you're documenting. The type of command that the developer uses to invoke help determines the method you use to provide help -- or, put another way, if you want to deliver help in a certain way then the developer has to use the appropriate command to invoke it. I believe there's extensive information in RoboHelp's online help about this, or you could take a look at some of the resources listed here:
    http://www.mshelpwiki.com/wiki/tiki-index.php?page=HTMLHelpArticles
    Pete

  • Search using second categorization schema not working

    Hi.
    We're currently using SolMan 7.1 for quite some time now and we've successfully set up 2 categorization schemas.  However, we recently noticed that the second categorization schema doesn't seem to work when we try to search for transactions using categories from this schema.  Can you pls. give us an idea on what configurations we could be missing out on?  Will greatly appreciate your help.  Thanks in advance.
    Regards,
    Theresa

    Theresa Viña Ng wrote:
    Hi.
    We're currently using SolMan 7.1 for quite some time now and we've successfully set up 2 categorization schemas.  However, we recently noticed that the second categorization schema doesn't seem to work when we try to search for transactions using categories from this schema.  Can you pls. give us an idea on what configurations we could be missing out on?  Will greatly appreciate your help.  Thanks in advance.
    Regards,
    Theresa
    Hello, Theresa. I don't know if this problem is still actual for you - but may be SAP Note 2060164 (Category search criteria is not working for 2nd MLC schema) will help you...
    BR,
    Artem

  • Why is the map in uae not working

    hi
    In UAE we face problems with maps. we can select one place but cannot go their (direction not working). Another this is Passbook doesn't work in UAE

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Authorization scheme not working.

    My requirement is I want to allow access only to few people for some pages, buttons.
    I am using Authorization scheme with scheme Type as "Exists SQL Query"
    Working Query
    SELECT p.EMP_ID FROM people p where emp_alias=:APP_USER and p.EMP_alias = 'ABC'
    Not Working query
    SELECT p.EMP_ID FROM people p where emp_alias=:APP_USER AND p.EMP_alias in ('ABC','XYZX)
    Error: ORA-00907: missing right parenthesis
         ERR-1082 Error in executing authorization scheme code.
    Can anyone say what am I missing.

    Thank you, adding braces and putting OR condition worked.
    SELECT p.EMP_ID FROM people p WHERE emp_alias = :APP_USER AND (p.EMP_alias = 'ABC' OR p.EMP_alias = 'XYZX')
    But not sure, how it is working some times and not working some times, if I have new lines, it doesnt work and if I have multiple conditions, it doesnt work.
    This doesnt work..
    SELECT p.EMP_ID FROM people p WHERE p.EMP_alias= :APP_USER and (emp_alias='ABC' or emp_alias='XYZ') and (p.EMP_ROLE='DBA' or p.EMP_ROLE ='DBAMGR')

  • Remove an unused map ID - Does Not Work, Documentation Innacurate

    I am using TCS 3.5 on Windows XP Pro. We're linking FM books to RH for online help output. I'm listing this in the FM Integration section for that reason, but this seems like it could possibly be a standalone RH problem, too.
    I've been creating map files in RH and everything was going well until I tried cleaning out the unused map IDs. The topic alias markers I create in FM work well and do port over. However, if I edit the marker in FM and update the linked files in RH, the new marker shows up in the map file -- but so do all of the old ones.
    I thought that wouldn't be a problem when I found the "Remove an unused Map ID" function under the "Project Set-Up/Map Files." It seemed like it magically worked once and now not at all.
    I have tried every variation you can imagine with the process. I both edited and deleted the markers in FM, but I still cannot clean them out with this function. I also found that the map file must be "unlocked" and verified that in the properties setting, as well.
    Part of what I find strange is that the documentation for this function does not match up with I see in RH9. Maybe this is documentation for an older version of RH (see below)
    At any rate, this is a huge problem, because I cannot have the map files littered with unusued map IDs, nor is it realistic to do this work manually, especially given the size of our books.
    Remove an unused map ID
    Your map files must be unlocked to use this option. To remove unused map IDs:
    Expand the Context-Sensitive Help folder in the Project Set-up pod. 
    Right-click the Map Files folder. 
    Select Edit.
    Do the following:
    Map Files
    Select the map files from which to remove unused map IDs.
    Select All
    Click to remove unused map IDs from all map files.
    Clear All
    Click to deselect all map files and not remove unused map IDs

    Alright, maybe it isn't that bad if you substitute the correct text we discovered. But I think this also reveals another shortcoming with the management of those map files, which is once you open the "Edit Map IDs" dialogue box, you should be able to batch manage the entries in the same way. Ultimately, the "Remove Unused IDs should just work, but being able to select all the Map ID entries and delete them would be an acceptable workaround and/or a nice piece of enhanced functionality.
    When I tried deleting the Notepad entries, I left RH open. But I just now tried the method you suggested, closing it out and opening it again. This actually did not work and caused more problems. From that point, every time I tried to force an update, it would only pull over a single topic alias and nothing I did would restore the other original topic aliases from the FM files. This method seems to cause the integration to wig out.
    From there, I had to painfully create a new project and re-link the FM files, apply .isf settings, etc. That worked, but who wants to do that every time, not to mention the versioning management nightmare it will create, especially in an environment with multiple writers.
    After I got the files linked again, I determined that the best method seems to be deleting all the Map ID entries manually. That seems to clear out the Notepad file correctly and not cause any confusion for RH.
    I can understand why you opted for being a "FM import guy." This linking of FM>RH is fraught with lots of headaches and oftentimes application bugginess. In this case, I think I'm adhering to the philosophy of doing all the work in FM, but since the "Remove Unused IDs" functionality doesn't work in RH, there is little to do but touch things in RH with a workaround.

  • Acrobat Distributed Form not working

    I set up a distributed pdf form on acrobat.com and the submit
    button does not work as expected. When I received the test
    distribution email, I clicked on the link and was asked if I wanted
    to preview or download, I selected download. After filling in the
    form, I clicked submit, I was then asked for my email and where I
    wanted to save the file. The test submission results did not show
    up on the results when I log into acrobat.com.
    What am I doing wrong? I watched 45 minutes of tutorials on
    adobetv.com and still missed something?
    This is disappointing because I had hoped to use this
    solution for several clients.
    Thanks for any help!

    Hello CJ Parsons,
    I'm not sure you're doing much wrong, just maybe need to
    include a few extra steps.
    We don’t display the data in Acrobat.com, only collect
    it.
    To view it, launch Acrobat and goto Comment-> Track
    Reviews-> Forms, and select the form and click on "View
    Responses" in the panel on right side.
    Acrobat creates a xxx_responses.pdf in the same directory as
    form, and you can directly open the this pdf to view responses.
    Let us know if you have any more questions!
    Hope this helps.
    Thanks!
    Pete

  • Ifmember Map Drive script not working

    So I have a script that I've used for years, but for some reason trying to use it in a new domain doesn't work.  Script looks like this:
    @ECHO OFF
    rem NET USE J: /d
    rem NET USE K: /d
    %logonserver%\netlogon\software\ifmember "domain\SecurityGroup1" > nul
    IF ERRORLEVEL 1 SET MAPDRV=TRUE
    IF NOT DEFINED MAPDRV GOTO :NEXT
    net use J: \\domain.com\dfsroot\folder1
    SET MAPDRV=
    :NEXT
    %logonserver%\netlogon\software\ifmember "domain\SecurityGroup2" > nul
    IF ERRORLEVEL 1 SET MAPDRV=TRUE
    IF NOT DEFINED MAPDRV GOTO :END
    net use K: \\domain.com\dfsroot\folder2
    SET MAPDRV=
    :END
    As I said, it's been wokring for years, but trying to use it in a new test domain, and for some reason the Errorlevel never flags.  I tested my ifmember and I can see the user as a member of the security group that gives the drive access and should flag
    true on the ifmember lookup.  The net use piece works, and the user has permissions and the ability to map to that share.  So something is preventing the If Errorlevel 1 set mapdrv=true  .  
    Any Ideas?

    While working on implementing Group Policy preferences, run these commands from a Command Prompt to see what is going on:
    %logonserver%\netlogon\software\ifmember "domain\SecurityGroup1"
    echo ErrorLevel=%ErrorLevel%
    If the user is a member of SecurityGroup1 then you should see "ErrorLevel=1" on the screen. If you don't then ifmember.exe does not work on your system.
    If you can get it to work then this simplified script would work just as well:
    @echo off
    set IfMember=%logonserver%\netlogon\software\ifmember.exe
    %IfMember% "domain\SecurityGroup1" || net use J: \\domain.com\dfsroot\folder1
    %IfMember% "domain\SecurityGroup2" || net use K: \\domain.com\dfsroot\folder2

  • URI Scheme Not Working - Windows

    The URI scheme is not working on Internet Explorer or any browser in Windows 8. I am using the URI scheme from the microsoft technet site. Oddly enough, it works flawlessly on apple computers - it launches the microsoft remote desktop app when i click on
    the link that contains the URI scheme. On Windows 8, it says that no apps are installed to read that file type (rdp). I really need the use of this. Why is it working on macs but not on pc's running windows?
    Here is the URI scheme i am using - obviously the server name and domain have been replaced
    rdp://full%20address:s:servername&domain:s:domainhere

    Hi,
    Yes, this URI Scheme only works for Android, Mac and IOS devices.
    Remote Desktop Client URI Scheme Support
    http://technet.microsoft.com/en-us/library/dn690096.aspx
    For Windows Client, you need to register an application to a URI Scheme, such as associate mstsc.exe with rdp://
    Registering an Application to a URI Scheme
    http://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx
    Hope this helps.
    Jeremy Wu
    TechNet Community Support

  • Maps, Passbook Does not work.

    Downloaded iOS 6.
    Maps does not work. No flyover. No turn by turn directions. Does not appear on lock screen.
    Passbook does not work either. Keeps saying "Cannot connect to iTunes".

    What device do you have? The Flyover is only available on some cities, and both these features are only available starting the iPhone 4s.

Maybe you are looking for

  • I would like to include a photo within the body of the email, not as an attachment. How do I do this?

    I receive emails where a photo in included in the email. When I send emails with Firefox, I have to attach the photo as an attachment. How can I include the photo in the body of the email?

  • My new Macbook Air doesn't pair with my bluetooth speaker (Jambox or Big Blue).  Why?

    I've tried two different bluetooth speakers (Jambox abd Big Blue) and both don't pair with my MacBook Air.  Anyone have the same problems?

  • Tool bars symbols

    when i open a work template and tried to place a word doc. i my screen goes blank including the tool bars on ID. i have to click on the bar where the symbols are to appear as I click the same with the word doc. or any other application, such as print

  • JRUN Servelt 500 Error

    Any idea on how to resolve this error and or the cause... My code is very simple and worked before. Suddenly started sporadically showing this error message. 500 ROOT CAUSE: coldfusion.runtime.RequestTimedOutException: The request has exceeded the al

  • Is my db running in RAC mode or not?

    Friends, db: 10gR2 and 11gR2 In 10gR2 i dont have RAC. its a single instance db. 11gR2 i have 2 RAC Node. i know the below command will show the difference. select instance_number,instance_name,host_name from v$instance; but i want to know whether th