Intermittent tpcall() failures in Tuxedo 7.1

Hi,
In our c++ tuxedo clint application (Tuxedo 7.1), tpcall() seems to fail intermittently. It seems that the operation that tpcall is suppossed to perform on the server side and return a result is completed successfully.
But, the server log has the following entry:
095644.machine22!WSH.1924.1.0: WSNAT_CAT:1287: WARN: Forced shutdown of client; user name 'TEST'; client name '*'; workstation address '//10.132.64.66:41370'
Is this a Tuxedo 7.1 issue or a code defect? We didn't seem to have any problem when the same application ran under Tuxedo 6.5.
Does this error have anything to do with a similar issue in Tuxedo 8.1 : CR082895 WTC tpcall fails randomly while Tuxedo service completes successfully.
If yes, is there a patch available for Version 7.1? What is the patch level? We are currently using patch level 307.
How can we trap the exception thrown by tpcall() in c++?
Cheers,
Taran

Unfortunatelly I have already tried the -t flag and it didn't work! This flag is
supposed to provide compatibility with pre-7.1 tuxedos so it wasn't supposed to
help in the first place.
"roopesh" <[email protected]> wrote:
>
I think there is a flag of -t which you can specify
on GWTDOMAIN CLOPT option for the domain on 8.0 to work
with domains on lower versions.
try this
Thanks
"Dimitris Paleocostas" <[email protected]> wrote:
Hello everyone,
I am trying to setup Tuxedo8.0 Domain(Win2000) to call services from
a Tuxedo7.1
Domain(Compact Tru64). I have everything setup correctly (dmConfig files
e.t.c.).
When trying to call a service from Tuxedo8.0 to Tuxedo7.1, I receive
a TPESYSTEM
error 12 - internal system error in the Tuxedo 8.0 ULOG and a LIBGWT1313(:The
gateway received a poorly formatted message from the specified remote
domain and
is unable to recognize it.) in the Tuxedo7.1 server ULOG.
I have enabled the SSL option (without any parameters during the installation
of Tuxedo8.0). Could that be making the diference?
Note: When I reverse the routing settings in the dmConfig /ubbconfig
files I am
ablke to place a call from tuxedo7.1 to tuxedo8.0! The opposite refuses
to work!

Similar Messages

  • Intermittent send failures in Outlook 2011 for MAC

    Ever since Verizon changed its POP server settings, I am getting intermittent send failures from MS Outlook for MAC 2011 even though I made the correct port changes and SSL options in Outlook 2011.  Everywhere I look for assistance, including Microsoft, Apple and Verizon, no one has found anything wrong other than Microsoft suspects that Verizon's server doesn't like too many logins and passwords in a set period of time.  Apparently, every email that is sent, sends a User Name and Password to Verizon's server.  MS suspects that the server doesn't like that and rejects messages within a certain time period.  Furthermore, I cannot find any Verizon support for Outlook 2011 for the MAC!  Once again this is "intermittent" such as 4 messages will go and then the 5th will not.  If I leave it in the outbox, it will eventually send.  I'm not sure that MS's theory is fully correct because sometimes I get the send failures on the first message sent.  The error message says, "Outlook cannot find the server etc."  "Error Code: 3170".  All incoming messages come into Outlook 2011 correctly.  Does Verizon support Outlook 2011 for the MAC?
    Solved!
    Go to Solution.

    Re: Consistent alerts error 3170...and my settings are correct! HELP!
    Options
    ‎12-19-2013 09:47 AM
    I had the same issue.  After talking to a Verizon FIOS technician from thier techinical support center, he said that no changes are needed for Outlook for Mac.  That means the settings should be:
    Incoming server: incoming.verizon.net
    Incoming port: 110
    Use SSL to connect: UNCHECKED
    Outgoing server: outgoing.verizon.net
    Outgoing port: 25
    Use SSL to connect: UNCHECKED
    Hope that helps others not waste an hour searching Verizon's website and trying to navigate their massive phone tree to actually speak to a technician.

  • Tpcall() within a tuxedo service fails

    when i invoke tpcall() within another Tuxedo service, the call fails with code
    TPESVCFAIL. If I call this service from a standalone client, it works fine.
    I'm reallocating a new FML Buffer to pass to the call, so I'm not sure if this
    is somehow causing the service dispatcher (in main()) to not find the service
    I'm trying to call.... here is the relevant code:
    if ((trans_deposit = (FBFR*)tpalloc(FMLTYPE, NULL, 0)) == (FBFR*)NULL)
    (void)printf("Failed to allocate deposit buffer>>>>\n");
    tpreturn(TPFAIL, 0, transb->data, 0L, 0);
    } else
    printf(" allocated deposit buffer\n");
    (void)Fadd(trans_deposit, ACCOUNT_ID, &account_id, (FLDLEN)0);
    (void)Fadd(trans_deposit, TRANS_AMT, &trans_amt, (FLDLEN)0);
    (void)Fadd(trans_deposit, TRANS_DATE, open_date, (FLDLEN)0);
    if ((retc = tpcall("DEPOSIT", (char*)trans_deposit, 0L, (char**)&trans_deposit,
    &reply_len, 0)) == -1)
    printf(" error number is: %d\n", tperrno);
    printf(" error message using tperr: %s\n", tpstrerror(tperrno));
    printf("*********************\n");
    Any help is greatly appreciated.

    I checked, and it is set to Y. What is the support email, and I will send them
    an overview of what is happening....
    thanks
    John
    Peter Holditch <[email protected]> wrote:
    >
    >
    This seems a little wierd... I suggest you raise it with support.
    The only thing I can think of is that your server making the tpcall has
    REPLYQ=N set for it in the ubbconfig *SERVERS section.  It needs to be
    Y
    if a call is to work.
    I woudn't expect the symptoms you describe if that was the problem, however.
    Regards,
    Peter.
    Got a Question? Ask BEA at http://askbea.bea.com
    The views expressed in this posting are solely those of the author, and
    BEA
    Systems, Inc. does not endorse any of these views.
    BEA Systems, Inc. is not responsible for the accuracy or completeness
    of
    the
    information provided
    and assumes no duty to correct, expand upon, delete or update any of
    the
    information contained in this posting.
    john wrote:
    I found that if I call tpforward() instead, then it works. I noticedsomething
    in the documentation about specifying TPNOREPLY, is this the problemwith the
    way I was trying to do it?
    Thanks
    John
    "john" <[email protected]> wrote:
    Actually, the error code is TPENOENT, sorry.....
    "john" <[email protected]> wrote:
    when i invoke tpcall() within another Tuxedo service, the call fails
    with code
    TPESVCFAIL. If I call this service from a standalone client, it works
    fine.
    I'm reallocating a new FML Buffer to pass to the call, so I'm not
    sure
    if this
    is somehow causing the service dispatcher (in main()) to not findthe
    service
    I'm trying to call.... here is the relevant code:
    if ((trans_deposit = (FBFR*)tpalloc(FMLTYPE, NULL, 0)) == (FBFR*)NULL)
    (void)printf("Failed to allocate deposit buffer>>>>\n");
    tpreturn(TPFAIL, 0, transb->data, 0L, 0);
    } else
    printf(" allocated deposit buffer\n");
    (void)Fadd(trans_deposit, ACCOUNT_ID, &account_id, (FLDLEN)0);
    (void)Fadd(trans_deposit, TRANS_AMT, &trans_amt, (FLDLEN)0);
    (void)Fadd(trans_deposit, TRANS_DATE, open_date, (FLDLEN)0);
    if ((retc = tpcall("DEPOSIT", (char*)trans_deposit, 0L, (char**)&trans_deposit,
    &reply_len, 0)) == -1)
    printf(" error number is: %d\n", tperrno);
    printf(" error message using tperr: %s\n", tpstrerror(tperrno));
    printf("*********************\n");
    Any help is greatly appreciated.
    <html>
    <head>
    </head>
    <body>
    This seems a little wierd...  I suggest you raise it with support.<br>
    <br>
    <br>
    The only thing I can think of is that your server making the tpcall has
    REPLYQ=N
    set for it in the ubbconfig *SERVERS section.  It needs to be Y
    if a call
    is to work.<br>
    <br>
    I woudn't expect the symptoms you describe if that was the problem, however.<br>
    <br>
    Regards,<br>
    Peter.<br>
    <br>
    <p>__________________________________________________________ <br>
    Got a Question?  Ask BEA at http://askbea.bea.com
    </p>
    The views expressed in this posting are solely those of the author, and
    BEA
    <br>
    Systems, Inc. does not endorse any of these views. <br>
    BEA Systems, Inc. is not responsible for the accuracy or completeness
    of
    the <br>
    information provided <br>
    and assumes no duty to correct, expand upon, delete or update any of
    the <br>
    information contained in this posting. <br>
    ___________________________________________________________ <br>
    <br>
    john wrote:<br>
    <blockquote type="cite" cite="mid:[email protected]">
    <pre wrap="">I found that if I call tpforward() instead, then it works.
    I noticed something<br>in the documentation about specifying TPNOREPLY,
    is this the problem with the<br>way I was trying to do it?<br>Thanks<br>John<br><br>"john"
    <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a>
    wrote:<br></pre>
    <blockquote type="cite">
    <pre wrap="">Actually, the error code is TPENOENT, sorry.....<br><br>"john"
    <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a>
    wrote:<br></pre>
    <blockquote type="cite">
    <pre wrap="">when i invoke tpcall() within another Tuxedo service,
    the call fails<br>with code<br>TPESVCFAIL. If I call this service from
    a standalone client, it works<br>fine. <br>I'm reallocating a new FML
    Buffer to pass to the call, so I'm not sure<br>if this<br>is somehow
    causing the service dispatcher (in main()) to not find the<br>service<br>I'm
    trying to call.... here is the relevant code:<br><br> if ((trans_deposit
    = (FBFR*)tpalloc(FMLTYPE, NULL, 0)) == (FBFR*)NULL)<br> {<br> (void)printf("Failed
    to allocate deposit buffer>>>>\n");<br> tpreturn(TPFAIL,
    0, transb->data, 0L, 0);<br> } else<br> {<br> printf(" allocated
    deposit buffer\n");<br> }<br> (void)Fadd(trans_deposit, ACCOUNT_ID,
    &account_id, (FLDLEN)0);<br> (void)Fadd(trans_deposit, TRANS_AMT,
    &trans_amt, (FLDLEN)0);<br> (void)Fadd(trans_deposit, TRANS_DATE,
    open_date, (FLDLEN)0);<br> <br> if ((retc = tpcall("DEPOSIT", (char*)trans_deposit,
    0L, (char**)&trans_deposit,<br>&a
    mp;reply_len, 0)) == -1)<br> {<br> printf(" error number is: %d\n",
    tperrno);<br> printf(" error message using tperr: %s\n", tpstrerror(tperrno));<br>
    printf("*********************\n");<br><br>Any help is greatly appreciated.<br></pre>
    </blockquote>
    </blockquote>
    <pre wrap=""><!----><br></pre>
    </blockquote>
    <br>
    </body>
    </html>

  • Face intermittent ping failure

    Hi Guys, i face intermittent ping failure to a server which is monitor using IP Sentry. But when i do a sh logging buffer on my 6509 switch, i nvr see the port which is connected to the server "leaves". Does that means that the physical connectivity is still there but somehow we just lose the net connection.
    I've also sh counters on the port, it state 25 linkchange. but i cant seems to look for the date/time it has linkchange.
    Are there any other more commands to troubleshoot this issue.
    Pls advise on this.. need help badly

    When you know that the linkstate-changecount was 25, you can deduct that the link has stayed up when the counter still reads 25 at any given later time.
    Please do a sh int or show port and verifiy your speed/duplex settings. This command will also give you the amounts of errored frames. Check these for changes, if they increase rapidly, you probably have a cabling problem or some other layer2 issue.
    Furthermore, you should inspect the data-path between the NMS and the server.
    Regards,
    Leo

  • Intermittent Broadband Failure

    I have BT Home Hub 2, worked fine for the last couple of years. Recently started to get intermittent Broadband failure, sometimes twice a day, sometimes twice a week.
    When it fails the 'phone light' flashes orange, the rest of the lights are steady blue. At this time the BB phone is dead, the main phone line is OK. After some minutes it comes back OK, reset also seems to fix it.
    Anyone any ideas?
    Thanks

    Are you sure it's the phone light that goes orange ?
    I'm in the same boat. HH2 was ok(ish) for a while then started to drop out, just for a couple of seconds at a time. On mine, the BraodBand light goes Orange.
    I've had new cable and new main connection box (with built in filter), but to no avail.
    If yours is like mine, BT will have a log of the outages. The engineer that visited me called the appropriate office when he was here.   I like that idea, as you sometimes get the impression that BT / Engineers etc don't always believe what you say.
    Mine still does it, in fact it dropped out for 3 hours the other day, but I think that was a separate issue.
    You will see lots of other people on these pages with the same problem.  I don't know what causes it,,,,,, and apparently, neither do BT,,,, or it would be fixed.
    Good Luck

  • Attention: Currently we are experiencing intermittent update failures. We are aware of the issue and are actively working to resolve.

    Attention:
    Currently we are experiencing intermittent update failures. We are aware of  the issue and are actively working to resolve.

    Hello,
    This issue is resolved. "Local Upgrades are successfully restored as of Tuesday, January 18th 16:00 PST.
    Please contact Customer Support if you have any additional questions or concerns.
    Christopher C Smith
    CSE
    Cisco IronPort Customer Support 

  • HT201405 Intermittent backup failures, network password is correct

    I followed all the directions in this article to troubleshoot intermittent backup failures.  The odd thing is that my Time Capsule is correct in the keychain.  Plus, most of the backups work fine.

    I followed all the directions in this article to troubleshoot intermittent backup failures.  The odd thing is that my Time Capsule is correct in the keychain.  Plus, most of the backups work fine.

  • Intermittent Send Failure

    I've got Mail 2.1.3 (753.1) on a MacBook Pro running OSX 10.4.11. In the last few days Mail has developed an intermittent send failure. When I tell it to try again later and then open the same message in the Out Folder, it sends immediately.
    This happens on new messages and responses, and can happen in the middle of an email discussion. It's about every three or four messages. I've repaired permissions, restarted, and looked for new software. Very annoying; help appreciated!

    Wow, all that can be completely unchanged and suddenly start blocking mail between one message and the next?
    Earthlink, POP, pop.earthink.net. smtp.earthlink.net:(my email addy), server port 587, MD5 Challenge-Response, SSL unchecked on port 110 with password authentication. All this came from a Helpful Earthlink Person. Of course, they do have a record of changing required settings without telling their customers...
    I have two other Earthlink accounts on Mail. All three have the same settings. I just used those two accounts to send batches of three messages at a time back and forth to my main account. On the third pass, one message out of three did hang up on its way from a secondary account back to the primary. So it's not just that one account.
    Progress!
    Why do I feel this is now Earthlink... Could it be just because it always is?
    Appreciate the help and patience!

  • Airport Extreme intermittent WiFi failure

    Airport Extreme used as a wireless network bridge to a DSL (Cincinnati Bell) modem with multiple devices without fail for 2 years.  Lately the Airport intermittently drops the wireless connection. After a short, inconsistent duration, the AIrport reestablishes the connection.  During the failure the status light remains green and no failure is detected or annunciated in the management app.  This failure frequency has inreased over several months.
    I've ruled out modem failure by trying another brand wireless router.  I've reset the Airport and updatred to latest firmware without success.

    O.R.E, Welcome to the discussion area!
    Which Power Mac G5 do you have? The latest models are not compatible with the AirPort Extreme card. See KB 302721, Power Mac G5 (Late 2005) AirPort and Bluetooth options.
    Assuming you have an earlier Power Mac G5 which is compatible with the AirPort Extreme card, one or more of the following must be true:
    The AirPort Extreme card is not installed correctly.
    The AirPort Extreme card is defective.
    The Power Mac G5's motherboard is defective.

  • Error "Channel binding security failure" in tuxedo 8.1

    When I tried to connect from domain "WERD_DOMAIN_ACCEPT" from one machine to another domain "atdexprodcp2" on another machine, I am getting the following error message in the ULOG:
    092119.lasxxx!GWTDOMAIN.23146.1.0: LIBGWT_CAT:1549: ERROR: Failed security validation with remote domain (domainid=atdexprodcp2)
    092119.lasxxx!GWTDOMAIN.23146.1.0: LIBGWT_CAT:1008: ERROR: Unable to connect to remote domain (domainid=<atdexprodcp2>)
    092200.lasxxx!GWTDOMAIN.23146.1.0: LIBGWT_CAT:1535: ERROR: Channel binding security failure
    092200.lasxxx!GWTDOMAIN.23146.1.0: LIBGWT_CAT:1550: ERROR: Failed security validation with remote domain (domainid=atdexprodcp2)
    092200.lasxxx!GWTDOMAIN.23146.1.0: LIBGWT_CAT:1008: ERROR: Unable to connect to remote domain (domainid=<atdexprodcp2>)
    The domain config file on LASXXX:
    *DM_LOCAL_DOMAINS
    WERD_DOMAIN_ACCEPT GWGRP=GWGROUP
    TYPE=TDOMAIN
    DOMAINID="WERD_DOMAIN_ACCEPT"
    DMTLOGDEV="/home/tuxedo/DMTLOG.log"
    DMTLOGNAME="DMTLOG"
    SECURITY=DM_PW
    *DM_REMOTE_DOMAINS
    ATS_PRODCP2_DOMAIN TYPE=TDOMAIN
    DOMAINID="atdexprodcp2"
    ATS_PRODCP1_DOMAIN TYPE=TDOMAIN
    DOMAINID="atdexprodcp1"
    WERD_DOMAIN_TRAIN TYPE=TDOMAIN
    DOMAINID="WERD_DOMAIN_TRAIN"
    *DM_TDOMAIN
    WERD_DOMAIN_ACCEPT NWADDR="//lasxxx:20501"
    ATS_PRODCP1_DOMAIN NWADDR="//lasyyy:36651"
    ATS_PRODCP2_DOMAIN NWADDR="//lasyyy:37651"
    WERD_DOMAIN_TRAIN NWADDR="//lasun114:20601"
    *DM_REMOTE_SERVICES
    The domain config file on LASYYY:
    *DM_LOCAL_DOMAINS
    atdexprodcp1 GWGRP=TXGW01
    TYPE=TDOMAIN
    DOMAINID="atdexprodcp1"
    SECURITY=DM_PW
    BLOCKTIME=30
    *DM_REMOTE_DOMAINS
    atdeluat TYPE=TDOMAIN
    DOMAINID="atdeluat"
    WERD_DOMAIN_DEV1 TYPE=TDOMAIN
    DOMAINID="WERD_DOMAIN_DEV1"
    *DM_TDOMAIN
    atdexprodcp1 NWADDR="//lasyyy:36651"
    WERD_DOMAIN_ACCEPT NWADDR="//lasxxx:20501"
    Could someone know how to fix this problem?

    The most common cause to this problem is incorrectly configured /Domain password pair, the next common cause is the mis-matched configuration. But before I give you more definite answer I need to clear few things up first.
    1. The log shown that it failed to connect to "atdexprodcp2" but the DM configuration file on laxyyy only shown "atdexprodcp1", can you give me the complete configuration file on laxyyy?
    2. Can you give me the Tuxedo version and RP level on both lasxxx and lasyyy?
    3. it looks like you have 2 failures with 41 seconds in between. The first failure shown that WERD_DOMAIN_ACCEPT is the session initiator. The second failure shown that WERD_DOMAIN_ACCEPT is the session responder. My question is does the first failure also related to channel binding? (because the ULOG fragment in your post may be truncated it, and it does not show the root cause of the failure)

  • Satellite C660 - Intermittent boot failure

    For the past month my Satellite C660 intermittently refuses to boot. Frequency of failure appears to be increasing.
    The drive light comes on, the fan runs for 5 seconds (sometimes 15seconds with a speed increase at the end) and then the machine shuts down.
    No bios display.
    This happens with battery only, PSU only or both connected. With HDD in or out, with or without ram.
    Bios has been reset and updated and the bios battery replaced.
    No loose connections internally.
    PSU produces 19.3V DC.
    No obvious pattern as to when it will boot, but when it does W7 runs fine.
    Would be grateful for any input.

    As a corollary, the machine will reboot OK if the power is removed for 2-3 minutes.
    That applies if it has been running from the battery or the psu.
    It seems that it is retaining the 'shut down' state while there is power available either via the battery or the psu.
    It's liveable with, but it would be good to know just why it's happening or if there's a better solution than pulling the battery/switching off the psu's supply.

  • Intermittant trackpad failure

    This is getting a tad bit annoying. I thought that the fixes issued by apple, in regards to the software controller for the trackpad, would fix the intermittant failures, but they haven't. I went to the apple store with an appointment for them to take a look at it... but the tech knew less about apples that I do. The only way he said they can fix it is if I'm willing to be without my computer for 2 weeks. As frustrating as this is, being without the computer for 2 weeks is far worse. Any suggestions?
    I know [from previous powerbooks I've owned] that the trackpad is less responsive when the computer is running nice and toasty, but this is not occuring only when the computer is too warm. It occurs more often when there is a period of inactivity, but is not limited to that. It will continue to be unresponsive unless I reset the trackpad by putting my hand across the entire pad.
    Is this a hardware failure? Anyone have a workaround that will avoid me having to deal with apple support again?
    PS: reason for not wanting to send the computer in, is past failures with repairs when the powerbook is sent in. I had to send in a previous model for repairs 5 times before they simply offered me a new computer [which is not this computer that is having the problem]. This process took over 2 months to complete.

    I posted in a related topic about my wife's
    PowerBook's trackpad issues. We were experiencing
    extremely frustrating cursor freezes since 10.4.3.
    I just upgraded her machine to 10.4.5 and have been
    problem free for the past hour. We'll see how it
    goes over the next few days...
    Anyone else have a similar experience with the recent
    upgrade?
    Nevermind... It's back, and in some cases worse than ever.
    We had a rather embarassing situation occur at a coffee shop this morning. Someone noticed the PowerBook and was asking questions about Apple, Mac OSX, etc.
    We were trying to show off some of the iLife features and the trackpad was extra-wacky... needless to say he was probably thinking "Nice computer, too bad you can't use it when you want to."
    Ugh.

  • IOS 8.2 intermittent gmail failures

    Anybody else having intermittent gMail password failures in 8.2?
    Background: I have two gmail accounts. (One gmail, one a business gmail hosted account). The seem to be taking turns saying my password is incorrect. Then they switch at random.  I have tried deleting and reading.  nothing seems to be working.

    Update 8.2 has broken our Google Apps mail integration for my company. We are getting password incorrect errors on multiple accounts. Deleting the account, restarting and readding does nothing. Even removing 2 step verification does not fix the issue. Just wanted to give a heads up.

  • Intermittent installation failure

    I am seeing an intermittent engine installation failure.  The environment is always identical (I am attempting to automate the installation, so the OS content is always the same, the machine uptime is approximately the same when Oracle installation starts, etc.).
    In an attempt to figure out what's happening, I ran the installed in highest level debug mode.  Here are the only differences I have been able to find among almost 70000 lines of installActions log files.  The logs are 8MB each, but I can post them if necessary.
    Any ideas?
    Success case:
    FINEST: 6/17/13 6:12:21 AM CDT: oracle.install.driver.oui.OUISetupDriver:- null[SUCCEEDED]
    - Oracle Database installation[SUCCEEDED]
      - null[SUCCEEDED]
       - Prepare[SUCCEEDED]
      - null[SUCCEEDED]
       - Copy files[SUCCEEDED]
       - Link binaries[SUCCEEDED]
       - Setup files[SUCCEEDED]
    - Execute Root Scripts for Oracle Database installation[SUCCEEDED]
    Failure case:
    FINEST: 6/17/13 5:51:42 AM CDT: oracle.install.driver.oui.OUISetupDriver:- null[INPROGRESS]
    - Oracle Database installation[SUCCEEDED]
      - null[SUCCEEDED]
       - Prepare[SUCCEEDED]
      - null[SUCCEEDED]
       - Copy files[SUCCEEDED]
       - Link binaries[SUCCEEDED]
       - Setup files[SUCCEEDED]
    - Execute Root Scripts for Oracle Database installation[INPROGRESS]

    Without exact OS versions and exact versions of whatever it is you are installing, help is impossible - are you following all of the step sin the relevant install documentation ? If the process succeeds for one server and not the other, then you will need to compare settings on the two servers to see what is different
    HTH
    Srini

  • Intermittent lookup failures and system limits?

    Hi,
    on our deployment system we sometimes see intermitten failures of lookups. E.g. on the Webserver (Apache2.2) with a reverse proxy to an internal machine defined in /etc/hosts we will get "DNS Lookup failure", after a few reloads it works. Or restart of the apache helped, too. In our postgres mirroring script we have a similar problem. A host cannot be found even though the host is defined in /etc/hosts.
    Since the problems are not 100% reproducable, I was thinking about some system limits (open files, processes?)
    Did anybody run into a similar problem or has some hints where to look?
    Christian

    Hi,
    I've been running a reverse proxied Webserver setup to an internal machine for over 4 months and not seen this problem. My reverse proxy instructions are located in /etc/apache2/sites/specifichostfile in the <IfModule modproxybalancer.c> module instructions.
    I just use the internal IP to denote the machine not even bothering with a DNS entry. But an A record could be introduced to lookup the internal machine. If all the traffic on this domain goes to an internal machine you can specify the IP address in the WebService->General panel. In my case I am only diverting the /cgi-bin/ traffic in one case and Rails traffic in another, and so am more selective.
    HTH,
    Harry

Maybe you are looking for

  • Is there a way of reverting back to previous firefox version

    I use firefox extensively for development. I use firebug and dojo. It seems that the new version (Firefox 4) is far slower than the previous version and sometimes hangs completely. I believe this may be caused by Firebug doing a lot of work but it ne

  • Updating child table with parent table

    Can anyone help me with this update statement? I have a table BETA with children of the family list and I have table GAMA with children and family list. The relation between family and children is 1 to many. Now we have decided to update table BETA w

  • St. loc. for Acct Assignment category K

    Hi Team, We have come across strange scenario while creating PO for Acct assignment categoty "K". As we know, when we are using "K" means procuring material for Cost centre (free text mtrl). For this type NO st. Loc is required as material will be di

  • Sprint 4s not getting my text from me and others.

    Does anyone have an answer to why my wife noticed that two weeks ago, she stopped getting text messages from my 4s with Verizon and others with non Apple Cell phones as well. She has had this phone for a year with no problems. Thanks.

  • CS4 will not remember panel location

    I am having a problem with PS CS4, installed in Windows 7 (64), not remembering my panel locations. I have to click on "My Space" (Custom setup) to reset to my preferences. Yes, I do have checked "Remember Panel Locations" in Preferences-General. I d