Print Service -- Queue Log location

Hi,
I'm sure this is just a minor thing I should know, but I'm trying to find the individual Queue logs. In reading the OS X Server -Print Server Admin document, it mentions:
A print queue log records information such as the name of users who submitted
jobs, the size of each job, and errors associated with a job.
It then tells me how to view a Print Service log which only contains info on the Print service itself, but not how to view the individual Queue logs. I've dug around for the past 2 hours but cannot locate it. I'd really like to have a log of that info-- any help would be much appreciated.

I appears the nature of this question has changed a bit. I can't the queue logs because it appears my jobs are not being processed by the server.
Here's the deal. I have a 10.6 lab set up pointing to an 10.6 server. All of the lab computers are set up to printing, using the printers provided by my MCX prefs. When you print a document from the workstation, it processes and prints as expected-- however at no point does the server have this job appear in the queue.
I just want to see if there is something I've missed. I set up the server with the printers I want in my queue. I then added said printers to the list via workgroup manager. The workstations see AND print to only the printers supplied in workgroup manager. But it appears that jobs do not actually go through the queue-- it's almost as though they bypass the server and print directly to the printer. Is there a step I left out?

Similar Messages

  • Print Services not logging pages printed

    When setting up a print queue, we seem to have two options:
    1 - Press the plus button, enter the printer's IP address and give the new queue a name.
    2 - Add the printer to the print server, then share it using the queue that appears in Server Admin/Print.
    If we add printers using method 1, we have to use the "Generic Postscript Printer" ppd but page logging works correctly. If we add printers using method 2, the user can use all the printer's features but pages aren't logged.
    Anyone know of a way to set the printer's ppd correctly while still having the printed pages logged?

    I forgot to mention, the printers show up in the client's default browser as "queue_name @ printserver" no matter how we add the queue to the server. Printing itself works perfectly, so far as the pages all come out the way we expect them too.

  • Can't locate any printers (w/ Java Print Service)

    Hi all,
    I'm using the following code to locate print services on my Windows 2000 laptop:
    private PrintService[] drucker;
    private DocFlavor format = DocFlavor.INPUT_STREAM.TEXT_HTML_HOST;
    private Doc output;
    private PrintRequestAttributeSet printerAttributes;
    private FileInputStream stream;
    public PrintHandler() {
    printerAttributes = new HashPrintRequestAttributeSet();
    printerAttributes.add(OrientationRequested.LANDSCAPE);
    printerAttributes.add(MediaSizeName.ISO_A4);
    drucker = PrintServiceLookup.lookupPrintServices(format, printerAttributes);
    Although there are several printers installed my app can't find any. I'm pretty sure that they support the attributes.
    What am I doing wrong?
    Thanks for your help,
    Ulf Moehring

    try this:
    PrintService[] availableServices = PrintServiceLookup.lookupPrintServices(DocFlavor.SERVICE_FORMATTED.PRINTABLE, null);That will give you a list of all printable printers.
    Then if you wish, you can do:
    javax.swing.DefaultComboBoxModel printerCM = new javax.swing.DefaultComboBoxModel();
    for(int i = 0; i < availableServices.length; i++) {
        printerCM.addElement(availableServices.getName());
    comboBoxPrinter.setModel(printerCM);
    Hope that helps,
    James.

  • Solaris 10 - print services not running

    Hi
    One of our servers has just been upgraded from Solaris 9 to 10 but we are having problems getting the lp scheduler to start. We have tried starting the service manually by issuing *'svcadm -v enable application/print/server'* which returns '*svc:/application/print/server:default enabled.*' However when you issue the command '*lpstat -r*' it returns '*scheduler is not running*'. The next step I tried was typing '*svcs -a | grep print*' which returned the following:
    online               16:34:09 svc:/application/print/ppd-cache-update:default
    online               16:35:39 svc:/application/cde-printinfo:default
    offline               16:34:45 svc:/application/print/rfc1179:default
    offline               16:34:45 svc:/application/print/ipp-listener:default
    maintenance    16:34:45 svc:/application/print/server:default
    I then issued the command '*svcs -v -x*' which returned the following:
    svc:/application/print/server:default (LP print server)
    * State: maintenance since Wed Dec 17 16:34:45 2008*
    Reason: Restarting too quickly.
    * See: http://sun.com/msg/SMF-8000-L5*
    * See: man -M /usr/share/man -s 1M lpsched*
    * See: /var/svc/log/application-print-server:default.log*
    Impact: 2 dependent services are not running:
    * svc:/application/print/rfc1179:default*
    * svc:/application/print/ipp-listener:default*
    I tried enabling the 2 dependent services manually and it says they are enabled after you issue the command but in actual fact it is not doing anything. Our set up is complicated by the fact that we are not using Soalris as our print m,anager but are using Hewlett Packard's.
    Any help would be greatly appreciated,
    Bruce

    This could be caused by print requests that were waiting in the print queue when the upgrade took place. You need to remove these requests as follows:
    # svcadm disable print/server
    # rm -fr /var/spool/lp/fifos /var/spool/lp/temp /var/spool/lp/tmp /var/spool/lp/requests
    # svcadm enable print/server
    # svcs -xv
    The print scheduler should now be running and you should now be able to print.

  • Java Print Service API in Java Stored Procedure (Linux)

    Hi
    We are running an Oracle 10g database on Linux and I am in the proces of developing a java stored procedure which should utilize the Java Print Service API.
    I have made a simple stored procedure to list all available printers and the DocFlavors they support (se the code below).
    My problem is that no printers are listed. I have made a standalone java app. with the same code and executed it directly on the OS level of the Linux box through the Sun JDK 1.4.2 and here I get two printers.
    Is there any specific configuration I need to do to make it work?
    I am wondering if I need to grant specific authorisations through dbms_java for it to work...?
    Any help is greatlyh appreciated.
    ************************************** CODE BEGIN *************************************
    import javax.print.DocFlavor;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    public class TestPrintService {
    public TestPrintService() {
    public static void listPrinters() {
    // Get all available printers and their supported DocFlavors
    PrintService[] pservices =
    PrintServiceLookup.lookupPrintServices(null, null);
    System.out.println("Printer services: " + pservices.length);
    for (int i = 0; i < pservices.length; i++) {
    PrintService pservice = pservices;
    System.err.println("Printer: " + pservice);
    DocFlavor[] docFlavors = pservice.getSupportedDocFlavors();
    for (int j = 0; j < docFlavors.length; j++) {
    DocFlavor docFlavor = docFlavors[j];
    System.err.println("DocFlavor " + docFlavor.toString());
    System.err.println();
    ************************************** CODE END *************************************
    Cheers,
    Jacob Vennervald

    Found this on Oracle support:
    Cannot List Available Printers From The Database Using A Java Stored Procedure [ID 372694.1]
    Applies to:
    Oracle Server - Enterprise Edition - Version: 10.1.0.4.0
    This problem can occur on any platform.
    Symptoms
    Able to list available printers on a machine when running Java code outside the Database.
    When running the same Java code inside the Database as a Java Stored Procedure, no printers are found.
    Cause
    Due to security restrictions, this is expected results.
    The Java Docs state:
    "Services which are registered by registerService(PrintService) will not be included in lookup
    results if a security manager is installed and its CheckPrintJobAccess() method denies access."
    Also from the documentation it states:
    "A PrintServiceLookup implementor is recommended to check for the SecurityManager.checkPrintJobAccess() to deny access to untrusted code. Following this recommended policy means that untrusted code may not be able to locate any print services. Downloaded applets are the most common example of untrusted code."
    Using the checkPrintJobAccess(); call, it does produce a Security Exception when run inside the Database but not when run outside. The exception can be viewed within the log file found in the UDUMP directory.
    Solution
    Run the following code to confirm obtaining available __printers can not be done...__
    This is the code to create the Java Stored Procedure
    CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "ListPrinters" AS
    import javax.print.*;
    public class ListPrinters {
    public static String AvailablePrinters(){
    String strList;
    PrintService[] pservices =PrintServiceLookup.lookupPrintServices(null,null);
    if (pservices.length > 0 )
    strList = pservices[0].getName();
    else
    strList = "No printers found";
    return strList;
    public static String listprinters() throws Exception {
    String listofprinters;
    try {
    SecurityManager sm = System.getSecurityManager();
    if (sm != null) sm.checkPrintJobAccess();
    catch (SecurityException ex) {
    System.err.println("Sorry. Printing is not allowed.");
    listofprinters = AvailablePrinters();
    return listofprinters;
    This is the PL/SQL Wrapper
    CREATE OR REPLACE FUNCTION Get_Printer_Test RETURN VARCHAR2 IS
    LANGUAGE JAVA
    NAME 'ListPrinters.listprinters() return String';
    This executes the code
    SQL> SELECT Get_Printer_Test FROM DUAL;
    GET_PRINTER_TEST
    No printers found
    This is the output found in the trace file in the UDUMP directory
    *** SESSION ID:(144.28) 2006-07-08 09:02:25.518
    Sorry. Printing is not allowed.

  • Print Services won't quit

    Hi all,
    I have a OS X 10.3.9 Server that I attempted to share a printer on.
    The printer is an Epson connected to a usb port on the server.
    The printer was sharing just fine until I tried to share it to a Windows machine. After I tried to start Windows Services, this operation turned off the network interface I was using to access the net. After I fixed that problem in the Network System Pref. Pane, the printer can't be shared to any of the local network macs that it was working fine on before. Not only that, I can't get the server manager software to stop printing services, either by the Server Manager Program or the command line. The print log returns:
    2006-01-23 13:03:34 -0800 [20962] Stopping Print Service...
    2006-01-23 13:03:34 -0800 [20962] Stopping print sharing. Service: SMB.
    2006-01-23 13:03:34 -0800 [20962] Print Service Shutdown reported errors.
    What the heck does that mean?
    I can add and delete queues. But everytime I add a new queue it comes up with my old settings with "smb" printer sharing enabled and it won't let me change it. Everytime I click the check-box to turn "smb" or any other printer setting off or on, it won't let me!! And I as I stated in the beginning I can't get the print services to stop or restart! I don't want to restart the server quite yet. I am almost afraid that its gonna be even more messed up after the restart. I even tried to edit the config file by dragging it to the small icon in the corner of the settings window to the desktop and editing it in BBEDIT. When I drag the changed file back onto the window it won't take the changes.
    Anyway, I couldn't figure out where these config files for the Server Manager Program are to delete before I restart.
    Any help or suggestions would be greatlty appreciated.
    Thank you,
    Hassan
    PowerMac G4 Dual-500   Mac OS X (10.3.9)  

    Never got one answer, give up

  • Can't start OS X 10.3.9 Print Service

    Hello all.
    Our file server (X Serve OS 10.3.9) has worked fine for the past year and a half. Yesterday I wanted to create new print queue, the service hung for a while and eventually quit out.
    The error log reports:
    Process '/usr/sbin/PrintServiceMonitor" respawning too rapidly!
    I have trashed print preferences, fixed file permissions, and restarted several times, all with no luck.
    Any attempt to start the print service will cause it to abruptly stop running (the print service) a second later.
    Not sure where to go from here.
    Any help is appreciated.
    Rick

    Hi Bobert,
    if you cannot boot from the install DVD you will have to bring your computer to the Apple store since booting from the DVD is required for the reinstall.

  • How to print fax call log on hp laserjet pro mfp m375

    There should be a way to print fax call log on hp laserjet pro mfp m375.  Not sure whether to go in "tools", "fax", "settings" or what!  Can somebody please give me instructions ASAP.  Does anybody else find HP's tech support - if your warranty runs out - to be terribly POOR.  I've been trying to get an answer to this question for about an hour which I think HP should at least answer simple questions in hopes that the customer will want to continue buying HP products of which they will purchase warranty plans.  So my next question is > are we supposed to keep a tech support plan on a product for as long as it's in service - 5 years or longer???  The 1st question is VERY important to me if someone would please answer.  The 2nd comment/question is more directed to HP!!!  :-)  Thank you very much!
    NEVERMIND!!!  I finally found the answer to my fax question and got it to print.  As for how long HP expects a customer to pay for warranty plans and why they don't answer SIMPLE questions without them, please answer if you are a representative of HP b/c I'm really disheartened with your service.  Thank you.

    Hi,
    You may print the Fax Activity Log report by following the steps listed under the Print individual fax reports section below:
    http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/kb/docDisplay/?sp4ts.oid=4337652&spf...
    Phone or Chat support are available within the product warranty period or can be extended with a Care Pack or a Service Agreement, the HP websire and the forums are available for out of warranty users.
    You may find amy avaialble support method listed below:
    http://h20566.www2.hp.com/portal/site/hpsc/public/help/contactHP/home/?ac.admitted=1404750921744.876...
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Should I install Print Services as a role for a single server env no domain

    I have a OAS application using converted UNIVERSE code to work with withSQL server. The application works fine and local users and groups will do the job. I have been tasked with replacing UNIX based printing to Windows based printing. Don't need LDP services
    either. Does it make sense to install print services for about 30-40 printers or just set them up local. There will be about 10 different forms and i will have to be able to re-direct jobs, pause jobs, re-queue jobs, and disable\enable the printers.
    I don't know that version 3 or 4 printer drivers matter because the same printer driver will be used for a majority of print jobs. As a matter of fact there are 5 or 6 different drivers needed. This is setting on a 100 MB backbone with GB access to the server.

    Hi,
    Print Services enables you to share printers on a network and centralize print server and network printer management tasks by using the Print Management snap-in.
    Print Management helps you monitor print queues and receive notifications when print queues stop processing print jobs. It also enables you to migrate print servers and deploy printer connections by using Group Policy.
    Print Services Role
    http://technet.microsoft.com/library/cc732378(WS.10).aspx
    I’m not quite clear about your current provisioning, as referred in the title, for single server without domain. I think this role is not necessary for you.
    Hope this helps.

  • How does one print to enterprise Windows print services in Yosemite? CUPS 2.0 problem?

    One of my co-workers upgraded to Yosemite yesterday and it broke his ability to print to our corporate printing services (which are built around a Windows print server). Obviously, the printer discovery in the System Preferences can't find the Windows print server - that's never worked. However, we had previously been able to add a printer through the CUPS web front-end by adding a Windows printer and specifying an SMB URL in the format:
    smb://DOMAIN;USER:[email protected]/QUEUE-NAME
    ... which worked like a charm in Mavericks. However, Yosemite has upgraded to CUPS 2.0.0 and this no longer seems to work. Print jobs enter the CUPS queue, but authentication fails and they are not accepted by the remote server.
    I've consulted the CUPS 2.0.0 documentation, and there's not really anything helpful there. In fact, there's no mention of SMB / Windows printing at all in the 2.0.0 documentation. Unfortunately our campus print services does not support IPP, LP, LPR, or JetDirect as options -- just Windows printing.
    Does anyone have a suggestion?

    Just finished testing 10.10 printing via a Windows 2008 R2 print share. I also found that when trying to add the printer using CUPS I would get an authentication error. But if I added the printer using the Windows section of the Add printer pane, then I was able to print fine.
    So with you mentioning that using the Windows section of the Add printer window has never worked (which is interesting because it's always worked for me) I want to suggest another approach to adding the printer, still using the Add printer window. With this window open you can right-click on the toolbar and select Customize Toolbar. You can then drag the Advanced icon to the toolbar. Then when you select this, you can set the Type menu to "Windows via spoolss" and then enter the URL as smb://servername/sharename. Select the supporting driver and click Add to complete.
    Then when you select to print for the first time using this printer you will be prompted to authenticate. Enter the account details, set the save to Keychain option and OK to send the print job.
    This worked fine for me and creates the same queue as using the Windows add printer setting. Curious to hear if this gets your co-worker printing again.

  • Printers showing up after Printer Service has been stop or printers deleted

    I started setting up the Print service on one of our Mac OS X.5 Servers.
    Very simple to do.
    At the printer configure and disable all sharing options mDNS, AppleTalk or EtherTalk...
    On the server add the printer via IP address and select the correct PPD. In my case I have a couple of the same printer and wanted to setup a print center in a lab. So I disabled all sharing protocols on the server for each printer and then created a Printer Pool...
    For some reason the particle printers weren't adding correctly to the clients so I deleted the printers and the pool (not sure in what order I did this).
    Now on the client I can still see the Printer Pool and one of the printers from the server even when the service is disabled. The only way they disappear is when I shut the server down or pull it offline.
    I found a website that describes this and how to fix it but it's based on Mac OS X.3.x. There must be more steps on Mac OS X.5?
    http://macos-x-server.com/wiki/index.php?title=Myprint_queues_behave_erratically,_how_do_I_start_over_and_clear_out_the_oldqueues%3F

    I observed the very same behaviour. One more reason not to use Apple's built-in print service.
    Try deleting /System/Library/LaunchDaemons/com.apple.printserviceLPR_mDNSxxxxxxx.plist (where xxxxxxx is the name of the print-queue) and restart the server.
    Regards
    Michael

  • Hyperion Financial Reporting-Print Service is not Starting-11.1.2.1

    Hi,
    We are using Hyperion 11.1.2.1 and when i look at my Hyperion Financial Reporting-Print service it shows me at stopping and when i right click to stop/start it the options are greyed out.
    I have completely stopped all the hyperion services and started them again and now the HFR Print service is showing me as Starting.
    Kindly help me what should i do to resolve this issue.
    You can see the screen shot at my blog.
    http://hyperion-consulting.blogspot.in/2012/08/hi-we-are-using-hyperion-11.html
    Regards,
    AS
    Edited by: Don'tKnow999 on Aug 30, 2012 9:52 PM

    Hi John,
    Thanks a lot for your reply. I saw the log file however i am not able to understand where the issue lies. Can you kindly hlep me out. Below is the FRPrintLogging.log
    [2012-08-31T02:42:54.565-04:00] [EPMFR] [ERROR] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vQRewCSs85njp2iZ1GG5mQ000000,0] [SRC_CLASS: com.hyperion.reporting.registry.FRSystem] [SRC_METHOD: lookupHsServer] [[
    com.hyperion.reporting.util.HyperionReportException: Could not connect to the server.
    Please make sure that the server is running as specified in the logon dialog (including port number if not default).
         at com.hyperion.reporting.registry.FRSystem.lookupHsServer(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T02:42:54.565-04:00] [EPMFR] [WARNING] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vQRewCSs85njp2iZ1GG5mQ000000,0] [SRC_CLASS: com.hyperion.reporting.config.FRConfig] [SRC_METHOD: getFRConfig] [[
    java.lang.NullPointerException
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T03:12:21.914-04:00] [EPMFR] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.printserver.StandalonePrintServerLauncher] [SRC_METHOD: <init>] Oracle Workspace
    [2012-08-31T03:12:22.198-04:00] [EPMFR] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.printserver.StandalonePrintServerLauncher] [SRC_METHOD: <init>] Copyright&#169 2000, 2011 Oracle and / or its affiliates.
    [2012-08-31T03:12:22.198-04:00] [EPMFR] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.printserver.StandalonePrintServerLauncher] [SRC_METHOD: <init>] All Rights Reserved.
    [2012-08-31T03:13:46.993-04:00] [EPMFR] [ERROR] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.registry.FRSystem] [SRC_METHOD: getObjectFromURL] [[
    java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:529)
         at java.net.Socket.connect(Socket.java:478)
         at java.net.Socket.<init>(Socket.java:375)
         at java.net.Socket.<init>(Socket.java:249)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(DefaultProtocolSocketFactory.java:80)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(DefaultProtocolSocketFactory.java:122)
         at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707)
         at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387)
         at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:323)
         at com.hyperion.reporting.registry.FRSystem.getObjectFromURL(Unknown Source)
         at com.hyperion.reporting.registry.FRSystem.lookupHsServer(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T03:13:47.011-04:00] [EPMFR] [ERROR] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.registry.FRSystem] [SRC_METHOD: lookupHsServer] [[
    com.hyperion.reporting.util.HyperionReportException: Could not connect to the server.
    Please make sure that the server is running as specified in the logon dialog (including port number if not default).
         at com.hyperion.reporting.registry.FRSystem.lookupHsServer(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T03:13:47.025-04:00] [EPMFR] [WARNING] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.config.FRConfig] [SRC_METHOD: getFRConfig] [[
    java.lang.NullPointerException
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    ]]

  • I need to tell Print services to use the 2nd ethernet port

    I need to tell Print services to use the 2nd ethernet port
    Thanks in advance to anyone who can shed some light. My research has led me to a dead-end so far. Running 10.3.9 on my server. XServe Dual 2.3
    I want to have File services and the various other duties pushed through one ethernet port, and print services on the other. I know there is probably a config file to make one simple edit, but I can not find it, or perhaps a "defaults" type command.
    Also, where is this "command-line administration guide" that I keep running across on Apple's support?
    Thanks in advance.
    Matt

    Similar issue here too. Is it the subnet? Basically, I'm having a problem printing to an AirportExpress-served printer. Our network looks like this:
    (From Outside...>>>...to Inside)
    (Public IP) DSL Modem
    ...(10.0.0.x) Airport Express -- HP DesignJet 100 USB -- Airtunes/stereo
    ...(10.0.0.x) NetGear Wireless Router
    ...(10.0.0.x nic 0) Mac OS X Server (192.168.0.x nic1)
    ......(192.168.0.x) Mac OS X client
    ......(192.168.0.x) Mac OS X client
    ......(192.168.0.x) Mac OS X client
    The printer driver does not appear to be able to do IP printing, it assumes a direct USB connection. We can setup the OS X Server with the printer served by the Airport Express, as it is found via Bonjour, and then we share its queue via Server Admin. The problem is that the LAN clients cannot print to this server queue. The printer gets stopped at the server.
    If we turn OFF the OS X Server's firewall, printing works from both the clients and obviously from the Server. I think my question is this: what ports or services need to be turned on in order for the clients to print? There is no clear checkbox for "Bonjour Printer Sharing", and I'm curious what ports this would open, and if it would be safe. I thought it would work because we're pushing the print job up through the firewall, but apparently some response needs to come back through the firewall, and that's what's not happening.
    And to tack onto this, how could we also push iTunes to the Airport Express from the Clients? Assuming the music goes over different ports than the print jobs. ?
    Thanks in advance for any help.

  • Online printing services and that built into Aperture

    Hi,
    I regularly have pictures printed by a well known high street photo store here in the UK but just recently I've been disappointed with some of the results.
    They're coming back too dark and with a yellow cast even though the original files look fine when viewed on several different modern monitors, some calibrated, some not. I even run my monitor at minimum brightness when preparing them to try to simulate how dark they will look when printed using this service. I also add much more exposure to some pictures in Aperture to the point where they start to look washed out and even then they come back a bit dark.
    I'm therefore looking to find an alternative service. Can anyone recommend a reliable and affordable online printing service that produces results close to the electronic versions viewed on their monitor?
    Has anyone tried the built in "Order Prints" option in Aperture? How did it go?
    I briefly tried to use this option last night but for some reason it didn't recognise my Apple ID which I thought was the same as I use to log into these forums ie "d60Dave" in my case. Am I mistaken?
    Regards,
    Dave.

    I second that about photobox. I've used them for 2 years or so - never had to send anything back. I've been pleased with the results for prints, posters and small booklets. online service only
    ray

  • Oracle 9i Reports Services Server Log option

    Hi,
    We are using the Oracle 9i Reports Services on NT and solaris. But I facing peculiar problem in Solaris
    1. Oracle 9i Reports is installed by our DBA with dba permissions.
    2. I as user is not able to run the rwserver.exe as it is saying that it did not have root permissions to write on the log files which are present in the directory: ORACLE_HOME\reports\logs\*.log.
    3 My issue is that why Oracle is writing in the ORACLE_HOME directory which in most of the cases will be installed by dba.
    4. My question is how do I change the default ORACLE_HOME\reports\logs\ directory so that when my server runs it creates log in MY_DIR\log
    5. I have checked some option in the server.conf, there is one element for log which allows to set alljobs/succecedjobs/failedjobs/nojob. But even this option for nojob is not working.
    It will be nice if somebody can help me on this.
    Thanks
    Ashish

    * If tracing is what you want you can give
    tracefile=<absoluteFileName>
    in command line to give a user defined file
    * Other than this I think there is no way to change the default log location
    Other Options
    * Ask your dba to give write permissions for all in log directory
    Thanks
    The Oracle Reports Team

Maybe you are looking for

  • Sort Order of Tables in Data Modeler in SQL Developer 3.0

    I have a schema with many tables and would like the Data Modeler (in SQL Developer 3.0) to create a Relational Model sorted by table name in Alphabetical Order. The default seems to be random alphabetic order.

  • Where does Mac Lightroom 4.4 store all its preferences?

    I have a problem importing video into Lightroom 4.4 on Mac OS X 10.9.4, and the problem goes away if I test with a brand new user account.  I'm trying to recreate this virgin state in my main user account by deleting all the Lightroom preferences.  B

  • How can i get imovie on my macbook pro for free?

    i have a brand new macbook pro and i don't have ilife or iwork installed, does anyone know how i could get it without purchasing it? thanks

  • Optical Flow produces only a still frame

    Weird bug; hoping there's a workaround... When I choose a clip and select Video Quality >> Optical Flow, it analyzes it and renders a still frame for the duration of the clip. (The thumbnail indicates shows motion throughout the clip, but indeed it's

  • PO price changes

    Hi Experts,      My final Product "A" price is 300$ and has BOM components "A1" price 200$, "A2" price 100$. I had created Sub Contracting PO for final product A..it's price 300$ is automatically came from Purchase Info Record.      Later my customer