Need to forward multiple apps to multiple clusters

I have 4 clusters of 2 managed servers each. Each cluster hosts 1 or more
applications. I want them all to be able to be forwarded from one domain.
Like this;
http://domain.com/app1
http://domain.com/app2
I have done it by creating 4 directories on the file system, each with it's
own iisproxy.dll and iisproxy.ini. Each iisproxy.ini points to a different
cluster. I set up a wildcard mime type filter on a virtual directory for
each application in IIS. These point to the iisproxy.dll in the noted above
for the cluster that the app resides in.
This works just fine for one app. Problem is, when you try to access
another app, you get a 404 error. If you reboot IIS and access the other
app it works. But when you try to access a different app, same 404. Looks
like it will proxy only to the first cluster/app you attach to.
Any ideas?
Thanks.

buy 2,8 4-core and upgrade to W3680 yourself. sell the 2.8 or keep it as backup. Very affordable 6-core, or just spring for the fastest single cpu BTO.
Invest in 8GB DIMMs (4 x 8GB) and SSD - 3rd party RAM, 3GB is enough to boot, period.
Wait for SATA3, more bandwidth, Sandy Bridge E Xeons.
Macintosh Performance Guide: Articles & Reviews

Similar Messages

  • Multiple Clusters with same computers

    Is there a way to set up multiple clusters with the same computers.
    For example
    Cluster A has computers 1, 2
    Cluster B has computers 1, 2, 3, 4, 5
    The reason behind this is that computers 1 and 2 are always available, but 3, 4, 5 are used during the day. I'd like to have a day cluster and a night cluster that I can just select as needed.

    Hi Jake, I was playing with this type of thing when FCS1 first came out using some old powerbooks.
    Yes you can kind of do this using UNMANAGED SERVICES but I will stand corrected for COMPRESSOR3.app.
    In FCS2, compressor 3, simply if you use *MANAGED SERVICES* of the service nodes available through a defined a specific cluster (you would have used appleqmaster utility.app) than I believe those service nodes are dedicated to that cluster.
    Sure you can make 'INSTANCES" of compressor for example and the 'renderer" instances dedicated to particular cluster using this as an example... let say...
    HOST1 = MACPRO8CORE with 4 instances of compressor (as C1,C2,C3,C4 via vi 4 virtual clusters) and 8 instances of renderer (R1,R2,..R7 & R8).
    HOST2 = MACBOOKPRO with 1 instance of compressor (as C1 & C2 with 2 virtual clusters) and 2 instances of renderer (R1,R2).
    HOST3 = PowerbookG4 with 1 instance of compressor (as C1) and 1 instances of renderer (R1).
    only as an example
    ClusterA: Host1[C1,C2C3, R1,R2,R4,R5), Host2[C2]
    ClusterB: Host1[C4, R6,R3,R6,R7), Host2[C2,R1R2], HOST3{C1,R1]
    In fact I just tried it...
    However as I thought for managed services be assured that you cannot SHARE a service node with two or more clusters. I will stand corrected.
    Messy but seems to work but useless with the powerbook you'd agree
    However depending on your workflow and commecrial needs (say for busness prioriries for a specific client) for best results use *UNMANAGED SERVICES* ....
    Simply hook everything up over GBE, with all the usual tweaks such as "NEVER COPY SOURCE" and MOUNTING all source targets and compressor work files over HFS on the GBE subnet (and many other tweaks) and treat the set up as a huge bucket.
    Use priority on the batch submission. It's not too smart but at least you have some manipulation over the queues.
    The resource manager in QMASTER is not so smart. So despite a service node going idle it does not seem to redirect work from wone node to another for load balancing..
    I have only tried this with SEGMENTED TRANSCODING.
    Rendering (Shake) works great and seem simpler. My time is with multipass segented transcoding where I want H.264 from DVCPROHD and dont want to wait all day for it, especially where I have tweaked the timing in compressor a bit.
    Try it out.
    BTW as many contest on this forum, QMASTER/COMPRESSOR can be a bugger to fix if it plays up. and it has for me as well.
    post your results.
    HTH.
    w

  • Connecting to multiple clusters using WAR file

    I am trying to connect to multiple clusters by creating separate WAR(web archive) files through Apache tomcat.
    My intention is to have each 'war' act as a node to a separate cluster. I started with the 'jmx-console' example available on the Tangosol website.
    So, my understanding is that even though all the war files are loaded in the same JVM (tomcat), since each of these war's has its own classloader, we can have multiple tangosol ndoes from the same JVM.
    So I have two basic questions:
    *) If I use system.setProperty("tangosol.coherence.override", myOverrideFile-x) in the class loader of each WAR, can I have the nodes connect to different clusters. is'nt the System.setProperty() setting the property on the JVM? If so, how can multiple classloaders running in the same JVM connect to different clusters?
    *) Where should I place config/override xml files under the tomcat directory structure for it to be accesible to the class loader.

    Hi sumax,
    Thanks for your response Robert,
    Maybe I did not understand your solution fully, I
    thought your idea mostly talks about how to configure
    the override files, and not how to configure the
    individual nodes to use different override files.
    That part is taken care of by the fact, that each war file loads the tangosol-coherence-override.xml from its own WEB-INF/classes directory.
    Classloading from a web app in Tomcat resolves classpath classes/resources in the following order:
    1. java.* and javax.* and com.sun.* packages are loaded from the system classloader. This, I believe, cannot be circumvented on a Sun JVM with a classloader extending a JDK classloader class.
    2. Reloadable JSP classloader (loads servlet classes generated from JSP pages). This is webapp specific, each webapp sees its own generated servlet classes.
    3. Reloadable Webapp classloader (loads from WEB-INF/classes and WEB-INF/lib of the war). This is webapp specific, each webapp sees its own WEB-INF/classes and WEB-INF/lib.
    4. Common classloader (loads from ${TOMCAT_HOME}/common/classes and ${TOMCAT_HOME}/common/lib). This is used by all webapps and the Tomcat container itself. You should not put anything here, except for libraries for resource drivers, etc. JDBC drivers or anything which needs to be published in the JNDI server in a non-application-specific way.
    5. Shared classloader (loads from ${TOMCAT_HOME}/shared/classes and ${TOMCAT_HOME}/shared/lib). This is shared between all webapps but not by the Tomcat container. You can put libraries here with which you want to communicate between webapps. Any singletons in classes in this classloader will be shared between webapps. A place for configuration files which are shared or if they have the application name in their filenames (so that they are not accidentally used by another application).
    The question still lingering in my mind is:
    How do I tell the classloader which override file to
    load.
    A tangosol-coherence-override.xml with different content should be put in the WEB-INF/classes directory of each war file. Each of those files will be loaded only by its containing webapp. This filename is defined in the deployment-mode-specific override files in coherence.jar or tangosol.jar (I don't remember which, off my head) which all chain to this same tangosol-coherence-override.xml file.
    That override file can contain all your overrides, if you do not want to change those between restarts, or it can chain with its xml-override attribute (as shown in the example) to another file with the application name in its filename.
    This chaining allows each webapp to refer to a differently named override file, so all those override files can be put into shared/classes folder. The uniquely named override file in shared/classes allows you to change the override configuration between restarts.
    As for cluster address and port, you can specify those in any of the override files.
    The full chaining path is the following (if you used the tangosol-coherence-override.xml example in my first reply):
    tangosol-coherence.xml -> tangosol-coherence-prod.xml -> tangosol-coherence.xml (you provide this file in your webapp WEB-INF/classes) -> tangosol-coherence-override-warfilename.xml (you provide this file in the ${TOMCAT_HOME}/shared/classes)
    I hope this makes it clear.
    Best regards,
    Robert

  • We have multiple devices in the family, including now 4 iphones, all who share the same Apple ID. I want to stop this, but need thoughts on multiple IDs as Findmyphone works well as same ID?!

    We have multiple devices in the family, including now 4 iphones, all who share the same Apple ID. I want to stop this, but need thoughts on multiple IDs as Findmyphone works well as same ID?!

    I don't know if I'm asking this all in a way that can be understood? Thanks ED3K, however that part I do understand (in the link you provided!)
    What I need to know is "how" I can separate or rather create another Apple ID for my son-who is currently using "my Apple ID?" If there is a way to let him keep "all" his info on his phone (eg-contacts, music, app's, etc.) without doing a "reset?') Somehow I need to go into his phone's setting-create a new Apple ID and possibly a new password so he can still use our combined iCloud & Itunes account?
    Also then letting me take back my Apple ID & password, but again allowing us (my son and I) to use the same iCloud & Itunes account? Does that make more sense??? I'm sincerely trying to get this cleared up once and for all----just need guidance from someone who has a true understanding of the whole Apple iCloud/Itunes system!
    Thanks again for "anyone" that can help me!!!

  • How to configure multiple clusters on the same machine.

    I am attempting to configure multiple clusters on the same set of machines. I have set the cluster name and multicase IP addresses to be different for each cluster. However I am still getting and error that states:
    "This indicates that there are multiple clusters on this network attempting to use overlapping network configurations."
    Is this not possible? If it is possible, is there some further way i need to tell the VMs they are part of different clusters?
    Thanks,
    Jacob

    FYI: I'm using the wrong multicast IP above. 224.0.0.1 is reserved and something else should be used. See:
    Re: UDP flood hosed my LAN?

  • Multiple clusters on a single machine

    Hi everyone. I have a question about running 2 clusters on a same
              machine.
              Here's the scenario. We have 8 WebLogic server (4.5.1 SP4) instances
              running on
              2 servers (Sun Enterprise 5500/Solaris 2.62) right now for one of our
              eCommerce
              application.
              Now we are getting ready to deploy a 2nd application and we want it to
              have its
              own cluster. So we are hoping to run 4 more WebLogic servers on each of
              the 2
              machines. So machine #1 would have 4 WebLogic servers for cluster A and
              4
              WebLogic servers for cluster B. And machine #2 will have 4 WebLogic
              servers for
              cluster A and 4 WebLogic servers for cluster B.
              All of these servers have unique IP address and each cluster has a
              different
              name and multicast IP address. Both clusters are using in-memory
              replication.
              On both machines, each of the cluster member will share the same global
              weblogic.properties file. The cluster specific portion resides in the
              cluster
              directory.
              Is anyone currently running such a configuration?? Is there something
              we should
              worry about?? Since both of these servers are in their own isolate
              network
              segment, is there any danger of multicast broadcast bleeding into the
              different
              cluster?? Thanks in advance.
              

    Hi Michael and thanks.. No, this is 2 systems on the same network and not two
              independent networks. Here's what I found that's very strange. I started
              server 1 ->4 for the first cluster and everything worked fine. Now I started
              server 5 on the first machine that's in a different cluster and has a totally
              different multicast IP address and yet, server 1 of the first cluster recorded
              server 5 joining the cluster. Server 2, 3 and 4 of the first cluster did not
              have RJVM 'Creating connection' message in there.
              On server 5's startup, server 1 decided to make server 5 it's secondary pair and
              I get the following error as server 5 does not have the same code for cluster1.
              After that error, I started getting tons of
              weblogic.cluster.replication.BadStatusException error in the logs for server 1
              listed below. I'm sure running multiple clusters off an enterprise level
              server is something people want to do. Is this a known issue?? Is this a bug
              in the server or the VM?
              Our environment: Sun 5500 Enterprise servers running Solaris 2.62, WebLogic
              4.5.1 SP4.
              Sun Jan 09 15:19:40 CST 2000:<I> <RJVM> Creating connection to
              stingray05.xx.com/10.x.x.x t3:7001 http:7001 t3s:7002 https:7002
              -1353087187406741800
              Sun Jan 09 15:19:41 CST 2000:<E> <MulticastSocket> Multicast socket receive
              error:
              Sun Jan 09 15:19:41 CST 2000:<E> <MulticastSocket>
              java.lang.ClassNotFoundException: Could not instantiate new instance of
              [com.strong.brokerage.server.CustomerSessionBeanHomeImpl_WLStub]
              Either the class is missing from classpath, the class does not have a public
              constructor, or the constructor raised an error; the actual exception was a :
              java.lang.NoClassDefFoundError: com.strong.brokerage.common.util.RegistrationCtx
              at java.lang.Throwable.<init>(Compiled Code)
              at java.lang.Exception.<init>(Compiled Code)
              at java.lang.ClassNotFoundException.<init>(Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readLeftover(Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(Compiled Code)
              at weblogic.common.internal.WLObjectInputStreamBase.readObject(Compiled
              Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(Compiled Code)
              at weblogic.service.ReplicaAggregate.readExternal(Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readPublicSerializable(Compiled
              Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readLeftover(Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(Compiled Code)
              at weblogic.common.internal.WLObjectInputStreamBase.readObject(Compiled
              Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(Compiled Code)
              at weblogic.cluster.BasicServiceOffer.readObject(Compiled Code)
              at weblogic.cluster.AnnotatedServiceOffer.readObject(Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readPublicSerializable(Compiled
              Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readLeftover(Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(Compiled Code)
              at weblogic.common.internal.WLObjectInputStreamBase.readObject(Compiled
              Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readArrayList(Compiled Code)
              at weblogic.cluster.Announcement.readObject(Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readPublicSerializable(Compiled
              Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readLeftover(Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(Compiled Code)
              at weblogic.common.internal.WLObjectInputStreamBase.readObject(Compiled
              Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(Compiled Code)
              at weblogic.cluster.TMSocket.execute(Compiled Code)
              at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
              Sun Jan 09 15:24:42 CST 2000:<E> <HTTP> Servlet request terminiated with Error:
              Sun Jan 09 15:24:42 CST 2000:<E> <HTTP>
              weblogic.cluster.replication.BadStatusException: update found
              -5050872662681587012 but it is not the secondary
              at weblogic.rmi.extensions.BasicRequest.sendReceive(Compiled Code)
              at
              weblogic.cluster.replication.ReplicationManager_WLStub.update(Compiled Code)
              at
              weblogic.cluster.replication.ReplicationManager.updateSecondary(Compiled Code)
              at weblogic.servlet.internal.session.ReplicatedSession.sync(Compiled
              Code)
              at
              weblogic.servlet.internal.session.ReplicatedSessionContext.sync(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.syncSession(Compiled
              Code)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
              Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
              Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
              Code)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
              at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
              --------------- nested within: ------------------
              weblogic.utils.NestedError: Tried to update secondary, but it thought it was the
              primary
              - with nested exception:
              [weblogic.cluster.replication.BadStatusException: update found
              -5050872662681587012 but it is not the secondary]
              at java.lang.Throwable.<init>(Compiled Code)
              at java.lang.Error.<init>(Compiled Code)
              at weblogic.utils.NestedError.<init>(Compiled Code)
              at weblogic.servlet.internal.session.ReplicatedSession.sync(Compiled
              Code)
              at
              weblogic.servlet.internal.session.ReplicatedSessionContext.sync(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.syncSession(Compiled
              Code)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
              Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
              Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
              Code)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
              at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
              Michael Girdley wrote:
              > Vinny,
              >
              > It sounds like the real hard problem here is a system administration and
              > configuration issue. If you have two independent networks with independent
              > systems, then you should not have a problem running two clusters across two
              > machines. You just need to make sure that your routing for multicast is
              > appropriately configured so that they don't confuse the two different
              > WebLogic server clusters.
              >
              > I hope this helps. I might also recommend contacting our sales organization
              > who can put you in touch with a systems engineer who is a professional at
              > making these types are recommendations.
              >
              > Thanks!
              >
              > --
              > Michael Girdley
              > BEA Product Manager
              >
              > Vinny Carpenter <[email protected]> wrote in message
              > news:[email protected]...
              > > Hi everyone. I have a question about running 2 clusters on a same
              > > machine.
              > > Here's the scenario. We have 8 WebLogic server (4.5.1 SP4) instances
              > > running on
              > > 2 servers (Sun Enterprise 5500/Solaris 2.62) right now for one of our
              > > eCommerce
              > > application.
              > >
              > > Now we are getting ready to deploy a 2nd application and we want it to
              > > have its
              > > own cluster. So we are hoping to run 4 more WebLogic servers on each of
              > > the 2
              > > machines. So machine #1 would have 4 WebLogic servers for cluster A and
              > > 4
              > > WebLogic servers for cluster B. And machine #2 will have 4 WebLogic
              > > servers for
              > > cluster A and 4 WebLogic servers for cluster B.
              > >
              > > All of these servers have unique IP address and each cluster has a
              > > different
              > > name and multicast IP address. Both clusters are using in-memory
              > > replication.
              > > On both machines, each of the cluster member will share the same global
              > > weblogic.properties file. The cluster specific portion resides in the
              > > cluster
              > > directory.
              > >
              > > Is anyone currently running such a configuration?? Is there something
              > > we should
              > > worry about?? Since both of these servers are in their own isolate
              > > network
              > > segment, is there any danger of multicast broadcast bleeding into the
              > > different
              > > cluster?? Thanks in advance.
              > >
              > >
              > >
              > >
              

  • ELM 9.1.x Multiple clusters

           I have a question regarding multiple clusters registered in ELM. Is there a way to move licenses from one cluster to the other cluster. For example
    Cluster-Pub-A has 1000 CUWL LIc. I add Cluster-Pub-B to my network and register to ELM. Is it possible to move licenses from one cluster to another.
    Second option.
    With Cisco Sales order # (proof of purchase) could I ask TAC or Licensing to move 100 CUWL license from Cluster A to B.
    Thanks

    With ELM the license are tied to the ELM node and can be shared by multiple CUCM clusters. ELM will sync with all the clusters and provides an overview of all the licenses being used by all clusters, if you have sufficient licenses installed on ELM then no alerts are generated if not you will see alert as which cluster is not in compliance for the license and you can add additional licenses as needed. If you remove a cluster from ELM and at next sync those licenses will be freed and is available.  For example in a disaster recovery scenario, if one data center is down, I can bring-up another cluster in another data center, add my new cluster to the ELM. Remove the old CUCM cluster, do a sync on ELM, the licenses will be automatically consumed/allocated to the new cluster.

  • JNDI spanning multiple clusters

              Hi!
              I would like to know if it is possible to have multiple
              clusters of servers (potentially in different network
              zones), and still have a global JNDI tree, as if it
              was only one big cluster? What are the considerations
              to meet such a requirement?
              Thanks,
              Guillaume Bedard
              

    Generally speaking, you usually end up with multiple clusters with scenarios
              like this, each separated by a firewall for example.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              Clustering Weblogic? You're either using Coherence, or you should be!
              Download a Tangosol Coherence eval today at http://www.tangosol.com/
              "Guillaume Bedard" <[email protected]> wrote in message
              news:[email protected]...
              >
              > The client here "needs" to split the whole cluster into
              > sub-clusters in different security zones.
              >
              > Reading through the documentation, it says that it should
              > work as long as all the servers can subscribe and listen
              > to a single multicast IP address, but I am suspecting
              > that the particular network setup (firewalls) might
              > prevent us from having it working...
              >
              > Guillaume
              >
              > "Cameron Purdy" <[email protected]> wrote:
              > >Not really. The JNDI tree replication is done at the cluster-level and
              > >Weblogic doesn't have a concept of a "set" of clusters that communicate.
              > >
              > >What are you trying to accomplish with this approach?
              > >
              > >Peace,
              > >
              > >--
              > >Cameron Purdy
              > >Tangosol, Inc.
              > >Clustering Weblogic? You're either using Coherence, or you should be!
              > >Download a Tangosol Coherence eval today at http://www.tangosol.com/
              > >
              > >
              > >
              > >"Guillaume Bedard" <[email protected]> wrote in message
              > >news:[email protected]...
              > >>
              > >> Hi!
              > >>
              > >> I would like to know if it is possible to have multiple
              > >> clusters of servers (potentially in different network
              > >> zones), and still have a global JNDI tree, as if it
              > >> was only one big cluster? What are the considerations
              > >> to meet such a requirement?
              > >>
              > >> Thanks,
              > >>
              > >> Guillaume Bedard
              > >
              > >
              >
              

  • Load-balancing issues with iPlanet and multiple clusters

    We're in performance test of a large-scale clustered deployment based on WLS 5.1sp10.
    Due to scalability/functionality issues, some of which we've seen firsthand and
    some of which we've been informed of by associates as well as BEA representatives,
    we've chosen to implement multiple clusters with a maximum of three nodes each.
    These clusters will be fronted by a web server tier consisting of iPlanet servers
    using the proxy plugin.
    Due to hardware constraints (both in test and in production), however, we've configured
    the iPlanet servers to route across the multiple clusters. In our test environment,
    for instance, we've got a single iPlanet server routing across two 3-node clusters,
    and the configuration in obj.conf is as follows:
    <Object name="application" ppath="*/application">
    Service fn="wl-proxy" \
    WebLogicCluster="clusterA_1:9990,clusterB_1:9991,clusterA_2:9990,clusterB_2:9991,clusterA_3:9990,
    clusterB_3:9991" \
    CookieName="ApplicationSession"
    </Object>
    Our issue is that the load-balancing doesn't appear to work across the clusters.
    We're seeing one cluster get about 90% of the load, while the other receives
    only 10%.
    So, the question (finally!) is: Is this configuration correct (i.e., will it
    work according to the logic of the proxy plugin), and is it appropriate for this
    situation? Are there other alternative approaches that anyone can recommend?
    Thanks in advance,
    cramer

    I use weblogic6.1 with sp2+windows 2000.I develop a web application and deploy
    it to cluster.Through HttpClusterServlets proxy of weblogic I found that a server
    in cluster almost get 95% of requests but another only get 5% of requests.Why???
    I don't set any special parameter.And the weight of the two clustered server is
    equal.I use round-robin arithmetic.
    Thanks!
    "cramer" <[email protected]> wrote:
    >
    We're in performance test of a large-scale clustered deployment based
    on WLS 5.1sp10.
    Due to scalability/functionality issues, some of which we've seen firsthand
    and
    some of which we've been informed of by associates as well as BEA representatives,
    we've chosen to implement multiple clusters with a maximum of three nodes
    each.
    These clusters will be fronted by a web server tier consisting of iPlanet
    servers
    using the proxy plugin.
    Due to hardware constraints (both in test and in production), however,
    we've configured
    the iPlanet servers to route across the multiple clusters. In our test
    environment,
    for instance, we've got a single iPlanet server routing across two 3-node
    clusters,
    and the configuration in obj.conf is as follows:
    <Object name="application" ppath="*/application">
    Service fn="wl-proxy" \
    WebLogicCluster="clusterA_1:9990,clusterB_1:9991,clusterA_2:9990,clusterB_2:9991,clusterA_3:9990,
    clusterB_3:9991" \
    CookieName="ApplicationSession"
    </Object>
    Our issue is that the load-balancing doesn't appear to work across the
    clusters.
    We're seeing one cluster get about 90% of the load, while the other
    receives
    only 10%.
    So, the question (finally!) is: Is this configuration correct (i.e.,
    will it
    work according to the logic of the proxy plugin), and is it appropriate
    for this
    situation? Are there other alternative approaches that anyone can recommend?
    Thanks in advance,
    cramer

  • Do I need to export multiple sizes for all standard print sizes? i.e.Say I crop the image in LR to 6'5" x 9' to fit within an 11" x 14" (overall) mat of a framed print.. Now let's say I want to reprint that same image in a 12" x 16" size ... to fit within

    Do I need to export multiple sizes for all standard print sizes? i.e.Say I crop the image in LR to 6'5" x 9' to fit within an 11" x 14" (overall) mat of a framed print.. Now let's say I want to reprint that same image in a 12" x 16" size ... to fit within a mat of with overall size of 20" x 24"? Or will the 1st export be "locked" at 6.5" X 9" (proportionately)?

    So, for the first one Export it cropped to 6.5 x 9 - and in the Export Dialog box there is a capability to rename the file for exported output - which would allow you to add something like the crop or intention to the base name of the file.  e.g. for _IMG0846.nef - setup the output filename to _IMG0846-65x9 for 11x14.jpg and output it at, say 300 or 360 dpi.  So, it has a unique name and purpose in your output folder.
    For best results, now, re-crop the picture in LR - just open the crop [R] dialog again, reframe the image to the new ratio, 12x16 and Export again - with an adjustment to the filename. e.g. _IMG0846-12x16 for 20x24.jpg
    So, now you have two clearly identified image files in your output area and you can provide those to whomever is printing for you, etc.  Discard them when you're done since you always have the original to return to to re-frame again as necessary.
    This way you get output sharpening and resolution (in pixels) optimized for your output print size.  Maybe not super important for smallish prints-but more important for larger ones.   Output at 100 quality.

  • How to do forward multiple mail

    Hi all,
    I want to write the forward multiple mail script,if we select multiple mails from apple mail and click forward button ,messages will come in to the same window as forward . the same scenario i want to do using apple script.If any one have idea to write this type of script please let me know.
    I have done one script for forward mail as single message also i have done script for multi selected mails in different window.i dont know how to keep multiple mails as forward.

    I apologize, but your scenario still does not make sense to me.
    The user requests a URL, an XML page is returned to their browser, then immediately another XML page is returned to their browser?
    Maybe try to explain in functional terms what you're trying to achieve rather than assuming that "forwarding" or refreshing is the solution. Stated this way, I still don't have an idea of what kind of application you're trying to build.

  • Item supply/demand can't display the po_line that need-by is  multiple

    item supply/demand can't display the po_line that need-by is  multiple,i means that if the po_line have multi line_locations ,it can't be displayed in the supply/demand windows.
    how to deal this problem?

    To add detail to Mikeyc7m's last post
    If the folder has a default value for author then only an adminstrator could check files into that folder. This is because non administrators can not spoof their user name to be someone else's. With the default value being someone else they will never be able to check in (unless they are an admin who can spoof who the user is and in this case it will look like the user checked in a file and not the admin which is a different problem but still a problem).

  • Need to create multiple PA documents during billing

    Hello,
    We have the following scenario.
    When we create a billing document from an SD order, we need to create multiple PA documents based on the condition types.  We have maintained those condition types to different value fields in KE4I.
    For e.g, for a line item in an order, we have Basic Price = 100, Discount = 20
    When we do billing for the above line item, we want to create two PA documents, one for the Basic Price and one for the discount. Note that the above Basic prive and Discount are mapped to different value fields and different cost element groups.
    Thank you.
    Bala

    Hi,
       This functionality is not possible not does it make any sense. SD conditions are mapped to value fields via KE4I. If you have not activated summarization (tcode KE2S) then for every SD item you will get a COPA document. Each COPA document will contain all the values fields filled via the SD conditions displayed in one line item.
       Imagine if you have a SD billing document with 20 items, each items containing 10 conditions. Then you will get 200 COPA documents as per your requirement !!! This does not make any sense neither from technical point of view nor from business point of view.
    regards
    Waman

  • Need to store multiple session values in flex

    Hi,
         I need to store multiple session values in flex based on the user who logged in.
    For Example, if a user logged in as an administrator and in another windows another user logged in as guest, i need to maintain two seperate session for the two different users.
    Is it possible for maintaining different sessions.
    Expecting your valuable response.
    Thanks
    Jude Paul

    Look at Shared Objects. You can store this information in them by creating a unique object for each type of user.

  • Do we need to have Multiple Vendor Roots in PPOCV_BBP for Multiple back end

    hi Gurus,
    Do we need to have multiple vendor root orgs in PPOCV_BBP, when
    we have mutliple backends to be linked to the same SRM server ?
    Please do provide your valuable inputs.
    Best Regards
    Prashanth

    Hi
    Ideally, you should have only one Root node for Vendor.
    Please refer to these links.
    <b>http://help.sap.com/saphelp_srm50/helpdata/en/b4/9de8cc7d4b11d2b423006094b92d37/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/62/fb7d3cb7f58910e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/e5/1c6d3e40753f7ce10000000a114084/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/56/54f137a5e6740ae10000009b38f8cf/frameset.htm</b>
    <u>Also refer to transaction - BBPMAININT in SRM Web page for Business Partners.</u>
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

Maybe you are looking for