Re: Losing NT Services

Tran,
Forte is a powerful tool which, while it protects you from some issues,
does not fully insulate you from writing code that can peg out a
machine.
So, for example, it would be a simple 10 line or so Forte program which
could issue 'start task' statements inside an infinite loop which would
then soon max out the available threads on a machine. I could write
that same program in C, perl, or any other environment. I'm not saying
that you wrote such a program, just that by writing it in Forte doesn't
mean that "forte" is degrading the system - the program is degrading the
machine.
Forte does not allow you to ignore and overcome finite resources on a
machine (i-nodes, threads, processes, memory, disk space, etc). And
this problem sounds like its related to the consumption of system
resources.
I'm not just pointing the finger back at you, rather I'm suggesting that
for the forum to be able to help you it is important for you to describe
some more detail about what the forte system is doing. Is it a
development server? an application Server? How many partitions are
running on the box, and most importantly, what are they trying to do?
These are the same questions that would be asked of you if you wrote
your application in C++ or powerbuilder (gasp!) or whatever.
Is the file transfer a part of your application's functionality?
Have you tried running the performance monitor to watch things like
available memory, disk activity, process count, etc?
We have been working with Forte on NT for some time now, and while there
are issues, what you describe has not been our general experience. We
have, however, managed to peg out NT machines in specific situations.
-John
We are hoping that someone have ran into the same problem and can shed
some
light on any work around to resolve it. The problem that we are
encountering is that the NT Server's performance degrade to a point
where
we physically can't sign on to the box itself. When someone sits at the
terminal and tries to sign on, the person would see a blue screen and
that's it. The only thing that is running on that box is Forte'
runtime,
pcAnyWhere, and SQL Server. Once the NT server get to this point, all
we
can do is reboot the box. The key indicator that NT is dying is our
application will start to malfunction and various files transfer would
fail.
Does anyone have an application running with NT, if you do we would love
to
have a conversation concerning this situation. We would appreciate any
advice on this matter.
John Jamison [email protected]
Vice President and Chief Technology Officer
Sage IT Partners, Inc.
Voice: 415 392-7243 x 306
Fax: 415 391-3899
Internet Enabled Business Change
http://www.sageit.com
-----------------------------------------------------

Hi-
I don't know if this will shed any light on your problem, but I can relate to you one circumstance that we had on our server in the development environment. When you have a process such as a service object that crashes, it will sometimes leave an ftexec hanging. Each of these "dead" ftexec's seem to tie up a certain amount of memory and will not let go. If something like that was going on and went unchecked, I could well imagine that it would eventually bring NT to its knees.
If you are running the forte environment as an NT service, you can see this by running the task manager. (ctrl+alt+delete, then click the task manager button, then select the processes tab.) If you see a lot of ftexec's listed, you may have something similar occurring. Even though the Task Manager may report little or no memory allocated to them, somehow it is tied up somewhere. For grins, try this: Bring up the task manager, and then stop the Forte environment. Watch what happens to your memory utilization as each of the dead processes goes away.
Unfortunately, if this is your problem, I do not have a solution for you, but maybe someone else does. This was one of those things that I made a mental note that I need to figure out someday, but it was not causing us a serious problem, so the resolution was not a high priority. We were training several new developers at the time, and they were fairly green at both Forte and SQL, so I think they had a lot of dbsession objects crashing. In our case, it was sufficient to restart the Forte environment if performance started to degrade. And as the developers got better at SQL and at catching exceptions, we had fewer instances of dead objects to deal with.
However, if anyone knows how to resolve or prevent this problem, I would certainly be interested in hearing the solution.
-----Original Message-----
From: Thanh T. Tran [SMTP:[email protected]]
Sent: Monday, May 25, 1998 11:28 PM
To: [email protected]
Subject: Losing NT Services
We are hoping that someone have ran into the same problem and can shed some
light on any work around to resolve it. The problem that we are
encountering is that the NT Server's performance degrade to a point where
we physically can't sign on to the box itself. When someone sits at the
terminal and tries to sign on, the person would see a blue screen and
that's it. The only thing that is running on that box is Forte' runtime,
pcAnyWhere, and SQL Server. Once the NT server get to this point, all we
can do is reboot the box. The key indicator that NT is dying is our
application will start to malfunction and various files transfer would fail.
Does anyone have an application running with NT, if you do we would love to
have a conversation concerning this situation. We would appreciate any
advice on this matter.
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • Re: Losing NT Services (rather how to shutdown idleftexecs)

    Hi,
    Hope I am not adding to the confusion.
    If unused ftexecs is the problem, look at technote no. 11435 - "Sample code
    to automate shutting down idle FTEXEC interpreters" .
    You can alsomanually kill them (rather shut them down) from EConsole.
    Hope this helps.
    Nirmal P Uppalapati Phone: (203) 622-5386
    VP-US Operations (203) 359-3992
    PSI Data Systems Ltd. Mobile: (203) 912-1302
    Suite 406 Fax: (203)
    359-4662
    One Bank Street Email : [email protected]
    Stamford, CT 06901 USA Web: http://www.psi.soft.net
    -----Original Message-----
    From: Jeanne Hesler <[email protected]>
    To: 'Thanh T. Tran' <[email protected]>
    Cc: '[email protected]' <[email protected]>
    Date: Thursday, May 28, 1998 2:32 PM
    Subject: RE: Losing NT Services
    Hi-
    I don't know if this will shed any light on your problem, but I can relate
    to you one circumstance that we had on our server in the development
    environment. When you have a process such as a service object that crashes,
    it will sometimes leave an ftexec hanging. Each of these "dead" ftexec's
    seem to tie up a certain amount of memory and will not let go. If something
    like that was going on and went unchecked, I could well imagine that it
    would eventually bring NT to its knees.
    If you are running the forte environment as an NT service, you can see this
    by running the task manager. (ctrl+alt+delete, then click the task manager
    button, then select the processes tab.) If you see a lot of ftexec's
    listed, you may have something similar occurring. Even though the Task
    Manager may report little or no memory allocated to them, somehow it is tied
    up somewhere. For grins, try this: Bring up the task manager, and then
    stop the Forte environment. Watch what happens to your memory utilization
    as each of the dead processes goes away.
    Unfortunately, if this is your problem, I do not have a solution for you,
    but maybe someone else does. This was one of those things that I made a
    mental note that I need to figure out someday, but it was not causing us a
    serious problem, so the resolution was not a high priority. We were
    training several new developers at the time, and they were fairly green at
    both Forte and SQL, so I think they had a lot of dbsession objects crashing.
    In our case, it was sufficient to restart the Forte environment if
    performance started to degrade. And as the developers got better at SQL and
    at catching exceptions, we had fewer instances of dead objects to deal with.
    However, if anyone knows how to resolve or prevent this problem, I would
    certainly be interested in hearing the solution.
    -----Original Message-----
    From: Thanh T. Tran [SMTP:[email protected]]
    Sent: Monday, May 25, 1998 11:28 PM
    To: [email protected]
    Subject: Losing NT Services
    We are hoping that someone have ran into the same problem and can shed some
    light on any work around to resolve it. The problem that we are
    encountering is that the NT Server's performance degrade to a point where
    we physically can't sign on to the box itself. When someone sits at the
    terminal and tries to sign on, the person would see a blue screen and
    that's it. The only thing that is running on that box is Forte' runtime,
    pcAnyWhere, and SQL Server. Once the NT server get to this point, all we
    can do is reboot the box. The key indicator that NT is dying is our
    application will start to malfunction and various files transfer would fail.
    Does anyone have an application running with NT, if you do we would love to
    have a conversation concerning this situation. We would appreciate any
    advice on this matter.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi,
    Hope I am not adding to the confusion.
    If unused ftexecs is the problem, look at technote no. 11435 - "Sample code
    to automate shutting down idle FTEXEC interpreters" .
    You can alsomanually kill them (rather shut them down) from EConsole.
    Hope this helps.
    Nirmal P Uppalapati Phone: (203) 622-5386
    VP-US Operations (203) 359-3992
    PSI Data Systems Ltd. Mobile: (203) 912-1302
    Suite 406 Fax: (203)
    359-4662
    One Bank Street Email : [email protected]
    Stamford, CT 06901 USA Web: http://www.psi.soft.net
    -----Original Message-----
    From: Jeanne Hesler <[email protected]>
    To: 'Thanh T. Tran' <[email protected]>
    Cc: '[email protected]' <[email protected]>
    Date: Thursday, May 28, 1998 2:32 PM
    Subject: RE: Losing NT Services
    Hi-
    I don't know if this will shed any light on your problem, but I can relate
    to you one circumstance that we had on our server in the development
    environment. When you have a process such as a service object that crashes,
    it will sometimes leave an ftexec hanging. Each of these "dead" ftexec's
    seem to tie up a certain amount of memory and will not let go. If something
    like that was going on and went unchecked, I could well imagine that it
    would eventually bring NT to its knees.
    If you are running the forte environment as an NT service, you can see this
    by running the task manager. (ctrl+alt+delete, then click the task manager
    button, then select the processes tab.) If you see a lot of ftexec's
    listed, you may have something similar occurring. Even though the Task
    Manager may report little or no memory allocated to them, somehow it is tied
    up somewhere. For grins, try this: Bring up the task manager, and then
    stop the Forte environment. Watch what happens to your memory utilization
    as each of the dead processes goes away.
    Unfortunately, if this is your problem, I do not have a solution for you,
    but maybe someone else does. This was one of those things that I made a
    mental note that I need to figure out someday, but it was not causing us a
    serious problem, so the resolution was not a high priority. We were
    training several new developers at the time, and they were fairly green at
    both Forte and SQL, so I think they had a lot of dbsession objects crashing.
    In our case, it was sufficient to restart the Forte environment if
    performance started to degrade. And as the developers got better at SQL and
    at catching exceptions, we had fewer instances of dead objects to deal with.
    However, if anyone knows how to resolve or prevent this problem, I would
    certainly be interested in hearing the solution.
    -----Original Message-----
    From: Thanh T. Tran [SMTP:[email protected]]
    Sent: Monday, May 25, 1998 11:28 PM
    To: [email protected]
    Subject: Losing NT Services
    We are hoping that someone have ran into the same problem and can shed some
    light on any work around to resolve it. The problem that we are
    encountering is that the NT Server's performance degrade to a point where
    we physically can't sign on to the box itself. When someone sits at the
    terminal and tries to sign on, the person would see a blue screen and
    that's it. The only thing that is running on that box is Forte' runtime,
    pcAnyWhere, and SQL Server. Once the NT server get to this point, all we
    can do is reboot the box. The key indicator that NT is dying is our
    application will start to malfunction and various files transfer would fail.
    Does anyone have an application running with NT, if you do we would love to
    have a conversation concerning this situation. We would appreciate any
    advice on this matter.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • E4200 - Keeps losing uPNP service

    The E4200 keeps losing uPNP service and I have to restart the router to correct it. Is there a fix for this?

    Is your router a version 1 or 2? Is the UPnP for gaming or VOIP to the router? Are you getting an error on the device/s that is using the UPnP service to the router? You might need to open ports on the router to fix the issue and aside from that updating its firmware to  the latest. You have to determine the correct ports that you need to open on the router though (port range forwarding). If you are not sure of what port numbers to forward or open on the router then call the vendor of the device/s you are having trouble with connecting.
    Setting up port range forwarding on Linksys wireless-N routers and gateways
    Manually upgrading the firmware of the Linksys wireless-N router

  • HT4623 Constantly losing cellular service!

    Using Iphone 5C and constantly losing cellular service.  Just had new sim card installed this morning and still having issues.  Anyone else experiencing this?  Phone is brand new.

    Hello jdoersom,
    Congratulations on your new iPhone 5c, and thank you for the details of the issue you are experiencing with cellular service.  You have already taken some good troubleshooting steps to address the issue, and I recommend continuing with the following steps (you can skip any steps you have already taken):
    Follow the instructions below for assistance with troubleshooting cellular data issues on your iPhone. After performing each step, please test to see if the issue is resolved.
    Toggle airplane mode: Tap Settings, turn airplane mode on, wait three seconds, and then turn off again.
    Restart your iPhone.
    Ensure that your software is up to date:
    Check for a Carrier Settings Update. Tap Settings > General > About.
    Check for an iOS Software Update. Tap Settings > General > Software Update.
    Note: Some updates may require a Wi-Fi connection.
    Remove the SIM Card and reinsert it. Allow the iPhone to acquire the network again.
    If your SIM card has SIM PIN enabled, try toggling it off: Tap Settings > Phone > SIM PIN.
    Try another location. If a different location works, but the original location still does not, contact your carrierto report the issue.
    Reset network settings: Tap Settings > General > Reset > Reset Network Settings.
    Restore the iPhone as new.
    Contact your carrier to:
    Verify that the iPhone is properly set up on the account with the appropriate, current data plan.
    Verify that there are no account-related blocks.
    Find out if there are specific error messages in the carrier logs that could help determine why the issue is occurring.
    If none of the above steps resolves the issue, contact your carrier, make an appointment at an Apple Retail Store, or contact AppleCare to troubleshoot further.
    You can find the full article here:
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/ts3780
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Don't update to 8.0.1 issue losing cell service and Touch ID

    Everyone updating to the new iOS 8.0.1 update are having issues with losing cell service and Touch ID. Seems to be happening if you update over the air and not through computer and iTunes but I'll wait anyway.

    I updated over the air. However no real issues other than former settings changed to default settings. Bluetooth has to be reset up even if still in your device list. WiFi same issue. If you head over to
    http://www.apple.com/support and go to the iOS forum you will see many more issues but as you know Verizon did not do the update.
    So Apple is the place to complain or get a fix.
    Device works pretty good after you fix the quirks.
    Good Luck

  • Are throwing the baby out with the bath water again?  Looks like I am losing the services I use, for crap I don't want to keep my eMail.

    Still mifed from losing all the time I put into Homepage.

    What has "homepage" to do with icloud ?
    it was a feature of MobileMe but is no feature in iCloud.Apple sees this sort of service as obsolete. You can use "homepage" hosting at Apple until next year.
    Just look for other hosters. iWeb will work in Lion, so not a problem at all.  You only need to move your created sites over per FTP to 3rd party companies that will host it for you. No drama.

  • C3-01 Losing Phone Service

    This phone is on the Virgin network and was supplied by Virgin. The phone keeps losing it's phone connection and the only way I find out is when I try to make a call or get landlines calls from people telling me they can't reach my mobile again!! The strange thing is I still have full signal strength according to the bars on the phone just no connection.
    Having spoken to Virgin they told me to set the "Service Provider" provider option to manual and select virgin. This I did but I still have the problem but can regain connection if I re-scan providers and re-select virgin.
    Speaking to Virgin again they are now telling me to turn off 3g and run in 2g mode. Firstly this suggests they know they have an issue, secondly why the hell should I! I got a 3g phone because I wanted 3g.
    Has anyone seen this sort of problem before?
    Thanks

    Factory settings just do the trick. Hope there wont be more bugs...

  • Keep losing all service, and phone restarts on it's own

    So...my Razr maxx kept restarting on it's own after only being on for about 30 seconds and it also was receiving no signal. I did all the troubleshooting tools and nothing seemed to be able to fix it. So i successfully traded it in for a refurbished Razr with a new SIM card. I was able to set it up just fine last night and had no problems with it. However today while at work it just quit receiving a signal. It also has restarted itself multiple times. Seems like the same issue except on a smaller scale. It gets intermittent service and has only restarted itself a couple times. I went through all the settings and everything seems fine. The only thing i can think is that there might be a virus on my microSD card that's causing my phones to act like this. Anyone else experiencing the same issue? Of course Verizon support will just tell me like they tried last time that their working on the towers right now. I don't know if they'll let me get another replacement. I think you only get one every 6 months with insurance. Please help.

    My Razr Maxx was doing the same thing. Now it appears to be booting (constantly), but never actually boots. I can not even turn it off now. The only way it turns off is to let the battery die.
    I've tried all the recommended fixes. In my research, this is a common problem with these phones. The only solution seems to be a new phone. These phones are too expensive to need replacing so often. Hmm...who does that benefit?
    I've lost all interest in owning another Motorola. I'm seriously considering changing providers, as well.

  • I wish to install Mozilla Firefox as my Browser having re-installed XP Home Edition on my 'old' Dell losing my Service packs, so Firefox won't install.

    As I am on the early XP, without any Service packs, I want to up-date to SP3. The Microsoft Website won't offer any help. Firefox won't install and I need a prompt to send me in the right direction.
    I am using IE version 6.00 and it is refused access to updates because it is so old.
    The 'old' Dell runs well but had suffered my bad management one night resulting in the need to re-install XP. It is my second PC and I am running 8.1 on my newer machine, so I can access help topics.
    What is my next step please?

    See if this works to get the XP2 and XP3 updates.
    http://betanews.com/2014/05/26/how-to-continue-getting-free-security-updates-for-windows-xp-until-2019/

  • Palm Pre showing "No Service" and losing Ev/Service over 50% of the time + random shut offs when shut.

    For starters, I have had 5 Palm Pre's.  The first pre had a battery that I was told was too small (which explained the occasional random shutdowns when being shut).  The second pre I had did the exact same thing brand new out of the box.  The third pre I had worked perfectly up until several days ago (right around the time change).  My calendar synced with G-mail was an hour early for every appointment; also several events were completely missing from my Pre calendar that were on g-mail.  In response to this problem I checked the time zone on g-mail with no resolve, and eventually tried erasing my google account on my pre in hopes of a fresh start.  
    This is when I encountered the real problems.
    My Pre would not delete the account.  Every time I tried deleting it the top bar read "No Service" or my "Ev" indicator would disappear along with the bars.  After this the Calendar app would either freeze or just never delete the gmail account (the gray circle would just spin endlessly for literally 30 minutes).  Ever since then I have been experiencing the "No Service" indicator plus random loss of service and Ev (in places where in the past I had PERFECT Ev and Service)
    Since then I have called Sprint and Palm multiple times, and both blame each other for the problem.  I recently took it in to the Tech's at Sprint and they could not find the problem and ordered me a "refurbished" pre.  woohoo.
    Today I went and got the "refurbished" pre and within an hour of having it, I noticed that the same problem was being experienced (along with a few dead pixels on the screen).  So I took it back to the Sprint store and asked for a new one (or one that just flat out worked and didn't have dead pixels).  I then experienced very horrible customer service from Sprint (which was unusual since in the past they have been very helpful) and received a second "refurbished" Pre after a very pointless arguement with a receptionist.  By then it was closing time and I had to leave.  
    Upon arriving back to my dorm, I noticed the same problem was occuring:  "no service" messages and  no internet/service literally 50% of the time I was looking at the Pre's screen.  Also, my second "refurbished" Pre (that I currently have) did the exact same thing my very first one did: it occasionally shut down when I shut it.  This leads me to believe that the battery is too small just like my first Pre's battery was. . . 
    So now I am very frustrated and looking for answers.  I have never posted any sort of "cry for help" on the internet before, I hope this wasn't too winey lol.
    Does anyone have any idea what is happening to my Pre?  Are there other people with a similar issue?  Any solutions to the problem?  
    Any info/help would be greatly appreciated.  
    Thanks in advance. 
    Post relates to: Pre p100eww (Sprint)

    I am on Pre number 5 and am so sorry I gave up my BB.  I have had this same issue numerous times and my biggest problem is the battery just drains.....and each one is the same...it freezes, the keyboard does not connect with the screen, the phone calls my last callers in the middle of the night sometimes 2 and 3 times I assume during backup, the tech at the Sprint store tried to help me sync my google calendar and deleted my appointments. On the last refurb my pics did not syn....they said we will keep the phone so you can sync directly, and sent the phone back before I got there. So I lost the pics of my recently passed dog.  They were like well they would have charged us 400 a day if we did not send it back........like whatever.  My chargers, car, wall and usb to computer work intermittently. I keep my car running to charge the battery.  It just continues to drain......and it goes on and on.......I baby sit this phone and cannot use it most of the time. .... palm says oh they should give you a new phone.....sprint says who said that palm?  I think about the first few months when i actually was trying to get outlook to sync.......now i just would like to be able to freakin talk on my phone.  I purchase an album on amazone and they take the money and i cannot download the music.  I tried to convert a song into a ringone I have it for safety and it is really bad.  I have to drive an hour to a "corporate store"  to beg them to give me a blackberry. I love multitasking and accessing the internet however it is freezing here now and I would like to feel a little safer with having a freaking phone to talk on.  I have spent probably a total of 40 hours on this thing since july. They say well do you turn it off and on? how often do you charge it......like its my problem......I remember the early treo's were great and then .................very similar to this 5 phones later and still in palm black abyss. So you see there are others who are having these problems they probably just like me do not want to spend another freaking second talking about this phone.

  • Losing internet service every 2 hours

    I've been having trouble with this ever since I got my FiOS installed.. It seems that every 2 hours on the dot, my connection drops for roughly 20 seconds and disconnects me from anything that I'm connected to. It appears to be caused by the router renewing the DHCP lease every 120 minutes.. Is there anyway I can prevent the router from disconnection from the internet when it tries to renew the DHCP?

    hey otter, i had the same issue that you did with the router, very frustrating ...
    what worked for me, and allowed me to maintain a stable connection was disabling uPnP on the router ... it was conflicting with some of my peripherals (router would DC when i would scan docs to the computer, etc) ...
    hope this helps!

  • Keep losing BB service on 3G

    Hi
    I quite often lose this when running via 3G. I am on Virgin UK. It set up an apn on inserting the SIM and it worked over the weekend fine.
    Today it wouldn't connect despite restarts etc.
    I have just fixed it by changing the apn from goto.virginmobile.uk to a.a.com thinking it would disconnect 3G and I could try inputting it again from scracth.
    Rather than it stop working, it started working!!!
    Any ideas for this and a better permanent fix? Is it Virgin Mobile not being setup for the Z10?
    I'm new to BlackBerry 
    Paul

    Possible reason:
    I get BB at home in Brighton. At work in Burgess Hill I lose BB. May it be because I have roamed onto the Orange signal?

  • Full Service and Palletization

    We just started running a job as full service and I have a question.  One of our business partners says that all full service pieces must be on a pallet.  When I run presort palletization, not all the pieces end up on a pallet, because there aren't enough trays to create a pallet.  The biggest problem is the pieces that fall to local entry where we may have several thousand pieces in presorted trays, but no pallet.
    I tried setting the minimum pallet size to 1 for the local entry point, but that didn't change anything.  If I remove the automated and regular letter schemes from the presort (with no palletization) then all those pieces fall to single piece rate with will cost us in postage and not be acceptable to the client.
    Any ideas on how I should set this up to deal with non-palletized pieces in trays without losing full service?
    Thanks.

    I have heard this question more than once, and I keep going back to the Guide to Intelligent Mail Letters and Flats published on the USPS RIBBS website.  I have copied some text below describing the requirements of Full-Service IMb mailings.  There is nothing in the text which requires pieces to be palletized.
    The Full-Service Option
    Full-Service option mailings require a unique Intelligent Mail barcode on each mailpiece (see Section 2.4). The
    Full-Service option IMb must include the same CASS-certified delivery-point ZIP Code information used to
    populate the current POSTNET barcode, a USPS-assigned Mailer ID, the class of mail indicated in a Full-Service
    option Service Type Identifier, and the optional endorsement line information in the Barcode Identifier if an
    optional endorsement is printed on a flat-sized mailpiece.
    The Full-Service IMb's Serial Number field, in conjunction with the mail class and the Mailer ID, is used to make
    the IMb unique. Unique, Full-Service IMbs should not be reused for a minimum of 45 days.
    Additional Full-Service requirements include the use of an approved electronic method to transmit mailing
    documentation to the USPS. This documentation describes, among other things, how mailpieces are linked to
    trays or sacks (if mail is prepared using trays or sacks), and to containers (if mail is palletized or placed in other
    containers). The electronic documentation must match the preparation of the mail to qualify for the Full-Service
    option.
    The FAST system will be used, as defined in the Customer/Supplier Agreement (CSA), to create appointments for
    origin-entered mail that is transported by the mailer. The FAST system is also used to schedule appointments for
    drop shipment mailings (except for mailings entered at a DDU), which typically do not require a CSA.
    Full-Service option requirements also include a unique Intelligent Mail tray barcode (IMtb), when mail is prepared
    using trays or sacks, on each handling-unit label, and a unique Intelligent Mail container barcode (IMcb) on labels
    placed on pallets or other containers when mail is containerized in that manner.
    The guide can be found at http://ribbs.usps.gov/intelligentmail_guides/documents/tech_guides/GuidetoIntelligentMailLettersandFlats.pdf
    May I ask your source for the "palletization requirement" for Full-Service IMb?  We have talked to several people at the USPS and none of them have told us that Full-Service IMb requires palletization.
    - Glenn

  • Bionic to Razr, replace first Razr and sim, with new Razr and Sim.  All service loss.

    I would like to say that the era of smartphones has been both fun and expensive.  Having computers in our pockets is an amazing breakthough in technology.  I used to have both the Droid, and I also got the Droid 2 when it came out, my next purchase was the Bionic, and that's where my problems started.  The 4g would drop all the time, and it wasn't much of an inconvenience because usually it would come back on if I waited a little bit.  I'm patient most of the time unless I need directions somewhere and then I get a bit angry.  So I researched on the web and I tried all the tips and tricks and other things you can do to see if you can fix the problem to no avail.  I would check in from time to time and found out that it was a known issue, so I called up and just like I heard I could get a free replacement phone the Droid Razr which had come out directly after the Bionic.  I got it in the mail and it worked for about 20 minutes before losing all service(not just the 4g), and this happened every 5 to 10 minutes for the next couple days, so I got drunk and planned on yelling at some poor verizon person, but she was so nice and offered to send me out a new phone, so I decided to be nice back.  She said I should make sure to send in my Bionic so I didn't get charged, but I said how about I send in the ****** that you sent me instead and keep my original.  I got the new one a couple days later, and it seemed to be ok for the first few days, maybe I was just lucky not to notice.  It does the same thing as the other one, and I am about to lose my patience.  I want a solution to my problem.  Is there anyone out there in Verizonland that can give me a solution that doesn't involve (because I have already done all these things multiple times) resetting the phone to factory default, clearing the cache, the motorola reconnect app, power cycling the phone by holding the power and volume down keys, or as i mentioned above getting a new (used and probably sent back in because of the same problem) phone and sim card?

    Same as before, the service drops to zero, has the universal no sign over the bars.  The screen kicks on and it starts to build up to 4 bars, then white 4g, blue 4g, and it does that oh I would say every 10-30 minutes or so when I have had it sitting there while on my computer.  If I am on Netflix watching stuff it doesn't drop, like once I have engaged the 4g and am using it I don't have problems with it.  I have had a couple of calls drop, and in a text conversation it has just dropped to zero while I was typing a response.  I am not sure about maps, it's usually off when I want to try to find something so I have to wait for it to kick in to give me a route, which is by far the most irritating thing in the world when you are in unfamiliar territory.

  • Verizon Shutting Rural DSL Services Down--FCC Complaints

    I have a home in the rural high-desert area of California. The DSL offered was old Fujitsu frame-relay equipment. The equipment is failing and Verizon does’ not plan on repairing, replacing, or upgrading the equipment. So hundreds of people in the area are losing service. This shut down is an extremely difficult situation for those residents who have depended on the DSL service while working from home.
    I know for a fact that the Fujitsu frame relay equipment is being used in other parts of the country, so does the FCC, yet they are telling me it’s not available! How much does it really cost Verizon to ship some of the unused equipment from one part of the country of the other, not much! After 7 years of service, and thousands of dollars spent on my part verizon just decides to end my service and that of hundreds of other customers so they can avoid spending perhaps a couple of thousand dollars--just so a high level manager can look good keeping their department under budget!
    There are no other services available for the area. Dealing with the extremely poor Verizon customer service phone technicians has been exceptionally difficult. None of Verizon’s departments seem to be in communication with one another. The old Fujitsu frame-relay equipment requires a Fujitsu modem; I cannot begin to count the number of times the Philippine, India, and even so-called higher level technicians in the United States have tried to tell me I am using the wrong modem. A new modem even showed up in the mail last week!  I have spent hours on the phone trying to resolve this problem, which usually starts with a long revolving series prompts, then a technician telling me we need to reboot the modem, and then hours of them trying to tell me it’s the wrong modem. I do not see how such a large company can allow such poor and low quality service to happen. With land-line phone service on the way out, I would think they would reconsider their poor customer service tactics to retain customers.
    I will be filing two complaints, one with the Better Business Bureau and one with the FCC for not delivering services as promised and shutting down the service with notice or attempting to repair it. I am curious, how has the BBB and FCC helped resolve their Verizon service issues?

    Our community of Landers and Flamingo Heights in California has completely lost Verizon broadband service, the community was serviced by older Fujitsu frame relay equipment. Losing the service wouldn’t matter so much, but for some of us there are no alternative services available. I have never been told in an official communication or letter that once the Fujitsu equipment goes bad Verizon will no longer offer broadband service in the area. Verizon just let the equipment go bad and waited for us to call in. This maneuver by Verizon leaves hundreds of customers without broadband. We are stunned that Verizon would just stop the service we depend on-the families that work from home and need broadband to make a living, the children who depend on the internet for their education, and the senior citizens you use email to communicate with their families. Do these people not matter?
    We can only assume this is a cost effective money saving tactic for Verizon, but what’s amazing is how Verizon claims to support small communities and children through millions of dollars in philanthropic donations. Just one child matters, and there are numerous children in this area! Their political contributions are even more staggering, which total millions of dollars. You can see how much Verizon would rather support a politician who may or may not win than stand behind the current customers. In addition to millions spent on sporting events, stadiums, and corporate executive perks. To move one piece of equipment from one part of the country to another costs little in comparison. This goes against the Verizon credo and broadband commitment.
    http://responsibility.verizon.com/shared-success#service
    http://responsibility.verizon.com/assets/docs/VZ_Political_Contributions_Jan_June_2013.pdf
    http://responsibility.verizon.com/broadband-commitment
    http://responsibility.verizon.com/verizon-credo
    “We are pleased to share our Code of Conduct (2.21 MB .pdf) to let our customers and business partners know that integrity and respect serve as the overarching principles for how Verizon conducts its business. Our goal is to be the most respected brand in communications by making and keeping promises to our customers, our communities, our shareholders, and our employees. The Verizon Commitment and Values, along with our Credo, which appear on the inside cover of our Code of Conduct, highlights these commitments.”
    My ultimate goal is to have our old copper-wire broadband service restored—upgrading to FIOS would be nice, but it’s not a necessity and not the end result we are looking for. It seems me that Verizon would stand behind their customers and continue offer them service, especially in these tough economic times. I am speaking for all the elderly citizens who can no longer communicate and enjoy email from family, the people who can no longer work from home, and the children who can no longer supplement their education through research on the internet in this area.
    If you have lost your broadband service in the area and would like to get it back, please contact Verizon and voice your concern. Other alternatives are filling a BBB and FCC compliant, because Verizon has not stood behind the service they had promised us when we signed up for it. Please do not cancel your broadband service as Verizon representatives are requesting. Verizon will never give broadband back to you and they will not resolve the problem if everyone is cancelled, simply request a credit through billing.
    www.verizon.com

Maybe you are looking for