Saving server information

This is probably such an obvious answer because for me it is hard to see. I am running an RMI client/server package and everything works great. The problem is that i need to be able to save the data on the server end to a file, so that if the server goes down, i can retrieve the data. The code that I have below saves great on initiation, and will load the data back up when restarted, but it will not save again once it loads from a file. The saveBackend method in the RMIServer class never gets called once a saved file is reloaded. Please help on this. I am pasting the RMIServer class and the AttornFace class which holds all of the methods that are called. Thanks in advance!!
import java.rmi.*;
import java.rmi.server.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import javax.swing.Timer;
public class RMIServer extends AttornFace implements RemoteChatServer, ActionListener{
static RMIServer rmis;
Timer timer;
public static void main(String[]args) throws Exception{
boolean newFile = false;
try{
rmis = new RMIServer();
}catch(Exception e){}
File file = new File("c:\\database.dbb");
FileInputStream fiStream = null;
try{
fiStream = new FileInputStream (file);
ObjectInputStream oiStream = new ObjectInputStream(fiStream);
if ((AttornFace) oiStream.readObject() != null){
fiStream.close();
fiStream = new FileInputStream (file);
oiStream = new ObjectInputStream(fiStream);
rmis = (RMIServer) oiStream.readObject();
fiStream.close();
}catch(Exception e){newFile = true;}
if (newFile){
FileOutputStream foStream = new FileOutputStream(file);
ObjectOutputStream ooStream = new ObjectOutputStream (foStream);
ooStream.writeObject(rmis);
ooStream.close();
public void actionPerformed(ActionEvent e){
if (e.getSource().equals(timer)){
checkPing();
return;
public RMIServer() throws Exception{
UnicastRemoteObject.exportObject(this);
RemoteLogonManager rlm = new RemoteLogonManager();
Naming.bind("chat/LogonManager", rlm);
startTimer();
public synchronized void saveBackend(File file){
System.out.println("in the RMI save file method");
try{
FileOutputStream foStream = new FileOutputStream(file);
ObjectOutputStream ooStream = new ObjectOutputStream (foStream);
ooStream.writeObject((AttornFace)rmis);
foStream.close();
System.out.println("saved");
}catch(Exception e){}
//start the timer
public void startTimer(){
timer = new Timer(1000 * 30, this);
timer.start();
//start the timer
public void stopTimer(){
timer.stop();
public class RemoteLogonManager extends UnicastRemoteObject implements LogonManager{
public RemoteLogonManager() throws RemoteException {
public ChatServer performLogon(String userid, String password,
ChatClient client) throws RemoteException,
LogonFailedException{
if(checkAccess(userid, password)){
addClient(userid);
return (ChatServer)(rmis);
throw new LogonFailedException("Invalid userid and/or password");
import java.awt.*;
import javax.swing.*;
import java.io.*;
import java.util.*;
public class AttornFace extends Object implements Serializable
static Thread theThread;
static Runnable r;
File file = new File("c:\\database.dbb");
public AttornFace() {
//variables
//misc methods in the database
public void addPerson(){
saveBackend(file);
//this method is overwritten by the one in the RMIServer
public void saveBackend(File files){

the only thing that i can think of is that the first time it is saving it is only saving the AttornFace info, but not the RMIServer stuff. So when the file is then loaded, there would be no reference to the RMIServer, only AttornFace. This would lead to the saveBackend method in RMIServer never being called. Since rmis is static in RMIServer, it would not be saved....is that right? If this is the case, how would i then save the information needed? I thought about specifying the exact stuff i wanted saved instead of just the calss itself, but in the whole class of AttornFace, there are ALOT of different variables that would need to be saved. Thanks again for any help
import java.rmi.*;
import java.rmi.server.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import javax.swing.Timer;
public class RMIServer extends AttornFace implements RemoteChatServer, ActionListener{
  static RMIServer rmis;
  Timer timer;
  public static void main(String[]args) throws Exception{
    boolean newFile = false;
    try{
      rmis = new RMIServer();
    }catch(Exception e){}
    File file = new File("c:\\database.dbb");
    FileInputStream fiStream = null;
    try{
      fiStream = new FileInputStream (file);
      ObjectInputStream oiStream = new ObjectInputStream(fiStream);
      if ((AttornFace) oiStream.readObject() != null){
        fiStream.close();
        fiStream = new FileInputStream (file);
        oiStream = new ObjectInputStream(fiStream);
        rmis = (RMIServer) oiStream.readObject();
      fiStream.close();
    }catch(Exception e){newFile = true;}
    if (newFile){
      FileOutputStream foStream = new FileOutputStream(file);
      ObjectOutputStream ooStream = new ObjectOutputStream (foStream);
      ooStream.writeObject(rmis);
      ooStream.close();
  public void actionPerformed(ActionEvent e){
    if (e.getSource().equals(timer)){
      checkPing();
      return;
  public RMIServer() throws Exception{
    UnicastRemoteObject.exportObject(this);
    RemoteLogonManager rlm = new RemoteLogonManager();
    Naming.bind("chat/LogonManager", rlm);
    startTimer();
  public synchronized void saveBackend(File file){
    System.out.println("in the RMI save file method");
    try{
      FileOutputStream foStream = new FileOutputStream(file);
      ObjectOutputStream ooStream = new ObjectOutputStream (foStream);
      ooStream.writeObject((AttornFace)rmis);
      foStream.close();
      System.out.println("saved");
    }catch(Exception e){}
  //start the timer
  public void startTimer(){
    timer = new Timer(1000 * 30, this);
    timer.start();
  //start the timer
  public void stopTimer(){
    timer.stop();
  public class RemoteLogonManager extends UnicastRemoteObject implements LogonManager{
    public RemoteLogonManager() throws RemoteException {
    public ChatServer performLogon(String userid, String password,
                                   ChatClient client) throws RemoteException,
                                   LogonFailedException{
      if(checkAccess(userid, password)){
        addClient(userid);
        return (ChatServer)(rmis);
      throw new LogonFailedException("Invalid userid and/or password");
import java.awt.*;
import javax.swing.*;
import java.io.*;
import java.util.*;
public class AttornFace extends Object implements Serializable
  private SystemUserInfoNode [] UserInfo;
  public AttornFace() {
  //other methods in here
  //add user to the system array
  public void addUser(SystemUserInfoNode current){
    SystemUserInfoNode [] temp = UserInfo;
    UserInfo = new SystemUserInfoNode[temp.length + 1];
    for (int i = 0; i < temp.length; i++){
      UserInfo[i] = temp;
UserInfo[UserInfo.length-1] = current;
//sort the array
UserInfo = sortUsers(UserInfo);
saveBackend(file);
public void saveBackend(){

Similar Messages

  • The saved printer information is not compatible with this version of Photoshop

    Hello,
    I hope somebody can help us. I am a IT Technician in a school, we have approx 500 Windows 7 64bit machines with about 600/700 users - 200 machines have the CS5.5 Master Collection installed on them. We have an intermittent issue with printing from Photoshop (both the 32bit and 64bit versions). Our printers are mostly HP LaserJet printers (all modern), but we have an Epson B-510DN Inkjet and some Xerox copiers too. The drivers are all installed on a central print server running Server 2008 R2 and shared via Group Policy to client machines.
    In rooms where Photoshop is installed, intermittently when a student goes to print we will recieve the following error:
    The saved printer information is not compatible with this version of Photoshop, or the saved printer is no longer available. You will need to check your printer settings before printing.
    Photoshop will then grey out the 'Print' button and won't let the user print again. The odd thing is that we can still print from other software such as Microsoft Word or even non Microsoft software - even Illustrator will print. It just seems to be Photoshop thats has any issues.
    This happens when printing to any printer on site, 90% of which are HP's. As a general rule we configure all of our HP printers with HP's PCL6 Universal Print Driver as it makes management of various printer models easy, and we haven't found it to limit us atall yet. We are aware the Adobe software is 'preferential' to Postscript drivers but our printers arn't, being HP's PCL is their native language. We have tried changing a printer to the Postscript UPD driver to test it but it made no improvement. We have also seen the issue quite indepth with our Epson B-510DN which is configured with Epson's latest model specific driver as our photography department use it. Since we are seeing it with different printers I don't believe the printer drivers are to blame - unless somebody want's to prove me wrong.
    Like I say the problem is intermittent, and we are having trouble tracing it down to a user, computer or a software problem as it is so intermittent. Has anybody else seen this and managed to overcome it? Since it's only happening in Photoshop is it a bug that Adobe have recognosed and fixed in CS6? The only workaround we have found for it is to go into printers, chnage the defualt printer from one to another and back again - this seems to shut Photoshop up.
    Thanks, Dave.

    Chris,
    Apologies for my slow reply - we have been busy here the past few weeks.
    We are using a standard Microsoft provided JPG image (Tulips.jpg) so we have ruled out it being an issue with the image; perhaps if we were using a PSD, maybe so.
    We have now found out what the issue is, and what the workaround for this bug is. All of our printers across our site are named in a specific format, usually [Location name] [Room number] [Mono or Colour] resulting in printer names such as Photography A11 Colour, Art A2B Colour and Design Technology A14 Colour. All of these names contain numbers. We have tried reimaging machines, reinstalling Photoshop, upgrading to CS6, deleting and reconfiguring printers with the same name. Finally the only solution that worked was to take the numbers out of the name, either by renaming or deleting and reconfiguring the printers. The Photography printer is an Epson B-510DN using a model specific driver and the other two use the HP PCL6 UPD driver, so I don't believe the drivers are to blame and since renaming the printers work I don't believe it's a configuration issue either. Remember that these printers are shared from a print server and deployed via Group Policy (using the Print Management method).
    I hope this provides you Chris, and others searching Google, a useful explanation of the problem and what the fix is. As much as Adobe won't admit it's a problem/bug, I and many others across the internet believe that it is and that it should be fixed in future versions of Photoshop.
    Thanks, Dave.

  • [SOLVED] error occured while loading or saving config information

    When I try to launch applications from my menu it takes ages to appear and I get the error:
    'an error occured while loading or saving configuration information for 'application name'. Some of your configuration settings may not work properly'
    in the details section I get:
    'Failed to contact configuration server; some possible causes are that you need to enable TCP/IP networking for ORBit, or that you have NFS locks due to a system crash. See (a website for gnome's gconf) for details.'
    I don't understand this as I don't use gnome, I have openbox.
    any help appreciated.
    List of affected apps:
    firefox
    thunderbird
    terminator
    Apps that load unusually slow:
    Thunar
    Apps that do nothing:
    Banshee
    EDIT: If I cannot get this fixed by the end of the week I will have to go back to ubuntu as I need this machine working.
    Last edited by llawwehttam (2010-02-09 20:30:52)

    Cyrusm wrote:
    I think I may have found a solution,
    can you print the output of
    ls -la ~/ | grep .dbus
    apparently this problem can happen if ~/.dbus is owned by root.
    to fix it AS ROOT (or sudo)
    chown -R $USER:users ~/.dbus
    here's my source, there are a few things in here you could try as well.
    http://ubuntuforums.org/archive/index.php/t-780179.html
    Hahaha, thank you so much.
    It was owned by root so I have now fixed that.
    It was my own stupid fault then running a command as root that should have been run as a user?
    I will never forget this, the embarrassment is killing me..... lol

  • I installed a new printer and now Photoshop Elements tells me I can't print.  The error message is "The saved printer information is not compatible with this version of Photoshop Elements, or the saved printer is no longer available.  You will need to che

    I installed a new printer and now Photoshop Elements tells me I can't print.  The error message is "The saved printer information is not compatible with this version of Photoshop Elements, or the saved printer is no longer available.  You will need to check your printer settings before printing."  I have uninstalled and re-installed Photoshop Elements, checked my printer settings and still I can't print a photo.

    Hi ,
    Please update to PSE 13.1
    13.1 has solved this problem.
    Refer to this link.
    Photoshop Elements Help | Printer errors with Photoshop Elements 13

  • Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"

    Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"
    What are the correct mail account settings and more importantly the correct DNS settings
    Thank you for any help you may be able to provide
    Cheers
    Chris (iMac i7)

    Do not delete the old account yet. sign up for an iCloud account if you haven't.
    I understand .mac mail will still come through. Do not delete the old account yet.
    You cannot use .mac or MobileMe as type of Account, you have to choose IMAP when setting up, otherwise Mail is hard coded to change imap.mail.me.com to mail.me.com & smtp.mail.me.com to smtp.me.com, no matter what you try to enter.
    iCloud Mail setup, do not choose .mac or MobileMe as type, but choose IMAP...
    On second step where it asks "Description", it has to be a unique name, but you can still use your email address.
    IMAP (Incoming Mail Server) information:
              •          Server name: imap.mail.me.com
              •          SSL Required: Yes
              •          Port: 993
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    SMTP (outgoing mail server) information:
              •          Server name: smtp.mail.me.com
              •          SSL Required: Yes
              •          Port: 587
              •          SMTP Authentication Required: Yes
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    Also, you must upgrade your password to meet the new criteria:  8 characters, including upper and lower case and numbers.  If you have an older password that does not meet these criteria, when you try to setup mail on your mac, using all of the IMAP criteria listed above, it will still give a server error message.  Go to   http://appleid.apple.com         then follow directions to change your password, then go back to setting up your mail using the IMAP instructions above.
    Thanks to dpepper...
    https://discussions.apple.com/thread/3867171?tstart=0

  • Exchange Server Information Store has encountered an error while executing a full-text index query

    Hi Team need help
    Exchange 2013 EAC doesnt show the databases and it gives message
    "Your request couldn't be completed. Please try again in a few minutes."
    Its a 9 Node DAG and I stopped and diabled Search and Search Host controller on all of them
    in the event viewer see a lot of Event id 1012
    Log Name:      Application
    Source:        MSExchangeIS
    Date:          4/1/2013 9:23:48 AM
    Event ID:      1012
    Task Category: General
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      ex1301.dagdc.com
    Description:
    Exchange Server Information Store has encountered an error while executing a full-text index query ("and(or(itemclass:string("IPM.Note*", mode="and"), itemclass:string("IPM.Schedule.Meeting*", mode="and"), itemclass:string("IPM.OCTEL.VOICE*",
    mode="and"), itemclass:string("IPM.VOICENOTES*", mode="and")), subject:string("SearchQueryStxProbe*", mode="and"), folderid:string("48A300C7FBA4DA408B80EB019A1CE94900000000000E0000"))"). Error
    information: System.TimeoutException: Failed to open a channel.
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.ExecuteServiceCall(IProcessingEngineChannel& serviceProxy, Action`1 call, Int32 retryCount)
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.ExecuteSearchFlow(String flowName, Dictionary`2 inputData)
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.<ExecuteInternal>d__18.MoveNext()
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.<ExecuteSimple>d__a.MoveNext()
       at Microsoft.Exchange.Server.Storage.FullTextIndex.FullTextIndexQuery.ExecutePagedFullTextIndexQuery(Guid databaseGuid, Guid mailboxGuid, Int32 mailboxNumber, String query, CultureInfo culture, Guid correlationId, QueryLoggingContext loggingContext,
    PagedQueryResults pagedQueryResults)
       at Microsoft.Exchange.Server.Storage.StoreCommonServices.StoreFullTextIndexHelper.ExecuteFullTextIndexQuery(Context context, MailboxState mailboxState, QueryParameters queryParameters, PagedQueryResults pagedQueryResults, ExchangeId searchFolderId,
    SearchExecutionDiagnostics diagnostics)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSExchangeIS" />
        <EventID Qualifiers="49156">1012</EventID>
        <Level>2</Level>
        <Task>1</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-04-01T16:23:48.000000000Z" />
        <EventRecordID>192599</EventRecordID>
        <Channel>Application</Channel>
        <Computer>ex1301.dagdc.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>and(or(itemclass:string("IPM.Note*", mode="and"), itemclass:string("IPM.Schedule.Meeting*", mode="and"), itemclass:string("IPM.OCTEL.VOICE*", mode="and"), itemclass:string("IPM.VOICENOTES*",
    mode="and")), subject:string("SearchQueryStxProbe*", mode="and"), folderid:string("48A300C7FBA4DA408B80EB019A1CE94900000000000E0000"))</Data>
        <Data>System.TimeoutException: Failed to open a channel.
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.ExecuteServiceCall(IProcessingEngineChannel&amp; serviceProxy, Action`1 call, Int32 retryCount)
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.ExecuteSearchFlow(String flowName, Dictionary`2 inputData)
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.&lt;ExecuteInternal&gt;d__18.MoveNext()
       at Microsoft.Exchange.Search.OperatorSchema.PagingImsFlowExecutor.&lt;ExecuteSimple&gt;d__a.MoveNext()
       at Microsoft.Exchange.Server.Storage.FullTextIndex.FullTextIndexQuery.ExecutePagedFullTextIndexQuery(Guid databaseGuid, Guid mailboxGuid, Int32 mailboxNumber, String query, CultureInfo culture, Guid correlationId, QueryLoggingContext loggingContext,
    PagedQueryResults pagedQueryResults)
       at Microsoft.Exchange.Server.Storage.StoreCommonServices.StoreFullTextIndexHelper.ExecuteFullTextIndexQuery(Context context, MailboxState mailboxState, QueryParameters queryParameters, PagedQueryResults pagedQueryResults, ExchangeId searchFolderId,
    SearchExecutionDiagnostics diagnostics)</Data>
        <Binary>5B444941475F4354585D000084000000FF09000000000000000268000000808A00100000000080CA00100000000080B200100000000080D200100000000030FF001000000000309F00100000000030DF001000000000B09D001000000000B0DD001000000000B0ED001000000000B08D001000000000B095001000000000B0A5001000000000</Binary>
      </EventData>
    </Event>

    Hi,
    Please reenable and start the search engine service and try again.
    The simillar case for your reference:
    http://social.technet.microsoft.com/Forums/en-US/exchangesvrgeneral/thread/4f43ef50-b71f-4ab3-8ced-70f1c36c5509
    Hope it is hlepful.
    Fiona Liao
    TechNet Community Support

  • Error in saving customer information. Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE.

    I was trying to create a text alert. I was calling following in jsp
    email.setContactPointPurpose(myLookUpCode); //say XXMY_SMS_SHIP
            PartyManager.createEmail(email, ApiConstant.CONTACT_POINT);
    Getting following exception:
    Error in saving customer information.
    Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE.
    Error trace:
    oracle.apps.ibe.customer.CustomerException: Error in saving customer information. at oracle.apps.ibe.tcav2.Email.create(Email.java:187) at oracle.apps.ibe.tcav2.PartyManager.createEmail(PartyManager.java:116) at _oa__html._myfile__ibeMyFile._jspService(_myfile__ ibeMyFile.java:908) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:662) Caused by: oracle.apps.jtf.base.resources.FrameworkException: Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE. at oracle.apps.jtf.util.ErrorStackUtil.getFrameworkException(ErrorStackUtil.java:104) at oracle.apps.jtf.util.ErrorStackUtil.getDBFrameworkException(ErrorStackUtil.java:141) at oracle.apps.ibe.tcav2.Email.create(Email.java:185) ... 11 more Error in saving customer information. oracle.apps.jtf.base.resources.FrameworkException: Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE. at oracle.apps.jtf.util.ErrorStackUtil.getFrameworkException(ErrorStackUtil.java:104) at oracle.apps.jtf.util.ErrorStackUtil.getDBFrameworkException(ErrorStackUtil.java:141) at oracle.apps.ibe.tcav2.Email.create(Email.java:185) at oracle.apps.ibe.tcav2.PartyManager.createEmail(PartyManager.java:116) at _oa__html._myfile__ibeMyFile._jspService(_myfile__ ibeMyFile.java:908) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:662) Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE.

    Tried this but it is giving the below error
    APP-FND-01242: Cannot read value from field PER_ASSIGNMENT_ID
    Cause: The field PER_ASSIGNMENT_ID could not be located or read.
    Action: This error is normally the result of an incorrectly-entered field name string in a trigger, or a field name string that does not uniquely specify a field in your form. Correct your trigger logic to precisely specify a valid field.

  • I have PSE13 on my system.  It was functioning properly and now I get these messages when I go to print:  "The saved printer information is not compatible with this version of Photoshop Elements, or the saved printer is no longer available.  You need to c

    I have PSE13 on my system, Windows 8.1, 64-bit.  It was functioning properly after installation and now I get these messages when I go to print:  "The saved printer information is not compatible with this version of Photoshop Elements, or the saved printer is no longer available.  You need to check your printer settings before printing."  and then this statement:  "Default printer could not be opened."  I have reloaded drivers for both printers and made any upgrades possible.  It was working fine before and now all of a sudden, nothing.  Would prefer to have old PSE v.12 back, it worked with no problems.

    See this thread
    My Photoshop Elements 13 doesn't recognize my Canon PRO-10 printer. I've tried EVERYTHING. Reinstalled all my software, didn't fix anything. Can anyone help?

  • Photoshop CS5. Saved printer information is not compatible with this version of Photoshop

    I am hoping someone has experienced this problem. I am working at a clients
    office which has a large Konica Printer. When I first started using Photoshop at this office I
    could print directly from PS to thier printers. Then a printer driver change or something I cannot pinpoint changed and I began getting the Error Message: The saved printer information is not compatible with this version of Photoshop, or the saved printer is no longer available. You will need to check your printer settings before printing. I click OK and the second Error Message appears: There was an error opening your printer. Printing functions will not be available until you have selected a priner and reopened any documents. The radio button has the single response word "Cancel". After clicking that button the printing is grayed out and until I go into Color Settings and change the setting drop down box to something else, close PS and reopen the, or any file and the same thing occurs. Ihad the IT department down here and after an hour he clicked on settings and tinkered around until all of a sudden the printing was enabled. It worked until the printer driver was updated. Once again the IT guy was down here and didn't remember what he did, tinkered around and after changing the color settings to: Monitor Color, it printed. Here we go again, printer settings were randomly changed so we reinstalled the printer driver and again PS is not printing.
    Is there anyone who has experienced this issue who can help me make sense of this insanity. Is there a sequence of setting changes, opening of the program and file that is allowing the color management to stop interferring with my printing other than Gremlins in this machine? I have not found anything Googling on this issue. Please help me . . . Annette

    I don't think I have an answer for you about exactly what went wrong, but one thing that can help with understanding the messages (and maybe can help you and your IT people figure it out) is this:
    Photoshop saves the information about the last printer the document was printed to as metadata in the document file.  So if you make a print then save the PSD, the printer info is in the PSD.
    If recently you opened an image that had previously been printed at another place (and which didn't have an exact match to the printer available in your current location), then you can start to imagine these error messages making a bit more sense.  Things like "The saved printer information" begin to have meaning.
    Hope this helps.
    -Noel

  • I cant print and get this message, "adobe elements, "the saved printer information is not compatible with this version of photoshop elements, or the saved printer is no longer available. you will need to check with your printer settings before printing."

    I keep getting this message when trying to print in adobe elements, I am using a new Epson WF-3640 printer
    "the saved printer information is not compatible with this version of photoshop elements, or the saved printer is no longer available. you will need to check with your printer settings before printing.

    Hi,
    If you are working in PSE13, please update it to latest PSE13.1 update available and see if it helps.
    To apply update, you can go to Help > Updates and there you can see PSE13.1 update.
    Thanks,
    Anwesha

  • How to delete server information in http header?

    Hello,
    how could i delete the server information in the http-header?
    HTTP/1.1 500 Internal Server Error
    connection: close
    server: SAP J2EE Engine/7.00   <--- this here
    date: Tue, 11 Nov 2008 08:27:08 GMT
    pragma: no-cache
    content-type: text/html;charset=ISO-8859-1
    content-length: 2046
    set-cookie: saplb_*=(icdus445_PA3_03)39216850; Version=1; Path=/
    Best regards,
    Dennis

    Hi,
    the solution is to set the value for UseServerHeader to false.
    This can be done from the VisualAdmin for the HTTP service of all servers + dispatcher.
    Thanks for the support
      Christian Birkle

  • Saved printer information is not compatible with Photoshop Elements 11

    Hello - After successfully using PSE11 to print photos on my Epson Artisan 810 printer, the printer died and was replaced with an Epson Artisan 837 printer.  The new printer works on ALL of my other applications EXCEPT I receive the following error message after hitting 'print' on Photoshop Elements 11.
    MESSAGE:
    The saved printer information is not compatible with this version of Photoshop Elements, or the saved printer is no longer available.  You will need to check your printer settings before printing.
    You can see from the screen print attached that the Epson Artisan 837 is a validly installed printer.  All advanced settings were available for selection/modification, and all printer drivers are up to date.  Also, uninstalled and reinstalled the printer without resolution of the problem.
    Can anyone please point me in the right direction to resolve this issue?
    Thanks so much, Debbie
    Running:
    Windows XP sp3 (up to date)

    You did indeed lead down the correct path with only a little modification required in the naming (see below).  Thank you so very much!! 
    Here's what I had to do to get this to work:
    1 - I first tried to rename this printer to a generic 'DSLW Printer'.  This renaming worked for ALL OTHER applications except Photoshop Elements 11 even after rebooting my PC.  Received the identical error message listed in the original message.
    2 - I then renamed the printer as 'EPSON Artisan 810 Series'.  This was of course a lie but matched the printer as named by the 2010 original Artisan 810 installation.  VOILA!  This does work for Photoshop Elements 11 (jpg and psd files tested) and the other applications that I've tested.  Hopefully all other testing will provide equally successful results.
    So problem seems to be resolved BUT is this a question/problem that I should pursue with either Adobe or Epson?  I do know that the 810 and 837 only differ in the ability to print from a wider variety of wireless devices (e.g. cell phones & tablets), otherwise the functionality is virtually identical.  Did Epson drop the ball or did Adobe?  Or maybe it's simply that I'm a die hard XP sp3 (32 bit) user until forced out by Microsoft.
    Thanks again!!
    Debbie

  • DBUA errors out after collecting server information

    Hi,
    We are in the process of upgrading Oracle Database from 9i to 11g on AIX 6.1. After installing the Oracle Software 11g (11.2.0.1) we try to run the DBUA but after showing the screen collecting server information a blank page appears (with no error code) after which the DBUA stops.
    Please any hints or any comments.
    Thanks.

    There are a few oracle notes which may help :
    DBUA Fails With a Screen Showing 'Null' [ID 1285052.1]
    Complete Checklist for Manual Upgrades to 11gR2 [ID 837570.1]
    11.2.0.1 Catupgrd.sql Hangs While Running Procedure POPULATE_DBID_AUDIT [ID 1062993.1]
    Best Regards
    mseberg
    Edited by: mseberg on Aug 10, 2011 8:02 AM

  • Changing the Background server information of mulitple process chains

    Hello Friends,
    I am looking for a program or any other way by which I can modify the Background server information of mulitple process chains at once.
    I am not really sure whether we have any such programs. Any help would be highly appreciated.
    Thanks,
    Vinoth V

    Hi Vinoth,
    RSPCCHAINATTR table can give information regarding process chain list with server names. you can create custom program to modify it. Input parameters can be process chain name and server name.
    But you need to take care of authorizations for this table.
    Hope this helps.

  • How to find Server Information and MIME

    I'm working on a simple http server and was wondering how I could obtain the Server information?
    Example Server informations are:
    CERN/3.0
    or
    Server:�Apache/1.3.26�(Unix)�PHP/4.1.2�mod_ssl/2.8.10�OpenSSL/0.9.6(CR)
    something like this...
    and how do i obtain the mime information?
    Example MIME info is:
    MIME-Version: 1.0
    Thanks in advance!

    Please clarify: are you working on an HTTP server or an HTTP client? If the former, are you wanting to know what your server should output in response to a request? If the latter, are you wanting to know how to parse the response?

Maybe you are looking for