Return code 471 is returned from the server while saving a crystal report

Hi All,
The return code 471 is returned from the server while saving a crystal report.
Could some one give me a solution how to overcome this problem and to save my crystal report.
Thanks
Jiten

Hi Jitendra,
request you to provide the complete error message along with the work-flow to reproduce the error and the version of both the Crystal Reports Designer and Enterprisee installed on the server.
Regards,
Jayendra.

Similar Messages

  • How to release the sunidm project from the server while debugging

    Hello,
    I am using NetBean to work on the SunIDM project. Each time I have to restart NetBean if I want to run/debug the project. I have tried to use GlassFish and Tomcat, but both server somehow still holding the project even I stopped debugging in NetBean. Is there a good way to have the server release the project so I don't have to restart NetBean? It make my debugging time so slow.
    Thank you so much.

    Hi,
    I you have ur request no, please goto se09 or se10,
    request status must be MODIFABLE,
    -> locate ur request no, release by clicking ur request and then clicking RELASE DIRECT truck in application tool bar.
    -> click or refresh
    -> Login to ur production server
    -> goto STMS_IMPORT click on the PRD server
    -> Locate ur request,
    ->Select using the select SELECT with arrow in application tool bar
    ->then click on the request IMPORT REQUEST truck or CTRL + F11.
    regards,
    Prabhu
    reward if it is helpful.

  • Downloading image files from the server and saving them on local disk

    Hello,
    In an AIR app. i want to download number of image files,i have paths
    in an array.I am looping through the array and using URLLoader.Format
    is BINARY,now on the complete event of one file i dont know how to
    store the file on the disk as exactly which file has dispatched the
    event is not known.Please point out if my approach is incorrect or if
    any other ideas -plz share.

    Try the following:
    var imgURLs:Array = new Array();
    imgURLs[0] = "http://www.adobe.com/ubi/globalnav/include/adobe-lq.png";
    imgURLs[1] = "http://www.adobe.com/images/shared/download_buttons/get_adobe_air.png";
    var urlRequests:Array = new Array();
    var urlLoaders:Array = [];
    for (var i:int = 0; i < imgURLs.length; i++)
        loadURL(i);
    function loadURL(i:int):void
        var urlReq:URLRequest = new URLRequest(imgURLs[i]);
        urlRequests[i] = urlReq;
        var urlLoader:URLLoader = new URLLoader(urlReq);
        urlLoader.dataFormat = URLLoaderDataFormat.BINARY;
        urlLoader.addEventListener(Event.COMPLETE,                
                    function (event:Event):void
                        var path:String = urlReq.url;
                        var urlLoader:URLLoader = event.target as URLLoader;
                        saveFileData(path, urlLoader.data);
    function saveFileData(path:String, data:ByteArray):void
        trace(path, data.bytesAvailable);
        // I'll let you write the code to save the data to a file path, based on the URL.
    You could also create a class that includes the event handler function and includes the code for loading the data. Then create a new instance of that class for each URL.

  • How to download a text file from the server

    hi everyone,
    can anyone tell me how to download and read a text file from the server and saved in into resource folder.
    with regards
    pallavi

    its really easy
    To read from server, use something like:
    HttpConnection connector = null;
    InputStream inp_stream = null;
    OutputStream out_stream = null;
    void CloseConnection()
         if(inp_stream!=null)inp_stream.close();
         inp_stream=null;
         if(out_stream!=null)out_stream.close();
         out_stream=null;
         connector.close();
         connector = null;
    public void getResponse(String URL,String params)
      try
         if(connector==null)connector = (HttpConnection)Connector.open(URL);//URL of your text file / php script
         connector.setRequestMethod(HttpConnection.POST);
         connector.setRequestProperty("User-Agent","Profile/MIDP-2.0 Configuration/CLDC-1.1");
         connector.setRequestProperty("content-type", "application/x-www-form-urlencoded");
         //connector.setRequestProperty("charset","windows-1251");
         //*** If you need to send ("arg1=value&arg2=value") arguments to script use this:
         out_stream = connector.openOutputStream();
         byte postmsg[] = params.getBytes();
         out_stream.write(postmsg);
         int rc = connector.getResponseCode();//in any case here connection will be opened & closed
         if (rc != HttpConnection.HTTP_OK)
              CloseConnection();
              throw new IOException("HTTP response code: " + rc);
         inp_stream = connector.openInputStream();
         int pack_len = inp_stream.available();
         byte answ[]=new byte[pack_len];
         inp_stream.read(answ);
         CloseConnection();
         ProcAnswer(answ);//process received data
      catch(Exception ex)
         System.err.println("ERROR IN getResponse(): "+ex);
    } And you can read from resource file like
    public void loadFile(String filename)
        DataInputStream dis = new DataInputStream(getClass().getResourceAsStream("/"+filename));
        String str="";
        try
             while (true)
                ch = dis.read();//read character
                if(ch=='\r')continue;//if file made in windows
                if(ch=='\n' || ch==-1)//end of line or end of file
                    if(str.length()==0)continue;//if empty line
                    //do some thing with "str"
                    if(ch==-1)break;//it was last line
                    str="";//next line
                    continue;
                 str+=(char)ch;
           dis.close();
       catch (Exception e)
           System.err.println("ERROR in loadFile() " + e);
    }Welcome! =)
    Edited by: MorskoyZmey on Aug 14, 2008 3:40 AM

  • Windows Server 2008 x64 and Crystal Reports Server Embedded

    We're attempting to certify our software with Windows Server 2008 x64 and want to know the best way to configure both the server and client of Crystal Reports Server Embedded.  Currently, our software is certified against Windows Server 2003 x86, and we install Crystal Reports Server Embedded XI Release 2 (no SP) on the application server, and we deploy the Crystal Reports .NET merge modules for XI Release 2 (no SP) on any client machines.
    I believe I am correct in stating that no version of Crystal Reports Server Embedded officially supports Windows Server 2008 x64 (based on some other forum postings) until SP1 comes out (which I don't think has happened at this point).  If that is true, we can live with installing the RAS on a separate Windows Server 2003 x64, if that's even possible.  With that said, can we even get our Windows Server 2008 x64 running with the latest Crystal Reports 2008 .NET merge modules?  We've tried many different configurations between CR XI R2 SPs and CR 2008 for both client and server and have very little luck (either it won't install correctly because of x64 or missing .cabs, etc.) on both the client and server side of things.
    Can someone suggest the optimal configuration when Windows Server 2008 x64 is in the mix, noting that we can use a secondary Windows Server 2003 (x64 preferred but can fallback to x86)?  Or do we have to wait for Crystal Reports Server Embedded 2008 SP1 to be released, and if so, does anyone know of the date?
    Thanks,
    Ross Beehler

    CRSE 2008 is a 32 bit app, it works on 64 bit OS's but all parts must also be running in 32 bit mode.

  • SSRS Report Manager error "Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500"

    Hi All,
    I am getting error "Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500"
    in one of my Test Environment when trying to run the SSRS 2012 report from report manager.
    Any clue why it is happening.
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi All,
    Upon investigation found that there was no space (0 Byte is available) in E drive where underlying SQL DB is residing. 
    Once I cleared the space, report started working and above error was not displaying. 
    Thanks Shiven:) If Answer is Helpful, Please Vote

  • An Error Occurred During Report Processing - Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 12019

    When I run the report on production I got the following error message:
    Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the
    request on the server. The status code returned from the server was: 12019
    It hasn’t happen on Dev and Test before.                           
    I googled, The error is described as:
    12019 ERROR_INTERNET_INCORRECT_HANDLE_STATE
    The requested operation cannot be carried out because the
    handle supplied is not in the correct state.
    But I cannot find the solution for that. 
    Has it happend to you before? How to solve that?      

    Same behaviour here, Sharepoint 2013 with SSRS in integrated mode
    Error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status
    code returned from the server was: 12019

  • Sys.webforms.page request manager server error exception:An unknown error occured while processing the request on server. The status code returned from the server was:0

    sys.webforms.page request manager server error exception:An unknown error occured while processing the request on server. The status code returned from the server was:0 We got this response(In firebug console) when we try to click on link (after leave webpage for 3 minuts ideal) which is AJAX based. Please reply ASAP because its urgent.

    Hi SP,
    Please check if the following web config appSettins value settings from SSRS server could fix the issue (Note, back up your original web config file before any modification).
    http://stackoverflow.com/questions/10911610/ssrs-webpage-error-status-code-500
    http://srinivasbn.blogspot.in/2013/09/syswebformspagerequestmanagerservererro.html
    http://connect.microsoft.com/SQLServer/feedback/details/782155/ssrs-2012-failed-with-win32-error-0x03e3
    If you have more questions about the SSRS error logs related to this issue, you can post in the SSRS forum for a better assistance with more experts.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlreportingservices
    Thanks
    We are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Publishing issue: return code 120 was returned from the server.

    Hi
    I'm working on an issue when attempting to publish a crystal report using the sap toolbar. When I try to publish I am seeing the following error
    An error occurred while saving and/or publishing. The return code 120 was returned from the server.
    Does anyone know what this return code means or where I can look it up?
    Thanks
    Daniel

    Hi Alexander,
    Looks like you are encountering the same issue as us. The issue seems to be just being able to save the report to bw.
    We are on sp2 fix pack 2.3 but experienced this behavior on sp2 as well
    We tried a few tests against the server with sp2 installed
    Client machine 1 # older version (just base install)
    Configuration
    Bobj client 12.1.0.882
    crystal reports 2008 sp 1 12.1.0.892
    sap ik 12.1.0.890
    Behavior
    -open a report in bw and preview in crystal - ok
    -open a report preview and save report in bw using same name - ok
    -create a folder under sap bw role using save as dialog box that comes up when selecting save as on the sap toolbar - ok
    -open a report preview and save report under different name - ok
    - create a new report and save ok
    Client machine 2 # same version as server with sp2 installed
    Configuration 2 bobj 3.1 sp2 fix pack 2.3
    Bobj client 12.2.3.467
    crystal reports 2008 sp 1 12.2.3.467
    sap ik 12.2.3.467
    Behavior
    -open a report in bw and preview in crystal - ok
    -open a report preview and save report in bw using same name - ok
    -create a folder under sap bw role using save as dialog box that comes up when selecting save as on the sap toolbar - ok
    -open a report preview and save report under different name I get the 120 error
    - create a new report and save I get the 120 error
    We ran rfc traces, authorization traces and found nothing.
    Our support ticket is with the SAP BW team now and we are waiting to work with them. I will update the thread as we find more information.
    Thanks,
    Daniel

  • Urgent: Failed to get the object returned from the server

    Hi there,
    I'm debugging someone's code which make use of RMI to implement the client/server.
    I found that when the client request the object from the server, the server return the object properly. But on the client side, it returned "java.io.EOFException". Don't know how to resolve it. Pls HELP !!
    Thanks.
    -Maggie
    ==============
    Here is the output:-
    java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
         java.io.EOFException
    java.io.EOFException
         at java.io.DataInputStream.readInt(DataInputStream.java:343)
         at java.io.ObjectInputStream.readInt(ObjectInputStream.java:1980)
         at javax.swing.ImageIcon.readObject(ImageIcon.java:371)
         at java.lang.reflect.Method.invoke(Native Method)
         at java.io.ObjectInputStream.invokeObjectReader(ObjectInputStream.java:2214)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1411)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
         at java.util.Hashtable.readObject(Hashtable.java:792)
         at java.lang.reflect.Method.invoke(Native Method)
         at java.io.ObjectInputStream.invokeObjectReader(ObjectInputStream.java:2214)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1411)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2263)
         at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:2263)
         at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:519)
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1412)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
         at sun.rmi.server.UnicastRef.unmarshalValue(UnicastRef.java:300)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:134)
         at com.ptec.rms.app.olap.modelbuilder.OlapMBServiceImpl_Stub.getPanel(Unknown Source)
         at com.ptec.rms.app.sc.SystemConsoleDesktop.changeService(SystemConsoleDesktop.java:141)

    at least you have the benefit of the code to work with! :)

  • Why do I get a 'Certutil: A referral was returned from the server' error when trying to publish my renewed Offline Root CRL to AD?

    Hi,
    I renewed my Offline Root CA and now trying to publish the CRL to AD on my Sub Issuing CA with the Certutil -dspublish command, however I get a 'Certutil: A referral was returned from the server' error.  Kinda makes sense cause the Offline Root CA is
    not on the network, so then how do I publish my renewed CRL to AD given this?
    Thanks for your help! SdeDot

    Looks like your CRL do not include Active Directory container specification and certutil don't know where to publish the CRL.
    Does root CA define LDAP url in CDP extension? If not, then you don't need to publish CRL in Active Directory, because no one will use it.
    Vadims Podāns, aka PowerShell CryptoGuy
    My weblog: en-us.sysadmins.lv
    PowerShell PKI Module: pspki.codeplex.com
    PowerShell Cmdlet Help Editor pscmdlethelpeditor.codeplex.com
    Check out new: SSL Certificate Verifier
    Check out new:
    PowerShell File Checksum Integrity Verifier tool.

  • Cisco Agent Error - 'A referral was returned from the server.'

    Running agent 8.0.2.9 on Windows 7.
    I have one person that is having trouble launching the agent software.
    They are getting a popup that says, 'A referral was returned from the server.'
    As of yesterday they were having no issues.
    So fare we have tried the following.
    Rebooted computer.
    Uninstalled / reintalled agent.
    Nothing has worked so far.

    Hi all,
    I have Adam's case (afarabaugh) and the workaround is working. But it is interesting to note that this started on the same day for more than one customer. There are two things which come to mind:
    --Certificate expired (ruled out for Adam's case)
    --Microsoft released an OS update on that day?
    @ke-mccormick: can you try setting the system clock on the PC to the day before the issue started? Let me know how that goes.
    Any more information you can think of would help in isolating the issue.
    Cheers,
    Abhiram Kramadhati

  • A referral was returned from the server - car camcorder f210

    When i try to install the software that came with the F210 car cam it brings up a message "A referral was returned from the server" before it even attempts to install.

    Found the fix.  Go to HP support and to the driver download page.  Navigate down to the Security item and select the Simplepass Identity Protection software package (latest version) and install it.  Worked fine for me.

  • Phone not deleting messages from the server

    Please help! My Blackberry Curve 9360 is not deleting messages from the server meaning that, after returning home from a week working away, i've still got a few hundred messages to wade through on my PC.
    I receive e-mails on the PC via Outlook Express. I've clicked on 'tools', 'accounts' then 'advanced' to ensure that the box for 'leave a copy of the message on the server' is unchecked i.e. messages sould be being deleted from the server when prompted to by the phone but this is not happening. Not sure what else to try or perhaps there was something i did / didn't do during the set-up of the phone.
    Any guidance would be much appreciated.
    Thanks in advance,
    Barry.

    Hello,
    Please check this KB:
    KB05133 Email reconciliation features for the BlackBerry Internet Service
    All reconciliation capabilities between your BB and your email SERVER are governed by that KB. So, even if you set the other settings (e.g., "Delete On") correctly, they will be irrelevant if your email service does not support it (as per that KB).
    Further still, reconciliation between your email SERVER and your PC CLIENT software are something completely separate. Only in a very few circumstances (e.g., IMAP) does (for instance) Outlook reconcile items deleted at the Server down to the PC Client.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • OfficialFile.asmx The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM'. ERROR

    We are getting an error on the authentication piece when trying to submit a file to the OfficialFile.asmx web service to submit a document to the Drop-Off Library. Here is the code snippet -
    public string FileUpload(HttpPostedFile FileInput, RecordsRepositoryProperty[] properties)
    string strFileUrl = string.Empty;
    RecordsRepositorySoapClient repository = new RecordsRepositorySoapClient();
    BinaryReader b = new BinaryReader(FileInput.InputStream);
    byte[] binData = b.ReadBytes(FileInput.ContentLength);
    repository.ClientCredentials.Windows.ClientCredential = new System.Net.NetworkCredential(iUserID, iUserPassword, iUserDomain);
    repository.ClientCredentials.Windows.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation;
    repository.SubmitFile(binData, properties, null, FileInput.FileName, HttpContext.Current.User.Identity.Name);
    strFileUrl = repository.GetFinalRoutingDestinationFolderUrl(properties, null, FileInput.FileName).Url;
    return strFileUrl;
    Although we are setting the network credential in the client call we still get the error
    - The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM'.
    Ideas?
    Thanks in advance.

    Hi,
    Based on the error message, the issue is related to the authentication type.
    I suggest you can specify the credential type like the below:
    CredentialCache credentialCache = new CredentialCache();
    NetworkCredential credentials = new NetworkCredential(UserName, PassWord, sDomain);
    credentialCache.Add(new Uri(recordCenterUrl), "NTLM", credentials);
    Here is a detailed code demo for your reference:
    http://blogs.msdn.com/b/mcsnoiwb/archive/2011/06/06/sending-files-to-a-record-center-using-the-sp2010-webservice-officialfile-asmx.aspx
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jerry Guo
    TechNet Community Support

Maybe you are looking for

  • FCP serial number recovery.

    I have had a major hardware fault, and have had to buy a new laptop!!! I have recovered my data from Time Machine, but all my serials for FCP don't seem to have transferred, and the ap won't run! Luckily I have access to the old laptops HDD (via and

  • Facetimer: server encountered an error processing registration

    Hello, This morning, I had no problem signing on to my FaceTime on my Macbook Pro. Later, I updated my IPhone 4's software to the latest version, and now my Macbook Facetime isn't working. When I try to login, I get "Server encountered and error proc

  • Keyboard SHORTCUT to open wavform in SOUNDTRACK? Good books?

    1st. I believe there is a shortcut that will open a wav/aiff file in Logic into Soundtrack, then when you are down, it goes back to Logic. What is that shortcut? 2nd. With the new PRO training for some apple stores - anyone know when Lynda .com or ar

  • External Optical drive issue.

    I bought the Value Line Slim USB Optical Drive from OtherWorldComputing and when it is hooked up to my older MacBook Pro I can see it in disk utility and the system profiler, but as soon as a put any kind of disc in the drive it disapears from both a

  • Direct connecting with parallel cable

    I'm trying to get arch linux to do a direct connect via parallel cable to a laptop with windows 98 so I can transfer some files (and I do have the right kind of cable).  Can anyone tell me what programs/man pages I'm supposed to be looking at for thi