Using tuxedo client 8.1 with tuxedo server 6.4

Hi,
I am using Weblogic server 7 sp2 with Tuxedo 8.1 on my Windows XP machine, I have configured weblogic (config.xml) to use WTC to connect to tuxedo 6.4 on windows 2000 machine which in turn connects to tuxedo 6.4 server. When I try to do a tpcall I get an error on weblogic server log 'TPENOENT(6):0:0:TPED_MINVAL(0):QMNONE(0):0:Could not find service'.
My question is I haven't made any configuration changes on the tuxedo server end like ubb.config or dm.config files. We are currently in the process of upgrading to weblogic 7 or 8. At the moment we are using JOLT to connect to the existing tux services on the dynix box.
I want to know if I can configur WTC on weblogic 7 using tuxedo 8.1 API to connect to tuxedo 6.4. What all changes do I need to make on both WLS and Tuxedo end.
I have read some documentation which state ways where old tuxedo client versions 7.1 and earlier can access tuxedo server 8 by configuring WSH (CLOPT -t) option in ubb.config file.
Can someone please help.
Thanks,
Smita

Hello Smita,
I don't think WTC is supported with Tuxedo 6.4. I think (for a number of reasons) that you really should consider an upgrade to 6.5 or newer version of Tuxedo.
Regards,
/Per
Per Lindström - R2Meton AB, SWEDEN

Similar Messages

  • JAX-WS client - WebLogic - SSL with proxy server

    Good night!
    I'm having trouble communicating with webservices using certificate authentication (weblogic.wsee.jaxws.sslclient.PersistentSSLInfo) through and going through a proxy server (weblogic.wsee.jaxws.proxy.ClientProxyFeature) .
    If communication with the webservice is done directly (no proxy server) everything happens perfectly, but to set the proxy server I get the exception "BAD_CERTIFICATE." it is as if the certificate was not attached in the request.
    The webservice client was generated by JDeveloper.
    Has anyone experienced this problem?
    Sorry for my bad english
    Exception
    javax.xml.ws.WebServiceException: javax.net.ssl.SSLKeyException: FATAL Alert:BAD_CERTIFICATE - A corrupt or unuseable certificate was received.
         at com.sun.xml.ws.transport.http.client.HttpClientTransport.readResponseCodeAndMessage(HttpClientTransport.java:218)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:204)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:124)
         at com.sun.xml.ws.transport.DeferredTransportPipe.processRequest(DeferredTransportPipe.java:121)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:866)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:815)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:778)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:680)
         at com.sun.xml.ws.client.Stub.process(Stub.java:272)
         at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:153)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:115)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:136)
         at $Proxy30.cleCadastroLote(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.jaxws.spi.ClientInstanceInvocationHandler.invoke(ClientInstanceInvocationHandler.java:84)
         at $Proxy31.cleCadastroLote(Unknown Source)
         at br.com.tbl.ws.CleCadastroPortClient.main(CleCadastroPortClient.java:51)
    Webservice client with proxy server (error)
    import weblogic.wsee.jaxws.sslclient.PersistentSSLInfo;
    import javax.xml.ws.BindingProvider;
    import weblogic.wsee.jaxws.JAXWSProperties;
    import weblogic.wsee.jaxws.proxy.ClientProxyFeature;
    import weblogic.wsee.jaxws.sslclient.SSLClientUtil;
    public class CleCadastroPortClient
    public static void main(String [] args)
    try{
    CleCadastro_Service cleCadastro_Service = new CleCadastro_Service();
    CleCadastro cleCadastro = cleCadastro_Service.getCleCadastroPort();
    String clientKeyStore = "C:\\certificados.jks";
    String clientKeyStorePasswd = "xxxxx";
    String clientKeyAlias = "xxxxx";
    String clientKeyPass = "xxxxx";
    String trustKeystore = "C:\\keystore_completo.jks";
    String trustKeystorePasswd = "xxxxx";
    PersistentSSLInfo sslInfo = new PersistentSSLInfo();
    sslInfo.setKeystore(clientKeyStore);
    sslInfo.setKeystorePassword(clientKeyStorePasswd);
    sslInfo.setKeyAlias(clientKeyAlias);
    sslInfo.setKeyPassword(clientKeyPass);
    sslInfo.setTrustKeystore(trustKeystore);
    sslInfo.setTrustKeystorePassword(trustKeystorePasswd);
    ClientProxyFeature clientProxy = new ClientProxyFeature();
    clientProxy.setProxyHost("proxy.com");
    clientProxy.setProxyPort(Integer.parseInt("3128") );
    clientProxy.setProxyUserName("user");
    clientProxy.setProxyPassword("pass");
    clientProxy.attachsPort(cleCadastro);
    ((BindingProvider) cleCadastro).getRequestContext().put(JAXWSProperties.CLIENT_PERSISTENT_SSL_INFO, sslInfo);
    ((BindingProvider) cleCadastro).getRequestContext().put(JAXWSProperties.SSL_SOCKET_FACTORY, SSLClientUtil.getSSLSocketFactory(sslInfo));
    ((BindingProvider) cleCadastro).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "https:/xxxx/ws");
    String retorno = cleCadastro.cleCadastroLote("xml", "xml");
    }catch(Exception ex){
    ex.printStackTrace();
    Webservice client without proxy server (OK)
    import weblogic.wsee.jaxws.sslclient.PersistentSSLInfo;
    import javax.xml.ws.BindingProvider;
    import weblogic.wsee.jaxws.JAXWSProperties;
    import weblogic.wsee.jaxws.proxy.ClientProxyFeature;
    import weblogic.wsee.jaxws.sslclient.SSLClientUtil;
    public class CleCadastroPortClient
    public static void main(String [] args)
    try{
    CleCadastro_Service cleCadastro_Service = new CleCadastro_Service();
    CleCadastro cleCadastro = cleCadastro_Service.getCleCadastroPort();
    String clientKeyStore = "C:\\certificados.jks";
    String clientKeyStorePasswd = "xxxxx";
    String clientKeyAlias = "xxxxx";
    String clientKeyPass = "xxxxx";
    String trustKeystore = "C:\\keystore_completo.jks";
    String trustKeystorePasswd = "xxxxx";
    PersistentSSLInfo sslInfo = new PersistentSSLInfo();
    sslInfo.setKeystore(clientKeyStore);
    sslInfo.setKeystorePassword(clientKeyStorePasswd);
    sslInfo.setKeyAlias(clientKeyAlias);
    sslInfo.setKeyPassword(clientKeyPass);
    sslInfo.setTrustKeystore(trustKeystore);
    sslInfo.setTrustKeystorePassword(trustKeystorePasswd);
    ((BindingProvider) cleCadastro).getRequestContext().put(JAXWSProperties.CLIENT_PERSISTENT_SSL_INFO, sslInfo);
    ((BindingProvider) cleCadastro).getRequestContext().put(JAXWSProperties.SSL_SOCKET_FACTORY, SSLClientUtil.getSSLSocketFactory(sslInfo));
    ((BindingProvider) cleCadastro).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "https:/xxxx/ws");
    String retorno = cleCadastro.cleCadastroLote("xml", "xml");
    }catch(Exception ex){
    ex.printStackTrace();
    }

    Hi,
    I tried to use the option "-DUseSunHttpHandler=true" and enabled "JSSE SSL", but it did not work, now showing the exception "General SSLEngine problem".
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <javax.xml.ws.WebServiceException: javax.net.ssl.SSLHandshakeException: General SSLEngine problem>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.transport.http.client.HttpClientTransport.readResponseCodeAndMessage(HttpClientTransport.java:218)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:204)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:124)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:866)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.transport.DeferredTransportPipe.processRequest(DeferredTransportPipe.java:121)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:815)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:778)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:680)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at $Proxy308.cleCadastroLote(Unknown Source)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:136)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:115)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:153)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.Stub.process(Stub.java:272)>

  • I cannot contact of a mail client in Windows with mail server

    when forming does the client in Windows say not to be able to contact with my server, is necessary to modify something but in Windows so that they are ?
    I believe that the problem this related to smtp, goes log in critical there.
    Apr 17 16:34:01 diogenes postfix/qmgr[2110]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:35:01 diogenes postfix/postsuper[2133]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:35:01 diogenes postfix/qmgr[2134]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:36:01 diogenes postfix/postsuper[2164]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:36:01 diogenes postfix/qmgr[2165]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:37:01 diogenes postfix/postsuper[2182]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:37:01 diogenes postfix/qmgr[2183]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:38:01 diogenes postfix/postsuper[2198]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:38:01 diogenes postfix/qmgr[2199]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:38:02 diogenes postfix/cleanup[2206]: fatal: defer: remove 608989EF4AE log: Permission denied
    Apr 17 16:38:03 diogenes postfix/smtpd[2202]: fatal: unable to connect to the public cleanup service
    Apr 17 16:39:01 diogenes postfix/postsuper[2230]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:39:01 diogenes postfix/qmgr[2231]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:39:04 diogenes postfix/cleanup[2237]: fatal: defer: remove E7B7D9EF540 log: Permission denied
    Apr 17 16:39:05 diogenes postfix/smtpd[2234]: fatal: unable to connect to the public cleanup service

    A bit of an update with some more information for anyone who comes across this thread.
    Connecting to my server (Windows Server 2012) from my Mavericks MacBook Air using smb://servername/sharename results in symbolic links on the share listing as empty. Direct folders within the share list correctly.
    -- filestore
           |- directory1 (symbolic link)
           |- direcory 2 (directory)
           |- directory3 (symbolic link)
           |- direcory 4 (directory)
    In this structue smb://servername/filestore/directory1 and smb://servername/filestore/directory3 will list as empty (when they are not) and smb://servername/filestore/directory2 and smb://servername/filestore/directory4 will list correctly, as they are true folders below filestore and not symbolic links.
    Workaround
    I've found a workaround which lets me still access the server correctly, but also suggests that the problem lies almost certainly with the implementation of SMB2 in Mavericks.
    By connecting to the server via cifs://servername/filestore then everything works correctly, with symbolic links being honoured. Using smb://servername/filestore from the same client to the same server exhibits the faulty empty directory behaviour.
    At least I'm operational for the time being, but hardly the best.

  • 2 Problems using lync client andriod conncet to lync server 2013 ( contacts status is Presence Unkhown)

    Hello Everybody
    I have installed lync server 2013 in my lab . Everything is ok . but internal mobile client in my LAN can not work with lync !
    I installed lync server 2013.
    I create 2 DNS record to lync-server : lyncdiscoverinternal and lyncdiscover.
    clients  on PC (windows) work and everything is ok . when user use Anroid phone , cleint connect to lync server and list connnact list .BUT when Send IM to contact or start video call come this error :
    " Failed to process the server response.Please try again . if the problem persists,contact your support team."
    This is first problem. Another problem is the contact list for every user status  is "Presence Unkhown" !
    No online , No Offline and all of contact status "Presence Unkhown" !
    If i had to config mobility in in lync server 2013 ? or mobility service built-in in lync server 2013 ?
    please help me .

    Hi Meysam Halvaei,
    As Thamara mentioned, you need to deploy reverse proxy.
    Lync 2013 mobility clients are using a separate dedicated Ucwa parameter the URL is the same web services location as provided by the
    External/Ucwa parameter.
    You need to have a look at the following diagram.
    The Lync 2013 mobile client will need to connect with the external web services. The way Lync is designed this communication is always established using HTTPS/TCP 443, so the traffic
    will need to pass through a reverse proxy or similar service that will take this communication and forward it to the server hosting the external web services, now using port 4443 instead.
    Best regards,
    Eric

  • How to use JDBC to connect Tomcat with database server?(Urgent!)

    I try to deploy the tomcat and make it connect with databaser server.
    I am using mysql connector J 3.0. I added the CLASSPATH of mysql-connector-java-3.0.7-stable-bin.jar in the tomcat.sh .
    I also add the web application in server.xml.
    When I start tomcat, I can see using Classpath including mysql-connector-java-3.0.7-stable-bin.jar .
    But when i browse my jsp including the jdbc, wait for a while, I get a message as following: Timeout on server localhost. My web server and database server is same computer.
    Could you tell me what's wrong?

    Did you check to see that the MySQL database was indeed up and running, and accepting connections when you started Tomcat? Did you make sure that your firewall permits connections to the database?
    Timeout errors generally occur when you send a request to a server and the server does nothing with it - i.e., it doesn't respond to it in any way. Most firewalls are configured this way. If I telnet to your machine and I get "connection refused", I know your machine exists and I can try hacking into it. If I telnet and get nothing at all, then I will either assume either there's no actual machine at that address or it's unresponsive.

  • Interesting! C client socket communicating with java server sockets after..

    Hi,
    I have a client(in C) open a socket and server(in java; jvm 1.2) listening on the same port(e.g. 4444) accepts the request and establishes a socket conn. Now the sockets are kept open indefinitely. If I kill the server process and bring it backup, the client(in C) cannot communicate with the server(in java).
    Why would this be happening? Aren't the server socket garbage collected?
    How do I make sure that the next time I bring up the server again, the client communicates with it.
    Any inputs is really appreciated.
    thanks
    atul.

    Check the client is closing the connection before it stops.
    I've had similar problems with JDBC before where if you don't explicitly close the connection it remains bound to the port, hence if your client only ever tries to connect to that port it will fail.
    I think.
    MrChris

  • Any Idears on how to use my D-Link Router with Print Server on my mac ?

    I just got recently a D-Link Router with Print Server.
    The Model is a DI-704UP. does anyone know how i can access the printer to my G5 ?
    talked to D-Link and Apple and they have no solution.
    IMac G5   Mac OS X (10.4.6)  

    According to this page on the D-Link website about your product, the router includes a print server for Windows and that the software is for Windows only.
    However, this page also on D-Link's website does offer you an unsupported solution.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.6)  

  • How to build a tuxedo client execute file with C++Builder?

    Hi,all.
    I can add include file with #include.Add include path and lib path to project option.Add
    libengine.lib,libfml.lib,libfml32.lib,libtux.lib to project file.I can build the
    project without error.And communicate with the local tuxedo server successfully.But
    I've failed to communicate with a remote tuxedo server.For I know that use buildclient
    -w to build a C windows client file.How to build a GUI client project with C++builder?
    Thanks.
    david

    David,
    For a /WS client, you need a different set of libraries than those you have listed.
    To see which, run buildclient -w -v
    Regards,
    Peter.
    david wrote:
    Hi,all.
    I can add include file with #include.Add include path and lib path to project option.Add
    libengine.lib,libfml.lib,libfml32.lib,libtux.lib to project file.I can build the
    project without error.And communicate with the local tuxedo server successfully.But
    I've failed to communicate with a remote tuxedo server.For I know that use buildclient
    -w to build a C windows client file.How to build a GUI client project with C++builder?
    Thanks.
    david

  • Using ARM 3.0 API with Tuxedo 7.1

    Hi
    How to use the ARM 3.0 API to measure the transaction process in Tuxedo 7.1.
    Please suggest any sites, forums, white papers,articles that discussed this issue.
    Thanks in advance.
    Prakash

    Check the Operation mapping,like what is anbound interface and outbound interface, these details should match with interface determination details(outbound interface details).if you have configured perfectly then it will show the operation mapping.
    still if you have a problem then better to refresh the cache,it will solve the problem.even you can manually type the operation mapping name in Interface determination,and test end to end.
    if it is also not working out,then create one interface copy objects from two name sapces  http://sap.com/xi/EBP
    , http://sap.com/xi/SRM-MDMCatalog . and finish ESR and and finish ID too..
    Regards,
    Raj

  • How to use Icloud calendar and contacts with calendar server

    Hi
    I have a small network setup using a mountain lion server and a couple of mac mini's running snow leopard. In addition I have several iphones and ipads attached to the network.
    I want to syn calendars and contacts accross all devices but dont want to use icloud for the private stuff. I have the basics working but can not get the general icloud contacts and appointments to sync on the mac mini's. Is there a way to sync this data or do I have to duplicate each appointment , one to icloud the other to the server address book and calendar.
    I know that there is a way to sync snow leopard with icloud but I do not want all data on I could as some of it is sensative, so require to keep it internal.
    Any help would be appreciated.
    cheers

    Thanks for the help
    Not sure I have explained myself properly, I already have the server set up and have a local calendar and address book working.
    The issue I am having is how to integrate it with the icloud address book and appointments.
    for example,
    I have an appointment at 10.30 with a client, I need to have this show up on all mobile devices and the local network mini's. As it stands I have to put it in twice, once in the icloud calendar and once in the local network calendar. I would like to be able just to add it once and it show on all clients.

  • WSUS Windows 7 Client not connecting with WSUS SERVER 2012 R2 Error " 80072ee2"

    Hi ,
            I Have the Non- AD WSUS server 2012 R2 as WSUS server, and widnows 7 ent sp1 as WSUS Client  , the server and client are in teh same ip range and able to ping both server from client and client from server, and both are in teh
    same time zone(EST), But im getting the "80072ee2" when ever i tried to get the updates from client
    Please help me on this
    Thanks 
    Balaji K

    Record the system time of the Windows 7 client.
    Reboot the Windows 7 client.
    Run this command from a command prompt: wuauclt /resetauthorization /detectnow.
    Wait =30= minutes.
    Post the entries from the WindowsUpdate.log starting at the time recorded in Step #1.
    I have noted the time at 12:06 am and reboot the machine. and at 12:27 i have Run this command from a 
    command prompt: wuauclt /resetauthorization /detectnow. and taken the the logs from 11 am to 1 pm 
    2015-02-03 12:15:26:002
    956 f84
    Misc WARNING: Send failed with hr = 80072ee2.
    2015-02-03 12:15:26:002
    956 f84
    Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-03 12:15:26:002
    956 f84
    PT  + Last proxy send request failed with hr = 0x80072EE2, HTTP status code = 0
    2015-02-03 12:15:26:002
    956 f84
    PT  + Caller provided credentials = No
    2015-02-03 12:15:26:002
    956 f84
    PT  + Impersonate flags = 0
    2015-02-03 12:15:26:002
    956 f84
    PT  + Possible authorization schemes used = 
    2015-02-03 12:15:26:002
    956 f84
    PT WARNING: GetConfig failure, error = 0x80072EE2, soap client error = 5, soap error code = 0, HTTP status code = 200
    2015-02-03 12:15:26:002
    956 f84
    PT WARNING: PTError: 0x80072ee2
    2015-02-03 12:15:26:002
    956 f84
    PT WARNING: GetConfig_WithRecovery failed: 0x80072ee2
    2015-02-03 12:15:26:002
    956 f84
    PT WARNING: RefreshConfig failed: 0x80072ee2
    2015-02-03 12:15:26:002
    956 f84
    PT WARNING: RefreshPTState failed: 0x80072ee2
    2015-02-03 12:15:26:002
    956 f84
    PT WARNING: PTError: 0x80072ee2
    2015-02-03 12:15:26:002
    956 f84
    Report WARNING: Reporter failed to upload events with hr = 80072ee2.
    2015-02-03 12:27:05:651
    956 ca8
    AU Triggering AU detection through DetectNow API
    2015-02-03 12:27:05:651
    956 ca8
    AU Triggering Online detection (non-interactive)
    2015-02-03 12:27:05:652
    956 930
    AU #############
    2015-02-03 12:27:05:652
    956 930
    AU ## START ##  AU: Search for updates
    2015-02-03 12:27:05:652
    956 930
    AU #########
    2015-02-03 12:27:05:654
    956 930
    AU <<## SUBMITTED ## AU: Search for updates [CallId = {710EE50A-0397-4DC8-B33B-B97410B73C00}]
    2015-02-03 12:27:05:654
    956 f84
    Agent *************
    2015-02-03 12:27:05:654
    956 f84
    Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2015-02-03 12:27:05:654
    956 f84
    Agent *********
    2015-02-03 12:27:05:654
    956 f84
    Agent  * Online = Yes; Ignore download priority = No
    2015-02-03 12:27:05:654
    956 f84
    Agent  * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0
    and DeploymentAction='Uninstallation' and RebootRequired=1"
    2015-02-03 12:27:05:654
    956 f84
    Agent  * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2015-02-03 12:27:05:654
    956 f84
    Agent  * Search Scope = {Machine}
    2015-02-03 12:27:05:678
    956 f84
    Setup Checking for agent SelfUpdate
    2015-02-03 12:27:05:678
    956 f84
    Setup Client version: Core: 7.5.7601.17514  Aux: 7.5.7601.17514
    2015-02-03 12:27:29:233
    956 f84
    Misc WARNING: Send failed with hr = 80072ee2.
    2015-02-03 12:27:29:233
    956 f84
    Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-03 12:27:29:233
    956 f84
    Misc WARNING: WinHttp: SendRequestUsingProxy failed for <http://135.155.61.172:8530/selfupdate/wuident.cab>. error 0x80072ee2
    2015-02-03 12:27:29:234
    956 f84
    Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072ee2
    2015-02-03 12:27:29:234
    956 f84
    Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072ee2
    2015-02-03 12:27:29:234
    956 f84
    Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072ee2
    2015-02-03 12:27:52:795
    956 f84
    Misc WARNING: Send failed with hr = 80072ee2.
    2015-02-03 12:27:52:795
    956 f84
    Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-03 12:27:52:795
    956 f84
    Misc WARNING: WinHttp: SendRequestUsingProxy failed for <http://135.155.61.172:8530/selfupdate/wuident.cab>. error 0x80072ee2
    2015-02-03 12:27:52:796
    956 f84
    Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072ee2
    2015-02-03 12:27:52:796
    956 f84
    Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072ee2
    2015-02-03 12:27:52:796
    956 f84
    Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072ee2
    2015-02-03 12:28:16:363
    956 f84
    Misc WARNING: Send failed with hr = 80072ee2.
    2015-02-03 12:28:16:363
    956 f84
    Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-03 12:28:16:364
    956 f84
    Misc WARNING: WinHttp: SendRequestUsingProxy failed for <http://135.155.61.172:8530/selfupdate/wuident.cab>. error 0x80072ee2
    2015-02-03 12:28:16:364
    956 f84
    Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072ee2
    2015-02-03 12:28:16:364
    956 f84
    Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072ee2
    2015-02-03 12:28:16:364
    956 f84
    Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072ee2
    2015-02-03 12:28:39:920
    956 f84
    Misc WARNING: Send failed with hr = 80072ee2.
    2015-02-03 12:28:39:920
    956 f84
    Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-03 12:28:39:920
    956 f84
    Misc WARNING: WinHttp: SendRequestUsingProxy failed for <http://135.155.61.172:8530/selfupdate/wuident.cab>. error 0x80072ee2
    2015-02-03 12:28:39:921
    956 f84
    Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072ee2
    2015-02-03 12:28:39:921
    956 f84
    Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072ee2
    2015-02-03 12:28:39:921
    956 f84
    Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072ee2
    2015-02-03 12:28:39:921
    956 f84
    Misc WARNING: DownloadFileInternal failed for http://135.155.61.172:8530/selfupdate/wuident.cab: error 0x80072ee2
    2015-02-03 12:28:39:921
    956 f84
    Setup WARNING: SelfUpdate check failed to download package information, error = 0x80072EE2
    2015-02-03 12:28:39:921
    956 f84
    Setup FATAL: SelfUpdate check failed, err = 0x80072EE2
    2015-02-03 12:28:39:922
    956 f84
    Agent  * WARNING: Skipping scan, self-update check returned 0x80072EE2
    2015-02-03 12:28:39:923
    956 f84
    Agent  * WARNING: Exit code = 0x80072EE2
    2015-02-03 12:28:39:923
    956 f84
    Agent *********
    2015-02-03 12:28:39:923
    956 f84
    Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2015-02-03 12:28:39:923
    956 f84
    Agent *************
    2015-02-03 12:28:39:923
    956 f84
    Agent WARNING: WU client failed Searching for update with error 0x80072ee2
    2015-02-03 12:28:39:924
    956 fec
    AU >>##  RESUMED  ## AU: Search for updates [CallId = {710EE50A-0397-4DC8-B33B-B97410B73C00}]
    2015-02-03 12:28:39:924
    956 fec
    AU  # WARNING: Search callback failed, result = 0x80072EE2
    2015-02-03 12:28:39:924
    956 fec
    AU  # WARNING: Failed to find updates with error code 80072EE2
    2015-02-03 12:28:39:924
    956 fec
    AU #########
    2015-02-03 12:28:39:924
    956 fec
    AU ##  END  ##  AU: Search for updates [CallId = {710EE50A-0397-4DC8-B33B-B97410B73C00}]
    2015-02-03 12:28:39:924
    956 fec
    AU #############
    2015-02-03 12:28:39:925
    956 fec
    AU Successfully wrote event for AU health state:0
    2015-02-03 12:28:39:925
    956 fec
    AU AU setting next detection timeout to 2015-02-03 21:23:35
    2015-02-03 12:28:39:926
    956 fec
    AU Successfully wrote event for AU health state:0
    2015-02-03 12:28:39:928
    956 fec
    AU Successfully wrote event for AU health state:0
    2015-02-03 12:29:03:495
    956 f84
    Misc WARNING: Send failed with hr = 80072ee2.
    2015-02-03 12:29:03:495
    956 f84
    Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-03 12:29:03:496
    956 f84
    PT  + Last proxy send request failed with hr = 0x80072EE2, HTTP status code = 0
    2015-02-03 12:29:03:496
    956 f84
    PT  + Caller provided credentials = No
    2015-02-03 12:29:03:496
    956 f84
    PT  + Impersonate flags = 0
    2015-02-03 12:29:03:496
    956 f84
    PT  + Possible authorization schemes used = 
    2015-02-03 12:29:03:496
    956 f84
    PT WARNING: GetConfig failure, error = 0x80072EE2, soap client error = 5, soap error code = 0, HTTP status code = 200
    2015-02-03 12:29:03:496
    956 f84
    PT WARNING: PTError: 0x80072ee2
    2015-02-03 12:29:03:496
    956 f84
    PT WARNING: GetConfig_WithRecovery failed: 0x80072ee2
    2015-02-03 12:29:03:496
    956 f84
    PT WARNING: RefreshConfig failed: 0x80072ee2
    2015-02-03 12:29:03:496
    956 f84
    PT WARNING: RefreshPTState failed: 0x80072ee2
    2015-02-03 12:29:03:496
    956 f84
    PT WARNING: PTError: 0x80072ee2
    2015-02-03 12:29:03:496
    956 f84
    Report WARNING: Reporter failed to upload events with hr = 80072ee2.
    2015-02-03 12:29:03:496
    956 f84
    Report REPORT EVENT: {B6636CDB-B0BF-4CDE-BEB3-D49C1CEC258F}
    2015-02-03 12:28:39:921-0800 1
    148 101
    {D67661EB-2423-451D-BF5D-13199E37DF28}
    1 80072ee2
    SelfUpdate Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80072ee2.
    2015-02-03 12:29:03:510
    956 f84
    Report CWERReporter::HandleEvents - WER report upload completed with status 0x8
    2015-02-03 12:29:03:510
    956 f84
    Report WER Report sent: 7.5.7601.17514 0x80072ee2 D67661EB-2423-451D-BF5D-13199E37DF28 Scan 101 Managed
    2015-02-03 12:29:03:510
    956 f84
    Report CWERReporter finishing event handling. (00000000)
    2015-02-03 12:29:27:075
    956 f84
    Misc WARNING: Send failed with hr = 80072ee2.
    2015-02-03 12:29:27:075
    956 f84
    Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-03 12:29:27:075
    956 f84
    PT  + Last proxy send request failed with hr = 0x80072EE2, HTTP status code = 0
    2015-02-03 12:29:27:075
    956 f84
    PT  + Caller provided credentials = No
    2015-02-03 12:29:27:075
    956 f84
    PT  + Impersonate flags = 0
    2015-02-03 12:29:27:075
    956 f84
    PT  + Possible authorization schemes used = 
    2015-02-03 12:29:27:075
    956 f84
    PT WARNING: GetConfig failure, error = 0x80072EE2, soap client error = 5, soap error code = 0, HTTP status code = 200
    2015-02-03 12:29:27:075
    956 f84
    PT WARNING: PTError: 0x80072ee2
    2015-02-03 12:29:27:076
    956 f84
    PT WARNING: GetConfig_WithRecovery failed: 0x80072ee2
    2015-02-03 12:29:27:076
    956 f84
    PT WARNING: RefreshConfig failed: 0x80072ee2
    2015-02-03 12:29:27:076
    956 f84
    PT WARNING: RefreshPTState failed: 0x80072ee2
    2015-02-03 12:29:27:076
    956 f84
    PT WARNING: PTError: 0x80072ee2
    2015-02-03 12:29:27:076
    956 f84
    Report WARNING: Reporter failed to upload events with hr = 80072ee2.
    2015-02-03 12:53:05:793
    956 930
    AU AU received policy change subscription event
    2015-02-03 12:58:26:707
    956 8fc
    Misc WARNING: Send failed with hr = 80072ee2.
    2015-02-03 12:58:26:707
    956 8fc
    Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-03 12:58:26:708
    956 8fc
    PT  + Last proxy send request failed with hr = 0x80072EE2, HTTP status code = 0
    2015-02-03 12:58:26:708
    956 8fc
    PT  + Caller provided credentials = No
    2015-02-03 12:58:26:708
    956 8fc
    PT  + Impersonate flags = 0
    2015-02-03 12:58:26:708
    956 8fc
    PT  + Possible authorization schemes used = 
    2015-02-03 12:58:26:708
    956 8fc
    PT WARNING: GetConfig failure, error = 0x80072EE2, soap client error = 5, soap error code = 0, HTTP status code = 200
    2015-02-03 12:58:26:708
    956 8fc
    PT WARNING: PTError: 0x80072ee2
    2015-02-03 12:58:26:708
    956 8fc
    PT WARNING: GetConfig_WithRecovery failed: 0x80072ee2
    2015-02-03 12:58:26:708
    956 8fc
    PT WARNING: RefreshConfig failed: 0x80072ee2
    2015-02-03 12:58:26:708
    956 8fc
    PT WARNING: RefreshPTState failed: 0x80072ee2
    2015-02-03 12:58:26:708
    956 8fc
    PT WARNING: PTError: 0x80072ee2
    2015-02-03 12:58:26:708
    956 8fc
    Report WARNING: Reporter failed to upload events with hr = 80072ee2.

  • How do I use my own domain name  with Mac server with iWeb

    For a number of years I have had my own domain name that when typed into a browser it would redirect the browser to my site on the .Mac server. I hear with iLife ’08 I can have my own domain name hosted by .Mac so I know longer have to have the long addresses for each pages the I have now for my site (i.e. the http://web.mac.com/thewildhearts/WildheartPhotography/NatureGalleries.html). How do I go about getting my domain name (wildheartphotography.com) so that Mac will host it and do I need to notify the current host that Mac will be hosting my site now?
    Thanks. I really appreciate the help I get from this forum.
    Pat

    It's very easy, really. You go to your domain control and redirect the address. IPower, for example points the domain name very easily: you just type in the URL of your site and it will point to your mac server.
    I've used GoDaddy before and it is a bit more difficult to "point".

  • Using Sharepoint Client Object Model with large libraries (more than 5000 elements)

    Hi,
    i have issue with acccessing large list with more than 5000 elements. I use a Sharepoint Client Object Model. 
    It worked till yesterday when in the list was less than 5000. Now there is in the library more than 5000 elements. I have changed in the Central Administration limit for list from 5000 to 10000, but it helped only for list views. Script returns now 0 records.
    var clientContext = new SP.ClientContext.get_current();
    var currentListId =_spPageContextInfo.pageListId;
    oList = clientContext.get_web().get_lists().getById(currentListId);
    var camlQuery = new SP.CamlQuery();
    camlQuery.set_viewXml('<View Scope=\"RecursiveAll\">'+
    '<Query>'+
    '<Where>'+
    '<And>'+
    '<Eq><FieldRef Name=\"ContentTypeId\"/><Value Type=\"Text\">'+contentTypeId+'</Value></Eq>'+
    '<And>'+
    '<Eq><FieldRef Name=\"_x0040_Client\" LookupId=\"TRUE\" /><Value Type=\"Lookup\">'+client+'</Value></Eq>'+
    '<Eq><FieldRef Name=\"_x0040_Company\" LookupId=\"TRUE\" /><Value Type=\"Lookup\">'+organisation+'</Value></Eq>'+
    '</And>'+
    '</And>'+
    '</Where>'+
    '</Query>'+
    '<ViewFields>'+
    '<FieldRef Name=\"ID\" />'+
    '</ViewFields>'+
    '</View>'+
    '<RowLimit>100</RowLimit>');
    camlQuery.ViewAttributes = "Scope='RecursiveAll'";
    listItems = oList.getItems(camlQuery);
    clientContext.load(listItems);
    clientContext.executeQueryAsync(Function.createDelegate(this, onQuerySucceeded), Function.createDelegate(this, onQueryFailed));
    Please advice how i can resolve this issue. Thanks a lot!!
    from MSDN forum...

    Thanks you, friends!
    That to resolve my issue, i made next things:
    1) turn off a limit items for my list
    2) used SPQuery.ListItemCollectionPosition
    property,
    3) and corrected little mistake in my CAML Query.
    May be a punkt #2 will be enough, don't you :)
    from MSDN forum...

  • Server 2012 R2 DHCP Failover - Hot Standby clients not renewing with standby server

    In my test network I have a pair of Server 2012 R2 DHCP servers setup for Hot Standby and they will successfully service a client request for a new request. 
    What I am seeing is that when I test failover the clients will not renew with the Standby server. I have to release first and then renew. 
    When both DHCP servers are up the state is normal and replication of configuration from the Active to Standby is working. As far as I can tell it is configured correctly. 
    MaxClientLeadTime is 10 minutes. 
    StateSwitchInterval is 10 minutes. 
    AutoStateTransition is set to True. 
    Adding that manual renews fail with a message stating that it was unable to contact the dhcp server. However if I wait for the lease to expire/auto-renew the dhcp server does indeed change to the standby. Once the primary server comes back up and the state
    returns to normal I am able to manually renew. 
    thanks in advance

    
    Hi,
    For test, we let the active DHCP down and the standby DHCP server will take place. But when we renew an IP, client send unicast to the former DHCP
    server. That’s why the first request failed.
    At 7/8 of the scope lease time, the client moves into a REBINDING state and broadcasts a lease renewal request.
    For more information please refer to:
    DHCP Failover Examples
    http://technet.microsoft.com/en-us/library/dn338973.aspx
    Hope this helps.

  • Contivity vpn client behind router with easy server

    Hi, I've seen this argument before, but without an effective solution.
    I have a contivity client behind a 857 cisco router. This client needs to connect to a remote VPN server.
    With NAT enable and easy VPN server disable all works fine.
    When I enable easy VPN server on the 857 (I need to connect several dial-up cisco vpn client from outside to this office) the contivity client can't connect anymore to the remote vpn server and hang up with the famous "bannet text" error.
    I think that because the external interface of the 857 is waiting for cisco vpn client to connect, it intercepts also the data from the remote contivity vpn server, not forwarding to the client inside the LAN.
    If there is a way to "passthrough" the contivity connection data to the internal client it would be very nice.
    Many thanks, Stefano.

    Hi, I found a possible solution. At this page
    http://www.cisco.com/en/US/tech/tk583/tk372/technologies_configuration_example09186a0080235197.shtml
    this is the interesting part:
    !--- Dynamic crypto map.
    crypto dynamic-map dynmap 1
    set transform-set foo
    match address 199
    access-list 199 permit ip 10.100.100.0 0.0.0.255 192.168.1.0 0.0.0.255
    access-list 199 permit ip host 172.16.142.191 192.168.1.0 0.0.0.255
    I try to put the contivity vpn client to another subnet (192.168.3.10) but the easy vpn server still intercepts its encrypted data.
    Salutes.

Maybe you are looking for

  • Seagate Momentus 320 gig compatibility with HP Compaq 2210b laptop

    Hi, Yesterday, my laptop's hard drive went. It's the toshiba hard drive that came with the laptop. I've been looking around for a nice replacement and none has caught my attention more than Seagate. I've had Seagate hard drives installed in every des

  • Not burning...

    I have successfully bought, downloaded, then burned on to CD over 150 tracks. For some reason, I am no longer being successful as I get the message: "The attempt to burn a disc failed. An unknown error occured(2131)." I try everything I can think of.

  • Upgrading acs 3.0 to 3.3

    I have an ACS 3.0 server with 200 user groups and around 100 NAS groups. There is some NT domain mappings configured. I'm installing a new Windows 2000 server with ACS 3.3. What's the best way to get the configs from the old one to the new one? Will

  • Validate from list

    Hello everybody !! I've a Lov attached to text-item with validate from list property "yes". I fill the text-item who has the lov attached and lov works very well , but when I create another record the trigger "when-validate-record" fires and the lov

  • Slide Show Caption Color

    How can you modify the "captions" so that when they are selected on a slide show they will not be the same color as the background. I.e. My captions print black and below the picture when selected to be printed on a contact sheet. However, on a slide