Followup on return event from load balanced SO

Hi folks,
I had earlier posted a message about receiving a return event from an
asynchronous call to a Load Balanced Service Object.
It turns out that return events are handled specially and that the
sample provided will work just fine as is. In other words, the return event
is mapped to the load balanced copy that it was called on.
Thanks all of you who sent such interesting work arounds.
-John
John Jamison
Sage Solutions, Inc.
353 Sacramento Street, Suite 1360
San Francisco, CA 94111
415 392 7243 x 306
[email protected]

Hi folks,
I had earlier posted a message about receiving a return event from an
asynchronous call to a Load Balanced Service Object.
It turns out that return events are handled specially and that the
sample provided will work just fine as is. In other words, the return event
is mapped to the load balanced copy that it was called on.
Thanks all of you who sent such interesting work arounds.
-John
John Jamison
Sage Solutions, Inc.
353 Sacramento Street, Suite 1360
San Francisco, CA 94111
415 392 7243 x 306
[email protected]

Similar Messages

  • ALBPM - Batch events and Load Balancing

    Hi,
    We are planning to design a BPM solution for one of our current applications. The need we have is that the BPM solution should be able to start process instances in a batch mode. We receive about 25,000 to 30,000 events in a batch file and we need to start one BPM process instance for each record. Currently we are evaluating the ALBPM, but trying to figure out a best approach to do this. Also I would like to know what will be be ther better options to configure load balance instances of BPM for this scenario. I could not find any documents from BEA to address these. Anybody tried or came across this situation? Any documents/examples that can answer or suggest options for the batch modes? Thanks in advance!

    First of all, load balancing applies at various levels.
    1) load balancing at the horizontal level is only achieved by creating a WLS cluster and deploying the BPM engine in the cluster.
    2) load balancing at the vertical level can be achieved by creating many BPM engines and deploying processes on each Engine, this will distribute instances between the engines.
    if you need to create 25k instances of the same process in a batch, there is no problem, it will queue the executions and dispatch them to the available threads.
    A good approach would be to create instances in smaller chunks, to do this you can create a "batch process" that can get the file, split it in smaller chunks and process one chunk at a time. An important thing to consider when working with so many instances is that the transactions tend to get bigger and longer, so if you have a huge chunk, you can get a transaction timeout or a DB exception because of redo logs sizes.
    Hope this helps!
    MAriano Benitez
    Join us at BEAParticipate, May 6-9 2007 | Atlanta, Georgia

  • Load Balancing, Server and / or Client ?

    Hi
    I am experiencing a problem with the connection pooling in odp.net. I have a simple test app that creates a connection, executes a query, populates an object then closes the connection. I have found that when I have client side load balancing on via the odp.net connection string property many connections are made unnecessary (sometime the actual number created reaches the max pool size but the numbers differ randomly). It appears that rather than a free connection in the pool being used more connections are being created which defeats the point of having a connection pool. I do have server side load balancing configured correctly also. Due to this finding can someone possibly answer the following questions.
    a) Do I need both server side and client side load balancing set?
    b) If I do why is the above behaviour being seen? If not could you give me a short explanation as to why not?
    Current set up is 11g (patched to 6, awaiting 7 to be applied) RAC, 2 nodes.
    Below is the C# code used while testing this. The table queried is a simple person table containing 16000 rows if data.
    OcConnection = "User Id=XXX; Password=XXX; Connection Lifetime = 60; Data Source=(DESCRIPTION=(ADDRESS_LIST=(FAILOVER=on)(LOAD_BALANCE=off)(ADDRESS=(PROTOCOL=tcp)(HOST=XXX)(PORT=1521))(ADDRESS=(PROTOCOL=tcp)(HOST=XXX)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=MyFirstTest))); Pooling=true; HA Events = true; Load Balancing = true";
    Code:-
    Oracle.DataAccess.Client.OracleConnection con;
    con = new Oracle.DataAccess.Client.OracleConnection();
    con.ConnectionString =OcConnection;
    con.Open();
    // the command object to use for this test
    OracleCommand cmd = con.CreateCommand();
    cmd.CommandText = "select * from PERSON";
    OracleDataReader rdr = cmd.ExecuteReader();
    List<test> listTest = new List<test>();
    while (rdr.Read())
    test dc = new test();
    if (!rdr.IsDBNull(0))
    dc.id = Convert.ToInt32(rdr.GetValue(0));
    if (!rdr.IsDBNull(1))
    dc.forename = rdr.GetString(1);
    if (!rdr.IsDBNull(2))
    dc.surname = rdr.GetString(2);
    if (!rdr.IsDBNull(3))
    dc.street = rdr.GetString(3);
    if (!rdr.IsDBNull(4))
    dc.city = rdr.GetString(4);
    if (!rdr.IsDBNull(5))
    dc.postcode = rdr.GetString(5);
    if (!rdr.IsDBNull(6))
    dc.country = rdr.GetString(6);
    if (!rdr.IsDBNull(7))
    dc.email = rdr.GetString(7);
    if (!rdr.IsDBNull(8))
    dc.dateadded = rdr.GetDateTime(8);
    if (!rdr.IsDBNull(9))
    dc.randWords = rdr.GetString(9);
    if (!rdr.IsDBNull(10))
    dc.uniqueNumber = Convert.ToInt32(rdr.GetValue(10));
    listTest.Add(dc);
    rdr.Close();
    con.Close();
    rdr.Dispose();
    cmd.Dispose();
    con.Dispose();
    Thanks for your time
    Victoria

    Here are the HTTP Headers as monitored on the client side. Notice the good.txt file includes a GET as it's initial request. All works fine in this case. However, the initial request in the bad.txt is a POST. This is odd since the URL was opened using the same shortcut in both incidents and the browser was closed between each trace that was taken. I've also reviewed the shortcut with notepad to verify it does not include unwanted data such as the JSESSIONID info....etc.
    Once you have reviewed the HTTP headers, I have these questions.
    1. IIS is sending the 100 Continue messages as you mention, but why is the CSS injecting the cookie in a 100 response that is not typically processed by the client? The bad.txt file shows the client receiving two ARPT cookies because the first cookie in the 100 continue response was ignored.
    2. I know Cisco is not really in the business of troubleshooting browser behaviour. But do you know why the browser would behave differently....GET in one request and a POST in the next? We do not wish to get into modifying the browser, so I'm hoping we can provide a solution on the server side that will allow the browser to function this way if it chooses to do so. Do you think it would make sence to push the state management up a level to the cookie handed out by JRUN? This way, the cookie would not be handed back in a 100 response from IIS, and we could tell the CSS to monitor the JRUN cookie. Of course this would require we determine how to manage this cookie either by modifying to cookie to have static data for each server, or by using the right method of hashing...etc.
    Chris

  • Load balancing problem

    We need a load balancing setup that share the load for many web applications on multiple backend servers, but we don&rsquo;t want the web apps to be activated on all backend servers at the same time. We want to configure all apps as &ldquo;lazy&rdquo; on all backend servers. They will then be activated when the first request to their DNS is made. Then the app is started on that backend server.
    We have hundreds of apps and each backend server will become very slow if all apps are activated on all backend servers. The preferred solution would therefore be to not call all DNS names on all backend servers but to share the balance based on the DNS name in the requests. Sticky-session or sticky source-IP won&rsquo;t be enough to solve this as they only stick to each user session.
    If User-A request www.siteA.com he may be redirected to backend server 1 and then be kept there. But if User-B then requests the same www.siteA.com he may be redirected to backend server 2 and then be kept there. This means that the web application for siteA will be activated and loaded in both the backend servers. When we host hundreds of sites this will be a problem. We may have hundreds of backend servers but they will all end up loading all web apps over time and get out of memory.
    The theory to get this work is a load balancer with the following logic:
    1.     A request for a certain DNS comes in. For example: www.siteA.com
    2.     Load balancer checks if this certain DNS has been redirected to a certain backend server before and if this server is alive
    2.1.     (If not redirected before): Redirect the request to the backend server with least load. Store the selected backend route based on the DNS name.
    2.2.     (If redirected before): Redirect the request to the assigned backend server for siteA.
    3.     If a backend server is down then all DNS requests to this server will be redirected to another backend server with least load. All requests to these DNS names will be assigned to this backend server instead.
    h3. Example of set up
    Many DNS to one IP
    192.168.1.1 www.siteA.com
    192.168.1.1 www.siteB.com
    192.168.1.1 www.siteC.com
    Frontend load balancer
    192.168.1.1 (load balancer)
    Backend app servers
    192.168.2.2 (App server 1)
    192.168.2.3 (App server 2)
    192.168.2.4 (App server 3)
    h3. Snapshot of servers during load
    App server 1
    www.siteA.com (Activated)
    www.siteB.com (Lazy)
    www.siteC.com (Lazy)
    App server 2
    www.siteA.com (Lazy)
    www.siteB.com (Activated)
    www.siteC.com (Lazy)
    App server 3
    www.siteA.com (Lazy)
    www.siteB.com (Lazy)
    www.siteC.com (Activated)

    Only from load balancing point of view cluster is not really needed.
    apart from session replication and failover capabilities, few more benefits are there with clustering only if you are using a web server also.
    Stuck threads can be due to lot's of problems like application issues, load issues etc, So first make sure you are getting stuck thread on both servers or only on one, if on one, then in this case your load balancing not working properly and sending more load to that server, and if you are getting stuck threads on both then try to add one more managed server.
    Regards
    Mukesh Negi
    http://weblogicserveradministration.blogspot.com

  • OAM Webgate Ip validation problem caused by load balancer...

    Hi all,
    In my topology, i have 5 webgates on 5 OHS web servers running in reverse proxy mode . Those web servers are behind load balancer. Since load balancer is working in proxy mode, all requests seems to be coming from load balancer vip and this prevents ip validation at webgate side . Does anybody think that it is possible to solve this issue without changing load balancer configuration..
    Regards,

    Hi,
    Randat, how can i reconfigure ip validation against x-forwarded-for? A custom authz plugin, or only a configuration change ? I'll keep on searching on this solution, but if you can share your solution , it'll be appriciated..
    Ambarishmitra, i want to use ip validation but since all requests are coming from single ip i can't distinguish client ip's, that's my problem..
    Thank you both,
    Regards..

  • Prevent Load Balancing in a Remote Desktop Services Deployment

    We need to prevent two Remote Desktop Session Hosts from load balancing between each other. Currently they are load balanced and users dont have a means of ensuring they end up on a particular server. Is there anyway that we can accomplish this?
    Cheers

    Hi,
    You can try below group policy might useful in your case.
    Computer configuration>Administrative Templates>Windows Components>Remote Desktop Services>Remote Desktop Session Host>RD Connection Broker
    Use RD Connection Broker Load Balancing: Disable
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Problem with load balancing on ACE 4710

    Hello.
    I'm setting ACE4710.
    I'm using DSR (Direct server return).
    The load balancing cannot be distributed now.
    I append the network configuration.
    Could someone please help out?
    THANKS!

    Hello.
    My problem has not been to have load balancing to rserver.
    Connection is http://192.168.11.100:9080/ → NG (Connection error)
    Connection is http://192.168.11.101:9080/ → OK(rserver1)
    Connection is http://192.168.11.102:9080/ → OK(rserver2)
    Even if "predictor ROUNDROBIN" is changed, it is the same.
    Why cannot load balancing be done?
    It is displayed that State is OPERATIONAL as a result of doing 'show rserver'.
    Is this a correct display?

  • HttpClusterServlet Load Balancing Problem

              Hi,
              I have a problem with LoadBalancing and HttpClusterServlet.
              I have 2 boxes, with a clustered application, deployed on 2 managed servers
              box 1 with adminServer and and a managed server (managed1)
              box 2 with second managed server (managed2)
              on box 1 I have another managed server, which hosts the HttpClusterServlet application
              The cluster is made up of managed1 & managed2, and httpClusterServlet is configured
              to send requests to boths the managed servers in the cluster.
              When I run some tests against the httpClusterServlet web application to see how
              it load-balances requests, I can see that all the requests are redirected just
              to managed1,
              on the same machine.
              If I stop managed1, and run some tests, I can see that httpCluster every time
              tries to contact managed1 first, and since it's down, sends the requests to managed2(handles
              failover correctly).
              If I move the httpClusterServlet application to another box, let's call it box
              3, and re run the tests, it will load-balances the requests between managed1 (box1)
              and managed2(box2) correctly.
              I would like to know if httpClusterServlet has some kind of "server affinity"
              logic (?) or I'm missing something in the cluster configuration (even if I can't
              see clearly how the cluster configuration could affect things, since HttpServlet,
              which is not in the cluster, just should route
              requests to the specified servers in round-robin fashion, I guess)
              Someone in previous posts pointed out http session issues, is it true? and so,
              why?
              Sorry for the far too long post,
              thanks in advance,
              Thomas
              

    Only from load balancing point of view cluster is not really needed.
    apart from session replication and failover capabilities, few more benefits are there with clustering only if you are using a web server also.
    Stuck threads can be due to lot's of problems like application issues, load issues etc, So first make sure you are getting stuck thread on both servers or only on one, if on one, then in this case your load balancing not working properly and sending more load to that server, and if you are getting stuck threads on both then try to add one more managed server.
    Regards
    Mukesh Negi
    http://weblogicserveradministration.blogspot.com

  • RV320, load balancing problem

    Hi,
    How do I force the router to use WAN1 till it's saturated, and ther switch to WAN2 when needed. I've already configured the bandwidth correctly for each WAN, but it seems that some clients use WAN1, others use WAN2, disregarding the fact that they should use WAN1 as primary and the bandwidth it's not saturated by any other client.

    Only from load balancing point of view cluster is not really needed.
    apart from session replication and failover capabilities, few more benefits are there with clustering only if you are using a web server also.
    Stuck threads can be due to lot's of problems like application issues, load issues etc, So first make sure you are getting stuck thread on both servers or only on one, if on one, then in this case your load balancing not working properly and sending more load to that server, and if you are getting stuck threads on both then try to add one more managed server.
    Regards
    Mukesh Negi
    http://weblogicserveradministration.blogspot.com

  • LRT224 load balancing, switching between circuits "resets" secure sites

    We have noticed a problem with certian secure websites when load balancing is enabled on the LRT224. The company has a DSL and cable circuit, static I/P's on both. Running Speedtest shows a 30m pipe with load balancing enabled, about 16m on each when off. When utilizing load balancing, if accessing banking, government or otherwise more secure sites, those pages will reset to the login consistently.  If turning off load balancing and picking either circuit, this does not occur. We have 2 identical LRT224's and the both do it. I have contacted Linksys customer support to no avail. Firmware is up to date. This is entirely replicateable on both units and very consistent. Any help would be greatly appreciated. Chris

    Chris_Shalvoy wrote:
    chadster766,
    i have updated the firmware as directed and the result is the same. as i indicated, it's easily reproduced by just switching the router to a single circuit (fail over mode) and those sites do not reset. i have 2 exact units and they both perform the same. for a quick fix, i just turn off load balancing, perform the banking functions and then return it to load balancing. not hard just doesn't seem this revision addresses the problem but thank you for the assistance to date.Did you enable Sticky Load Balancing?Use the below link to make sure the feature is functioning properly. Your IP Address shouldn't change if it's working:http://www.mccuesoft.com/myinfo.php

  • Regarding RFC load balancing

    Hi
    Can any one tell me what is RFC load balancing in xi
    and send me if you have any document.
    thanks&regards
    venkat.

    Hi,
    Load balancing is a key feature for ensuring SMP scalability. XI makes use of load balancing by using multiple Web AS instances. In XI, load balancing is especially useful in inbound request processing. You can use outbound load balancing if the receiver application or component is prepared for and can benefit from load balancing (for example, a receiving IDoc or RFC application is addressed using its message server to distribute the load).
    Refer this article
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0f00c890-0201-0010-beb2-c96050edc426
    http://help.sap.com/bp_bpmv130/Documentation/Operation/TuningGuide.pdf
    and also refer these blogs
    Performance Tuning Checks in SAP Exchange Infrastructure(XI): Part-III
    RFC Quota Part 2
    Configuring SLD in Sneak Preview SAP NetWeaver '04 Sneak
    Delayed XI Message Processing
    Quick Sizer - Getting started
    WebServices: A real world implementation experience
    Regards
    Suryanarayana

  • How can I support a health check, from a load balancer?

    My company has load balancers which use health checks to determine if the end point is available for client traffic. The basic health check is a tcp ping, and will tell you if the device is on the network. The next level of health check is an http request. This request, and the response are static, you can’t create your own version of the request and response. The standard request is this:
         http://host:port/healthcheck/hc.html
    The standard response is this:
         “The server is available”
    I want to use the load balancer as part of my total deployment. The problem is that I am not seeing how to support this health check request and response in the MDEX engine. What I see is this request
         http://host:port/admin?op=ping
    Will return this response
         dgraph <host>: <port> responding at <day month year time>
    It is nice that there is a built in ping, but I am not able to make use of it. I am new to Endeca and still poking around. The dgraph process listens on a port set up in <…>/config/script/AppContext.xml
    <dgraph id="Dgraph1" host-id="MDEXHost" port="3281">
    <properties>
    <property name="restartGroup" value="A" />
    <property name="updateGroup" value="a" />
    </properties>
    <log-dir>./logs/dgraphs/Dgraph1</log-dir>
    <input-dir>./data/dgraphs/Dgraph1/dgraph_input</input-dir>
    <update-dir>./data/dgraphs/Dgraph1/dgraph_input/updates</update-dir>
    </dgraph>
    (I am not using the default port, as I only have an instance on a shared server and have to worry about port clashing. But that is a different thread.)
    In a standard tc Server install I can support this health check by doing this:
    * Create a directory named “healthcheck”, in the “webapps” directory.
    * Place a file name “hc.html” in that directory, which contains “The server is available”
    The one hack which comes to mind is to write a servlet which would be able to be a smart proxy for the load balancer health check. It would pass along any regular traffic to the MDEX engine. But if the request was a health check it would send “admin?op=ping” to the MDEX engine, and for a good response from the engine, create and pass back the correct response to the load balancer.
    Ideas, comments, flames, …
    Thanks

    Hi, we are using following String to test the MDEX ping response but we get the invalid version formation on dgraph.log -
    following is on F5
    GET /admin?op=ping HTTP/1.1/r/nHost:myhost.endeca.com:19000/r/nConnection:close/r/n/r/n
    Following gets logged on Dgraph.log
    WARN 09/05/12 05:30:03.799 UTC (1346823003799) DGRAPH {dgraph} Invalid version format in 'HTTP/1.1/r/nHost:myhost.endeca.com:19000/r/nConnection:close/r/n/r/n'
    Please let me know - if you have any suggestions to solve this issue.
    I know that it works from browser and wget from unix with following commands.
    wget http://myhost.endeca.com:19000/admin?op=ping - from unix command line
    from browser:
    http://myhost.endeca.com:19000/admin?op=ping
    Thanks,
    Ram

  • Load balancing 10g forms - Connection from new browser window not supported

    Load balancing 10g forms - Connection from new browser window not supported
    We're experimenting with using webcache to load balance between multiple applications servers running OC4J forms processes.
    We currently have one machine with infrastructure and mid-tier (BI & Forms) installed, which is being used for the webcache functionality, this is load balancing between 2 other servers each of which just have the mid-tier (BI & Forms) installation
    In order to get this to work, I had to follow the instructions in the Forms deployment guide : http://download-uk.oracle.com/docs/cd/B14099_11/web.1012/b14032/tuning.htm#sthref707
    The main gist of this is that you need to set the following in the orion-web.xml file in order that the sessions are maintained:
    <session-tracking
    cookies="enabled">
    </session-tracking>
    This all works fine in most cases.
    The problem I am having is if I do one of the following on the client machine:
    1) From IE6 / IE7 run a copy of a forms application. Then open a new window using the "New Window" menu option, and attempt to run another forms application.
    2) In IE7 or Firefox 2.0 open a copy of the forms application, and then open a new tab and try and open another forms application.
    If I try either of these I get a FRM-92101 error, and the following is displayed in the java console:
    oracle.forms.net.ConnectionException: Connection from new browser window not supported
    From trawling various forums (including metalink and otn) it looks like a problem with the way coockies are handled.
    Unfortunately the usual workaround is to ensure that the session tracking option in the orion-web.xml file is disabled.
    The problem is that I need this enabled in order for the load balancing to work.
    Does anyone know of any other workarounds or patches that might help resolve this?
    We're using Application server 10.1.2.0.2 running on windows 2003 servers.

    You were right. Carriage returns were stopping it from working (the document is laid out over separate lines, so I assumed it would make no difference...).
    I've now managed to get it so the forms at least run, but they are all being run in the forms OC4J instance on the same machine as the OHS.
    Has anyone actually managed to get this to work, or am I doing something wrong?
    I did wonder if using an OHS instance on a machine with no forms installation would make any difference?
    I had raised a support call via metalink on this subject, but they eventually came to the conclusion that the only way to do this is with a hardware load balancer (Despite several documents suggesting that webcache is the way to go (including the forms deployment manual)).
    I'm at the point now of giving up and writing some custom scripts to do the job instead...

  • Windows Event Collector - Built-in options for load balancing and high availability ?

    Hello,
    I have a working collector. config is source initiated, and pushed by GPO.
    I would like to deploy a second collector for high availability and load balancing. What are the available options ? I have not found any guidance on TechNet articles.
    As a low cost option, is it fine to simply start using DNS round-robin with a common alias for both servers pushed as a collector name through GPO ?
    In my GPO Policy, if I individually declare both servers, events are forwarded twice, once for each server. Indeed it does cover high availability, but not really optimized.
    Thanks for your help.

    Hi,
    >>As a low cost option, is it fine to simply start using DNS round-robin with a common alias for both servers pushed as a collector name through GPO ?
    Based on the description, we can utilize DNS round robin to distribute workloads and increase fault tolerance. By default, DNS uses round robin to rotate the order of RR data returned in query answers where multiple RRs of the same type exist for a queried
    DNS domain name. This feature provides a simple method for load balancing client use of Web servers and other frequently queried multihomed computers. Besides, by default, DNS will perform round-robin rotation for all RR types.
    Regarding DNS round robin, the following article can be referred to for more information.
    Configuring round robin
    http://technet.microsoft.com/en-us/library/cc787484(v=ws.10).aspx
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback here.
    Best regards,
    Frank Shen

  • Network Load Balancing - "access denied" when loading configuration information from host2

    We have 2 Windows 2012 R2 servers, both are running on workgroup.
    We set up NLB cluster.  When we open NLB Manager on the server2, then message shows "loading configuration information. Access denied. Error connecting to server1". 
    There is no issue doing this on server1, NLB Manager is able to connect to both servers. We login using default administrator account, both account name and password are the same for 2 servers.
    When we check security event log on server1, there is this strange Audit Failure log using account "test_nlb" from server2 which related to "Access denied" error. Please let us know how to resolve this. Thanks in advance.
          Event ID: 4776
          The computer attempted to validate the credentials for an account.
          Authentication Package:   
    MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
          Logon Account:   
    test_nlb
          Source Workstation:   
    WPAAP2
          Error Code:   
    0xc0000064           
          An account failed to log on.
    Event ID: 4625
    Subject:
        Security ID:       
    S-1-0-0
        Account Name:       
        Account Domain:       
        Logon ID:       
    0x0
    Logon Type:           
    3
    Account For Which Logon Failed:
        Security ID:       
    S-1-0-0
        Account Name:       
    test_nlb
       Account Domain:       
    WPAAP2
    Failure Information:
        Failure Reason:       
    Unknown user name or bad password.
        Status:           
    0xc000006d
        Sub Status:       
    0xc0000064
    Process Information:
        Caller Process ID:   
    0x0
        Caller Process Name:   
    Network Information:
        Workstation Name:   
    WPAAP2
        Source Network Address:   
    192.168.70.45
        Source Port:       
    55136
    Detailed Authentication Information:
        Logon Process:       
    NtLmSsp
        Authentication Package:   
    NTLM
        Transited Services:   
        Package Name (NTLM only):   
        Key Length:       
    0
    This event is generated when a logon request fails. It is generated on the computer where access was attempted.
    The Subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
    The Logon Type field indicates the kind of logon that was requested. The most common types are 2 (interactive) and 3 (network).
    The Process Information fields indicate which account and process on the system requested the logon.
    The Network Information fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
    The authentication information fields provide detailed information about this specific logon request.
        - Transited services indicate which intermediate services have participated in this logon request.
        - Package name indicates which sub-protocol was used among the NTLM protocols.
        - Key length indicates the length of the generated session key. This will be 0 if no session key was requested.

    Hi Zhong Gang,
    When you are using Network Load Balancing (NLB) Manager, you must be a member of the Administrators group on the host that you are configuring, or you must have been delegated
    the appropriate authority. If you are configuring a cluster or host by running NLB Manager from a computer that is not part of the cluster, you do not have to be a member of the Administrators group on that computer. Please disable your nodes firewall and
    try again.
    The related KB:
    Add a Host to the Network Load Balancing Cluster
    http://technet.microsoft.com/en-us/library/cc753744.aspx
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • I need help with syncing

    Hello, I recently downloaded Itunes on my computer for back up reasons. when it finished downloading I had to log off on my user and went on a different one on the same computer. I synced my Ipod touch on this user cuz I thought it would be synced on

  • ARD Admin tied to a single machine?

    Recent discussions of piracy aside, this is meant as a technical question rather than a legal question. If ARD Admin unlimited is installed on an external 10.4 startup drive, can ARD on the external drive be used reliably with different computers? Or

  • Creative Cloud lists uninstalled programs as installed?

    I recently upgraded the operating system on my computer from 32 to 64-bit, and this meant I had to re-install all of my software. When I re-downloaded the creative cloud suite, it showed some of the programs as installed, even though I hadn't started

  • Can I get a different modem for my verizon service?

    Hello, I am wondering if Verizon offers a modem with a wireless router built in? I would like to know if I could exchange my current modem for one without having to upgrade my service to something more expensive. Right now I have the basic Verizon ds

  • Installation creative cloud

    Can't download and install Creative Cloud. After paying and this is confirmed I am navigated to a welcome screen. Getting started consists of three actions. No.1 "Get Creative Cloud program". Getting "We have problems for now. Please try again later.