My IP address is block and getting no response from AT&T

I am a small business owner, website developer and hosting provider.  I have a VPS server with a handful of websites on it.  The IP address of this server is being blocked by AT&T. My clients are unable to send mail to anyone with a sbcglobal.net email address. After careful investigation by myself and my tech support team I have found nothing suspicious.  I have checked all logs, all user accounts and removed all forwarding email accounts.   I have visited the designated http://att.net/blocks page and have submitted the unblock request on 3 separate occasions over the last month and have received no response or resolution from AT&T. I have also emailed [email protected] and received no response. I called the main support line at AT&T and was transfered to the website department who then transfered me to the email department who told me I had the wrong department.   How can I get this resolved???   Any help would be greatly appreciated.

Possibly you're using some old software that is trying to check for updates on a site that no longer exists and isn't handling it correctly? I dunno, that's just a guess. To make sure the traffic isn't coming from your machine, you could install [Little Snitch|http://www.obdev.at/products/littlesnitch> to monitor outgoing connections.
As for your wireless network, if it's secured, it's unlikely to be neighbors. (The WEP/WPA2 thing does not sound right to me... it's got to be either one or the other. Dunno what to say about that.) To verify, try opening AirPort Utility, open your base station, click Advanced, then Statistics, then the Logs and Statistics button. In the new window, click the DHCP Clients tab... this will show you what clients are currently connected. Keep an eye on it from time to time to make sure nobody's on that shouldn't be. (Note that things like iPod Touches or iPhones can show up here if you've configured them to connect to your network, and may show up even if they're turned off.)

Similar Messages

  • Hello . I'd like to buy an iPhone 5S Space Gray 64GB and get free shipping from the USA to Russa but the problem is I don't know about wireless service plan . What should I choose for Russian wirelesses ? Does T-Mobile work in Russia ? Please , help me

    Hello . I'd like to buy an iPhone 5S Space Gray 64GB and get free shipping from the USA to Russa but the problem is I don't know about wireless service plan . What should I choose for Russian wirelesses ? Does T-Mobile work in Russia ? Please , help me
    Sorry , but product is iPhone 5S

    You can't buy from the Apple store online in the US because it is country specific and you firstly need a US credit card and then a US address and they won't ship outside of the US so you can't.
    No Apple online store will ship outside the coutry.
    If you want an iPhone, then you'll have to order via the Russian Apple store online if there is one, or you'll have to wait until it is released in your own country or go and buy one in Europe.

  • I have just recently installed ios6 to my iPad 3 an iPhone 4 my iPhone works fine but my iPad is not working at all I can not get a response from it, it seemed to download an then install but did not reset and turn on and will not turn on HELP!! Withdrawa

    I have just recently installed ios6 to my iPad 3 an iPhone 4 my iPhone works fine but my iPad is not working at all I can not get a response from it, it seemed to download an then install but did not reset and turn on and will not turn on HELP!! Withdrawal or what!! Lol

    Hi there,
    Firstly, try a hard reset. Hold the sleep/wake and home buttons together until the Apple logo appears.
    If this doesn't work, try restoring your device. Put it in recovery mode if iTunes doesn't recognise it, and restore it from there. I have linked to instructions below.
    Recovery Mode and Restore - Apple
    Let me know if this helps,
    Nathan

  • I bought a book on itunes on my pc. I want the book on my ipad.  When I plugged in my ipad to sync it moved all my apps to my pc - useless. how do i get my apps back on my ipad and get the book from my computer to my ipad?

    I bought a book on itunes on my pc. I want the book on my ipad.  When I plugged in my ipad to sync it moved all my apps to my pc - useless. how do i get my apps back on my ipad and get the book from my computer to my ipad?

    Instructions on syncing your iPad can be found here:
    http://support.apple.com/kb/PH12311
    and in the accompanying documents linked from that page. Syncing your iPad with iTunes copies items, it doesn't move them. The only way apps would be actually removed from your iPad during syncing is if you had iTunes set to remove them on syncing, so check the appropriate settings in iTunes, set the book to sync as well, and then sync the iPad again.
    Regards.

  • How to send a request and get a response through xml

    How to send a request and get a response through xml files?

    This is the code that works for me. Hope you find it useful.
         public static String sendHttpGetRequest(String endpoint, String requestParameters){
              String result = null;
              // Send a GET request to the servlet
              try{
                   // Send data
                   String urlStr = endpoint;
                   if (requestParameters != null && requestParameters.length () > 0){
                        urlStr += "?" + requestParameters;
                   URL url = new URL(urlStr);
                   HttpURLConnection conn = (HttpURLConnection) url.openConnection();
                   conn.setRequestProperty("Accept", "application/xml");
                   // Get the response
                   BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   StringBuffer sb = new StringBuffer();
                   String line;
                   while ((line = rd.readLine()) != null){
                        sb.append(line);
                   rd.close();
                   result = sb.toString();
              } catch (Exception e){
                   e.printStackTrace();
              return result;
         }

  • IDoc to webservice and get the response back into another IDoc.

    Hi guys
    We have a scenario where we need to send an IDoc to webservice and get the response back into another IDoc.
    Questions:
    1. Is this scenario possible without a BPM? or do we need to use BPM (Sync-Async bridge).
    2. Is there a Async to Sync bridge in BPM?
    3. How do I use this bridge in my scenario and customize it?
    4. If not possible, provide me the related docs using BPM for the same scenario.
    Appreciate your quick response
    Regards
    Naidu

    Hi,
    this link may help u............,
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1134. [original link is broken] [original link is broken] [original link is broken]
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403. [original link is broken] [original link is broken] [original link is broken]
    Regards,
    Azeez khan.

  • How to send data to another site, get response, redirect and get new response

    Dear all,
    I've to write a Java EE application that have to become an interface to a payment platform. The protocol require to send a POST string containing some information (including an error and response page) to an external host, get the response and redirect the user to another host using the previous response. When the user ends the transaction the host redirect the user to my error or response page.
    For the moment my user access to my application using glassfish REALM authentication. After that I write the following code:
    public void paymentPrepare() throws UnsupportedEncodingException, IOException {
       String postUrl = "https://test.payment.test/init/http";
       HttpPost postRequest = new HttpPost(postUrl);
       String id = "99999999";
       String password = "99999999";
       String action = "4";
       String amt = "1.00";
       String currencycode = "978";
       String langid = "ENG";
       String responseurl = "http://myhost:8080/EMBOWorkshop/secure/response.xhtml";
       String errorurl = "http://myhost:8080/EMBOWorkshop/secure/error.xhtml";
      trackid = "TRCK0001";
      udf1 = "Descrizione";
       StringEntity postParamsEntity = new StringEntity("id=" + id
       + "&password=" + password
       + "&action=" + action
       + "&amt=" + amt
       + "&currencycode=" + currencycode
       + "&langid=" + langid
       + "&responseurl=" + responseurl
       + "&errorurl" + errorurl
       + "&trackid" + trackid
       + "&udf1" + udf1);
      postParamsEntity.setContentType("application/x-www-form-urlencoded");
      postRequest.setEntity(postParamsEntity);
       DefaultHttpClient httpClient = new DefaultHttpClient();
       // Execute the HTTP POST
       System.out.println("Executing HTTP Post...\n");
       HttpResponse response = httpClient.execute(postRequest);
       // Check the HTTP status of the post.
       if (response.getStatusLine().getStatusCode() != 200 && response.getStatusLine().getStatusCode() != 201) {
       throw new RuntimeException("Failed: HTTP error code: "
       + response.getStatusLine().getStatusCode());
       // Create a reader to read in the HTTP post results.
       BufferedReader br = new BufferedReader(
       new InputStreamReader((response.getEntity().getContent())));
       // Read in all of the post results into a String.
       String output = "";
       Boolean keepGoing = true;
       while (keepGoing) {
       String currentLine = br.readLine();
       if (currentLine ==
    null) {
      keepGoing = false;
       } else {
      output += currentLine;
       System.out.println("Raw string result: \n" + output);
    The previous code works fine. I receive the response. But now I don't know how to continue. How can redirect the user to another site, and when the payment is finished, receive the response? Another question is, the user authenticate himself to access to the application. When the user will redirect to an external site, the glassfish session permits to get the response from the other host without require a new authentication?
    For the moment I don't know how to redirect the user, but I tried to write this method to obtain the last response:
      public void getResponse(HttpServletRequest request, HttpServletResponse response) {
      paymentId = request.getParameter("paymentid");
      result = request.getParameter("result");
      auth = request.getParameter("auth");
       ref = request.getParameter("ref");
      traind = request.getParameter("tranid");
      trackid = request.getParameter("trackid");
      udf1 = request.getParameter("udf1");
      responsecode = request.getParameter("responsecode");
    Is it correct?
    Thanks

    Now I'm able to redirect the user to the other page:
    ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
    externalContext.redirect("http://stackoverflow.com");
    Now the problem is: once the user has finished to pay, the other site redirect the user to my site using one of the two JSF page I prepared for error or response like the following:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <ui:composition xmlns:ui="http://java.sun.com/jsf/facelets"
                    template="./index.xhtml"
                    xmlns:h="http://java.sun.com/jsf/html"
                    xmlns:f="http://java.sun.com/jsf/core"
                    xmlns:rich="http://richfaces.org/rich"
                    xmlns:a4j="http://richfaces.org/a4j"
                    xmlns="http://www.w3.org/1999/xhtml"
                    xmlns:fn="http://java.sun.com/jsp/jstl/functions"
                    >
        <ui:define name="content">
            <center>
               An error occurred during  transaction
                #{participantBean.auth}<br />
                #{participantBean.responsecode}
            </center>
      </ui:define>
    </ui:composition>
    So, how can I get the GET parameters that the other host sent to me during the redirection?

  • EVERY TIME SAFARI OPENS APPEARS TO CALL 1-800-996-8348, AND GET LOCKED, THEN FROM (510)344-6458 CALLS SOMEONE DANIEL FROM TECNICAL SUPPOT FROM MAC, APPLE.....ITS A LIE, ITS A FRAUD TO FORCE ME TO BUY MACKEEPER SOFTWARE. ANYBODY CAN HELP ME?

    HOW I IDENTIFY THE PROGRAM INSTALED BY MACKEEPER IN MY SAFARY AND DELETE IT?
      THE TELEPHONE THET APPEARS IN MY COMPUTER EVERITIME I TRY TO OPEN SAFARI IS:  1-800-996-8348, AND GET LOCKED, THEN FROM (510)344-6458 CALLS SOMEONE DANIEL, FROM TECNICAL SUPPORT APPLE FOR MACS......AND  WANT TO FORCE ME TO BUY A PRODUCT (MACKEEPER) SO I CAN SEE MY SAFARI?
    HELP PLEASE

    JEANETTE7209 wrote:
    YEs I call the number and they told me how to unblock the safari, then show me i had a lot of virus and need to buy MACKEEPER UrgENTLY AND ZIPCLOUD, the thing is that they say work from apple and it is why people trust.
    Those were all lies. They are scammers, and were trying to scare you into believing that you were infected with "viruses" so that you would pay them to fix the nonexistent problem.
    Did you give them remote access to your system at any point? If so, your Mac should be considered compromised at this point, so you'll need to erase the hard drive and reinstall everything from scratch. For more information, see:
    Tech support scam pop-ups
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com.)

  • I want to run automation test in multiple device say iphone and ipad or two iphone device Is it possible.I have done automation testing using UIAutomation and get it running from iphone device

    I want to run automation test in multiple device say iphone and ipad or two iphone device Is it possible.I have done automation testing using UIAutomation and get it running from iphone device

    plzzz reply to this question as soon as possible

  • I bought and was charged for bingo chips in bingo bash and have not received the chips.. I can't get a response from bingo bash! How do I get my chips?

    I bought and was charged for bingo chips in bingo bash and have not received the chips.. I can't get a response from bingo bash! How do I get my chips?

    Welcome to the Apple Support Communities
    If I have understood you properly, to do that, you have to create a new administrator user with your name and for your uses. Follow these steps:
    1. Open System Preferences > Users & Groups, and press the + button to create a new administrator account.
    2. When you have finished creating that user, open  > Log Out, and log in your new user.
    3. Open System Preferences > Users & Groups, select the old user and press the - button to remove the user. If you want, you can select the option to remove the Home folder of this user, so you will only have the Home folder for your account

  • QUESTION - I have just purchased a mac and get my contacts from my iphone 4 onto iCloud.  In settings groups all my contacts fall under hotmail. HELP

    I have just purchased a mac and get my contacts from my iphone 4 onto iCloud.  In settings>groups>all my contacts fall under hotmail. HELPQuestion

    Do you have iCloud configured on the iPhone and on the MacBook Air? If not, you'll want to do that for seamless transferring of contacts between the two devices. If you have an iCloud account already, set it up on the phone first. If you do not have an iCloud account I'd recommend signing up for one on the computer first as it's easier to navigate the setup screens. Once iCloud is setup on both machines the contacts will automatically sync (faster if the iPhone is on wireless).
    Regarding email, you'll need to ensure the email on the iPhone is configured for IMAP/Exchange. You'll then want to configure that same account in Apple Mail (or whatever email program you intend to use on the MacBook Air).

  • Unable to get the response from dynamic partnerlink

    Hi
    I used dynamic partnerlink, in this i am able to invoke the services dynamcially but i am unable to get the response from the services which i had invoked dynamically. In my dynamic partnerlink wsdl i had included callback binding and call back service in the wsdl you can see them below
    <binding name="LoanServiceCallbackBinding" type="tns:LoanServiceCallback">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="onResult">
    <soap:operation soapAction="onResult" style="document"/>
    <input>
    <soap:header message="tns:RelatesToHeader" part="RelatesTo" use="literal" required="false"/>
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>
    <service name="LoanServiceCallbackService">
    <port name="LoanServiceCallbackPort" binding="tns:LoanServiceCallbackBinding">
    <soap:address location="http://openuri.org"/>
    </port>
    </service>
    please help me on this
    thanks
    Srikanth

    Hi, thanks for the input
    Actually My partnerLink had two messageTypes one for Input message request and the other for the Output message request and for the input message i had used the operation as initiate also for the output messsage type operation as result.For both of them binding is defined.
    With these am passing the values from myBPELl to the service which am nvoking dynamically but unable to capture the response the variables are local to myBPEL.

  • How do you get a RESPONSE from Verizon?

    How does one get a response from Verizon?  Here's my situation...
    Given the amount of trouble that I have had with a recent order, you would think that I was trying to land a 747 jet on my roof.  In reality, all I was aiming to do was to cancel the $19.99 per month phone service that I never used.  I do not even own a phone, for that matter.  I also had enhanced high speed Internet, and I wanted to retain the high speed Internet.  A few days before January 13, 2012, I called Verizon and spoke to the 1st sales representative, who ensured me that it was no problem to cancel the phone service and yet retain the high speed Internet for the same monthly price.  24 hours later, my high speed DSL service was no longer functioning.  I will try to briefly explain the disastrous customer service that ensued. 
    The first several phone calls to Verizon were not productive as I was transferred to the wrong department, and then at least one of my phone calls was dropped by the Verizon server.  The representative did not call me back.  I finally got in touch with a technical support representative, the 2nd Verizon representative, who informed me that the high speed Internet had been turned off and that I had to speak to a sales representative to solve the issue.  Another sales representative, the 3rd Verizon representative, informed me that the 1st representative had cancelled my phone line, and thus cancelled all of my services.  Great.  The 3rd representative informed me that he was absolutely capable of handling the problem and that he would simply add a new order for high speed Internet, which was to be activated the next morning.  The next morning came and went, and guess what?  No Internet.  I called again.  The 4th Verizon representative told me that everything that had been done previously was incorrect and that the sales department is not capable of making such changes.  She told me that she could not help me and that my claim had to be submitted to a different department, which has the authority to un-do all of the previous changes.  She told me that I would receive a call back the same day to resolve the issue.  Given my previous experiences with Verizon, I was confident that I would not, in fact, receive a call back and so I asked her how I could get transferred to this department, if I needed to call again.  She said that I could not be transferred.  Okay.  So then I asked her what to ask for so that next time I called, I could be transferred to the correct department without dealing with yet another sales representative who gives me yet a different story.  She informed me that she could not provide that information to customers.  The Department That Shall Not Be Named (and that I cannot contact) did not call me, and I was not surprised.  Unfortunately, I did not know how to go about contacting them, because, as I was told, customers aren’t allowed to do that. 
    The 6th phone call to Verizon was dropped by the Verizon server.  The 7th phone call to Verizon went to the 5th Verizon representative, a sales associate who placed us on hold for the first 15 minutes only to inform us that she could not find any record of our Internet service.  What the heck was she doing, checking her Facebook account?  She finally returns, puts us on another extended hold, and then adamantly tells us that we need to speak with technical support, which, if you recall, was the first Verizon party that I spoke at the beginning of this debacle.  The 5th  representative transfers me again to technical support.  Of course, the technical support personnel, the 6th Verizon representative said what the first one did, that the account was inactive and that we needed to talk to the sales department.  My husband was on the phone at this point because I was DONE.  When the 6th technical support representative tried to transfer him back to the sales department, my husband insisted that the 6th technical support representative remain on the line while we spoke to yet another sales representative, the 7th Verizon representative.  The 6th technical support representative patiently waited with us while we sat in yet another long queue to speak with a member of the sales department. 
    The 7th sale representative, from the retention department based out of New Jersey, found that all previous orders had been set up erroneously.  She cancelled the old orders and reinstated a completely new order.  The DSL began working a few days later.  MAGIC.  She then left me a voicemail message saying that she would eliminate the activation and shipping fee (duh) as I never canceled the account to begin with and as I already had the equipment.  She also applied a coupon to reduce the price to around $30 per month, assured for the next 2 years.  I was relieved. 
    You can imagine our frustration then when we received the bill for $79 on February 6, 2012, which included a much higher monthly rate (around $45) and the shipping and activation fee of $19.99 that we were assured we would not pay. Again, nothing was shipped to us because we already had the equipment.
    Our next phone call to Verizon landed us with a guy, the 8th Verizon representative, who had no intention of helping us.  According to him, there was no record of these wrongs, and despite the fact that we had an old account number and three order numbers that were screwed up, he did not deem that there was enough evidence to change our monthly bill.  (Unfortunately, the 7th Verizon representative did not make notes or appropriately document the situation on the new account.)  The 8th Verizon representative then had the audacity to comment that we could be lying to him, yet he was unwilling to view the evidence that we could have presented.  Instead, he suggested that we call tech support again and try to go through the same process to get connected to the mysterious “retention department” which he knew nothing about. 
    At this point, I was beyond fed up.  The attitude of the 8th Verizon representative put me over the edge.  I filed a complaint with the Better Business Bureau (BBB) with an abbreviated version of this story.  I did not file the complaint to get back at Verizon.  Instead, I filed the complaint because I knew that another phone call to Verizon would be useless.  I’ve been dealing with this issue for over a month, and I’m sick of it.  I have better things to do with my time, believe it or not, and this situation has resulted in a significantly waste of my time over what, in my opinion, was a very simple issue to resolve. 
    The BBB processed the complaint and I was contacted last Friday afternoon by a Verizon representative (the 9th) who said that she was looking into the matter and that she would respond to me within two to three business days.  Well, it’s almost the end of the week, and I have received no response.  Again, after all of this, how could I be surprised? 
    I have been a Verizon customer, wireless and residential, for as long as I can remember, but I am reaching the point of outrage.  This situation is truly unacceptable. 
    You would think that, in 2012, with all of the technology available to us and the fact that Verizon is a COMMUNICATIONS COMPANY, that at least Verizon employees would be able to make a basic change to an existing order and that at least one out of 9 Verizon representatives would be able to solve this issue in a span of over four weeks.  Think again. 
    How does one get a response from Verizon? 

    dougiedc wrote:
    It boggles the mind.  The Verizon store on L Street downtown Washington, D.C. cannot access my Verizon account.  They can only sell cellphones then it's up to me to contact Verizon on my own to get the hook up. I even asked "Are you Verizon employes?  Is this a vendor store or is it really a Verizon owned and operated store?"  The answer "Yes, we are Verizon employes, yes this is a Verizon owned and operated store" ...
    Yes, it indeed boggles the mind.  I'm of course referring to the fact that your post concerns Verizon Wireless products and services.  This forum is dedicated exclusively to Verizon Communications services.   As you probably know, Verizon Wireless and Verizon Communications operate as separate companies.
    If you need help for a Verizon wireless product or service, it's best to direct questions to the Verizon Wireless forums.  You can reach them by clicking on "Wireless" (either here or at the top of the page).
    Good luck and I sincerely hope you get your issue resolved.

  • Can't get any response from the Tuner - is it broken?

    I'm happily chugging away through my new David Nahmani tutorials and I've discovered that I can get no response from the Tuner. The controls in the window appear to be working, but no line appears in the meter and flat lines appear in the center for pitch and octave. The channel strip indicates normal sound input and variation. I don't have any trouble recording (so far anyway). Is there anything I'm not aware of that could cause this?

    Thanks for the reply, Rob. I'm just trying to tune a wind instrument through the built-in mic on my MacBook Pro, but I discovered the answer not too long after submitting the question. As I said, I'm trying to work through the Nahmani Logic Pro and Logic Express 8 book. I've been trying to be very meticulous about the installation and the setup for the tutorials, but I guess I inadvertently made settings changes that interfered with the Tuner, because choosing Logic Express > Preferences > Initialize All Except Key Commands allowed the Tuner to work the way I expected. I assumed the problem must have been bus related after I saw the Tuner respond to internal playback after modifying some bus settings, so I executed that command and all was well (uh, I should probably change that to "most was well", but at least the Tuner is working now). Thanks again.

  • Can't get any response from HttpsURLConnection

    sorry, i've reformat the code here again
    Deal frens,
    Currently i'm doing a code to get a response from https link in my servlet. I don't know where the lack of my coding, but i don't get any response from the server when i execute my code. here is my code
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.net.ssl.*;
    public class Servlet1 extends HttpServlet {
      private static final String CONTENT_TYPE = "text/html";
      //Initialize global variables
      public void init() throws ServletException {
      //Process the HTTP Get request
      public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setContentType(CONTENT_TYPE);
        PrintWriter out = response.getWriter();
        String authentURL = "https://server1.tst.cvs/servlet/RequestHandler?login=admin&pwd=admin&method=viewUser&username=00032a0183db";
        out.println("<html>");
        out.println("<head><title>Servlet1</title></head>");
        URL url = new URL(authentURL);
        HttpsURLConnection URLconn = (HttpsURLConnection) url.openConnection();
       // HttpsURLConnection conn = null;
        URLconn.setDoInput(true);
        URLconn.setDoOutput(true);
        URLconn.setRequestMethod("GET");
        URLconn.setUseCaches(false);
        OutputStream authOut = URLconn.getOutputStream();
        BufferedReader reader = new BufferedReader(new InputStreamReader(URLconn.getInputStream()));
        out.println("<body bgcolor=\"#ffffff\">");
        out.println("<p>The servlet has received a GET. This is the reply.</p>");
        out.println("output"+authOut);
        out.println("output2"+URLconn.getContent().toString());
        out.println("output3"+reader);
        out.println("</body></html>");
      //Clean up resources
      public void destroy() {
    } the result suppose i get when i execute the script is..
    userdata=234&uname=00032a0183db&concurrentlogins=1
    i don't have any problem when i paste the link
    https://server1.tst.cvs/servlet/RequestHandler?login=admin&pwd=admin&method=viewUser&username=00032a0183db
    and i able to get the response
    userdata=234&uname=00032a0183db&concurrentlogins=1
    please..please help..what is wrong with my code

    YOU DON'T READ ANYTHING IN YOUR CURRENT CODE !!!
    If you use a BufferedReader, then read the input stream via readLine() method.
    Default implementation of getContent() method is not generally usable for getting your desired "content". Experiment that.

Maybe you are looking for

  • Can't sync outlook data to mac apps, very disappointed in apple!!

    This is just another issue that lion seems to have brought on.  Don't even get me started with photostream being a POS and the cloud a clunky mess... this might get a little long winded so i appologize. so here is my question/problem, as a PC user mo

  • Temp folder was not set for RTFStringbuffer Error

    Hi, We are using CR XI 11.0.0.895 and CR XI JRC is been used to generate the reports in PDF and RTF format. While generating report of more than 1000 pages in RTF format throws the below mentioned exception temp folder was not set for RTFStringbuffer

  • Color Range doesn't work correctly with latest update

    as the title suggests, I'm having difficulty using the color range tool properly. It worked perfect just before the most recent update (13.1) and now works very strangely. It seems to select whatever color it feels like except the one I need. And the

  • Help with 64-bit download

    I've never had ITunes before so I am downloading for Widows 7. It downloads, but when I plug the Iphone 3GS into the computer the error says required software not installed. I uninstalled and made sure I downloaded the 64-bit version and it's still n

  • The latest software updates for Adobe Reader, Acrobat , AI cause PDF import to fail for some documents

    Reader version: 11.0.06 Acrobat version: 11.0.10 Illustrator Version 18.1.1 Attached is sample PDF file.  Previous versions of the software, and current versions without any updates,  open this file just fine. Shared Files - Acrobat.com link to scree