CDM and printing from Client side

Hi all,
Here I have installed RH9 and Tarantella 3.40. and I have 2 network card.
First one is eth0 is for LAN and second is for static IP i.e eth1. my
application server is win2k and I can access application easily. Now my
problem is I want use client drive mapping here to save users work and
Client printing for print the reports. Can anyone help how to do that ?
Thanks Regards,
Rachana.

Rachana,
Can you describe your network architecture again? How many NICs do you have
on the Tarantella server? What's the name(s) and IP address(es)? How many
NICs do you have on your W2K server? Name(s) and IP address(es)?
"Rachana" <[email protected]> wrote in message
news:[email protected]...
Hi Esc 27,
Thanks again,
I have made changes as per your instructions.
Problem not yet solve. Now new message I seen in ttatdm "13:41:01
:00000016:Administrator :Failed to create server channel"
Prining from tarantella is priority for me. I am seen printer has been
create session wise in Win2k server, even as per TTA document I created
LPR port. But here I given eth1 IP address (i.e. my static IP address ) in
providing lpd field. and name of printer is tta_printer.
Is it correct to give static IP address for LPR port ?.
Still I am in same problem kindly please help me.
Regards
Rachana.
Escape 27 wrote:
Try enabling the WINS server in Array Manager and add it to your W2K
server.
"Rachana" <[email protected]> wrote in message
news:[email protected]...
Hi Escape 27,
Thanks for your reply.
First I tried in array manager to change DNS Name, second I have
installed
enhancement module on w2k server. But still I facing same CDM problem.
In
w2k server \"C:\Program Files \Tarantella \Enhancement
Module\ttatdm.exe\"
I seen this error \"C:\Add device failed with ERROR_BAD_NETPATH\".
F.Y.I. I am not created Domain here because I have Static IP and I want
to
access thought simple Internet.
help is appreciate.
Thanks,
Rachana Salavi
Escape 27 wrote:
I assume that when you say eth1 is \"static IP\", you meant this oneconnects
to the internet.
What you need to do are:
- change the external DNS name in Tarantella to use the hostname of
your
eth1 interface
- install the enhancement module on your W2K server
- enable Client Drive Mapping in array manager
All users will access the Tarantella server using the hostname of eth1
Hope this helps.
\"Rachana Salavi \" <[email protected]> wrote in message
news:[email protected]...
Hi all,
Here I have installed RH9 and Tarantella 3.40. and I have 2 network
card.
First one is eth0 is for LAN and second is for static IP i.e eth1.
my
application server is win2k and I can access application easily. Now
my
problem is I want use client drive mapping here to save users work
and
Client printing for print the reports. Can anyone help how to do
that ?
Thanks Regards,
Rachana.

Similar Messages

  • Set printer from client side

    Hi All,
    I am browsing in this forum, how to set printer crystal report at runtime in web application. I find that way, but in server side. I have web application that deploy ini web server and I have end user/client that want to open report in my web application and print it. Could you give any snippet code to do it?
    Thanks.
    Sri

    To print client side you must install the Crystal Reports ActiveX control. The security warning is the same as any other ActiveX control you'd install. Simply click the yellow bar at the top of your browser screen, or follow the directions to install it.
    If you don't want to install the ActiveX control you can use the Pdf print mode instead.

  • Send direct print to printer from client, Reports 10G, Windows environment,

    We are using windows 2003 based server. Oracle Form and Report Services . Database 10g . Reports 10G.
    Trying to send direct print to printer from client side using Destination Parameter : Printer.
    I am getting output in pdf at client side. but direct print to printer is failed.

    Make sure that the client printer is also known on the application server, since that is where the print job is generated.

  • How can i load file into database from client-side to server-side

    i want to upload file from client-side to server-side, i use the following code to load blob into database.
    if the file is in the server-side, it can work, but if it in the client-side, it said that the system cannot find the file. i think it only will search the file is in the server-side or not, it will not search the client-side.
    how can i solve it without upload the file to the server first, then load it into database??
    try
    ResultSet rset = null;
    PreparedStatement pstmt =
    conn.prepareStatement ("insert into docs values (? , EMPTY_BLOB())");
    pstmt.setInt (1, docId);
    pstmt.execute ();
    // Open the destination blob:
    pstmt.setInt (1, docId);
    rset = pstmt.executeQuery (
    "SELECT content FROM docs WHERE id = ? FOR UPDATE");
    BLOB dest_lob = null;
    if (rset.next()) {
    dest_lob = ((OracleResultSet)rset).getBLOB (1);
    // Declare a file handler for the input file
    File binaryFile = new File (fileName);
    FileInputStream istream = new FileInputStream (binaryFile);
    // Create an OutputStram object to write the BLOB as a stream
    OutputStream ostream = dest_lob.getBinaryOutputStream();
    // Create a tempory buffer
    byte[] buffer = new byte[1024];
    int length = 0;
    // Use the read() method to read the file to the byte
    // array buffer, then use the write() method to write it to
    // the BLOB.
    while ((length = istream.read(buffer)) != -1)
    ostream.write(buffer, 0, length);
    pstmt.close();
    // Close all streams and file handles:
    istream.close();
    ostream.flush();
    ostream.close();
    //dest_lob.close();
    // Commit the transaction:
    conn.commit();
    conn.close();
    } catch (SQLException e) {

    Hi,
    Without some more details of the configuration, its difficult to know
    what's happening here. For example, what do you mean by client side
    and server side, and where are you running the upload Java application?
    If you always run the application on the database server system, but can't
    open the file on a different machine, then it sounds like a file protection
    problem that isn't really connected with the database at all. That is to
    say, if the new FileInputStream (binaryFile) statement fails, then its not
    really a database problem, but a file protection issue. On the other hand,
    I can't explain what's happening if you run the program on the same machine
    as the document file (client machine), but you can't write the data to the
    server, assuming the JDBC connection string is set correctly to connect to
    the appropriate database server.
    If you can provide some more information, we'll try to help.
    Simon
    null

  • How to use KeyChain API from client-side HTML scripting in Safari on iPad?

    I have a requirement where I need to add client-side scripting in an HTML page to be supported by Safari on iPad that creates a private / public key pair and that creates a CSR (Certificate Signing Request) in PKCS#10 or SPKAC format that can be sent to a certification authority server using form HTTP/POST that will then return the generated certificate.
    I initially thought that I could simply use the HTML 5 tag <keygen> which can do exactly what I need, but unfortunately this tag is not at all supported on mobile Apple devices like iPad or iPhone, so I have to look for another solution.
    I have noticed that the KeyChain tool should be available on iPad using the documented API, but I have no idea based on the documentation whether the API can be called from client-side HTML scripting on iPad.
    Question : is it technically possible using the functionalities and API's exposed on an iPad to implement what I just described in HTML client-side scripting? If so, do you have some links with useful information that can help me on my way?

    I have a requirement where I need to add client-side scripting in an HTML page to be supported by Safari on iPad that creates a private / public key pair and that creates a CSR (Certificate Signing Request) in PKCS#10 or SPKAC format that can be sent to a certification authority server using form HTTP/POST that will then return the generated certificate.
    I initially thought that I could simply use the HTML 5 tag <keygen> which can do exactly what I need, but unfortunately this tag is not at all supported on mobile Apple devices like iPad or iPhone, so I have to look for another solution.
    I have noticed that the KeyChain tool should be available on iPad using the documented API, but I have no idea based on the documentation whether the API can be called from client-side HTML scripting on iPad.
    Question : is it technically possible using the functionalities and API's exposed on an iPad to implement what I just described in HTML client-side scripting? If so, do you have some links with useful information that can help me on my way?

  • How call session bean from Client side

    Hi
    calling session bean from client side it gives Lookup erroe, it gives JNDI error
    how we know session bean is working. in Admin tree bean statis is reb Flaf, and ID is "Down" how we activate it..
    null

    If you can make a connection using sess_sh, then you know that you have configured your database and listener properly. If it is not working, read the manuals that you can download from technet. They are pretty good, and if you follow the directions, you should see success.
    Good Luck!
    Brad

  • HT4059 i purchased a tour guide book and would like to view and print from my PC, how can I?

    i purchased a tour guide book and would like to view and print from my PC, how can I?

    You purchased an ibook?
    Can I print my books and PDFs from iBooks?
    Yes, you can print PDFs and notes you've entered from iBooks, but the option to print ePub books is not available.2You can also email PDFs and notes you have written from iBooks."
    iBooks: Frequently Asked Questions (FAQ)

  • I have a Macbook pro thats prints fine to my HP printer, but when I try and print from my iMac it doesnt see the pages and just prints two blank pages. Even thou the document is a number of pages

    I have a HP Officejet Pro 8500A and I had no problems printing to it from my Mac or Macbook pro. The macbook is wifi and the Mac is cable, I have recently had the printer replaced with an exact model. Since doing that I can only print from the macbook pro, when I try and print from teh mac it doesnt see the pages. It could be a 10 page document and it will just show two blank pages. I have googled the question and have tried deleating the printer and reinstalling without any luck. When I got the new printer I insalled all the latest drivers thats the only thing different.
    Could you please help
    Michelle

    Right click the printer in System Prefences -  Print & Scan and use Reset Printing System... and then reinstall the printer, should take less than 5 minutes. Here is a photo showing how to Reset Printing System....

  • How can i look up a EJB residing in different machine from client side?

    hai ,
    How can i look up a EJB residing in different machine from client side?
    this is my code...........i don't know what should i use as Initial Context Factory...................i am using a sun appserver 8............
    package com.parx.lms.lmsdelegate;
    import com.parx.lms.exception.LMSException;
    import javax.naming.Context;
    import javax .ejb.CreateException;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.rmi.PortableRemoteObject;
    import java.rmi.RemoteException;
    import com.parx.lms.controller.*;
    import com.parx.lms.vo.UserVo;
    import com.parx.lms.exception.BusinessException;
    import java.util.Hashtable;
    import java.lang.*;
    public class LmsDelegate{
    private final static String JNDI_NAME="LmsBean";
    private static String url="http://localhost:4848";
    public static Lms lms = null;
    public void getController() throws CreateException,
    NamingException,RemoteException{
    if(lms == null){
    Hashtable h=new Hashtable();
    h.put(Context.INITIAL_CONTEXT_FACTORY," ********what should i use here???????*************************");
    h.put(Context.PROVIDER_URL,url);
    System.out.println("Before Loading Context in Delegate");
    Context ctx=new InitialContext(h);
    System.out.println("Loaded Context in Delegate");
    Object obj=ctx.lookup(JNDI_NAME);
    System.out.println("Loaded Object in Delegate");
    System.out.println("Before Loading Home in Delegate");
    LmsHome home = (LmsHome )PortableRemoteObject.narrow(obj,com.parx.lms.controller.LmsHome.class);
    System.out.println("Loaded Home in Delegate");
    lms = home.create();
    System.out.println("Loaded remote in Delegate");
    public void addUserDelegate(UserVo vo) throws BusinessException{
    try{
    getController();
    System.out.println("Before calling the addUser of Session");
    lms.addUser(vo);
    }catch(CreateException e){
    System.out.println("Create Exception in Delegate due to--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    }catch(NamingException e){
    System.out.println("Naming Exception in Delegate due to--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    catch(RemoteException e){
    System.out.println("Remote Exception in Delegate due to--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    }catch(LMSException e){
    System.out.println("duplicate user name--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    pls help me..........

    h.put(Context.INITIAL_CONTEXT_FACTORY," ********what should i use here???????*************************")
    Each app server provides their own jndi factory class. For ex for weblogic it is weblogic.jndi.WLInitialContextFactory. SInce you are using sun app server, check if there are any examples to find out or the docs.
    private static String url="http://localhost:4848
    Since the client is in a different machine the localhost is not going to work here. provide the url or the machine name of the system in which ur sunapp server is running. In addition u will need to have the stubs of the remote interfaces in ur client machine.

  • Hi When going from Develop module to print module a white boarder appears on screen which also prints via my epson r3000 printer. I can get round this by exporting photo to Elements and printing from there but can i get rid of the boarder and print from l

    Hi When going from Develop module to print module a white boarder appears on screen which also prints via my epson r3000 printer. I can get round this by exporting photo to Elements and printing from there but can i get rid of the boarder and print from lightroom?

    In the printer driver (accessed through the Page Setup button) set the Advanced tab to borderless. Then in the right hand panel under Layout set all the margins to zero.

  • How to deploy Forms, Reports and Menu from Client to Server machine

    Dear Experts,
    I have one requirement to deploy the Forms, Reports and Menu from client machine to server machine.
    Deployment involves the following steps :
    1. Firstly we have to search the selected file in a folder where the .fmx is present ( in Server machine) and take the back up of the the existing file in the server (Source and destination paths will be available).
         Ex. If the existing FMB name is TEST.fmx then the backup file should be TEST_sysdate.fmx.
    2. Secondly we have to transfer the file from the client folder (or from another folder of the same server) to the server folder where the back up exists.
    Please help me to search/rename/copy/replace the _.fmx/.rdf/.rep/.mmx_ files from client to server.
    We are using
    9i Database.
    10g Forms and reports.
    SQL Developer tool.
    OS is Windows (Client and Server).
    Help me out to attach a file of front end screen which we are planning to develop. It will give a clear picture on this requirement.
    Thanks :)
    Edited by: 941175 on Jun 17, 2012 9:09 AM
    Edited by: 941175 on Jun 17, 2012 9:12 AM
    Edited by: 941175 on Jun 17, 2012 9:14 AM

    941175
    Welcome to the forum. Please take a while to go through the FAQ to be found to the top right of the page.
    Your issue is more to do with batch files rather than Forms. The only relation with Forms, as I see it, is that you will be using HOST/CLIENT_HOST to start a batch file with the file name to be deployed as a parameter passed to it.
    You need to rewrite either a CMD batch file or a Powershell script to achieve what have set out to do.
    For CMD batch files look up http://www.robvanderwoude.com/battech.php , or any of the other excellent resources available on the internet.
    Regards,

  • I was wondering, is there an application I can download from the App Store that allows me to plug in a USB cord from my Iphone and print from any computer?

    I was wondering, is there an application I can download from the App Store that allows me to plug in a USB cord from my Iphone and print from any printer?

    Sorry but no. iOS does not support connecting a printer via USB, only via WiFi, and without such support there's no way a developer can build an app to provide such capability.
    Regards.

  • I have a new Macbook pro and need to run some Windows software, it appears "Parallel" should work well from what I've have read. Will I have any issues or problems accessing and printing from various printers on my Windows 7 network within Parallel?

    I have a new Macbook pro and need to run some Windows software, it appears "Parallel" should work well from what I've have read. Will I have any issues or problems accessing and printing from various printers on my Windows 7 network within Parallel? Is Parallel in fact the best way to go?

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • HT4356 I GOT AN EPSON WP-4533 WHICH HAS AIR PRINT AND PRINTS FROM MY MAC AND MAC BOOK W/O PROBLEMS, BUT WON'T PRINT FROM MY IPHONE.  IT IS NOT ON THE ABOVE LIST OF PRINTERS, BUT BOTH EPSON AND APPLE SAID IT WILL WORK.

    I GOT AN EPSON WP-4533 WHICH HAS AIR PRINT AND PRINTS FROM MY MAC AND MAC BOOK W/O PROBLEMS, BUT WON'T PRINT FROM MY IPHONE.  PROBABLY BECAUSE IT'S NEW IT'S NOT ON THE APPLE LIST OF PRINTERS, BUT BOTH EPSON AND APPLE SAID IT WILL WORK. ANY THOUGHTS

    Some things you can try.
    Startup Issues - Resolve
    Startup Issues - Resolve (2)

  • ADF 11G - Printing on Client Side???

    Hello,
    I'm trying to send to the client printer a file stored in my server.
    Is there any way to do that?
    More specifically, I want to see from the server the client side printers.
    I'm working on ADF 11G version 11.1.1.4. and Weblogic 10.3.2

    You know that your jdev does not match the needed wls server version?
    You can't see the client site printer on the serve. You have to send the file to the client first.
    Then you show the file in the browser and the user can use the browsers print dialog.
    Timo

Maybe you are looking for