Printing documents on client instead of server

Hello,
I am using a piece of code which prints a document when a user requests a page on its browser. The only problem is that the document is printed on the server instead of the clients default printer. The printer on the current client (the testing machine in my case) is a network printer.
Here is the code
import java.awt.*;
import java.awt.font.*;
import java.awt.geom.*;
import java.awt.print.*;
import java.text.*;
public class PrintDocument implements Printable
     private static final String mText =
     "Print this"
     + "And this as well ";
     private static final AttributedString mStyledText = new AttributedString(mText);
     static public void main()
          PrinterJob printerJob = PrinterJob.getPrinterJob();
          Book book = new Book();
          book.append(new PrintDocument(), new PageFormat());
          printerJob.setPageable(book);
          boolean doPrint = printerJob.printDialog();
          if (doPrint)
               try
                    printerJob.print();
               catch (PrinterException exception)
                    System.err.println("Printing error: " + exception);
     public int print(Graphics g, PageFormat format, int pageIndex)
          Graphics2D g2d = (Graphics2D) g;
          g2d.translate(format.getImageableX(), format.getImageableY());
          g2d.setPaint(Color.black);
          Point2D.Float pen = new Point2D.Float();
          AttributedCharacterIterator charIterator = mStyledText.getIterator();
          LineBreakMeasurer measurer = new LineBreakMeasurer(charIterator, g2d.getFontRenderContext());
          float wrappingWidth = (float) format.getImageableWidth();
          while (measurer.getPosition() < charIterator.getEndIndex())
               TextLayout layout = measurer.nextLayout(wrappingWidth);
               pen.y += layout.getAscent();
               float dx = layout.isLeftToRight()? 0 : (wrappingWidth - layout.getAdvance());
               layout.draw(g2d, pen.x + dx, pen.y);
               pen.y += layout.getDescent() + layout.getLeading();
          return Printable.PAGE_EXISTS;
}As you can see, I have not set any properties of the document to be printed on the clients default printer. How do I do this? Note that my server has NO printer installed. Do I need to share the clients default printer? Etc
Thanks in advance

I can't think of any way to make the client side print
something just from your server side request.If there was a way for the server to automatically print something on the client's printer, you can be sure that those websites that spam you with popup windows would already be doing it. But they aren't, which leads me to believe it can't be done.
Maybe you can put a the template in a HTML file, put a
reference to it in a teeny-weeny FRAME or IFRAME in
the HTML of your JSP code. The HTML file with the
"template" could have that "window.print()"-thing in
the "onLoad"-event handler of the body-tag of that
document (or what ever, I'm not a JS expert)The solution is going to be something that is done at the client side, and that would be something like a button that executes some Javascript code, as you say. I'm not a JS expert either.

Similar Messages

  • Print document's name in Event Log ID #307 on Server 2012

    Creating a new printer server using Windows Server 2012.  Everything is working out fine so far, however I just ran into one problem that didn't happen in our Server 2008R2 print server.
    When looking at print jobs that have completed under:  event logs --> Microsoft --> Windows --> PrintService --Operational, I have noticed that Event ID 307 is not displaying the printed document's name in Server 2012 (it did for Server 2008R2). 
    In Server 2012, the document name simply displays as "Print Document" instead of displaying the document's name.
    Anyone have any ideas on how to get the document's name to properly display in the event logs?
    Thanks for any help.

    Hi Alan,
    I have configured a Server 2012 R2 standard as print server to manage printers and Monitor the print usage of users, however I am not getting the Print logs (Event Log ID 307) in the default event logs directory on the print Server.
    I perform some search and come to know that it’s a known problem in Server 2012 and there is Hotfix available. I installed the Hotfix mentioned here
    http://support2.microsoft.com/kb/2938013/en-us , but still logs are not getting generated.
    I also made the below setting for the logs.
    Creating Registry entry
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows NT\Printers] "ShowJobTitleInEventLogs"=dword:00000001
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Printers] "ShowJobTitleInEventLogs"=dword:00000001
    The policy name: Computer Configuration \ Administrative Templates \ Printers
    Allow job name in event logs
    Keep printed Docs setting is also enabled on all the printers installed on Print Server.
    Noting seems to be working here or am i doing something wrong here.
    Regards
    Mukesh

  • KB fix for print document name in event logs on Server 2012 and Server 2012R2

    It appears as though the requested corrections to the documentation where never honored
    Note After you apply the hotfix or update, you can show the printed document name in the event by enabling a specific Group Policy.
    The policy name:
    Computer Configuration \ Administrative Templates \ Printers
    Allow job name in event logs 
    The Windows 8 / Server 2012 fix is:
    Event ID 307 does not show the printed document name in Windows
    http://support.microsoft.com/kb/2938013/en-us
    2012R2 is in the April Roll up.
    Windows RT 8.1, Windows 8.1, and Windows Server 2012 R2 Update: April 2014
    http://support.microsoft.com/kb/2919355/en-us
    Alan Morris Windows Printing Team

    In my simple test, I see that the Group-Policy does exist on 2012R2 but not for 2012.
    I isolated the registry changes so I can update a 2012 only system... that text is below.
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows NT\Printers]
    "ShowJobTitleInEventLogs"=dword:00000001
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Printers]
    "ShowJobTitleInEventLogs"=dword:00000001
    I hope this helps others out since it took sometime to narrow this down. Thank you.

  • Server 2012 Event 307 - Printed Document Name

    I created a printer monitoring system that pulls events from the event logs of a server and then compiles this information into reports.  I can tell how many pages printed per printer for a period of time, I can tell what users are my highest printers
    and once in awhile for some reason I would actually review what was printed.
    I use this data to determine when another printer is needed or not needed.  I used the printed document name to justify not replacing a $5000 color laser printer. because they printed personal stuff more than business. 
    This process worked great until I installed Windows Server 2012, and I have tested this on Windows 8 and have the same result. (I only care about the server though.  ;) )
    In the event log: Microsoft-Windows-PrintService/Operational
    In server 2003, event 10: Had printed document name
    Server 2008 and Server 2008 R2: Had printed document name. 
    Why is this no longer there, or was this an oversight? 
    I asked this at TechEd and there was not a Microsoft person there who could answer my question and they referred me to the forums.  Can someone tell me what I can do to turn this on, was this an oversight, bug, etc.
    -------------------------------------------------- Michael Moore, MBA, MCITP, MCSE, MCTS, MCSA, MCP.

    Hi,
    What are the models of your printers?
    I would like to confirm that have you update the printer drivers from the printer manufacturer for Windows Server 2012?
    In addition, if you have Windows Server 2003, 2008, and 2012 in the same envirment? If so, you may try to get the event information from the previous operating system.
    Regards,
    Arthur Li
    TechNet Subscriber Support
    If you are
    TechNet Subscriptionuser
    and have any feedback on our support quality, please send your feedback here.
    Arthur Li
    TechNet Community Support

  • Firefox prints documents sideways instead of top to bottom? How fix?

    When I print from the Mozilla Internet, example, a resume from USA Jobs, it prints sideways. I want to print my resume which is stored there, however, it prints the letter sideways instead of top to bottom as a normal letter would appear on 8.5 x 11 paper. If I go to Internet Explorer it prints properly top to bottom. I contacted the printer maker and they showed me it was Mozilla being the problem. Can you tell me how to fix this problem?

    File > Print Preview - select Portrait and then print the page. That setting should hold until you change it again.

  • Cannot update printer driver on client computers

    Hi all,
    we are migrating users and computers from one domain (DomainA) to another one (DomainB). All was working fine: bidirectional trusts is created, all users and computer are migrated but the printer server still exists in DomainA and is being used. All
    45 printers are Canon models: Canon IR2525i and Canon IRC2030i. Also, Domain A print server is the last DC at domainA and is running Windows 2008 R2. Domain B DCs are running Windows 2003 SP2
    All users could print ... but yesterday a workmate tried to install a new printer (Canon iR ADV C2230), so he decided to install its driver. After that, all Windows 7 users were unable to print (there are some XP computer but they can print) because all
    Canon printers show a 'Driver update needed' message with privilege prompt, but users cannot update because they're non-admin users.
    We're using GPO & GPP for printer deployment. I've tried to use 'Point and print restrictions' as I could read at http://technet.microsoft.com/en-us/library/cc753269.aspx. First I disabled Point and print restrictions... the same result. After that,
    I tried to enable it and set as trusted server the DomainA print server and not showing warning or elevation prompt when connecting or updating driver... same result.
    Also, I tried to set GPO policy for user permission 'Devices: prevent users from installing printer drivers' to Disabled. and using GPP adding a common group for migrated users to local advanced users group.... same result.
    The last attempt was, using GPP printer deployment, set 'Replace' instead of 'Update' a printer, but after GPUPDATE /FORCE I can see the modified printer dissapears, but not returns. At event viewer I can see 0x80070bcb error : The specified printer driver
    was not found in the sistem and needs to be downloaded
    Any idea what else can I do? If I set admin user at privilege prompt drivers are installed succesfully, but is not a solutions because there is a lot of clients :(
    Thanks in advanced

    Hi SalvaG,
    Thanks for sharing your solution in the forum. We really appreciate your time and efforts.
    Best regards,
    Justin Gu

  • Printing documents from DIR.

    My client wants to develop report which will give documents attached to materials in BOM and documents attached to BOM as document item.
    I have given logic for fetching data and i got path also where original document is residing.
    There is requirement from client that in report if he select one row or Multiple rows which is having document number and press print button then it should print that document.
    How to achieve this?
    Is there is any functional module which will print document after giving orginal path of document?

    Hi mayuresh,
    I have some doubts abaout your requirement.
    The documents you are talking about: If they are SAP standard texts, you will never have a path bjut rather a text ID, LANGUAGE and NAME. Print them using function PRINT_TEXT.
    If your texts are stored in dome format (?) ind some path (?), please say:
    What is the format of the text(ASCII, RTF, WORD, HTML) or what?
    Is the text stored in a local directory that can be accessed only from your clients SAPGUI or is it a server directory that can be accessed only by the server?
    It is never wrong to give some details.
    Regards,
    Clemens

  • Async tcp client and server. How can I determine that the client or the server is no longer available?

    Hello. I would like to write async tcp client and server. I wrote this code but a have a problem, when I call the disconnect method on client or stop method on server. I can't identify that the client or the server is no longer connected.
    I thought I will get an exception if the client or the server is not available but this is not happening.
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    How can I determine that the client or the server is no longer available?
    Server
    public class Server
    private readonly Dictionary<IPEndPoint, TcpClient> clients = new Dictionary<IPEndPoint, TcpClient>();
    private readonly List<CancellationTokenSource> cancellationTokens = new List<CancellationTokenSource>();
    private TcpListener tcpListener;
    private bool isStarted;
    public event Action<string> NewMessage;
    public async Task Start(int port)
    this.tcpListener = TcpListener.Create(port);
    this.tcpListener.Start();
    this.isStarted = true;
    while (this.isStarted)
    var tcpClient = await this.tcpListener.AcceptTcpClientAsync();
    var cts = new CancellationTokenSource();
    this.cancellationTokens.Add(cts);
    await Task.Factory.StartNew(() => this.Process(cts.Token, tcpClient), cts.Token, TaskCreationOptions.LongRunning, TaskScheduler.Default);
    public void Stop()
    this.isStarted = false;
    foreach (var cancellationTokenSource in this.cancellationTokens)
    cancellationTokenSource.Cancel();
    foreach (var tcpClient in this.clients.Values)
    tcpClient.GetStream().Close();
    tcpClient.Close();
    this.clients.Clear();
    public async Task SendMessage(string message, IPEndPoint endPoint)
    try
    var tcpClient = this.clients[endPoint];
    await this.Send(tcpClient.GetStream(), Encoding.ASCII.GetBytes(message));
    catch (Exception exception)
    private async Task Process(CancellationToken cancellationToken, TcpClient tcpClient)
    try
    var stream = tcpClient.GetStream();
    this.clients.Add((IPEndPoint)tcpClient.Client.RemoteEndPoint, tcpClient);
    while (!cancellationToken.IsCancellationRequested)
    var data = await this.Receive(stream);
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    private async Task Send(NetworkStream stream, byte[] buf)
    await stream.WriteAsync(BitConverter.GetBytes(buf.Length), 0, 4);
    await stream.WriteAsync(buf, 0, buf.Length);
    private async Task<byte[]> Receive(NetworkStream stream)
    var lengthBytes = new byte[4];
    await stream.ReadAsync(lengthBytes, 0, 4);
    var length = BitConverter.ToInt32(lengthBytes, 0);
    var buf = new byte[length];
    await stream.ReadAsync(buf, 0, buf.Length);
    return buf;
    Client
    public class Client
    private TcpClient tcpClient;
    private NetworkStream stream;
    public event Action<string> NewMessage;
    public async void Connect(string host, int port)
    try
    this.tcpClient = new TcpClient();
    await this.tcpClient.ConnectAsync(host, port);
    this.stream = this.tcpClient.GetStream();
    this.Process();
    catch (Exception exception)
    public void Disconnect()
    try
    this.stream.Close();
    this.tcpClient.Close();
    catch (Exception exception)
    public async void SendMessage(string message)
    try
    await this.Send(Encoding.ASCII.GetBytes(message));
    catch (Exception exception)
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    private async Task Send(byte[] buf)
    await this.stream.WriteAsync(BitConverter.GetBytes(buf.Length), 0, 4);
    await this.stream.WriteAsync(buf, 0, buf.Length);
    private async Task<byte[]> Receive()
    var lengthBytes = new byte[4];
    await this.stream.ReadAsync(lengthBytes, 0, 4);
    var length = BitConverter.ToInt32(lengthBytes, 0);
    var buf = new byte[length];
    await this.stream.ReadAsync(buf, 0, buf.Length);
    return buf;

    Hi,
    Have you debug these two applications? Does it go into the catch exception block when you close the client or the server?
    According to my test, it will throw an exception when the client or the server is closed, just log the exception message in the catch block and then you'll get it:
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.Invoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    Console.WriteLine(exception.Message);
    Unable to read data from the transport connection: An existing   connection was forcibly closed by the remote host.
    By the way, I don't know what the SafeInvoke method is, it may be an extension method, right? I used Invoke instead to test it.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • 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 print report on client default printer ?

    I develop web application. I use jdev 10.1.3.4.0 . I can print report in PDF format.
    My Problem
    I can't print report on client default printer. when Client run application and print. Report is printed at server default printer
    How can I do.
    _My source code for print to PDF format._
    FacesContext context = FacesContext.getCurrentInstance();
    response = (HttpServletResponse)context.getExternalContext().getResponse();
    String urlSchema = "jdbc:oracle:thin:@localhost:1521:ORCL";
    String schemaName = "hr";
    String schemaPass = "hr;
    reportPath = "D:\\Project\\Reports";
    Class.forName("oracle.jdbc.driver.OracleDriver");
    conn = DriverManager.getConnection(urlSchema, schemaName, schemaPass);
    reportPath = reportPath.endsWith("\\") ? reportPath : (reportPath + "\\");
    input = new File(reportPath + reportName + ".jasper");
    reportParameters.put("SUBREPORT_DIR", reportPath);
    reportParameters.put("P_IMAGE_PATH", reportPath);
    jasperPrint = JasperFillManager.fillReport(input.getPath(), reportParameters, conn);
    response.setContentType("application/pdf");
    response.addHeader("Content-Disposition", "attachment;filename=" + reportNameOutput + ".pdf");
    OutputStream outputStream = response.getOutputStream();
    JasperExportManager.exportReportToPdfStream(jasperPrint, outputStream);
    outputStream.flush();
    outputStream.close();
    conn.close();{code}
    _My source code for print to *printer*._
    {code}FacesContext context = FacesContext.getCurrentInstance();
    response = (HttpServletResponse)context.getExternalContext().getResponse();
    String urlSchema = "jdbc:oracle:thin:@localhost:1521:ORCL";
    String schemaName = "hr";
    String schemaPass = "hr;
    reportPath = "D:\\Project\\Reports";
    Class.forName("oracle.jdbc.driver.OracleDriver");
    conn = DriverManager.getConnection(urlSchema, schemaName, schemaPass);
    reportPath = reportPath.endsWith("\\") ? reportPath : (reportPath + "\\");
    input = new File(reportPath + reportName + ".jasper");
    reportParameters.put("SUBREPORT_DIR", reportPath);
    reportParameters.put("P_IMAGE_PATH", reportPath);
    jasperPrint = JasperFillManager.fillReport(input.getPath(), reportParameters, conn);
    JasperPrintManager.printReport(jasperPrint, false);
    conn.close();Edited by: jaae251 on Jun 18, 2009 2:29 AM

    If you offer a PDF to the end user, they usually know what to do with it. OTOH, if you wish to provide software to facilitate the local printing, you might launch an application on the client side that accesses the JNLP API's PrintService - that can be done in a sandboxed application.
    A signed application might access the normal J2SE based print services. Though I heard that Sun had decided to make printing a 'prompt on first attempt' deal - even for sandboxed apps., from 1.5 plus (or was it 1.6 plus?).
    It would be a serious security bug if a web site could print on the client printer, without trust or active involvement from the end user.

  • Printing Report on client printer

    Hi,
    I am using oracle 9ids ( Oracle9i Developer Suite 9.0.2.0.1 ).
    I have an application which call a report from a form module.
    I run the application from another machine and that machine has a local printer installed on that machine.
    when I give destype=printer in the parameter form and submit, it will not print the report.
    What I have to do to print the reports.
    Please let me know the solutions for this ASAP.
    Regards,
    Malay

    The simplest way is to have your report output to pdf and then they can print the pdf. If you are trying to print directly to the printer without showing the report on the screen at all, then what we have done is make the local printer available from the network and then send the output of the report to the network name for the printer.
    The problem is that the report is running on the reports server, not the local machine. The reports server doesn't know anything about the local printer of the client. To be able to print a report directly, the reports server has to be able to "see" the printer.

  • Print report from client machine without showing in screen

    Hi guys!!
    I m using (forms10g+ 10gAS). I want to Print report from client machine without showing in the screen/monitor.
    Currently I m generating report in pdf format. From the pdf I m printing the document.
    But my requirements is to print directly to the printer without showing preview
    Thanks in advance
    Mokarem

    Maybe this will help:
    http://forums.oracle.com/forums/thread.jspa?messageID=1209371&#1209371
    Gary

  • Print Reports on Client Default Printer

    Hi All,
    I am using  Oracle Reports 11g Release 2 (11.1.2.2.0).
    I want to print oracle reports from ADF which is JEE base framework on client default printer. I am send just plane url to generate report to report server. In Oracle forms we have option to get job id of report, but in plain url i am not seeing any thing like that. In forms in am generating PDF wait untill job is finished and then send pdf to client printer by using job id.
    How it will be possible by using plain URL send to report server or any other idea to achieve this task.
    Thanks in advance.

    If you offer a PDF to the end user, they usually know what to do with it. OTOH, if you wish to provide software to facilitate the local printing, you might launch an application on the client side that accesses the JNLP API's PrintService - that can be done in a sandboxed application.
    A signed application might access the normal J2SE based print services. Though I heard that Sun had decided to make printing a 'prompt on first attempt' deal - even for sandboxed apps., from 1.5 plus (or was it 1.6 plus?).
    It would be a serious security bug if a web site could print on the client printer, without trust or active involvement from the end user.

  • I have an 10x14" InDesign image that I'd like to shrink to fit within a 8.5x11 printed document.

    I have an 10"x14" InDesign image that I'd like to shrink to fit within a 8.5"x11" printed document (using InDesign) without losing the quality of the image (especially on print). What is the correct/least destructive process to do this?
    And how is it that you can view different image sizes on Flickr (of the same image) and it doesn't seem to effect the quality of the image?
    I have tried saving/exporting the InDesign image as an EPS file, then opening the file in Photoshop, adjusting the size to my liking, saving it as a Photoshop file, then placing that file in a new InDesign document, and the image comes up distorted looking/pixelated even with my screen zoomed at 100%. I've also tried this same process with exporting it as a PDF file instead of an EPS file with the same distorted/pixelated results.
    Help!?!?!  Thank you in advance!!
    Linds10m

    I am assuming you are in InDesign CS5:
    Change your InDesign Document Size, but before you do this you must make sure the "Enable Layout Adustment" is on.
    Under: Layout/Layout Adjustment/Check the "Enable Layout Adjustment" box is checked and adjust Snap Zone.
    ALSO: Make sure your horizontal and vertical margins touches your live area.
    Then you can change size of document

  • Printer has been setup in one server but it's printing Junk characters

    Printer has been setup in one server but it's printing Junk characters
    Pdf file's sent from server and from local machine are printing fine..But prints sent from Oracle Reports are not getting printed, instead it is printing some garbage contents.

    Forgot to mention it's  10gAS (10.1.2.3) forms & reports

Maybe you are looking for

  • Date range in query keydate

    Hi, Is the keydate in query accepts the date range, from the query properties keydate accepts one date.  I also tried from variable customer exit  it is giving an error shown below. EError for variable  in customer enhancement <variable name>        

  • Amend Forecast after CIF import from ECC to APo

    Hi all, I need to amend the forecast in APo after a particular Sales Order type has been imported. The import Occurs using an RFC connection to trigger the Function Module /SAPAPO/CIF_SL_DOC_INBOUND Is there a user exit that gets fired after this com

  • Java's Future

    Hey I was just wondering, I have been checking out DirectX and some more stuff, will Java ever have such abilitys to do this kind of media stuff and 3D things? I know Java has 3D and 2D abilities, but are they as good as DirectX?

  • HT204266 how do i remove the passcode from my 3gs

    i was messing with the passcode feature and my phone died on me and i dont know the pass code pleas help.

  • Lumetri in PPro

    CC2014 Why does the application of  Lumetri>Sony FS700.itx  have the effect of flattening the image.  Seems to be back to front of what is expected and required for S-Log or any other footage. dot itx  is the Iridas LUT  I believe.