CSS11000 global v. local and remote load balancing?

I understand the practice of local LB on the CSS. I do not understand the same for remote LB. I have two mutually exclusive DMZs, but with the same content at each site. How does the CSS at site A know if content at site B? Site B's CSS tells it via the app session, right? Why can't I see that in the summary of service at site A's CLI?

Houston side:
!Active version: ap0502003
!*************************** GLOBAL ***************************
bridge spanning-tree disabled
dns-server zone 1 tier1 "zone1" roundrobin
dns-server
dns-record a www.midcon.com 12.155.32.98
app session 208.246.87.241 14 authChallenge ************ encryptMd5hash
app
host HOUCSSDMZ 10.43.239.241
ip route 0.0.0.0 0.0.0.0 10.43.236.1 1
!************************** SERVICE **************************
service houauth
ip address 10.43.232.98
active
service houweb3
ip address 10.43.232.99
keepalive type http
active
service houweb4
ip address 10.43.232.100
keepalive type http
active
service lkw_midcon_sorry
ip address 208.246.87.98
keepalive type none
active
!*************************** OWNER ***************************
owner midcon.com
dns both
dnsbalance preferlocal
content dns
protocol udp
port 53
add service houauth
vip address 10.43.236.98
balance leastconn
add dns www.midcon.com
active
content www
vip address 10.43.236.98
balance weightedrr
add service houweb3
add service houweb4 weight 2
protocol tcp
port 80
url "/*"
primarySorryServer lkw_midcon_sorry
active
Lakewood side:
!Active version: ap0502003
!*************************** GLOBAL ***************************
bridge spanning-tree disabled
dns-server
app session 12.155.32.241 14 authChallenge ************ encryptMd5hash
app
host LKWCSSDMZ 208.246.87.241
ip route 0.0.0.0 0.0.0.0 208.246.87.1 1
service hou_midcon_sorry
ip address 12.155.32.98
keepalive type none
active
service lkwauth
ip address 10.34.232.98
active
service lkwweb4
ip address 10.34.232.99
keepalive type http
active
!*************************** OWNER ***************************
owner midcon.com
dns both
dnsbalance preferlocal
content dns
protocol udp
port 53
add service lkwauth
vip address 208.246.87.98
balance leastconn
add dns www.midcon.com
active
content www
balance leastconn
add service lkwweb4
vip address 208.246.87.98
protocol tcp
port 80
url "/*"
primarySorryServer hou_midcon_sorry
active
HOUCSSDMZ# sh app
APP CONFIGURATION:
Enabled PortNumber: 3699 MaxFrameSize: 10240
HOUCSSDMZ# sh app sess
App Session Information 'no hostname':
Session ID: 83c381a0 IP Address: 208.246.87.241 State: APP_SESSION_UP
HOUCSSDMZ# sh serv summary
Service Name State Conn Weight Avg State
Load Transitions
houweb3 Alive 0 1 2 12
houweb4 Down 0 1 255 15
houauth Alive 0 1 2 0
lkw_midcon_sorry Alive 0 1 2 0
[email protected] Alive 0 1 2 0
LKWCSSDMZ# sh app
APP CONFIGURATION:
Enabled PortNumber: 3699 MaxFrameSize: 10240
LKWCSSDMZ# sh app sess
App Session Information 'no hostname':
Session ID: 859f39f0 IP Address: 12.155.32.241 State: APP_SESSION_UP
LKWCSSDMZ# sh serv summary
Service Name State Conn Weight Avg State
Load Transitions
lkwauth Alive 0 1 2 8
lkwweb4 Alive 1 1 2 30
hou_midcon_sorry Alive 0 1 2 0
[email protected] Alive 0 1 2 0
As you can see the DNS service is peering. I don't understand why the HTTP is not. Hopefully I haven't deleted too much information. I setup the sorryservices recently per the suggestion of TAC, but I don't agree with that recommended solution.

Similar Messages

  • How to use the same services-config for the local and remote servers.

    My flex project works fine using the below but when I upload my flash file to the server I doesn't work, all the relative paths and files are the same execpt the remote one is a linux server.
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <service id="amfphp-flashremoting-service"
                class="flex.messaging.services.RemotingService"
                messageTypes="flex.messaging.messages.RemotingMessage">
                <destination id="amfphp">
                    <channels>
                        <channel ref="my-amfphp"/>
                    </channels>
                    <properties>
                        <source>*</source>
                    </properties>
                </destination>
            </service>
        </services>
        <channels>
        <channel-definition id="my-amfphp" class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
        </channel-definition>
        </channels>
    </services-config>
    I think the problem  is the line
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
    but I'm not sure how to use the same services-config for the local and remote servers.

    paul.williams wrote:
    You are confusing "served from a web-server" with "compiled on a web-server". Served from a web-server means you are downloading a file from the web-server, it does not necessarily mean that the files has been generated / compiled on the server.
    The server.name and server.port tokens are replaced at runtime (ie. on the client when the swf has been downloaded and is running) not compile time (ie. while mxmlc / ant / wet-tier compiler is running). You do not need to compile on the server to take advantage of this.
    Hi Paul,
    In Flex, there is feature that lets developer to put all service-config.xml file configuration information into swf file. with
    -services=path/to/services-config.xml
    IF
    services-config.xml
    have tokens in it and user have not specified additional
    -context-root
    and this swf file is not served from web-app-server (like tomcat for example) than it will not work,
    Flash player have no possible way to replace token values of service-config.xml file durring runtime if that service-config.xml file have been baked into swf file during compilation,
    for example during development you can launch your swf file from your browser with file// protocol and still be able to access blazeDS services if
    -services=path/to/services-config.xml
    have been specified durring compilation.
    I dont know any better way to exmplain this, but in summary there is two places that you can tell swf  about service confogiration,
    1) pass -services=path/to/services-config.xml  parameter to compiler this way you tell swf file up front about all that good stuff,
    or 2) you put that file on the webserver( in this case, yes you should have replacement tokens in that file) and they will be repaced at runtime .

  • [Forum FAQ] How to install and configure Windows Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely

    As we all know,
    the Windows Server Essentials Experience role is available in Windows Server 2012 R2 Standard and Windows Server 2012 R2 Datacenter. We can add the Windows Server
    Essentials Experience role in Server Manager or via Windows PowerShell.
    In this article, we introduce the steps to install and configure Windows
    Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely. For better analyze, we divide this article into two parts.
    Before installing the Windows Server Essentials Experience Role, please use
    Get-WindowsFeature
    PowerShell cmdlet to ensure the Windows Server Essentials Experience (ServerEssentialsRole) is available. (Figure 1)
    Figure 1.
    Part 1: Install Windows Server Essentials Experience role locally
    Add Windows Server Essentials Experience role
    Run Windows PowerShell as administrator, then type
    Add-WindowsFeature ServerEssentialsRole cmdlet to install Windows Server Essentials Experience role. (Figure 2)
    Figure 2.
    Note: It is necessary to configure Windows Server Essentials Experience (Post-deployment Configuration). Otherwise, you will encounter following issue when opening Dashboard.
    (Figure 3)
    Figure 3.
      2. Configure Windows Server Essentials Experience role
    (1)  In an existing domain environment
    Firstly, please join the Windows Server 2012 R2 Standard computer to the existing domain through the path:
    Control Panel\System\Change Settings\”Change…”\Member of. (Figure 4)
    Figure 4.
    After that, please install Windows Server Essentials Experience role as original description. After installation completed, please use the following command to configure Windows
    Server Essentials:
    Start-WssConfigurationService –Credential <Your Credential>
    Note: The type of
    Your Credential should be as: Domain-Name\Domain-User-Account.
    You must be a member of the Enterprise Admin group and Domain Admin group in Active Directory when using the command above to configure Windows Server Essentials. (Figure 5)
    Figure 5.
    Next, you can type the password for the domain account. (Figure 6)
    Figure 6.
    After setting the credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 7)
    Figure 7.
    By the way, you can use
    Get-WssConfigurationStatus
    PowerShell cmdlet to
    get the status of the configuration of Windows Server Essentials. Specify the
    ShowProgress parameter to view a progress indicator. (Figure 8)
    Figure 8.
    (2) In a non-domain environment
    Open PowerShell (Run as Administrator) on the Windows Server 2012 R2 Standard and type following PowerShell cmdlets: (Figure 9)
    Start-WssConfigurationService -CompanyName "xxx" -DNSName "xxx" -NetBiosName "xxx" -ComputerName "xxx” –NewAdminCredential $cred
    Figure 9.
    After you type the commands above and click Enter, you can create a new administrator credential. (Figure 10)
    After creating the new administrator credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 11)
    After a reboot, all the configurations will be completed and you can open the Windows Server Essentials Dashboard without any errors. (Figure 12)
    Figure 12.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Part 2: Install and configure Windows Server Essentials Experience role remotely
    In an existing domain environment
    In an existing domain environment, please use following command to provide credential and then add Server Essentials Role: (Figure 13)
    Add-WindowsFeature -Name ServerEssentialsRole
    -ComputerName xxx -Credential DomainName\DomainAccount
    Figure 13.
    After you enter the credential, it will start install Windows Server Essentials role on your computer. (Figure 14)
    Figure 14.
    After the installation completes, it will return the result as below:
    Figure 15.
    Next, please use the
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with a remote computer. You can use the commands below:
    Enter-PSSession –ComputerName
    xxx –Credential DomainName\DomainAccount (Figure 16)
    Figure 16.
    Then, please configure Server Essentials Role via
    Add-WssConfigurationService cmdlet and it also needs to provide correct credential. (Figure 17)
    Figure 17.
    After your credential is accepted, it will update and prepare your server. (Figure 18)
    Figure 18.
    After that, please type “Y” to continue to configure Windows Server Essentials. (Figure 19)
    Figure 19.
    2. In a non-domain environment
    In my test environment, I set up two computers running Windows Server 2012 R2 Standard and use Server1 as a target computer. The IP addresses for the two computers are as
    below:
    Sevrer1: 192.168.1.54
    Server2: 192.168.1.53
    Run
    Enable-PSRemoting –Force on Server1. (Figure 20)
    Figure 20.
    Since there is no existing domain, it is necessary to add the target computer (Server1) to a TrustedHosts list (maintained by WinRM) on Server 2. We can use following command
    to
    add the TrustedHosts entry:
    Set-Item WSMan:\localhost\Client\TrustedHosts IP-Address
    (Figure 21)
    Figure 21.
    Next, we can use
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with the remote computer. (Figure 22)
    Figure 22.
    After that, you can install Windows Server Essentials Experience Role remotely via Add-WindowsFeature ServerEssentialsRole cmdlet. (Figure 23)
    Figure 23.
    From figure 24, we can see that the installation is completed.
    Figure 24.
    Then you can use
    Start-WssConfigurationService cmdlet to configure Essentials Role and follow the steps in the first part (configure Windows Server Essentials Experience in a non-domain environment) as the steps would be the same.
    The figure below shows the status of Windows Server Essentials.
    Figure
    25.
    Finally, we have successfully configured Windows Server Essentials on Server1. (Figure 26)
    Figure 26.
    More information:
    [Forum
    FAQ] Introduce Windows Powershell Remoting
    Windows Server Essentials Setup Cmdlets
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • When you expand to show local and remote sites, in DW CS6 how do I get the local to be on the left?

    When you expand to show local and remote sites, in the previous verions of DW, the files type (local or remote) selected when not seeing both, automatically came up on the left.  I liked local when I am editing and when I am ready to upload I expand to see both local in remote.  Before, the one you had selected, in my case local, was always displayed on the left.  Now in CS6 when I have local selected before I expand, the local is on the right and remote on the left. For me that is not correct.  I find that having local on the left works best for me like reading, left to right, I want the local on the LEFT so I can put the updated from left to the remote on the right. 
    -->In DW CS6 how do I get the local to be on the left?

    Thank you so much!  That did it! 

  • H-REAP and Client Load-Balancing

    I'm told by Cisco that H-REAP does not support client load-balancing.
    We have a situation where we want to deploy LWAPPs using H-REAP into a conference room where training would take place.
    Any suggestions on how to overcome the inevitable slowness these people are going to experience from being unevenly associated with the APs?
    We can't re-write the application so we are looking for a wireless solution.
    Anyone hear about how other organizations have dealt with this type of situation?
    I'll be glad to supply more details if I am not being clear in my description of the problem.
    Thanks in advance. All responses will be rated.
    Paul

    This is the functionality which is missing in H-REAP: Client and Network Load Balancing
    "Radio Resource Management (RRM) load-balances new clients across grouped lightweight access points reporting to each controller. This function is particularly important when many clients converge in one spot (such as a conference room or auditorium) because RRM can automatically force some subscribers to associate with nearby access points, allowing higher throughput for all clients. The controller provides a centralized view of client loads on all access points. This information can be used to influence where new clients attach to the network or to direct existing clients to new access points to improve wireless LAN performance. The result is an even distribution of capacity across an entire wireless network.
    Note: Client load balancing works only for a single controller. It is not operate in a multi-controller environment."
    I suppose if we limit the number of users that can associate with a particular AP then we will achieve some client load-balancing. Though a hard limit on the number of end-users will also lead to situations where some end users will not be allowed any access.

  • Steps to setup and configure Node Manager on local and remote machine

    Hello,
    I am using WLS 10.3 on Windows.
    I have two machines, One cluster and two managed servers (one on each machine) created under a domain. I have used configuration wizard to create the domain.
    I have gone through documents on Node Manager and found what to configure. But I have not found when to configure. In other words I want to know what is the sequence of steps if I have to set Node Manager on my local machine (in which domain exists) and on remote machine.
    Please let me know the sequence of steps I need to follow to set and configure the Node Manager on local and remote machine. I want to use Java Node Manager (not the Script node manager).
    Thanks,
    Sanjay

    Hello,
    Ok, let me tell you what I have done till now.
    1) Installed WebLogic 10.3 on machine A (local machine, on which I have created domain and my Admin Server is running. Also Managed Server 1 is created on this machine).
    2) Installed WebLogic 10.3 on machine B (remote machine, on which Managed Server 2 will be created).
    3) On machine A I used the configuration wizard and create a domain. While creating the domain I did the following:
    i) Created two managed servers.
    ii) Created a cluster
    iii) Assigned Servers to cluster.
    iv) Created two machines.
    v) Assigned servers to machines (Admin Server and MS_1 to machine A and MS_2 to machine B).
    4) Sarted Admin Server.
    5) On the Admin Console I made some configurations for the Node Manager on Machines -> Machine A -> Node Manager. Assigned the values:
    i) Type (SSL)
    ii) Listen Address (IP_Address of machine A)
    iii) Listen Port (5556)
    6) Similarly did for Machine B.
    So till now phsically the managed server (MS_2) directory and configuration is not there on Machine B (its only configured on machine A because I created the domain on Machine A).
    Now I want install/configure/setup NM on both the machines. Start my both the managed servers using Admin Console (which will use the node managers).
    What are the sequence of steps I need to follow my task?
    Any help and suggestions are welcome with warm regards.
    Thanks,
    Sanjay

  • ASA and vpn load balancing

    Hi,
    I am configuring 2 ASA5540 for internet trafic inside to outside ,
    outside to inside (web,smtp) but also vpn load balancing for client to site , site to site and webvpn.
    In the doc I can configure them for internet trafic as Active/Standby or Active/active.
    for vpn : I can use vpn load balancing
    But no information if I want to use the active/passif and vpn load balancing together.
    Any thoughts on which way to go? what is the best thing to do ?
    Regards

    Hi,
    I think that you cannot use an Active/Active configuration for VPN connections as it is stated on Cisco's documentation: "Note: VPN failover is not supported on units that run in multiple context mode as VPN is not supported in multiple context. VPN failover is available only for Active/Standby Failover configurations in single context configurations" available at http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a0080834058.shtml
    Hope it helps

  • Looking up Identical EJB both locally and remotely

    prior to posting this request, i have read and
    attempted multiple solutions to this problem
    suggested in the forums to no avail.
    if i have the same EAR, which contains both
    an EJB Component and a WAR, deployed to multiple
    servers, is it possible to look up an EJB both
    locally and remotely?
    for instance, on the server performing the lookup,
    EJB A is deployed. i successfully look it up
    via the following call:
    InitialContext context = new InitialContext();
    Object ref = context.lookup(name);
    return javax.rmi.PortableRemoteObject.narrow("EJBA", EJBAClass.class);
    subsequently, i try to lookup the same ejb
    on a remote server by performing the following
    calls:
    Properties environment = new Properties();
    environment.put("java.naming.factory.initial", "com.evermind.server.rmi.RMIInitialContextFactory");
    environment.put("java.naming.provider.url",
         "ormi://remoteserver:23791/application");
    environment.put( "java.naming.security.principal", "user");
    environment.put( "java.naming.security.credential", "password");
    jndiContext = new InitialContext(environment);
    Object ref = context.lookup(name);
    return javax.rmi.PortableRemoteObject.narrow("EJBA", EJBAClass.class);
    however, i either receive an authentican exception, saying "user"
    doesnt have access to allication "application", or a null pointer
    exception int the RMIInitialContext.
    on my local application, i have defined my ejbs in the web.xml
    as defined by the spec. the ejb component is marked as remote="false"
    in my orion-application.xml as well.
    the version of oc4j is 1.0.2.2.1.
    any directinon on this would be greatly appreciated.
    thanks,
    ted rice

    as a follow up to my own question, using a application
    client, outisde of the web application i can
    successfully look up my ejbs locally and remotely.
    however, from within the web application, i constantly
    receive a ClassCastException.
    if no one can tell me how to resolve this, could someone
    let me know if they have in fact looked up the
    same EJB, both deployed locally and remotely, from the
    same web application.
    thanks,
    ted

  • SRP521W - Local and Remote Traffic Cannot be the Same Subnet Address

    I support an existing VPN infrastructure with PIX, Juniper NS5GT, and Netopia devices used as VPN endpoints. In all cases, I can create a VPN where the location's internal subnet, 10.x.y.0/24 sends traffic to 10.0.0.0/8 out the VPN tunnel. In the case of this 521W that we are evaluating, it appears that I cannot do this. Insteadm when creating the IPSEC policy I get this error "Local and Remote Traffic Cannot be the Same Subnet Address." Which, while strictly true, has never been an issue with all the above devices. Is there a workaround or other methodology to support this?
    Thanks.

    We have extactly the same problem with the SRP527W. Other Cisco small business products work like.
    Cisco RV 120W
    http://www.cisco.com/en/US/products/ps10852/index.html
    Cisco WRV210
    http://www.cisco.com/en/US/products/ps9929/index.html
    We need a device with that supports one IPSec VPN and one ADSL interface and is easy to use like these devices.

  • Using old version CS3. Can't "see" both Local and Remote files. Only Local.

    Used to see both Local and Remote files. Worked in Local and then "Put" to the Remote when ready. Only see Local now. Work in Local is saved automatically to the server. Need to go back to the work in Local and Put to Remote. What happened? How do we fix it? Thanks!

    Could you post a screen shot of what you're seeing when you go to...
    Site > Manage Sites > Click the site  you're working on > Edit
    There should be two tabs in the upper left corner of the dialogue box that comes up, Basic and Advanced. Basic walks you through set-up with a bunch of questions and Advanced allows you to just enter the info into the correct fields. If the Advanced tab is open, it should be under the Remote heading where you set your FTP info.

  • Synchronizing local and remote sites

    Greetings
    I created a site locally and then FTPed it up to a server at
    my ISP. The site was working fine until I made a number of changes
    that I note below. When in DW and I try try to preview in a
    browser, I am unable to view any of the files in any browser
    because DW is unable to locate the files locally and remotely.
    The error message I get is:
    Firefox can't find the file at
    /______/______/_____/_____/ThankYouVeryMuch/Website/tyvmi
    3/index.htm.
    The changes that were made to the site:
    - I reorganized my folders locally thereby creating a new
    root folder. When I tried to add 3 pages, I received several error
    messages. One of them was that DW was unable to locate the home
    page. Another was that it was unable to create the site map and if
    I'm not mistaken DW was unable to create cache files.
    - My client had a friend add some Google analytics to the
    site. This person also created an XML site map. Obviously, the
    local and web sites were not synchronized so I was receiving more
    error messages.
    - I then downloaded the site to a new directory in the new
    root folder I created above. This downloaded site is my local root
    directory in the Site manager and is located at
    ./______/______/_____/_____/ThankYouVeryMuch/Website/tyvmi
    3/index.htm
    - These are my current directories for the site
    thankyouverymuchinc.com:
    Site name: Thank You Very Much Inc
    Local: ThankYouVeryMuch
    ----------> Website
    -------------> tyvmi 3
    ---------------> index.htm
    ---------------> pages
    Remote: host: ip address
    ----------> www/htdocs/
    ---------------> index.htm
    ---------------> pages
    Many thanks
    Marlene

    Do you have a testing server defined?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "troika22" <[email protected]> wrote in
    message
    news:[email protected]...
    > Greetings
    >
    > I created a site locally and then FTPed it up to a
    server at my ISP. The
    > site
    > was working fine until I made a number of changes that I
    note below. When
    > in DW
    > and I try try to preview in a browser, I am unable to
    view any of the
    > files in
    > any browser because DW is unable to locate the files
    locally and remotely.
    >
    > The error message I get is:
    > Firefox can't find the file at
    >
    /______/______/_____/_____/ThankYouVeryMuch/Website/tyvmi
    3/index.htm.
    >
    > The changes that were made to the site:
    >
    > - I reorganized my folders locally thereby creating a
    new root folder.
    > When I
    > tried to add 3 pages, I received several error messages.
    One of them was
    > that
    > DW was unable to locate the home page. Another was that
    it was unable to
    > create
    > the site map and if I'm not mistaken DW was unable to
    create cache files.
    >
    > - My client had a friend add some Google analytics to
    the site. This
    > person
    > also created an XML site map. Obviously, the local and
    web sites were not
    > synchronized so I was receiving more error messages.
    >
    > - I then downloaded the site to a new directory in the
    new root folder I
    > created above. This downloaded site is my local root
    directory in the Site
    > manager and is located at
    >
    ./______/______/_____/_____/ThankYouVeryMuch/Website/tyvmi
    3/index.htm
    >
    > - These are my current directories for the site
    thankyouverymuchinc.com:
    >
    > Site name: Thank You Very Much Inc
    >
    > Local: ThankYouVeryMuch
    > ----------> Website
    > -------------> tyvmi 3
    > ---------------> index.htm
    > ---------------> pages
    >
    > Remote: host: ip address
    > ----------> www/htdocs/
    > ---------------> index.htm
    > ---------------> pages
    >
    > Many thanks
    > Marlene
    >

  • What is @Local and @Remote

    I use to think that @Local interfaces are those interfaces that could be called within the same app server JVM and @Remote calls are inter-JVM calls.
    I have a code that doesn't support this. I write my ejb module and deployed it under ejb module of SUn application server. I also wrote a web application module deployed under web application module of the same server but because I did not specify any @Remote interface, the web application will not deploy becuase of a null ejb-ref problem.
    When I added the @Remote Interface, it work.
    This just conflicts my understanding of @Remote and @Local.
    Can anyone throw light on this.
    Regards.
    Michael

    to clarify issues on this --
    I just completed another test on both @Local and @Remote - all in the same JVM
    @Remote
    works fine
    @Local
    *exception*
    javax.servlet.ServletException: com.login.service.LoginService#com.login.service.LoginService not found
    *root cause*
    javax.naming.NameNotFoundException: com.login.service.LoginService#com.login.service.LoginService not found the exception message is from the web page while the server log says
    [#|2008-02-21T00:17:30.332-0800|WARNING|sun-appserver-pe9.0|javax.enterprise.resource.webcontainer.jsf.lifecycle|_ThreadID=20;_ThreadName=httpWorkerThread-8085-0;_RequestID=b04cb6db-8a16-463e-ba4f-f2a8aed4d9c7;|executePhase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@57737a) threw exception
    javax.faces.FacesException: javax.faces.FacesException: com.sun.enterprise.InjectionException: Exception attempting to inject Unresolved Ejb-Ref com.login.web.LoginBean/loginService@jndi: com.login.service.LoginService@[email protected]@Session@null into class com.login.web.LoginBean
         at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:521)
         at com.sun.faces.el.ManagedBeanELResolver.getValue(ManagedBeanELResolver.java:82)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:62)
         at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:65)
         at com.sun.el.parser.AstValue.getValue(AstValue.java:106)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
         at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    Caused by: javax.faces.FacesException: com.sun.enterprise.InjectionException: Exception attempting to inject Unresolved Ejb-Ref com.login.web.LoginBean/loginService@jndi: com.login.service.LoginService@[email protected]@Session@null into class com.login.web.LoginBean
         at com.sun.faces.config.ManagedBeanFactoryImpl.newInstance(ManagedBeanFactoryImpl.java:325)
         at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:510)
         ... 55 more
    Caused by: com.sun.enterprise.InjectionException: Exception attempting to inject Unresolved Ejb-Ref com.login.web.LoginBean/loginService@jndi: com.login.service.LoginService@[email protected]@Session@null into class com.login.web.LoginBean
         at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:373)
         at com.sun.enterprise.util.InjectionManagerImpl.inject(InjectionManagerImpl.java:193)
         at com.sun.enterprise.util.InjectionManagerImpl.injectInstance(InjectionManagerImpl.java:87)
         at com.sun.faces.vendor.GlassFishInjectionProvider.inject(GlassFishInjectionProvider.java:65)
         at com.sun.faces.config.ManagedBeanFactoryImpl.newInstance(ManagedBeanFactoryImpl.java:312)
         ... 56 more
    Caused by: javax.naming.NameNotFoundException: com.login.service.LoginService#com.login.service.LoginService not found
         at com.sun.enterprise.naming.TransientContext.doLookup(TransientContext.java:203)
         at com.sun.enterprise.naming.TransientContext.lookup(TransientContext.java:175)
         at com.sun.enterprise.naming.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:61)
         at com.sun.enterprise.naming.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:98)
         at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:309)
         at com.sun.enterprise.naming.NamingManagerImpl.lookup(NamingManagerImpl.java:833)
         at com.sun.enterprise.naming.java.javaURLContext.lookup(javaURLContext.java:156)
         at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:307)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:274)
         ... 60 more
    |#]
    [#|2008-02-21T00:17:30.332-0800|SEVERE|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=20;_ThreadName=httpWorkerThread-8085-0;_RequestID=b04cb6db-8a16-463e-ba4f-f2a8aed4d9c7;|StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception
    javax.naming.NameNotFoundException: com.login.service.LoginService#com.login.service.LoginService not found
         at com.sun.enterprise.naming.TransientContext.doLookup(TransientContext.java:203)
         at com.sun.enterprise.naming.TransientContext.lookup(TransientContext.java:175)
         at com.sun.enterprise.naming.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:61)
         at com.sun.enterprise.naming.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:98)
         at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:309)
         at com.sun.enterprise.naming.NamingManagerImpl.lookup(NamingManagerImpl.java:833)
         at com.sun.enterprise.naming.java.javaURLContext.lookup(javaURLContext.java:156)
         at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:307)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:274)
         at com.sun.enterprise.util.InjectionManagerImpl.inject(InjectionManagerImpl.java:193)
         at com.sun.enterprise.util.InjectionManagerImpl.injectInstance(InjectionManagerImpl.java:87)so I am still confused as what @Local is.

  • CS3: Viewing local and remote files simultaneously

    A friend recently purchased a new computer. On her previous PC, she could expand the Files view in Dreamweaver (v9) CS3 and see a split screen -- local files on one side, remote files on the other.
    She removed CS3 from her old machine and installed (from the same disks) on her new machine. Now, she cannot see the local/remote split screen.
    She can expand the Files tab (F8) to fill the screen - but that doesn't help. She checked, and her FTP settings are correct and connect properly.
    I know it's possible to do this is CS3 - I've seen her do it and I always worked in this view going back to Dreamweaver 4 - but the option to see local/remote seems to be gone!
    Any suggestions on how to fix this would be appreciated.

    Assuming you have properly defined both local and remote site settings -- Sites > Manage Sites....
    Your files panel  may be too narrow to see it.  Open it up wide, notice the icon at far right for "Expand / Collapse?" 
    See screenshot:
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • CSS and Oracle Load Balancing

    Hi,
    I have CSS in single arm deployment model. I have multiple servers load balancing on this CSS on port 80 etc. Today I am trying to load balance one Oracle server but I am facing problem with it.
    Real servers are accessible on port 80 without any problem but when we are trying to access the same servers on VIP we are not able to see the web page.
    real server http://192.168.17.12/irs.htm
    real server http://192.168.17.14/irs.htm
    real server http://192.168.10.37/irs.htm
    VIP
    http://192.168.200.58/irs.htm
    Below is the configuration. I can do the telnet on port 80 and I can ping the VIP IP address.
    I will only put 192.168.200.58 in browser I can see the oracle page but with the full URL i am not able to see it.
    Though I have other oracle servers which I have load balance with the same configuration and I can access the web page.
    ==========================================================================================
    http://tptest.enoc.com/forms/frmservlet?config=tp  (This is working fine).
    ========================================================================
    http://irs.enoc.com/irs.htm  (This is not working).
    By name and by IP address both are not working.
    http://192.168.200.58/irs.htm  (This is not working).
    =============================================================================
    service IRC_1
      ip address 192.168.17.12
      keepalive type tcp
      keepalive port 80
      active
    service IRC_2
      ip address 192.168.17.14
      keepalive type tcp
      keepalive port 80
    service IRC_DR
      ip address 192.168.10.37
      keepalive type tcp
      keepalive port 80
    content ENOC_IRC
        add service IRC_1
        add service IRC_2
        add service IRC_DR
        vip address 192.168.200.58
        protocol tcp
        port 80
        advanced-balance sticky-srcip
        active
    owner ENOC_GIT
    content ENOC_IRC
        add service IRC_1
        add service IRC_2
        add service IRC_DR
        vip address 192.168.200.58
        protocol tcp
        port 80
        advanced-balance sticky-srcip
        active
    group ENOC_IRC
      add destination service IRC_1
      add destination service IRC_2
      add destination service IRC_DR
      vip address 192.168.200.58
      active
    ===================================================================================================
    ENOCDC-CSS01(config)# show service summary
    Service Name                     State     Conn  Weight  Avg   State
                                                             Load  Transitions
    IRC_1                            Alive         0      1     2            0
    IRC_2                            Suspended     0      1   255            1
    IRC_DR                           Suspended     0      1   255            1
    ENOCDC-CSS01(config)# show summary
    Global Bypass Counters:
       No Rule Bypass Count:     0
       Acl Bypass Count:         0
    Owner            Content Rules    State     Services         Service Hits
    ENOC_GIT        
                  ENOC_IRC         Active    IRC_1            103
                                                IRC_2            10
                                                IRC_DR           7
    =======================================================================================================
    Same setting I am doing for other servers and working fine only for these servers I am facing problem. Curently only one server is active in the configuration.
    Kindly let me know what I am missing and how to fix the problem.
    I have also attached the full configuration of CSS.

    Hi,
    My point of concern is that I did the same for Oracle server and this is working fine
    http://192.168.200.95/forms/frmservlet?config=tp
    only when I am doing the load balancing for
    http://irs.enoc.com/irs.htm  (This is not working).
    By name and by IP address both are not working.
    http://192.168.200.58/irs.htm  (This is not working).
    I dont have a option for TAC case is there a a way to fix the problem by apply other load balancing method. Is there something to do with the Circut VLAN. I didnt create the Circut VLAN 17 where this server is located.
    I am doing almost 8 differenceservers load balancing in this CSS.
    your expert opinion will definately help me.

  • New ASA5512- 5515: content filter and WAN load balancing

    Hi,
    it's possible to make the content filter with the new models of asa?
    One of our customers would like to have content filter with the possibiliy to monitor the single client activity (log).
    It' s possible also make the load balancing between 2 WAN?
    Now in HQ they have 2 WAN with WAN backup (ASA5505) and VPN to another site.
    Thanks in advance,
    Paolo.

    I saw that you can add CX feature:
    CX - Context Aware Security Feature:
    Cisco  ASA CX Context-Aware Security is a modular security service that  extends the ASA platform with next-generation capabilities. It is  available with SSD purchase for model such as 5512-X, 5515-X, 5525-X,  55545-X and 5555-X.
    Application Visibility Control (AVC):
    This  is additional feature in CX. Activation of this feature require  seperate license. This is the feature that do deep packet inspection for  Application recognition. provide context-aware firewall security.
    Web Security Essentials (WSE):
    This  is additional feature in CX. Activation of this feature require  seperate license. It deliver features like "URL Filtering" and "Global  Threat Intelligence".
    Can somebody confirm that?
    Have somebody already used and configured this features?
    Thank you,
    Paolo.

Maybe you are looking for

  • HT1490 Is a slightly swollen mac book pro battery that seemingly works OK a big problem

     

  • Wrong aspect ratio on HDTV

    I recently purchased an ATV and bought "Shooter" from iTunes. I realize that HD won't be available until the new software update. The picture looks fine when I watch it on my Mac, but after I synched it onto my ATV, it comes out in the wrong aspect r

  • Mail Attachment with OCS10g Workspaces

    Hi All, In OCS Webmail or WAC, Is it possible to attach files which are stored in OCS10g Workspaces?

  • Need User Exit  for ML81N SAVE

    Scenario: Track employee id wise payments using SES ORDER field A.     To track employee Id in Service Entry Sheet (SES) Payments such as Mobile bill, OYC allowance is made against Service Purchase Order. 1)      In SES, user will enter employee Id i

  • Premiere Pro CS3 refuses to open

    Hello everyone, I purchased CS3 Production Premium as a university student and am having difficulties with certain programs.  I installed the suite in its entirety and successfully activated everything, and certain programs like Photoshop CS3 from th