How to access a printer on a networkwit​h a Linux server and Windows client.

Windows can't find a driver on the network. To locate one manually. click OK. Otherwise click Cancel...
This question was solved.
View Solution.

I posted additional information  online using the newly created Launchpad login Service account.
I hope that explains my situation, if not I will add more detail here.
There is no problem, when ither of the two OS are used to enable printing with the HP Deskjet 2050 J510 series printer.
The problem begins when I try to print from the other OS , when connected to one of the Operating System.
I have tried without success to print from Windows 7 Ultimate 64-bit OS from an HP Deskjet 2050 J510 series connected to a Ubuntu 12.04 LTS server with Amahi (HDA), installed.
The same thing occurred when I tried to print from the Ubuntu server and the printer was connected to the Windows 7 Ultimate 64-bit running P.C.

Similar Messages

  • I am unable to create pdf using adobe printer to a redirected folder on a server running windows server 2003

    I am unable to create pdf using adobe printer to a redirected folder on a server running windows server 2003

    In the app-server-ant.xml file, as indiacted in the error message i am getting, at line 145 it is suppose to get the path to \bin\asadmin.bat from the value of a paramater called 'asadmin'. This value is being set in the beginning of the file.
    The parameter value of 'asadmin' is further referring to value of another parameter called 'javaee.home' which is being set in tut-install/javaeetutorial5/examples/bp-project/build.properties
    I have checked the values of both these parameters and they are set correctly, so since it is still giving me problems, at line 145 i hard coded the path instead of the parameter name:
    I replaced line
    <exec executable="${asadmin}" failonerror="${failonerror}" dir="${javaee.home}">
    with
    <exec executable="c:/sun/appserver/bin/asadmin.bat" failonerror="${failonerror}" dir="${javaee.home}">
    This works.

  • How to configure router to use ip pool on the aaa server for vpn clients

    how to configure router to use ip pool on the aaa server for vpn clients . i want to use vpn clients to connect to the router. authenticate using the aaa server username databse and also use the ip pool cretaed on the aaa server. i am not able to find the command on the router pointing to use the pool created on the aaa server. can u some one help me with this command.
    sebastan

    Hello Sebastan,
    what do you use as AAA server (e.g. ACS with TACACS+ or RADIUS) ?
    Regards,
    GNT

  • How to access CUPS - printer setup [Solved]

    I installed CUPS and hplip. Hplip doesn't open for some reason and when I go to http://localhost:631/ it won't open the site to configure my printer. I have installed cups.
    What else is needed?
    Last edited by vinoman2 (2009-05-31 18:08:13)

    I get this now:
    [davek@myhost ~]$ hp-toolbox
    HP Linux Imaging and Printing System (ver. 3.9.4b)
    HP Device Manager ver. 15.0
    Copyright (c) 2001-9 Hewlett-Packard Development Company, LP
    This software comes with ABSOLUTELY NO WARRANTY.
    This is free software, and you are welcome to distribute it
    under certain conditions. See COPYING file for more details.
    warning: Reportlab not installed. Fax coverpages disabled.
    warning: Please install version 2.0+ of Reportlab for coverpage support.
    I still can't get to localhost:631 
    What else to I need to do? Printer setup should be more straightforward than this. No other distro has been this convoluted to set up.  I know you don't want to hear this but maybe on the next version Arch can improve on this printer setup.
    Last edited by vinoman2 (2009-05-31 16:20:59)

  • How to access JDBC Resource registered in Sun Java System App Server ?

    I want to create a stand-alone JDBC application with Java SE using Swing technologies and JNDI technology. The purpose of using JNDI technology is to avoid change of Java Source Code every time I move the database to different location. This Java application will be used in a standalone PC installed with Windows XP Professional with no LAN / WAN connection. Of course, Internet connection is available with the PC.
    I use JavaDB to store the data tables and the location of the database is D:\E-DRIVE\SAPDEV. Tomorrow, if I move this database to C:\SAPDEV or any network drive, I do not want to change the Java Source code. I want to use JNDI which, if I am not wrong, helps developers to avoid manual change of Java source code whenever the database location is changed. Changes have to be made only in the JNDI Name which contains all relevant information about the database in order to get connection no matter where the database SAPDEV is stored; it can be placed under D:\E-DRIVE directory or C:\ directory of the hard disk. To implement my intention, I started developing Java application as per the steps mentioned below:
    Step 1:
    To proceed, first, I sought the help of Sun Java System Application Server Admin Console. I created JNDI object for Connection Pool using the menu path Common Tasks->Resources->JDBC->Connection Pools.
    JNDI Name : ABAPRPY
    Resource Type : javax.sql.DataSource
    Datasource class : org.apache.derby.jdbc.ClientDataSource
    Description : ABAP Program Repository
    The Connection Pool creation has options for General, Advanced and Additional Settings tabs and I made all the settings relevant to the database I created in D:\E-DRIVE\SAPDEV.
    To confirm whether the above settings are correct, I pressed the Ping push button which is available in the General tab of the connection pool creation screen. The system responded with the message Ping Succeeded.
    Step 2:
    I created a JDBC Resource using the menu path Common Tasks->Resources->JDBC->JDBC Resources.
    JNDI Name : jdbc/SAPDEV
    Pool Name : ABAPRPY
    Description : Database Connection for SAPDEV database
    Status : Enabled
    I can see all the above settings recorded in the domain.xml which is placed in the folder
    C:\Sun\AppServer\domains\domain1\config
    Step 3:
    I have made sure that Sun Java System Application Server is up and running in the background with JavaDB server. I created a Java Program making sure the following JAR files are included in the classpath:
    appserv-admin.jar
    appserv-ee.jar
    appserv-rt.jar
    javaee.jar
    fscontext.jar
    Plus, the lib directory of JDK 1.6 & C:\Sun\AppServer\domains\domain1\config
    Source code of the program is as follows: I used NetBeans IDE to create my project file.
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.naming.*;
    import javax.activation.DataSource;
    public class JNDILookup {
    public static void main(String[] args) {
    try {
    InitialContext initCtx = new InitialContext();
    DataSource ds = (DataSource) initCtx.lookup("java:comp/env/jdbc/sapdev>");
    } catch (NamingException ex) {
    Logger.getLogger(JNDILookup.class.getName()).log(Level.SEVERE, null, ex);
    When I attempted to compile the above program in NetBeans IDE ,no compilation error reported. But while executing the program, I got the following run-time error message:
    SEVERE: null
    javax.naming.NameNotFoundException: No object bound for java:comp/env/jdbc/sapdev> [Root exception is java.lang.NullPointerException]
    at com.sun.enterprise.naming.java.javaURLContext.lookup(javaURLContext.java:224)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:396)
    at javax.naming.InitialContext.lookup(InitialContext.java:392)
    at SAPConnect.JNDILookup.main(JNDILookup.java:21)
    Caused by: java.lang.NullPointerException
    at com.sun.enterprise.naming.java.javaURLContext.lookup(javaURLContext.java:173)
    ... 3 more
    Now, I want to come out of this situation; at the same time, I want to preserve the settings I have made in the Sun Java System Application Server Admin Console. That is, I want to programmatically access the data source using Connection Pool created in Sun Java System Application Server Admin Console.
    I request dear forum members to provide me an appropriate solution.
    Thanks and regards,
    K. Rangarajan.

    jay44 wrote:
    Bare in mind I am attempting the context.lookup() from inside the container (my code is in a session bean). I have accessed the server and have my bean "say hello" first to verify the bean works OK, then I call a method with this rather standard code:
    String jndiDataSourceName ="Second_EJB_Module_DataBase";
    Logger.getLogger(DynamicPU.class.getName()).log(Level.INFO,"Programatically acquiring JNDI DataDource: "+ jndiDataSourceName);
    InitialContext ctx;
    try {
    ctx = new InitialContext();
    ds =(DataSource)ctx.lookup("java:comp/env/jdbc/"+jndiDataSourceName);
    } catch (NamingException ex) {
    Logger.getLogger(DynamicPU.class.getName()).log(Level.SEVERE, null, ex);
    return "Exception generated trying to preform JDBC DataSource lookup. \n"+ex.toString();
    But when I run the code the server log shows the initial context is created Ok, but an exception is thrown becasue the resource name is not found:
    (and i have tried vriations of ctx.lookup("jdbc/"+jndiDataSourceName) etc etc
    You are fine here. It works in container because the InitialContext properties have been supplied already. That was the link I forwarded earlier. The InitialContext you create locally needs to locate the container JNDI. That is what the properties specify.
    Where I am confused is where you indicate the stack below is from the server log. So, you initiate a standalone (java main method) application, create an InitialContext, and you see the results in your app server log?
    LDR5010: All ejb(s) of [EJB_Module_1] loaded successfully!
    Programatically acquiring JNDI DataDource: Second_EJB_Module_DataBase
    The log message is null.
    javax.naming.NameNotFoundException: Second_EJB_Module_DataBase not found
    at com.sun.enterprise.naming.TransientContext.doLookup(TransientContext.java:216)
    at com.sun.enterprise.naming.TransientContext.lookup(TransientContext.java:188)
    at com.sun.enterprise.naming.TransientContext.lookup(TransientContext.java:192)...
    at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(ThreadPoolImpl.java:555)
    This is strange since I can see this resource (a JDBC connection named Second_EJB_Module_DataBase) is configured on the server from the server's admin console.
    That is why you can obtain a lookup from within the container (app server).
    For this lookup to work it may be that one must map the name inside an ejb-jar.xml deployed with the application, but I have also read some resources like jdbc connection should have a default name. Does anyone know if my lookup() should work without using an ejb-jar.xml mfile to explcitly map the reource for my application?
    Both EBJ's and data sources can be referenced via JNDI. It's a remote lookup (that is normally optimized if it is running in the same JVM). You should not have any dependencies on a JDBC data source being set-up on ejb-jar.xml. That file can of course impact your EJB's. However, data sources are normally set-up on a container-specific basis (e.g., you probably did it through a console, but there is a spec somewhere about how to set up a data source via a resource the app server looks for; it varies from app server to app server). However, once you have that container-specific data source set-up, JNDI operates vendor-neutral. You should be able to take the code above and move it to JBoss or Weblogic or Tomcat or whatever (this is an ideal, in practice, the vendors sometimes put a data source in a name you would not expect, but again, you can use their JMX console to see what the JNDI name is).
    (As I stated above if I have to use a deployment discriptor to get at this JNDI datasource, then solution is not "programmatic" as newly configured datasources could not be accessed without redeploying the entire application).
    As JSchell alluded to, you will always have at least something vendor-specific. JNDI itself (the code you wrote) is totally portable. However, you have to set the various JNDI environment properties to a given vendor's spec. Ideally, you should not need a vendor's actual InitialContext application, but it's a possibility. Once you can safely cast to Context, you should be vendor-neutral (if not, demand your money back).
    So that is exactly where I am stuck, trying to get the lookup to work and wondering if it should work without and xml file mapping the resource for my app.
    What we ended up doing for standalone was to provide our own JNDI. If you look at the open source project JOTM, there are examples on how to use that with XBean (if integrating with Spring, as we did), you can easily set up a data source that runs standalone exactly as you get in the container. Another benefit is you get full JTA/JTS support and the ability to run XA transactions. (This might all be alphabet soup, but the app server gives it to you, and this is the way we ended up doing the same: JNDI + JTA + JTS + XA). It ends up the same application code uses a "vanilla" InitialContext and all we have to do is write one or two xml files (one for our app server, a couple for JOTM), and our actual code works the same.
    I still think you have a shot at getting to the container's JNDI, just not using their full-blown app server JAR.
    I think there must be a simple way to do this with an ejb-jar.xml, I am no expert in JNDI, I could be missing something simple, I will keep at it and post an answer here if I come up with it.
    Thanks, jayIt is simple to code. Getting it to integrate with your app server, yes, that can be challenging. But it has nothing to do with EJB's. Write a simple test. Using nothing but DataSource and InitialContext. Let us know where you get stuck.
    - Saish

  • How to access a USB disk drive connected to Airport Extreme from a Windows 7 PC?

    How can I access a USB disk drive connected to Airport Extreme from a Windows 7 PC?

    ...Called it a roaming network.  Wireless mode is create a wireless network. I have checked allow this network to be extended.  Probably need to uncheck that?
    Yes, that option should be deselected as it only pertains to when both routers are interconnected by wireless. Since you have a roaming network, they of course, would be interconnected by Ethernet.
    The other important settings for a roaming network are:
    Each router must have a unique station name. For the AirPort, this would be called its Base Station Name. I believe the default station name for Linksys routers is: linksys
    Each router must broadcast a wireless network with an identical Network Name. For the Linksys, Network Name is the same as its SSID.
    Each router wireless network must use the same Wireless Security type and password. The Linksys WRT-54G is capable of up to WPA2 Personal. If you have it set to this level of security, the AirPort should be at the same setting.
    Make sure that each router is not on the same Radio Channel for the 2.4 GHz radio. In the US, there are basically only three non-overlapping channels: 1, 6, or 11. Set each so that they don't use the same channel but use of those three choices.

  • ISE device differentiated access and windows clients

    Hi guys,
    Pretty new to ISE  and looking for some help wrapping my head around a couple of things.
    First, I have a beta wireless network setup, called VIP for for employees to connect their mobile devices too, it's PEAP based.  i'm also tagging into it the ability to create guest accounts through a portal and redirecting to different vlans (and thereby different internet providers).  That's all working pretty well.  However, one of the issues I have with it of course is with PEAP, a windows client doesn't correctly configure for it as it defaults to using the username/password logged into it.  Is it possible to attach a policy to that network to determine if it's a windows client and require them to do web-auth user/password?  Whats the best approach for that?  I didn't want to do web-auth for everyone (smartphones/tablets) as it's not accepted by the user base very well (healthcare) and they have to buy-in.
    Secondly, we have a situation where corporate ipads may be used by the same individuals (employees) who have their own devices and have access to the VIP network via their AD username/password.  What I don't want to do, is use PEAP for the corporate network (ipads) and give the user the ability to connect to the corporate network with their personal device as well.  So I'm trying to figure out how I can limit this.  I would go off of the certificate based on the device, but I'm deploying certificates from my MobileIron MDM Server via it's scep proxy that runs off my MS PKI NDES installation.  As far as I know, I can't make NDES give different type of certificates for authentication to different networks... All sounds very confusing, so if you have ideas or scenarios on how to approach this, I would really appreciate it.
    Thank you,
    Raun

    You can enable ISE profiling and profile endpoints and assign auth policy based on their profile.
    http://www.cisco.com/c/en/us/td/docs/security/ise/1-2/user_guide/ise_user_guide/ise_prof_pol.html
    http://www.cisco.com/c/dam/en/us/solutions/collateral/enterprise/design-zone-security/howto_30_ise_profiling.pdf

  • How do I create a RAID 0 on a P43-C51 mainboard and Windows 7

    I just upgraded my computer with a new MSI P43-C51 mainboard, Intel E8400 Dual Core and Windows 7.  I have two identical Western Digital 250GB SATA drives.  In my previous system, using Windows XP, I had the two drives configured in RAID 0.  I was unable to find the RAID drivers (and still haven't found them) for the RAID configuration so I erased the hard drives and started over new.  I have the system up and running and want to re-install Windows 7 but in RAID 0 format.  How do I do this?
    I have downloaded the RAID drivers: Intel_HECI_MB.zip from the MSI download site but I haven't been able to use the software to create a RAID 0 configuration.
    With my last board and XP, it was straight forward.  The old BIOS itself allowed the creation of a RAID 0 configuration and the board CD included the drivers for XP.  I am wondering if I overlooked something basic and my new board just doesn't support RAID.
    Any advice or help would be appreciated and thank you in advance!

    Thanks, that is what I suspected.  Now I have a good excuse to upgrade the hard drives to SATA II  !

  • How to setup iCal on a Lion server and its client machines?

    I recently bought a new mini server (running Lion) in order to share our iCal calenders (like in the Apple presentations). I thought this would be an easy process but apparently it isn't. So what was I already able to achieve:
    1) Set up 5 different clients (on the Lion server), with corresponding e-mailadresses and passwords.
    2) Activated iCal on the server preference window (ical: on)
    3) Tried to add the user a account on one of the five client machines => HERE it goes wrong.
    My main issue is that I'm not able to add a user account on a client machine and have it connected to the server.
    It would be really nice if someone could assist me with it.
    Warm Regards

    I posted additional information  online using the newly created Launchpad login Service account.
    I hope that explains my situation, if not I will add more detail here.
    There is no problem, when ither of the two OS are used to enable printing with the HP Deskjet 2050 J510 series printer.
    The problem begins when I try to print from the other OS , when connected to one of the Operating System.
    I have tried without success to print from Windows 7 Ultimate 64-bit OS from an HP Deskjet 2050 J510 series connected to a Ubuntu 12.04 LTS server with Amahi (HDA), installed.
    The same thing occurred when I tried to print from the Ubuntu server and the printer was connected to the Windows 7 Ultimate 64-bit running P.C.

  • Save printer to layout in crystal reports XI R2 and windows vista ,7 , 2008

    Hi ,
    I have a problem with the crystal report design , I use CRXI R2 SP6 and with windows vista , windows 7 and windows server 2008 .
    The problem is that when I built the report and I go to set page from file , in the page setup form I don't have the printer select button and so I can't save the printer in the report.
    With SO earlier it's all ok.
    Thanks
    Mauro

    Hi Enrico,
    Can you let us know what is the format of the image you are using.
    Thanks,
    Naveen.

  • Lighter print out of photos using Photoshop Elements 10 and Windows 7?

    When I print directly from Elements 10, my photos come out much darker than when I print directly from my computer on Windows 7??
    Is there a MAIN adjustment (not each photo) in the program which lightens all print-outs?  My printer is fine.  It copies photos properly and prints out from Windows (My Pictures) properly.
    Donna in Joplin

    Donna,
    While you read up on color management (!!!), you may want to check the following:
    Reduce the brightness of your computer screen. The default setting may be sub-optimal.
    In Elements, go to Edit>color settings, and tick the option to optimize for computer screens
    In Elements, open a picture, then go to File>print. Look for "More options", go to the color management tab, and under color handling drop-down, select "printer manages colors"
    Suggest that you print from Editor, not from Organizer.
    HTH

  • Solaris 10 Printer share by Samba SWAT. Then install onto windows client

    Hello,
    I am having trouble with below.
    1) Installing printer on Solaris 10
    2) Sharing the printer via SWAT
    3) Install the printer on Solaris from Windows client.
    Where can I find the basic information for above 3 which I need to achieve?
    I have installed the printer locally onto Solaris 10, and was able to print, but I just can't share it to Windows.
    And because of that, I am not sure if I am doing the local printer installation in the right way or not..
    If anybody can lead me to a good website or good document for printer installation and sharing,
    please let me know.
    Regards,
    Tanuki

    Well, if you don't think the online Documentation helpful, then the better way is reading step-by-step instructions from a book. Get to local bookstore, i.e Barne&Nobles or Border or any big local bookstore, there should be pretty good book for Unix Administrator (Solaris version).
    If you have time and think you can memorize then, read on the spot; otherwise, buy the book for future reference.
    If that's not what you had in mind, then this link of free online book might help : http://www.oreilly.com/catalog/solaris8/chapter/ch04.html
    Normally, oreilly online bookstore offers free books to accredited universities, colleges, and organizations. However, if that option isn't for you, it might even offer free sample chapters that might just suit your needs.
    hoep it helps.
    -van.

  • How to access files from two computers on a network, one wired and one wireless?

    I cannot seem to access one computer from the other.  I have marked files for sharing, and both show the same work group.  How do I make sure both computers are installed on the router?

    Make sure that both computers can access the Internet through the router.
    If your router has a setting for "AP isolation", verify that it is set to "disabled".
    As long as you do the two things mentioned above, your router does not put up any barrier to file sharing.   So then the problem is not a router problem, it is a Windows problem, or a firewall problem.
    To check for firewall problem, first, make sure you can ping each computer from the other - if you cannot, then temporarily turn off your software firewall, including Windows Firewall, and see if that helps.
    If you still have problems after the firewall is off, then your problem is likely a Windows problem.   Make sure "file and printer sharing" is enabled on all your wireless adapters and ethernet cards.   If you continue to have problems, then usually the Windows support website has the best info on how to further proceed with fixing this type of problem.
    Hope this helps.

  • How to save landscape print layout for report designed in SQL Server 2005

    How to save page setup for a report wich was designed in SQL Server 2005 RS?  Each time report is previewed, I have to change portrate to landscape orientation and left and right marging from 0,5 to 0,25, to be able to see all fieldas on the report.
    Thanks!

    Hi, Marina;
    Which version of Crystal Reports are you using? Once you set a report to Landscape, and save the report, it should stay that way, unless you change to a different printer.
    Regards,
    Jonathan

  • I can print, using AirPrint, just fine. But how do I change Printer settings using my Ipad, like page orientation and 2 sided printing?

    When printing an email I get the option to select 2 sided printing but not page orientation. When trying to print a picture from my picture library I don't get either option. I am using a HP printer with AirPrint. Thanks, Dave

    Whow what a shame, I thought this iPad was going to be terrific.  Guess I'll get out my trusty Cannon from now on, lots less hassle.
    Thank you for the reply!

Maybe you are looking for

  • Bluetooth connection fails iOS 8.1

    My iPhone5s cannot make a Bluetooth connectivity with any of my Macs(MBA mid-2013, iMac late-2012, MacPro) all running Yosemite 10.10. Prior to upgrading to Yosemite the same iPhone running on iOS 7 did make successful bluetooth connectivity. My iPho

  • Renaming identical filenames in photos -how?

    How do I rename photos with identical names in iPhoto 5? I'm trying to clean up and organize my photos, so I first held down ALT and COMMAND while starting iPhoto which gave me 4 choices to clean up/rebuild stuff, which I did. When it was all done se

  • Can anyone tell me about these little blue squares?

    I'm trying to install PSE8 from disc onto my new laptop (mac running lion).  It gets to this point but the Quit and Install buttons have a little blue box right over the text.  It seems to disable the buttons where I can't select either.  In order to

  • How can I see the photos of iPhoto in a TV  via Air Play ?

    how can I see the photos of iPhoto in a TV  via Air Play ? I have a MacBook Pro ( dec 2010) v. 10.7.5

  • SQL Expression for date conversion - version XI

    I am trying to convert a number field to a date field in order to use it in a date parameter in Infoview. The database field is in a 15 digit DTM format but is stored as a number. There is also a zero stored in the database field. When I try to creat