Creating A File Resource Using Tomcat JNDI

Hi guys,
My problem is that I am creating a web service and I cannot get to a properties file without creating an absolute reference to that file. If I was creating a servlet I would simple use getServletContext() method to get a relative reference to it. However since it is an axis web service i have to deploy my applications in the WEB-INF/services directory, and because it does not interact with the axis servlet I cannot use getServletContext(). So i thought I could create a JNDI file resource reference in the tomcatHome/conf/context.xml file, similar to how I created a JNDI connection pool. The resouce definition looks like this;
<Resource name="resource/dialogueEngineConfig" auth="Container"
                  type="java.io.File"
                  url="file:/Applications/apache-tomcat-5.5.1/webapps/axis2/META-INF/DialogueEngine.properties">
</Resource>now I tried to access the resource in my code like this;
// Obtain our environment naming
Context envCtx = (Context) new InitialContext().lookup("java:comp/env");
// Look up our file
File  f = (File) envCtx.lookup("resource/dialogueEngineConfig");However I get a NamingException; 'Cannot create resource instance'
I don't understand why I cant create a file resource in JNDI, it seems like a simple enough thing to do. Am I doing something wrong or missing something? Any help would be greatly appreciated.
Thanks

Hello xalien,
I have the same problem. I need to access external xml config file via JNDI from my servlet, running on Tomcat 5.0.28. Have you manage to define an URL resource? If so, please provide an example how to do it. Many thanx.

Similar Messages

  • Dynamically set database url using tomcat jndi

    By using Tomcat JNDI, database url information needs to be hardcoded in server.xml file according to the documentation. Is there a way to change the URL information in the code dynamically if necessary?
    And also we need multiple connection pools and the connection information about those pools are only known during run time. So the TOMCAT JNDI is still the right way to go???
    By the way, does anybody ever use tomcat DBCP package to get datasource and set url dynamically?
    Thanks in advance.

    By using Tomcat JNDI, database url information needs
    to be hardcoded in server.xml file according to the
    documentation. Is there a way to change the URL
    information in the code dynamically if necessary?
    Not that I know of.
    And also we need multiple connection pools and the
    connection information about those pools are only
    known during run time. So the TOMCAT JNDI is still the
    right way to go???
    I think so. Since it's just a JDNI lookup, perhaps you can set up multiple data sources and decide on the lookup name at the last minute, depending on circumstances. That might work. I haven't tried it myself. - MOD
    By the way, does anybody ever use tomcat DBCP package
    to get datasource and set url dynamically?
    Thanks in advance.

  • How can i do the upload file function using tomcat library??

    how can i do the upload file function using tomcat library??

    Did you read the document for the library?
    If you can't figure it out, why don't you ask the people who provide the library?
    This has nothing to do with JavaMail.

  • Is it possible to create .ncd file without using MAX?

    Is it possible to create .ncd file without using MAX? I am trying to read the data given by hundreds of possible Arb. IDs on one of the CAN port without having to create it from the MAX.
    Thank you

    Hi,
    the NI-CAN driver software does not provide functions/VIs to generate
    *.ncd files. However the *.ncd file format is just plain XML (ASCII text). Take a
    look at the example.ncd file that gets installed with NI-CAN
    (<ProgramFiles>\National Instruments\NI-CAN\):
    <?xml version="1.0" encoding="UTF-8"?>
    <nican_config version="0.1">
    <saved>8/8/2005,17:58</saved>
    <message name="TransmissionFluids">
      <id extended="0">82</id>
      <dbc>C:\Program Files\National Instruments\NI-CAN\example.ncd</dbc>
      <conflicts>0</conflicts>
      <bytes>6</bytes>
      <interface>1</interface>
      <comment></comment>
      <channel name="ClutchPressure">
        <conflicts>0</conflicts>
        <bitfield start="0" bits="8" order="0" type="1"/>
        <linear_scaling factor="1.600000e+001"
    offset="0.000000e+000" max="4.000000e+003" min="0.000000e+000"
    default="0.000000e+000" unit="kPa"/>
        <comment></comment>
      </channel>
    </message>
    </nican_config>
    Thus, you could generate *.ncd files with simple file I/O. Having XML-specific file I/O functions simplifies this task.
    -B2k

  • Does we need to Create a file Before using Open dataSet

    Hi Guys,
                Can  any body tell me whether we have to create a File before using Open dataset  for writing files in Application Server.
               Can anybody write a program for EKPO table to store it in application Server using OpendatasSet ?Is there any specific care we have to take for Executing   pgm in Background?
    I wrote the pgm for Foreground using GUI- Download.
    PGM.
          select * into table it_ekpo  from  ekpo .
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    filename ='c:\EKPO.xls'
    filetype = 'ASC'
    WRITE_FIELD_SEPARATOR = 'X'
    TABLES
    data_tab = it_ekpo
    *fieldnames = l_heading
    EXCEPTIONS
    file_write_error = 1
    no_batch = 2
    gui_refuse_filetransfer = 3 .
                       Plzzzzzzzzz Make the changes for existing Pgm.any help is awarded with points.Its Urgent.
    Thanks,
    Gopi.

    Hi Guys,
                 Thanks for ur immediate response.I am sending the code just confirm me whether is correct r not?
    DATA : wa_EKPO_file   TYPE file_table-filename.
    select * into table it_ekpo  from  ekpo .
      OPEN DATASET wa_EKPO_file FOR OUTPUT         "Write to appl. server
                                          IN TEXT MODE
                                          ENCODING DEFAULT.  "Open dataset Return code
    IF sy-subrc = 0.
    LOOP at IT_EKPO into WA_EKPO.
    TRANSFER wa_ekpo to wa_ekpo_file.
    ENDLOOP.
    ENDIF.
                                             I want write the data into SPREAD Sheet .Can u guys  tell me how to write into Spread Sheet using Open data Set.
    Thanks,
    Gopi.

  • Create a file xml using dbms_xmldom

    i'm using dbms_xmldom to create a file xml. i use to create a node this line:
    IV_element:= dbms_xmldom.createElement(doc,'CATEGORIA');
    dbms_xmldom.setAttribute(IV_element, 'natura','prova');
    IV_node:=dbms_xmldom.appendChild(III_node,dbms_xmldom.makeNode(IV_element));
    where
    doc dbms_xmldom.DOMDocument;
    IV_node dbms_xmldom.DOMNode;
    IV_element dbms_xmldom.DOMElement;
    and i have a line
    <CATEGORIA natura="prova"/>
    how can i have this line?
    <CATEGORIA natura="prova">prova categoria</CATEGORIA>
    thank you

    try this.
    ap0021_element := dbms_xmldom.createElement(doc,'AP0021');
    cntbtch_element := dbms_xmldom.createElement(doc,'CNTBTCH');
    new_element := DBMS_XMLDOM.makeElement(
                      DBMS_XMLDOM.appendChild(DBMS_XMLDOM.makeNode(ap0021_element)
                     ,DBMS_XMLDOM.makeNode(cntbtch_element)));

  • Create XML file by using servlet

    Hi, Is there anyone who sucessfully create XML file by taking parameters from a web form? If so, hope you could share the code with me. I moved the code from the example to servlet. it keeps returning null pointer exception on the root node.
    java.lang.NullPointerException: at oracle.xml.classgen.CGDocument.(CGDocument.java:62)
    null

    Hi everybody,<br /><br />the code works good now. so it should be available for everybody who needs it:<br /><br />---------------- my code --------------------------------------<br /><br />var container = "";<br /><br />container = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n";<br />container = container + "<all>\n";<br />container = container + "<header>\n";<br />container = container + "<author>author name</author>\n";<br />container = container + "<authorMail>[email protected]</authorMail>\n";<br />container = container + "</header>\n";<br />container = container + "<body>\n";<br />container = container + "<name>" + value + "</name>\n";<br />container = container + "<adresse>" + value + "</adresse>\n";<br />container = container + "<ort>" + value + "</ort>\n";<br />container = container + "<staat>" + value + "</staat>\n";<br />container = container + "<plz>" + value + "</plz>\n";<br />container = container + "<land>" + value + "</land>\n";<br />container = container + "</body>\n";<br />container = container + "</all>\n";<br /><br />var myDoc = event.target;<br />myDoc.createDataObject("export.xml", container);<br />myDoc.exportDataObject("export.xml");<br /><br />app.mailMsg(false, "mail-address1; mail-address2", "", "",<br />"mail subject", "mail body");<br /><br />---------------- end of my code ------------------------------- <br /><br />now i'm looking for a solution to automatically attach the file to this mail and directls sent it without to call up the mail client.<br />if anybody has got an hint, you're welcome ;-)

  • How to use tomcat JNDI  resource in eclipse

    hi all, In my project i am using JSF,Tomcat,eclipse... i am planing to implement annotaions as part of my application
    I want to use Jndi resource as part of my project by using java annotaions
    for this i configured my server.xml in tomcat as
    <Context docBase="ALWREPORTSNEW" path="/ALWREPORTSNEW"
    reloadable="true"
    source="org.eclipse.jst.jee.server:ALWREPORTSNEW" >
    <Resource auth="Container"
    driverClassName="com.mysql.jdbc.Driver" maxActive="10000"
    maxIdle="3000" maxWait="10000" name="jdbc/enrollmentschema"
    password="adminadmin" removeAbandoned="true"
    removeAbandonedTimeout="300" type="javax.sql.DataSource"
    url="jdbc:mysql://localhost:3306/enrollment_schema_old"
    username="root" />
    </Context>And i configured web.xml as
    <resource-ref>
    <description>Enrollment Schema Connection pooling</description>
    <res-ref-name>jdbc/enrollmentschema</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>And some where in my project i am using annotaion as follows. i am getting NULL when trying access that annotaion .
    @Resource(name = "jdbc/mobileEnrollProd") DataSource mobileds;
    @Resource(name = "jdbc/enrollmentschema")
    private DataSource enrollds;
    public String UploadBankWise() {
    System.out.println("--------- ds "+enrollds);// *i am getting NULL*
    }but same code working with Glassfish and net benas..
    can any body hint me where i did mistake
    thanks in advance

    Go to Window-Preferences-Java-Debug-Step Filtering. When the dialog opens, press F1 for help. Good luck!

  • File Upload using Tomcat 5.x Apache 2.x

    Hi,
    Once I updated my tomcat 5.x to apache 2.x and ran my upload jsp code using java api i wrote to upload file to server, all pictures or videos received seems distorted.. At first i thought of bit shift or something but when i upload a textfile all look right.. Anyone know what the heck is going on before i disect my code.
    thanks
    henry

    make sure your modjk logs don't have any errors.
    Here's a peice out of my httpd.conf
    #ADDed Oct 15,2003, seemed to remove modjk error
    AddType multipart/form-data .gif .png  .jpg .peg .jpeg .jpeI used to get strange modjk logged errors.
    Also did you compile jk2 from source???
    com.oreilly.servlet --- cos
    http://www.servlets.com/cos/index.html
    http://www.servlets.com/cos/cos-05Nov2002.zip
    But if my bit shift is correct wouldn't my regular textfile upload be distored?From what I remember, the problem is something to do with logical AND or OR, with the bits. Apache receives it fine, passess it through jk, and and either the most sig or least gets lost. Image data is critical as every bit counts, text file, you may not notice it(white space), or every nTH file upload might fail.
    here are the version numbers of software I use, and have compiled all from source.
    apache-httpd-2.0.47
    tomcat-4.1.27
    jk2-connectors-2.0.2

  • How to create SDA file for using AXIS Framework in the SOAP Adapter

    Hi experts,
    I have the following question:
    How I can create the SDA file aii_af_axisprovider.sda for using the AXIS Framework in the SOAP Adpater described in http://help.sap.com/saphelp_nw04/helpdata/en/45/a4f8bbdfdc0d36e10000000a114a6b/content.htm ?
    I have downloaded the files axis.jar, commons-discovery-0.2.jar, commons-logging-1.0.4.jar, commons-net-1.0.0-dev.jar and wsdl4j-1.5.1.jar. But how to create the SDA file aii_af_axisprovider.sda? Which tool I have to use for this? It is enough to compress these 5 jar-files in the sda file or need I further files with further information (meta information etc.)?
    Thanks and best regards
    Christopher

    Hi Christopher,
        Check this discussion if you have not checked already.
    Re: NTLM Authentication dosent work with XI ?
    Regards,
    Ravi

  • Including files/resources using the ADT command line

    Hi all,
    I'm trying to get file support into my ADT helper tool before I release an update.  I am still having problems.
    According to the Adobe docs on the subject, the following commands can be used:
    -C "path/to/new/working/directory" [files and folders to include]
    -e [files and folders to include] [package directory to add these to]
    The following example works fine for me:
    // This changes the working directory to my audio resources folder, and then packages the file 'track.mp3' into the root folder of my application package.
    -C "C:\\resources\audio" "track.mp3"
    Hoiwever using -e option in any way generates an error:
    // This copies the file 'sfx.mp3' from the current working directory to the application package subdirectory 'lib'
    -e sfx.mp3 lib
    This also causes an error:
    // Change the working directory to resources/audio and then copy the file called 'sfx.mp3' to the 'lib' subfolder of the application package. Error.
    -C "C:\\resources\audio" -e sfx.mp3 lib
    The error in both cases is:
    File does not exist: sfx.mp3
    Any ideas how I can use the -e option?  Does the working directory not come in to it - do i always have to use an absolute path to my file?
    Thanks in advance,
    Peter

    Not sure if it will help in your situation, but I just include files by adding the filepath at the end of my adt command line (no -e or -c). Eg (included files or bolded):
    "C:\Program Files (x86)\Java\jre6\bin\java" -jar C:\Users\t.randall\Documents\AIRSDK\AIR_3.0\lib\adt.jar -package -target ipa-ad-hoc -storetype pkcs12 -keystore ..\..\Deployment\CareerBox.p12 -storepass pass -provisioning-profile ..\..\Deployment\CareerBox.mobileprovision ..\..\CareerBox.ipa CareerBox_iPhone-app.xml CareerBox_iPhone.swf AppIconsForPublish\Icon29x.png AppIconsForPublish\Icon57x.png AppIconsForPublish\[email protected] AppIconsForPublish\Icon512x.png AppIconsForPublish\Icon48x.png AppIconsForPublish\Icon72x.png Default.png [email protected] Default-Landscape~ipad.png Data\Cards.xml Data\CareerCards.xml

  • Can't create a file by using BufferedWriter

    Hello,
    I am going to create a new html file "C:\test1.html" by modifying the old file "C:\test.html".
    However I have not seen the file in the c driver.
    Thanks for any help.
    import java.awt.Point;
    import java.io.*;
    import java.util.*;
    public class AddIdinHtml
         private File file1;
    //     private File file2;
    //     private HashMap<String, Double> sta;
         public void AddId() {
    //     public void AddIdinHtml(String FileName, String Directory) {
         String path = System.getProperty("user.dir");
          try{
    //      String filenames = path+'/'+Directory+'/'+FileName;
              String filenames = "C:\\test.html";
          FileInputStream fstream = new FileInputStream(filenames);
        // Get the object of DataInputStream
            DataInputStream in = new DataInputStream(fstream);
                BufferedReader br = new BufferedReader(new InputStreamReader(in));
            String Line;
            String secondLine;
    //        firstLine = br.readLine();
            String[] parts;
            String[] newLines;
            int lineId = 0;
            List contents = new ArrayList();
            while ((Line = br.readLine()) != null)   {
                Line = Line.trim();
                contents.add(Line);
                if(Line.startsWith("<body")){
                    while ((Line.startsWith("</body")!= true)) {
                        Line = br.readLine();
    //                System.out.println(Line);
                    parts = Line.split("\\s");
                    if(Line.startsWith("<p")){
                       Line = "<p"+" "+"id="+lineId+Line.substring(2,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<li")){
                       Line = "<li"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<li")){
                       Line = "<li"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h1")){
                       Line = "<h1"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h2")){
                       Line = "<h2"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h3")){
                       Line = "<h3"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h4")){
                       Line = "<h4"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h5")){
                       Line = "<h5"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h6")){
                       Line = "<h6"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<div")){
                       Line = "<div"+" "+"id="+lineId+Line.substring(4,Line.length());
                       contents.add(Line);
                       System.out.println(Line);
                       lineId++;
                    else if (Line.startsWith("<table")){
                       Line = "<table"+" "+"id="+lineId+Line.substring(6,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<tr")){
                       Line = "<tr"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<th")){
                       Line = "<th"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<td")){
                       Line = "<td"+" "+"id="+lineId+Line.substring(4,Line.length());
                       contents.add(Line);
                       lineId++;
    //            contents.add(Line);
                lineId++;
             file1 = new File("C:\\test1.html");
                if(file1.exists())//to judge if difference file exists,delete it
                    file1.delete();
             FileWriter outFile1 = new FileWriter(file1,true);
                BufferedWriter out1 = new BufferedWriter(outFile1);
               newLines = (String[]) contents.toArray(new String[contents.size()]);
               StringBuffer buffer2 = new StringBuffer();
               for(String rec : newLines){
                     buffer2.append(rec);
                     buffer2.append("\n");
                     out1.write(buffer2.toString());
                     out1.flush();
              in.close();
        }catch (Exception e){//Catch exception if any
          System.err.println("Error1: " + e.getMessage());
        public static void main(String[] args){
            AddIdinHtml ad = new AddIdinHtml();
            ad.AddId();
    }

    kajbj,
    you are right. It is not executing.
    I added one printing but no output.for(String rec : newLines){
                      StringBuffer buffer2 = new StringBuffer();
                     buffer2.append(rec);
                       System.out.println("test");// no printing here
                     buffer2.append("\n");
                     out1.write(buffer2.toString());
                     out1.flush();
               }but why?

  • Creating UDL file for use of HFMCopyApplication utility

    I'm trying to create the UDL file on the HFM server to link to the SQL database where HFM sits.
    I followed the instructions and created a new text document, rename it as extension .udl. According to the instruction, I'm supposed to double click on this new file and an data link property window will appear. But all I see is still a blank text document.
    Am I missing something? In the past I always asked our application support guys to do that but now I have to figure it out myself....
    Thanks!

    Hi,
    The reason to rename the file to .UDL is that the UDL extension should be mapped to an application that will let you make a database connection.
    You either have one of two problems if double clicking on the UDL file opened in Notepad:
    #1 - At some point .UDL file extensions were mapped to point to Notepad (or whatever text editor the file opened in) [I'm doubtful this is the problem]
    #2 - In Windows Explorer you do not have file extensions visible; therefore, when you renamed your file, it didn't rename it the way you wanted it to. For instance instead of renaming database.txt to database.udl, you ended up with database.udl.txt This file would still open in Notepad as .TXT is associated with Notepad (or other text editor).
    IF #2 is the problem, do the following:
    #1 - Open a File Explorer window and navigate to the folder with the UDL file.
    #2 - Click on Tools
    #3 - Folder Options
    #4 - Click on View
    #5 - Make sure 'Hide extensions for known file types' is unchecked.
    #6 - Hit OK
    #7 - Refresh the File explorer window and note the filename.
    #8 - If the filename is something like .UDL.txt, rename it to remove te .txt.
    If #1 is the issue: (Note : I'm giving you windows 7 version which may be different than XP, but it should still be in the control panel somewhere)
    #1 - Open Control Panel
    #2 - Open Default Programs
    #3 - Open Set Associations
    (NOTE: Instead of steps 1-3 click Start and type in associations and one of the results will be to set file associations)
    #4 - Locate the .UDL file extension and confirm it is set as Microsoft Data Link, OLE DB Core Services
    ---IF NOT set to OLE DB Core Services --
    #5 - Click on Change Program
    #6 - Select OLE DB Core Services from Recommended Programs List

  • How to create pdf files dynamically using Java

    I am new to java world. I got a task of generating dynamic pdf files using Java. I have tried with some third party APIs for generating pdf. But most of them are not so feasable. I am looking for source code for one such APIs so that I can build my custom requirements over it.
    Thanks

    I am new to java world. I got a task of generating
    dynamic pdf files using Java. I have tried with some
    third party APIs for generating pdf. But most of
    them are not so feasable. Which ones? What was wrong with them?
    I am looking for source
    code for one such APIs so that I can build my custom
    requirements over it.What are your exact requirement?

  • Creating js file to use in JSP????

    Could someone please tell me how to move javascript code that I have in my JSP to a separate js file and then use that js code in my JSP???

    This is the entire mainjavascript.js file ...
    <script>
         function checkForm()
              if(document.Check.Barcode.value == "")
                   alert("Sorry, you must enter a barcode");
                   return false;
              if(document.Check.Title.value == "")
                   alert("Sorry, you must enter a title");
                   return false;
              if(document.Check.Barcode.value.length > 5)
                   alert("Sorry, the barcode can not exceed 99,999");
              if(document.Check.Title.value.length > 100)
                   alert("Sorry, the title can not be more than 100 characters long");
                   return false;
              if(document.Check.Author.value.length > 40)
                   alert("Sorry, the author can not be more than 40 characters long");
                   return false;
              if(document.Check.Publisher.value.length > 30)
                   alert("Sorry, the publisher can not be more than 30 characters long");
                   return false;
              if(document.Check.Isbn.value.length > 20)
                   alert("Sorry, the ISBN can not be more than 20 characters long");
                   return false;
              if(document.Check.Publishdate.value.length > 7)
                   alert("Sorry, the publish date field must be in the format YYYY-MM");
                   return false;
              if(document.Check.Description.value.length > 500)
                   alert("Sorry, the description can not be more than 500 characters long");
                   return false;
              if(document.Check.Orderedby.value.length > 40)
                   alert("Sorry, the ordered by field can not be more than 40 characters long");
                   return false;
              if(document.Check.Mediatype.value == "0")
                   alert("Sorry, you must enter a media type");
                   return false;
              if(document.Check.Location.value == "0")
                   alert("Sorry, you must enter a location");
                   return false;
              var a = parseInt(document.Check.Barcode.value);
              var b = parseInt(document.Check.largestBarcode.value);
              if(a <= b)
                   alert("Sorry, you must enter a barcode that is greater than " + document.Check.largestBarcode.value);
                   return false;
    </script>
    <script language="JavaScript">
         function StripQuotes(){
         //This function will prevent double quotes from being placed around title
         var preamble = document.Check.Title.value;
         var strTitle = "";
         for (i=0; i < preamble.length; i = i + 1){
         if (preamble.charAt(i) == "\""){
              preamble.charAt(i) == "";
                   }// ends IF
                   else{var strTitle = strTitle + preamble.charAt(i);}
         }// ends FOR
         document.Check.Title.value = strTitle;
         }// ends StripQuotes() function
    </script>

Maybe you are looking for

  • Error while trying to configure Resource Object in Design Console

    Hi, I am getting the following error while trying to update any value in Resource Object(checking/unchecking any checkbox) Description: Allow Multiple option cannot be changed from true to false. : Allow Multiple option cannot be changed from true to

  • Value of the condition should not added to NETWR filed of Item & Header

    Hi Experts, My clients has a specific requirement he wants header freight condition type should go to accounting but *it should not include in (NETWR field) net value field of header and line item of invoice (Table VBRK and VBRP)* I have done the con

  • Thunderbolt primary display hdmi

    I have a problem with my new thunderbolt display for my mac mini mid 2011. When I connect the second dispaly ( a sony bravia 40") to the HDMI port it becomes the primary monitor and can't change it so the thunderbolt display keeps being the primary m

  • Can the C6-01 be set up so the screen lights up wh...

    Hi, I've just received a C6-01, and I've noticed when a text is received and the screen doesn't light up as with previous Nokia's I've owned, the notification light simply flashes. When the phone is on silent this is frustrating because i have to kee

  • New Chromatic Aberration tools kills old settings.

    I've just recently found that new chromatic aberration tools kills settings for old chromatic aberration tools. Lets say I have a PV2010 photo with adjusted sliders for chromatic aberration reduction and selected defringe "all edges". Now I'm importi