Cannot connect to multiple different cache clusters via ExtendTCP

Hi,
I'm trying to have two different ExtendTCP configurations for accessing different cache clusters, but I cannot get it to work. Essentially, the server configurations look like this:
<?xml version="1.0"?>
<!DOCTYPE cache-config SYSTEM "cache-config.dtd">
<cache-config>
<caching-scheme-mapping>
<cache-mapping>
<cache-name>testcache1</cache-name>
<scheme-name>testcache1-distributed</scheme-name>
</cache-mapping>
</caching-scheme-mapping>
<caching-schemes>
<distributed-scheme>
<scheme-name>testcache1-distributed</scheme-name>
<lease-granularity>member</lease-granularity>
<backing-map-scheme>
<local-scheme/>
</backing-map-scheme>
<autostart>true</autostart>
</distributed-scheme>
<proxy-scheme>
<scheme-name>testcache1-proxy</scheme-name>
<service-name>ExtendTcpProxyService</service-name>
<thread-count>5</thread-count>
<acceptor-config>
<tcp-acceptor>
<local-address>
<address>localhost</address>
<port>9098</port>
</local-address>
</tcp-acceptor>
</acceptor-config>
<autostart>true</autostart>
</proxy-scheme>
</caching-schemes>
</cache-config>
and
<?xml version="1.0"?>
<!DOCTYPE cache-config SYSTEM "cache-config.dtd">
<cache-config>
<caching-scheme-mapping>
<cache-mapping>
<cache-name>testcache2</cache-name>
<scheme-name>testcache2-distributed</scheme-name>
</cache-mapping>
</caching-scheme-mapping>
<caching-schemes>
<distributed-scheme>
<scheme-name>testcache2-distributed</scheme-name>
<lease-granularity>member</lease-granularity>
<backing-map-scheme>
<local-scheme/>
</backing-map-scheme>
<autostart>true</autostart>
</distributed-scheme>
<proxy-scheme>
<scheme-name>testcache2-proxy</scheme-name>
<service-name>ExtendTcpProxyService</service-name>
<thread-count>5</thread-count>
<acceptor-config>
<tcp-acceptor>
<local-address>
<address>localhost</address>
<port>9099</port>
</local-address>
</tcp-acceptor>
</acceptor-config>
<autostart>true</autostart>
</proxy-scheme>
</caching-schemes>
</cache-config>
And the client configuration looks like this:
<?xml version="1.0"?>
<!DOCTYPE cache-config SYSTEM "cache-config.dtd">
<cache-config>
<caching-scheme-mapping>
<cache-mapping>
<cache-name>testcache1</cache-name>
<scheme-name>testcache1-remote</scheme-name>
</cache-mapping>
<cache-mapping>
<cache-name>testcache2</cache-name>
<scheme-name>testcache2-remote</scheme-name>
</cache-mapping>
</caching-scheme-mapping>
<caching-schemes>
<remote-cache-scheme>
<scheme-name>testcache1-remote</scheme-name>
<service-name>ExtendTcpCacheService</service-name>
<initiator-config>
<tcp-initiator>
<remote-addresses>
<socket-address>
<address>localhost</address>
<port>9098</port>
</socket-address>
</remote-addresses>
<connect-timeout>10s</connect-timeout>
</tcp-initiator>
<outgoing-message-handler>
<request-timeout>5s</request-timeout>
</outgoing-message-handler>
</initiator-config>
</remote-cache-scheme>
<remote-cache-scheme>
<scheme-name>testcache2-remote</scheme-name>
<service-name>ExtendTcpCacheService</service-name>
<initiator-config>
<tcp-initiator>
<remote-addresses>
<socket-address>
<address>localhost</address>
<port>9099</port>
</socket-address>
</remote-addresses>
<connect-timeout>10s</connect-timeout>
</tcp-initiator>
<outgoing-message-handler>
<request-timeout>5s</request-timeout>
</outgoing-message-handler>
</initiator-config>
</remote-cache-scheme>
</caching-schemes>
</cache-config>
Now the problem is that Coherence apparently only creates the first tcp initiator, and when I try to access the second cache 'testcache2', Coherence looks for this cache in the remote cache identified by this first tcp initiator, which obviously does not have this cache. Accessing 'testcache1' works just fine.
This is the output:
2007-11-13 11:15:19.676 Oracle Coherence GE 3.3/387p4 <D5> (thread=main, member=n/a): Started: TcpInitiator(Running=true, ThreadCount=0, PingInterval=0, PingTimeout=5000, RequestTimeout=5000, ConnectTimeout=10000, RemoteAddresses=[172.16.16.248:9098], KeepAliveEnabled=true, TcpDelayEnabled=false, ReceiveBufferSize=0, SendBufferSize=0, LingerTimeout=-1)
2007-11-13 11:15:19.678 Oracle Coherence GE 3.3/387p4 <D5> (thread=main, member=n/a): Opening Socket connection to 172.16.16.248:9098
2007-11-13 11:15:19.680 Oracle Coherence GE 3.3/387p4 <Info> (thread=main, member=n/a): Connected to 172.16.16.248:9098
Exception in thread "main" com.tangosol.io.pof.PortableException (Remote: An exception occurred while processing a CacheEnsureRequest) java.lang.IllegalArgumentException: No scheme for cache: "testcache2"
     at com.tangosol.net.DefaultConfigurableCacheFactory.findSchemeMapping(DefaultConfigurableCacheFactory.java:476)
     at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:270)
     at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:689)
     at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:667)
     at com.tangosol.coherence.component.net.extend.proxy.CacheServiceProxy.ensureNamedCacheProxy(CacheServiceProxy.CDB:14)
     at com.tangosol.coherence.component.comm.messageFactory.CacheServiceFactory$CacheEnsureRequest.onRun(CacheServiceFactory.CDB:13)
     at com.tangosol.coherence.component.comm.message.Request.run(Request.CDB:13)
     at com.tangosol.coherence.component.net.extend.proxy.CacheServiceProxy.process(CacheServiceProxy.CDB:1)
     at com.tangosol.coherence.component.comm.Channel.onReceive(Channel.CDB:104)
     at com.tangosol.coherence.component.comm.Connection.onReceive(Connection.CDB:7)
     at com.tangosol.coherence.component.comm.ConnectionManager$MessageExecuteTask.run(ConnectionManager.CDB:6)
     at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:24)
     at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:49)
     at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:35)
     at java.lang.Thread.run(Thread.java:613)
Btw, this is with version 3.3 patch 5.
Is there something wrong with my configurations, or is this a bug in Coherence ?
Any help appreciated,
Tom

Hi Tom,
You need to use difference service names:
<?xml version="1.0"?>
<!DOCTYPE cache-config SYSTEM "cache-config.dtd">
<cache-config>
    <caching-scheme-mapping>
        <cache-mapping>
            <cache-name>testcache1</cache-name>
            <scheme-name>testcache1-remote</scheme-name>
        </cache-mapping>
        <cache-mapping>
            <cache-name>testcache2</cache-name>
            <scheme-name>testcache2-remote</scheme-name>
        </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
        <remote-cache-scheme>
            <scheme-name>testcache1-remote</scheme-name>
            <service-name>ExtendTcpCacheService1</service-name>
            <initiator-config>
                <tcp-initiator>
                    <remote-addresses>
                        <socket-address>
                            <address>localhost</address>
                            <port>9098</port>
                        </socket-address>
                    </remote-addresses>
                    <connect-timeout>10s</connect-timeout>
                </tcp-initiator>
                <outgoing-message-handler>
                    <request-timeout>5s</request-timeout>
                </outgoing-message-handler>
            </initiator-config>
        </remote-cache-scheme>
        <remote-cache-scheme>
            <scheme-name>testcache2-remote</scheme-name>
            <service-name>ExtendTcpCacheService2</service-name>
            <initiator-config>
                <tcp-initiator>
                    <remote-addresses>
                        <socket-address>
                            <address>localhost</address>
                            <port>9099</port>
                        </socket-address>
                    </remote-addresses>
                    <connect-timeout>10s</connect-timeout>
                </tcp-initiator>
                <outgoing-message-handler>
                    <request-timeout>5s</request-timeout>
                </outgoing-message-handler>
            </initiator-config>
        </remote-cache-scheme>
    </caching-schemes>
</cache-config>Regards,
user601849

Similar Messages

  • Cannot connect to itunes store ipod touch via router

    I am new to Ipod ownership and so far its been a good experience.
    I have been searching on the web but not been able to find a solution to my problem.
    The issue I have is that recently I cannot download apps from the app store via my home router. I can search the internet etc using it but when I click to install an app I get the message that says "Cannot connect to iTunes Store". I have tried to use a different wireless router (my mobile phone acting as a hotspot) and do not get the same message.
    I assume therefore that there is some issue between the router (a netgear WGR614) and the ipod. The annoying thing is that I could do it earlier in the week.
    Any help would be much appreciated.
    Thanks

    Two things to try.  Please reply with what works.
    1: Turn on Airplane mode, then turn it off again.  This resets internet related settings.
    Does it work?
    2:  Changing the DNS in Setting, Wi-Fi, DHCP tab, DNS , replace with 8.8.8.8 (Google) or 8.8.4.4 (Google)
    Does it work?

  • Querying data across different cache-clusters

    Hi,
    Say there are multiple clusters each containing DIFFERENT sets of cached data. I would like to know if someone knows how an application from within one cluster can read/query the data from the DIFFERENT clusters "DIRECTLY". Would we need to code in Coherence extend protocol API (if there is one such) in this case ? Does anyone know or done this ?

    Hi,
    Yes you would need to use Extend to be able to see one cluster from another. It is pretty straight forward, you just configure the cache mappings in the same way you would for any remote caches.
    JK

  • Users cannot connect to shares or sync Exchange via company wifi

    Hello, I am posting this because my users can connect to the company wifi (guest and private) with no problem.  They can use the internet, but nobody can reach network shares, nor can they setup or sync Exchange email via the wifi.  Currently, anybody with a smartphone must be on 3g or 4g in order to get their email onsite.  Laptops with wifi capability must be connected via ethernet cable in order to get to network shares and email.  I've searched and searched, but cannot find anything on this.  Anyone have ideas?                  

    Hi Luis,
    I am using a Cisco ASA 5510 with two Cisco AP 2600's.  After digging in their configuration settings, I was able to see that the AP's IP addresses are completely different than our internal IP's, which would explain why Exchange isn't able to sync.  Unless I am misunderstanding how they work, shouldn't they be giving out the same Ip scheme as the ASA?  (i.e. ASA IP scheme: 10.0.10.XXX, AP IP scheme: 174.XXX.XXX.XXX)
    Your help is greatly appreciated.
    Thank you,
    Jye

  • Leo cannot connect to WIN 2000 SP4 Server via AFP!

    Dear folks,
    I set up an PowerMac G4 MDD as a first Leopard-Test Machine for our production environment. Mac OS X 10.5 was installed on a clean HD without any old stuff on it.
    My serious problem ist that this Mac cannot establish a connection to a WIN2000 Server (SP 4) via AFP.
    I am able to enter cmd-K, server IP, and in the following dialogue login and password.
    Instead of showing the available shares I get an error -41 (unknown error) an should contact the server admin.
    Interestingly, I have absolutely no probs to connect via AFP to another Win2000 machine with SP 2 installed.
    Also I tried several manipulations on the appleshare plist file I found here and in other forums. With no luck.
    I have no idea anymore what else to try.
    With Tiger and Panther everything is fine.
    Thanks in advance for your help!
    Regards,
    Stefan

    I have not been able to reproduce error -41, but I have been able to reproduce a failure to connect on Windows 2000 SP4.
    On the windows server, make sure you are using either 'Microsoft Only', 'Apple Encrypted', or 'Apple Encrypted or Microsoft'.
    You can check this by right clicking on 'My Computer', selecting 'Manage', right clicking on 'Shared Folders' under 'System Tools' and selecting 'Configure File Server for Macintosh'. It will be on that first screen that comes up.
    If you just MUST use unencrypted passwords, or can't access the NT server, you can set the following and it seems to work fine.
    Err:~ eb$ defaults write com.apple.AppleShareClient "afpcleartextwarn" -bool YES
    Err:~ eb$ defaults write com.apple.AppleShareClient "afpcleartextallow" -bool YES

  • Cannot connect Macbook Air to Samsung TV via HDMI

    Hello, I have been completely unable to get my Macbook Air (13-inch, Mid 2011, running OS X 10.9.1) to connect to my new Samsung TV (UN32EH5000F)  I feel like I have tried everything I can think of, have spent hours now looking for a solution online.  I also consulted Samsung tech support, who were not helpful in that they insisted the problem is with my Macbook (because the HDMI port on the TV works when I hook up my DVD player).
    I'm trying to connect my Macbook Air to the TV using a Mini DisplayPort (Thunderbolt Compatible) to HDMI cable.  I have gotten the connection to work on my LG monitor (via the same HDMI cable), but this did require some switching back and forth between sources before it would appear as an external monitor on my Mac and doesn’t seem to work reliably.  Sometimes I can get the LG monitor to work as an external display over HDMI and sometimes I can’t. 
    I have also gotten the TV to work ONCE on my Macbook Pro (15-inch, Late 2008, running 10.9) by plugging the cable into the Mini DisplayPort while the computer was asleep.  I have not been able to replicate this in many tries since that first time.
    When I insert either end of the cable (either into the TV or the Macbook Air), the screen flashes as if recognizing that the cable is plugged in, but the TV always says "No Signal." 
    I have also tried:
    Every possible combination of plugging in cables
    Shutting down my Mac and the TV and rebooting
    Switching the source on my TV back and forth
    Plugging the HDMI cable into both ports on the TV
    Changing the name of the HDMI source on my TV (to available options like "PC", "DVI", "DVI PC", etc.)
    Battery power and AC adaptor
    Resetting the PRAM and the SMC
    Using the Option button in Display preferences to click “Detect Displays”
    Any help would be appreciated!

    For Netflix viewing, youre going the LONG way around to watch same using your Macbook
    Get an AppleTV which you can use for Netflix, and Airplay and watching tons of free content.
    I use the same for netflix and Airplay of video over wifi.
    Best $100  gadget money can buy

  • Cannot connect Nikon D700 with iPhone 5S via Lightning to USB Camera Adapter?

    The cable seems to work on my Ipad Mini 2 but i dont know why iPhone 5S does not support D700 so i cannot import pictures from D700 to my phone

    I had no idea that any iDevice could import directly from a digital camera. I would guess that you need an app for that. Some possibilities:
    https://itunes.apple.com/us/app/wireless-mobile-utility/id554157010?mt=8
    https://itunes.apple.com/us/app/connect-to-s800c/id555268423?mt=8
    If you have an Eye-Fi SD card in your camera you can also use the Eye-Fi utility:
    https://itunes.apple.com/us/app/eye-fi/id306011124?mt=8
    All of these are wireless solutions. I did not find any for cable transfer.

  • [URGENT!] Cannot connect a computer to the internet via WRT54GSv4 router

    I have spent more money than the devil knows on fixing my wireless internet, and just recently I discovered these forums. Go figure.
    Anyways, two or three weeks ago my upstairs computer's internet connect flopped and died. This is about the seventh time this has happened, in ONE YEAR! I use a Westell modem and a WRT54GSv4 router, a WRE54G Range Expander outside the room, and a Dynex Enhanced Wireless-G Adapter. One day I was playing WoW (ftw...), and all of a sudden I was disconnected, rather rudely. I looked back to my Expander: The top light was red, and the bottom blue, which means activity but no link (meh?). Anyways, I got limited or no connectivity for the first few days, but not connected, and finnaly my Routed connection died and wouldn't even show on the list of in range wireless connections. If the router was a person, I'd beat it with a bat. Or at least with words.
    In the past I configured it to allow Battle.net ports 6112 through 6119 to host games on Warcraft III. I have done nigh on nothing else to mess with my router, no firmware upgrades, no meddling (except for some resets to factory defaults via 30 seconds reset button), etc. It randomly shuts off and dies, but the thing that really pisses me off is the fact that my parents' laptop still has connectivity to the routed network. I don't know if its something to do with my router, something screwed with my modem, my range expander being gay, or my Dynex adapter being pwned by some virtual cannon.
    If any of y'all could provide any information whatsoever relating to this fix as soon as possible, I would be greatly appreciative!
    -Space is cold, and dead, but that doesn't mean things can't be living...
    <<Deadspace91>>
    Message Edited by Deadspace91 on 02-01-2009 03:10 PM

    As you said your Parents computers are able to go online thorugh the Router, That means its not the problem with the Router, You just need to input the same wireless settings on your Wireless WRE.

  • Cannot connect to Local Libraries' Wi-Fi via my La...

    I have been having problems connecting to the wi-fi of my local library via my laptop for the last couple of weeks, after not having any problems connecting before. 
    I am able to connect to BT's wi-fi service, but when I try to log in to my local library's (Hackney Libraries) wi-fi, I get a message that the DNS is not recognised.
    The libararians say that I should contact my internet service provider (which is BT), but I have since had problems contacting BT via their live chat service.
    Is this a fault with my ISP or could it be my laptop?

    Have you manually changed the DNS settings on your laptop at any point?  Unless you have a good reason to do otherwise, it should normally be set to "Obtain DNS server address automatically".  This setting is buried deep in the network options on Windows.
    Some parental control systems will detect attempts to use 3rd-party DNS servers, and will block them.  This is because switching DNS servers could be used to bypass the parental controls.  i can imagine that most libraries would have something installed to prevent people looking at "dodgy" web sites while in the library.

  • Cannot connect to Timecapsule with xp (SP3) via ethernet

    My timecapsule works fine with mac over wireless or ethernet, on PC the following happens:
    whilst I cannot see the TC in the explorer, I am asked at start up to connect with username and password. When I enter what I have for these in TC I get an error message that one of them are wrong. I already disabled firewall and virus protection, I enabled temporarily Guest access, ...without success.
    Is there any way I could access and use TC with windows? Many thanks for any help.

    Just a quick shot in the dark. Is this router being forced to be in N mode only? I doubt it is, just wondering.
    If this is not the case then could it be WPA2? 

  • AAR berween 2 different CUCM clusters via intra-site trunk

    Hi all
    I have 2 separate independent CUCM clusters in the same network with an intra-site trunk between them. Can I use AAR between them? Both sites use 4-digit dialing internally, but now I need to configure 10-digit dialing between them so that when a user in cluster A dials a full PSTN 10-digit number, it first translates to 4-digit then goes across the trunk and the phone rings in cluster B. However, when I activate AAR and CAC, my call is not getting rerouted across the local PSTN. I always get the “out of bandwidth” then reorder tone. Does AAR only work between remote sites on same cluster? Or can it work between different clusters? If not, how else can I set this up?
    Regards,
    Marcus

    Correct, the calling end point needs to know the external phone number mask configured under the DN to use AAR, and you do not know that info from the other cluster as that's a separate DB. It used to work only for calls withing the same cluster.
    With newer releases, if you want that to work, you need to configure SAF/CCD, so you publish that information for the other cluster and it has the E.164 DN from the phone on the other cluster.
    HTH
    java
    if this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • Cannot connect to home network with iphone via wireless.

    wireless home network does not appear in iphone. pc, laptops and iTV work perfect with wireless. I tried everything i can think of. anysuggestions?

    If there is no problem with the iPhone seeing any other available wi-fi networks or connecting with any other wi-fi network your iPhone has access to, not sure how it can't be a problem with your wireless router or network regardless if the iPad and iMac have no problem.
    No change after resetting network settings on the iPhone and/or after restoring the iPhone with iTunes as a new iPhone or not from the backup.

  • After upgrading to yosemite macbook air(mid 2011) cannot connect to macbook air(early 2014) via airdrop

    last night i upgraded mine and my wife macbook air to yosemite.
    before, we can share files with airdrop easily but now the mba (early 2014) can not send file to the other one , also the old one

    19.83 GB Page-outs
    You are maxing out your RAM. Try quitting Chrome, it seems to be a resource hog and try closing other applications that you aren't using.

  • Cannot connect between macbook pro and iMac via sharing

    In finder on desktop I can access my laptop as a registered user, but I can't access my Desktop form my Laptop as a registered user.  The password I use to install software dosn't work to change from guest to registered user.   Help

    Hi mike197373,
    Welcome to the Support Communities!
    The articles below may be able to help you with this issue.
    Click on the links to see more details and screenshots. 
    Mac Basics: File Sharing
    http://support.apple.com/kb/HT1549?viewlocale=en_US
    OS X: Changing or resetting an account password
    http://support.apple.com/kb/HT1274
    Cheers,
    - Judy

  • Portege R500: cannot connect the remote DVI monitor via Dynadock

    Hello,
    I just connected Dynadock (DVI) with my Portege R500. The notebook would be supported -- according to Toshiba -- but my experiment confirms that Dynadock is not able to access DVI port. This implies, that Dynadock is nothing more than USB HUB.
    My setup: Vista 32b Business (CZE edition), latest fixes, Toshiba R500.
    Software: latest dynadock software 2.3c.
    Symptom: I cannot connect to the remote DVI monitor via the dynadock, only two external panels with 800x600 are available, but Vista does not allow me to choose them.
    More info: Dynadock Software requires to run without Microsoft Defender, else it blocks service:DisplayLinkService; file:C:\Program Files\DisplayLink Core Software\DisplayLinkService.exe
    If you disable MSDef, the message "error 2738" appears when you connect the dynadock and when Vista tries to install a missing drivers for you.
    Yes, I do know the VBS issue, and the problem is not caused by VisualBasic -- VBS "Hello World" runs.
    If you still believe, that Toshiba Dynadock is compatible with Toshiba R500, then press Fn-F5 and peek at your logs and you must find something like:
    In English: igfxext.exe throws an exception 0xc000000d, offset 0x0000f9f8.
    I welcome any comments, hints etc. If you are able to pass this bug report to a responsible engineer, do so please.

    Hello again Leo
    I still believe you are wrong. Toshiba Dynadock is not designed for Toshiba products only. It is universal product and can be used on every notebook. To be honest I believe it is better to use it with new, more powerful, notebooks.
    When you sat your notebook model is listed as compatible I believe you. Why not? Toshiba can list all newer notebooks. No problem at all. To be honest I am also interested to buy Dynadock but after reading your posting I wanted to see how it works exactly.
    I have contacted my friend because he works in one big electronic store and I was lucky because he had Portege M500 too.
    He was very nice and offered me to test Portege M500 SSD model with Dynadck PA3542EY1PRP. I hope you have the same model. It is DVI model. So I have done follow:
    - Portege was preinstalled with clean Vista OS (factory settings started for the first time)
    - I have installed latest Dynadock Utilitiy for Vista 2.3c
    - Installing this software you must pay attention about installations steps and the installations procedure should not be interrupted
    at one step there is window Installation Complete but it is not complete and must be continued with
    Display Link Core Software installation
    Video Dock installation
    at this point the Dynadock must be connected to favorite USB port NOT FROM THE BEGINNING
    - At the end I have restarted notebook
    The installation was finished properly and I have connected 20 Toshiba Tekbright LCD display (DVI cable). The native resolution is 1680x1050. in Display properties there are shown three displays. Display number 3 belongs to display connected to the Dynadock.
    Resolution 1680x1050 was there and display shows perfect picture. I have tested it as extended desktop and it works without problems. I didnt test it playing some movies.
    I have also tested it with FN+F5 key combination. It does not work as it should be but there is definitely no error message. I know that FN+F5 key combination is not designed for external graphic card and I know that it can not work well.
    At the end I can sat that Dynadock works well with Portege M500 SSD and there is definitely no error message. It works with Vista very well. I have tested it with screen saver and with few restarts. Nothing changes. Everything was OK.
    So after this test I can say that you have done some mistake. If you want to use it again I recommend you to install Vista again using recovery image. After doing this you will have clean preinstalled OS. Install software but please follow the menu on the screen and be sure all three components are installed properly. If I am remembering well when you see message about USB audio device installation you must connect Dynadock and continue installation.
    PLEASE FOE DYNADOCK USE ALWAYS THE SAME USB PORT!!!
    Sorry for this long story but I can say for sure IT WORKS PROPERLY!!!
    Have a nice day!

Maybe you are looking for

  • Logical partitioning of an ODS - when / what size e.g. 100 Mio records?

    Hi Folks, we got an ODS/DSO with about 80 fields and we are currently planning futher rollouts which will lead to an overall volume in the DSO about 100 Mio records. I wonder if this volume for a DSO is still fine to do reporting and loading / activa

  • Setting colour profiles when exporting

    Aperture is assigning an AdobeRGB colour profile to my files upon export, or transfer to Photoshop CS5. I have the export preset set to sRGB but despite this there is a profile mismatch when opening it in photoshop. The files are shot RAW, the camera

  • Wrong title in Metadata

    When I initially began writing my book, the working title was the same as my print version.  Later, I changed the title slightly because the iBooks version is distinctly different.  I changed the Title in the Document section and in the book menu.  A

  • Composing an html message

    I wasn't able to find the answer for this question in the archives - there seemed to be a link which was no longer accessible. I'm trying to compose an email to send out to my clients; I wanted to use html to make it pretty, add links, photos, etc. I

  • $f_CheckFirstColumn(this) is not working in theme 42 apex 5.

    $f_CheckFirstColumn(this) is not working in theme 42 apex 5. it does not tick or untick the check boxes.