Getting tcp/ip read errors when I receive an email

Hi
I have been having problems with a copier that scans to email. My production GWIA is too busy to monitor so I brought up another gwia to test with the copier. Its across a wan and used to work just fine. If they scan 1-6 pages it sends just fine. If they scan 9 or more it connects, stays connected for quite awhile and then disconnects with out a file getting sent. The TCP/ip read err incriments. We took the 12 pages and sent to a desktop to see how big the file was it its 400kb. I can copy a file over the wan in ~30 sec. The connection for email stays up for much longer than that.
I checked the nic on the server and its clean.
Very curious why I get the read error when its trying to write the file.
Thanks,
Will

Hi,
391783263 wrote:
> Very curious why I get the read error when its trying to write the
> file.
SMTP is a chain of commands and responses, alternating between sender
and receipient.
Example:
GWIA: Hi, I'm here.
Sender: Hello, I'm scanner.
GWIA: Hey, that's cool, how can I help.
Sender: Please accept MAIL FROM: [email protected]
GWIA: Will do, go ahead.
Sender: And please send that mail to RCPT TO: [email protected]
GWIA: I know that one, so I'll happily take it.
Sender: So here comes the DATA
GWIA: Ok, go ahead and send it, line by line. Once you're done, please
send me a single dot on it's own line so I know you're doe with it all.
Sender: Blabla, blabla.....
more blablalala
and even more blablaba
Gwia: Cool, I have that.
Sender: Cool, we're done. So I QUIT.
Gwia: Bye-Bye.
So now, if for some reason that nice little chat gets interrupted for
whatever reason, and at *whatever* stage, it simply depends on whose
turn it was to talk. If it was GWIA's turn to talk, and it found the
connection broken, you will get a TCP write error (because GWIA was
attempting to "write" something. If however it was the senders turn to
"talk", and it simply never did, or the connection broke down, you'll
receive a tcp read error, because GWIA was expecting to "read" something
from the other end, but nothing ever reached it.
In 99,999% of all cases, this is a low-lever TCP/IP communication
problem, regardless if it's a read or write error. Do *NOT* look at your
GWIA, you'll find nothing. Look at TCP/IP.
CU,
Massimo Rosen
Novell Product Support Forum Sysop
No emails please!
http://www.cfc-it.de

Similar Messages

  • I'm getting an smtp address error when I send an email so none of my outgoing emails are getting sent.  This just started about 3 weeks ago.  How do I fix this?

    None of my emails are being sent. I'm getting an error about my smt address being incorrect but I don't know how to correct it or why it's suddenly wrong. This started about 3 weeks ago but I just realized it today. Can anyone help me figure this out?

    Contact your service provider.
    I have Verizon FiOS service and this month, Verizon migrated their service over to a more secure service that uses SSL and different port numbers. As a result, the old mail configuration became obsolete and if it's not changed gives the same error that you are describing. Verizon's customer support page notes the changes (and they've been sending out e-mails).

  • When I receive an email request for a meeting, when I open it I get an error message asking if I want to revert to server, try again or ignore. If I choice revert to server it delete the event, if I choice ignore it accepts but won't sync with my other de

    When I receive an email request for a meeting, when I open it I get an error message asking if I want to revert to server, try again or ignore. If I choice revert to server it deletes the event, if I choice ignore it accepts it but won't sync with my other devices.

    Interesting suggestion, but it's not clear to me how I would do that if I'm not using an "(at) icloud.com" email address/account. I am having the same problem with changed invitations that come from an organizer who is using Google Apps. My email account is hosted at my ISP - it's not obvious to me how I can use iCloud to access that email account (and therefore the changed invitation). Suggestions?

  • When I try to open a pdf  I get a acrobat reader error, It states ( There was an error opening this

    When I try to open a pdf  I get a acrobat reader error, It states ( There was an error opening this document. Could not repair file.

    There is not modern program called Acrobat Reader. There is an Adobe Reader program, there is an Adobe Acrobat (Pro or Std) program. Which program are you using? Under which OS?
    Please repost your question with your answer to either the Adobe Reader forum: http://forums.adobe.com/community/adobe_reader_forums  or  or the Acrobat Installation forum: http://forums.adobe.com/community/acrobat/installation_and_update_installation

  • I'm getting message Lightroom encountered error when reading from its preview cache needs to quit. Lightroom 5 on Windows 7

    I'm getting message Lightroom encountered error when reading from its preview cache needs to quit. Lightroom 5 on Windows 7

    To delete the preview cache, do this:
    1. Quit Lightroom.
    2. In your Operating System, locate your Lightroom catalog. Typically catalogs are in /Pictures/Lightroom on Mac and My Pictures\Lightroom on Windows.
    3. Find the folder whose name ends with "Previews.lrdata" and delete it. (note, you may also have a folder whose name ends with "Smart Previews.lrdata." You shouldn't need to delete that one.)

  • When downloading photos I get "LR encountered and error when reading from its preview cache --?

    When attempting to download images I get "LR encountered an error when reading f rom its preview cache and needs to quit.  Only downloads ~ 10  of 300 photos and shuts down.  What to do?

    Have you tried to delete the preview cache?
    Axel

  • Why am I getting an ORA-04052 error when I try to compile a Procedure?

    Hi,
    The following procedure I'm getting an ORA-04052 error when I try to compile the following procedure.
    CREATE OR REPLACE PROCEDURE APPS.Find_String (
    pin_referenced_name IN dba_dependencies.referenced_name%TYPE)
    IS
    cursor cur_get_dependancy
    is
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;
    v_owner  varchar2(40);
    v_name   varchar2(50);
    v_type   varchar2(40);
        BEGIN
           dbms_output.put_line(upper(pin_referenced_name)||' is found in the following objects.');
           dbms_output.put_line(' ');
           dbms_output.put_line(RPAD('OWNER', 30, ' ')||RPAD('NAME', 60, ' ')||RPAD('OBJECT TYPE', 30, ' '));
           dbms_output.put_line('-------------------------------------------------------------------------------------------------------------------');
            FOR i IN cur_get_dependancy
            LOOP
                v_owner := RPAD(i.owner, 30, ' ');
                v_name  := RPAD(i.name, 45, ' ');
                v_type  := RPAD(i.type, 30, ' ');
                dbms_output.put_line(v_owner ||v_name|| v_type);
            END LOOP;
    END find_string;I'm using the link [email protected]. The procedure compiles for other database links used in the cursor including the one commented to the right of the code 'prod.world'.
    What's even stranger is that I took the SELECT statement
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;out of the procedure and ran it on the command line using the @pinp.world link, the SQL statement ran just fine. But when I tried to compile the above procedure with that exact same SQL statement with the exact same link I get the following string of errors.
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02068: following severe error from PINP
    ORA-03113: end-of-file on communication channelHow can the link work just fine in a regular SQL statement but then cause an error when its compiled in code that otherwise compile just fine when using any other link or even just a plain database. Does anyone have any suggestions?

    OK Justin,
    Here's the query by itself run in another database using the @pinp.world link and querying the dba_dependencies table in the pinp.world database. As you can see the query using this link works just fine returning the requested rows. I can't figure out why the compiler is having an issue with essentially this same query when I try to compile it in a cursor in TOAD. Also this is the database (dev1.world) that I'm trying to compile this Procedure in.
    By the way I'm in an Oracle 9.2.0.6 database and TOAD v9.2.
    SQL> conn apps/apps1@dev1
    Connected.
    SQL> SELECT distinct owner, name, type
      2    FROM [email protected]
      3   WHERE lower(referenced_name) = lower('ALL_USERS')
      4     AND referenced_type <> 'SYNONYM'
      5     AND owner <> 'SYS'
      6   order by name;
    OWNER                          NAME                           TYPE
    PUBLIC                         ALL_USERS                      SYNONYM
    XDB                            DBMS_XDBUTIL_INT               PACKAGE BODY
    XDB                            DBMS_XDBZ0                     PACKAGE BODY
    SYSTEM                         MVIEW_EVALUATIONS              VIEW
    SYSTEM                         MVIEW_EXCEPTIONS               VIEW
    SYSTEM                         MVIEW_FILTER                   VIEW
    SYSTEM                         MVIEW_LOG                      VIEW
    SYSTEM                         MVIEW_RECOMMENDATIONS          VIEW
    SYSTEM                         MVIEW_WORKLOAD                 VIEW
    ORASSO                         WWCTX_API                      PACKAGE BODY
    PORTAL                         WWCTX_API                      PACKAGE BODY
    ORASSO                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWPOB_API_PAGE                 PACKAGE BODY
    PORTAL                         WWPOF                          PACKAGE BODY
    ORASSO                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWSBR_EDIT_ATTRIBUTE           PACKAGE BODY
    PORTAL                         WWSBR_FOLDER_PORTLET           PACKAGE BODY
    PORTAL                         WWSBR_USER_PAGES_PORTLET       PACKAGE BODY
    ORASSO                         WWUTL_API_PARSE                PACKAGE BODY
    OWNER                          NAME                           TYPE
    PORTAL                         WWUTL_API_PARSE                PACKAGE BODY
    PORTAL                         WWUTL_EXPORT_IMPORT_LOV        PACKAGE BODY
    ORASSO                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWV_CONTEXT                    PACKAGE BODY
    PORTAL                         WWV_CONTEXT_UTIL               PACKAGE BODY
    PORTAL                         WWV_DDL                        PACKAGE BODY
    PORTAL                         WWV_GENERATE_UTL               PACKAGE BODY
    PORTAL                         WWV_GLOBAL                     PACKAGE
    PORTAL                         WWV_MONITOR_DATABASE           PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_SPECIFIC_USER     PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_USER              PACKAGE BODY
    PORTAL                         WWV_SYS_DML                    PACKAGE BODY
    PORTAL                         WWV_SYS_RENDER_HIERARCHY       PACKAGE BODY
    PORTAL                         WWV_THINGSAVE                  PACKAGE BODY
    PORTAL                         WWV_UTIL                       PACKAGE BODY
    PORTAL                         WWV_UTLVALID                   PACKAGE BODY
    38 rows selected.
    SQL>Let me know what you think.
    Thanks again.

  • Adobe Reader error when downloading a Form (IMM5257E - required for CIC - Canadá)

    I received an error when downloading a file viwh the Adobe Reader version 11.0.07.
    A message like this appear:
    To view the full contents of this document, you need a later version of the PDF viewer.

    Pat Willener!
    GREAT THANKS! GREAT THANKS! GREAT THANKS!
    I was using Google Chrome, and did not suspect that this could be the
    problem.
    I used I.E. and the download worked. So that's it.
    Great thanks again.
    Vilson Drehmer
    Rua Balduíno Pedro Vier, 693
    CEP 95.880-000 - Estrela - RS
    Fone: (51) 8401.2253
    E-mail: [email protected] <[email protected]>
    CRA-RS 6364
    2014-05-28 5:26 GMT-03:00 Pat Willener <[email protected]>:
        Adobe Reader error when downloading a Form (IMM5257E - required for
    CIC - Canadá)  created by Pat Willener<https://forums.adobe.com/people/pwillener>in *Adobe
    Reader* - View the full discussion<https://forums.adobe.com/message/6414530#6414530>

  • I get missing plug-in error when opening my online bill which is in PDF format. I am using a 2010 Macbook with the latest version of Safari and Adobe suite installed in my computer. Why do I get this error? What should I do?

    I get missing plug-in error when opening my online bill which is in PDF format. I am using a 2010 Macbook with the latest version of Safari and Adobe suite installed in my computer. Why do I get this error? What should I do?

    In relation to my previous inquiry regarding inability to view a pdf file using Safari...
    Is it possible that I can view other online bills from other website but not this particular bill from one specific website?
    Sorry if I missed any important point in this article -->Apple Safari 5.1 and Adobe Reader/Acrobat Advisory
    Thanks again!

  • Can I get Quick time video on iPad 2? Specifically, when I receive an email with quicktime on it, it will not play on the iPad.

    Can I get Quick time video on iPad 2? Specifically, when I receive an email with quicktime on it, it will not play on the iPad.

    Hello.  I have AV player hd.  When I touch and hold the Quicktime icon that is in a received mail message, a prompt comes up "Open in AVPlayerHD".  I click on that and a black screen opens up with the following on it:
    1--A red line at the top with a short white slider button on the right hand side.  There is a time listed at each end of the red line that says 00:00
    2--On the left hand side of the screen, near the middle, there are 4 icons, a colored 'x', a dialogue icon, a circular arrow and an 'i' in a circle.
    3--On the right hand side there is a + and a - sign with '1.00x' in the middle of the two.
    4--At the bottom of the black screen is a play icon plus forward and fast forward icons.
    When I press the play icon it changes to a stop icon.
    So, even though I have AV player I cannot play this Quicktime slideshow.
    Any help would be appreciated.  Thanks.

  • Getting mandatory attribute validation error when the value is defaulted through customization

    Hi
    I am getting Mandatory attribute validation error when we default the value through customization.
    In the UI we have attribute called Last Name which is mandatory at EO level. Customer wanted to default Last name to some value, through page composer it is defaulted to some text and saved.
    When ever we open the page the the same value is defaulted as Last Name and appearing in the UI. But when we submit the page, EO level validation is failing. hence we are getting last name is missing.
    When i debug the code last name attribute value for EO is blank.
    In the UI the attribute last name is associated with bindings  --> #{bindings.lastname.inputvalue}
    The validation is failing if we remove the default binding associated with inputtext box.
    Can some body help what can be reason and is there any solution?
    Thanks,
    Praveen

    version 12.1.2
    I am struggling with same situation, I can't set the default value at business component because, the default value comes from a REST service at run time. In page A,  I have a field F1 that contains value from REST service. Page B has a database bound field F2, whose default value should come from F1 in Page A when a user navigates from Page A to Page B. If I set the value of F2 to be the value of F1, then it displays the value in the UI, but nothing gets submitted to EO and fails at commit.
    To make things difficult, here is my situation: Page A lives in bounded taskflow TF1, and Page B lives in bounded taskflow TF2. So I have created an input parameter P1 in TF 2, which carries over the value of F1 in Page A to Page B. When I am in Page B, I can successfully see the value of the taskflow input parameter P1. So, how do I  programmatically set the value of field F2 with the value of input parameter P1?
    I tried setting the F2.inputValue  in a method call M1 in  taskflow TF2 prior to Page B, but I get null pointer exception as it can't see field F2 yet.
    It seems like a simple thing to do, but I have spent a lot of time trying to make it work without any success.
    I would greatly appreciate any guidance.

  • I get an web service error when trying enable web services. I have latest update and rebooted

    i get an web service error when trying enable web services. I have latest update and rebooted

    hi there philnj,
    could you help the community narrow troubleshooting by providing a little more information? Particularly what model printer are we dealing with?
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • [svn:bz-trunk] 21394: bug fix for watson 2887837 Not getting duplicate session detected error when same flex client id is used from two different HTTP sessions in CRX .

    Revision: 21394
    Revision: 21394
    Author:   [email protected]
    Date:     2011-06-16 12:34:13 -0700 (Thu, 16 Jun 2011)
    Log Message:
    bug fix for watson 2887837 Not getting duplicate session detected error when same flex client id is used from two different HTTP sessions in CRX.
    get the sessions id before we invalidate the duplicate session.
    Checkintests pass
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseHTTPEndpoint.java

    For our profect I think this issue was caused as follows:
    Believing that remoting was full asynchronous we fired a 2 or 3 remote calls to the server at the same time ( within the same function ) - usually when the users goes to a new section of the app.
    This seemed to trigger the duplicate http session error since according to http://blogs.adobe.com/lin/2011/05/duplication-session-error.html  two remote calls arriving before a session is created will cause 2 sessions to be created.
    Our current solution ( too early to say it works ) is to daisy chain the multiple calls together .
    Also there seemed to be an issue where mobile apps that never quit ( thanks Apple! )  caused the error when activated after a few hours.
    I guess the session expires on the server and the error above occurs on activation.
    So the mobile apps now ping the server with a remote call when activated after sleeping for more than one hour.
    All duplicate http errors are silently caught and reported.
    Fingers crossed we won't get any more!

  • HT6413 I keep getting a installation pkg error when installing icloud for windows 7 on my pc.

    I keep getting an windows installation error when installing icloud for windows 7.  I have tried installing manually without success.

    There is a very long way which is removing anything related to Apple including stuff in the registry.
    The short way is as follows. It worked for me.
    I have seen that in the forum EXCEPT the registry trick which is missing and does the different.
    1. Remove the Apple account from Outlook.  In my case a me.com account.
    2. Disconnect the connection to ICloud in the control panel of version 3.1.
    REBOOT and open Outlook to see that all traces of the email account and of ICloud are gone.
    3. Uninstall ICloud 3.1. I used REVO Uninstaller in Safe way mode. It removed some stuff in the registry from what I see; but not sure.
    4. Delete as much stuff as possible in the C \Program Files (x86) \Common Files \ Apple
    and C\Program Files\Common Files \Apple.  My computer is 64 bits.
    5. Go to the registry by typing regedit.exe or simply type regedit in the Start Box. Search for ICloud.  I deleted TWO entries related to ICloud. Otherwise, you will still see the ICloud control panel despite the fact that you removed 3.1.
    6. then I was able to install ICloud 4 immediately.  Upon restarting it asked me my email and password and added itseft to Outlook like it was before. Be aware that you address book in Outlook could be deleted, so do an export before.

  • I get a error when I send a Email. Recipient "email@address"  was rejected by server by sever

    I get a error when I send a Email. Recipient "email@address"  was rejected by server by sever

    I set up my email the way the phone and iPad do. Very simple. It works most the time, but I am usually on wifi also. I ran into problem saying email was rejected by server, and it put email in my outbox. I looked in here to see if anyone had a good solution, then realized after reading the post I never actually checked my servers. My actual servers were different than the defaults that were set up. Example : the default server was mail.roadrunner.com, but the actual should be pop-server.roadrunner.com, and same for the smpt-server.roadrunner.com. Based on the ISP, must have the correct servers. But I was always able to send while on wifi. That part I did not understand. But since I fixed the servers, I have not seen any problem sending on either the iPad or iPhone. If you have not found fix, hope this may help if still having problem

Maybe you are looking for