Error - Conversion from .doc to pdf

Hi,
I'm using Trail version of LiveCycle ES 8.0(Turnkey Installation).
I need to convert any native file format to PDF/A. In order to do that, I'm just trying to convert it(.doc) to PDF first. But I do end-up with the error that is given below:
ALC-PDG-1000-000: com.adobe.livecycle.generatepdf.client.ConversionException: ALC-PDG-001-000-Conversion failed because of an exception.
RuntimeException; CausedByException is:
An unexpected exception while resolving a new connection to an Adobe Service.
Caused by: javax.ejb.EJBException: RuntimeException; CausedByException is:
An unexpected exception while resolving a new connection to an Adobe Service.
at org.jboss.ejb.plugins.LogInterceptor.handleException(LogInterceptor.java:382)
at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:196)
at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
at org.jboss.ejb.Container.invoke(Container.java:873)
at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)
at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)
at $Proxy221.convertPDFMToPdf(Unknown Source)
Caused by: java.lang.reflect.InvocationTargetException
Caused by: java.lang.IllegalStateException: Connection to failed service.
at com.adobe.service.ResourcePooler.allocateResource(ResourcePooler.java:87)
at com.adobe.service.ConnectionFactoryManagerPeer.getConnectionResourceFromPool(ConnectionFa ctoryManagerPeer.java:79)
at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactor yManagerPeerImpl.java:84)
... 112 more
Error OCCURRED: ALC-PDG-001-000-Conversion failed because of an exception.
RuntimeException; CausedByException is:
An unexpected exception while resolving a new connection to an Adobe Service.
I'm using Generate PDF Service API(Java) to convert a document(.doc) to PDF.
Can anyone please provide their inputs on the above issue. How it can be resolved?
or
Is there any API to convert any native file format to PDFA directly?
Thanks.

Hi,
I'm facing a different problem. Please help.
My requirement is to develop a standalone java program to convert Word documents to PDFs using Adoble LC ES.
I found the code from the Adobe LC ES documentation. Please help me what's wrong in the code.
I don't understand what i'm missing in the code...The "test.doc" file
is there in the given location with proper data and Document object is not "NULL". Program is able to connect to Adobe LC Server. No issues with connection. But why the error ??
Code & exception are below :
CODE:
import java.io.File;
import java.util.Properties;
import com.adobe.idp.Document;
import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
import com.adobe.livecycle.generatepdf.client.CreatePDFResult;
import
com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient;
public class GeneratePDFFromNativeFiles {
public static void main(String[] args)
Properties ConnectionPropsForSOAP = new Properties();
ConnectionPropsForSOAP.setProperty("DSC_DEFAULT_SOAP_ENDPOINT",
"http://workspace-d.web.abbott.com:8080/soap/services/
ConvertAllFileTypesToPDF?wsdl");
ConnectionPropsForSOAP.setProperty("DSC_TRANSPORT_PROTOCOL", "SOAP");
ConnectionPropsForSOAP.setProperty("DSC_SERVER_TYPE", "JBoss");
ConnectionPropsForSOAP.setProperty("DSC_CREDENTIAL_USERNAME",
"epaspdfgen");
ConnectionPropsForSOAP.setProperty("DSC_CREDENTIAL_PASSWORD",
"epaspdf1");
ServiceClientFactory factory =
ServiceClientFactory.createInstance(ConnectionPropsForSOAP);
try{
String currentDirectory = System.getProperty("user.dir");
String sourceDocPath="/test.doc";
String resultDocPath ="/bin/arg/util/simpleFTP/test.pdf";
String inputFilePath = currentDirectory+sourceDocPath;
File file = new File(inputFilePath);
String adobePDFSettings = "Standard";
String securitySettings = "No Security";
String fileTypeSettings = "Standard";
GeneratePdfServiceClient gps = new
GeneratePdfServiceClient(factory);
Document inputDoc = new Document(file,true);
CreatePDFResult docResult=gps.createPDF (inputDoc, inputFilePath,
fileTypeSettings, adobePDFSettings,
securitySettings, null, null);
Document createdDocument = docResult.getCreatedDocument();
createdDocument.copyToFile(new File(currentDirectory
+resultDocPath));
catch (Exception e) {
e.printStackTrace();
System.out.println("Error OCCURRED: " + e.getMessage());
EXCEPTION:
ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal
error.
at
com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.throwExceptionHandler(So apAxisDispatcher.java:
207)
at
com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:
125)
at
com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:
57)
at
com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:
208)
at
com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient.createPDF(GeneratePdfServ iceClient.java:
172)
at
arg.util.simpleFTP.GeneratePDFFromNativeFiles.main(GeneratePDFFromNativeFiles.java:
73)
Caused by: ALC-DSC-002-000:
com.adobe.idp.dsc.RequiredParameterException: Parameter: inputDocument
is required.
at
org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:
221)
at
org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:
128)
at
org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:
1087)
at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown
Source)
at
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown
Source)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$FragmentContentDispatcher.dispatch(Unknown Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown
Source)
at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
at
org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:
227)
at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
at org.apache.axis.Message.getSOAPEnvelope(Message.java:424)
at
org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:
62)
at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
at org.apache.axis.client.Call.invokeEngine(Call.java:2765)
at org.apache.axis.client.Call.invoke(Call.java:2748)
at org.apache.axis.client.Call.invoke(Call.java:2424)
at org.apache.axis.client.Call.invoke(Call.java:2347)
at org.apache.axis.client.Call.invoke(Call.java:1804)
at
com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:
123
Please help me.
Thanks a lot.
VJ.

Similar Messages

  • Page numbers incorrect after conversion from Excel to pdf

    Page numbers incorrect after conversion from Excel to pdf
    ""This above link (thread:834599) is from a case back in 2011 that claims to solve this problem, but it does not solve this problem. I think that customer only cared about having continuous page numbering, not discrete page numbering per sheet.
    ========================
    I still have this issue in Acrobat XI and MS Office Professional Plus 2010. I keep upgrading to no avail. This regression has resulted in a huge time drain for me. If you fixed it, please explain how I can get my hands on the resolution.
    Previous versions of Excel and Adobe Acrobat enabled flexibility around the "Page #" of "Number of Pages" (Page &[Page] of &[Pages]) token, depending on context and usage. The "# of pages" token could represent EITHER the number of pages in the workbook OR the number of pages in the tab/sheet, depending on how you generated the PDF:
    You could select "Selected Sheets" and then select all or some of the individual sheets in the workbook, and the PDF would honor the discrete numbering of each of the sheets, so the first page of each sheet was p1 and the "# of pages" was the number of pages in the sheet; not the number of pages in the workbook; or
    You could select "Entire Workbook" and the PDF would honor continuous page numbers across all sheets, as a single document.
    Now, it only honors the total number of pages in the workbook, regardless of the method you use to publish to PDF: saving as PDF, printing to PDF, using "createPDF" from Acrobat plugin to Excel's menu ribbon; selecting all sheets, some sheets, or Entire Workbook; automatic First page number or "1" under Page Setup > Page> First page number. (This last option, btw, does restart every sheet at p1, but it hardly makes sense if the total number of pages is still the total number in the workbook instead of the number in the sheet.)
    I spent a lot of time trying each which way that the blog posts recommended and have tried this on multiple versions of Excel and Acrobat now.
    NONE of these time-consuming experiments gave me what I wanted.They all insist that "Page #" of "Number of Pages" (Page &[Page] of &[Pages]) is the total number of pages in the workbook or the total number of pages in the selected sheets combined.
    The numbering are correct in Excel Page Layout.
    The same issue happens when using LibreOffice calc. (Although, I never tested with Libre Office before, so I don't know that it ever worked).
    The workaround now is to create PDF for each spreadsheet one at a time, and then compile them using the Acrobat combine/binder feature. All alternatives are extremely time consuming and tedious. It used to be automatic. This is a major regression that has gone untreated for over a year now, maybe two years.
    My task takes infinitely more time to complete than it did with previous versions of Acrobat. That means that days are added to my project, when the functionality used to enable a quick pdf generation that was ready for review, now I have to do this very manual time-consuming set of steps to generate a draft. As the project has grown and more tabs are added, my pdf-generation task takes that much longer. We require lots of drafts. It used to be easy and fast. Now it is hard and time-consuming.
    In my opinion, the problem is not Excel; it is Acrobat because it was introduced with an upgrade in Acrobat, not an upgrade in Excel. The problem was introduced in Acrobat 9 or 10. Please provide a patch or add-on or something.

    If you are setting up the page numbers in Excel, the resulting PDF would display the the page numbers created in Excel. On Excel 2010 support page, (http://office.microsoft.com/en-us/excel-help/insert-and-remove-page-numbers-on-worksheets- HA010342619.aspx#BM2) is stated the following "tip" which indicates by default Excel 2010 starts numbering each tab with 1. Exel's workaround tip is below - 
    Set a different number for the starting page
    Tip   To number all of the worksheet pages in a workbook sequentially, first add page numbers to all worksheets in a workbook, and then use the following procedure to begin the page number for each worksheet with the appropriate number. For example, if your workbook contains two worksheets that with both be printed as two pages, you would use this procedure to begin the page numbering for the second worksheet with the number 3.
    On the Page Layout tab, in the Page Setup group, click the Dialog Box Launcher next to Page Setup.
    On the Page tab, in the First page number box, type the number that you want to use for the first page.
    Tip   To use the default numbering system, type Auto in the First page number box.
    Also helpful in the same section is the note on viewing page numbers. To see if the page numbering dilemma originates in Excel make sure you are using the Page Layout View see below:
    Hide All
    If you want numbers shown on pages when you print a worksheet  you can insert page numbers in the headers or footers of the worksheet pages. Page numbers that you insert are not displayed on the worksheet in Normal view — they are shown only in Page Layout view and on the printed pages.
    Overall it may be easier not to create the page numbers in Excel but instead create then in Acrobat using the Headers and Footers option in Acrobat.  I hope this helps - it sounds like a frustrating issue you are experiencing.

  • How can I send scanned files, which are documents changed from doc to PDF, as documents that can be edited if the recipient doesn't have Adobe capabilities?

    How can I send scanned files, which are documents changed from doc to PDF, as documents that can be edited if the recipient doesn't have Adobe capabilities?

    Hi flaviusjack,
    If you still have the .doc files, it might be best to send those to your recipients so they can be edited. Otherwise, you can use ExportPDF to convert the PDF files back to .doc format. But, again, that step would be unnecessary if you have the .doc files.
    Best,
    Sara

  • I purchased the 9.99 monthly plan from iTunes to convert my resume from .doc to .pdf and it keeps telling me to purchase the upgrade I already bought. I look on my PC and it says I'm still a free customer and need to sign up annually for the pack. Bullshi

    I purchased the 9.99 monthly plan from iTunes to convert my resume from .doc to .pdf and it keeps telling me to purchase the upgrade I already bought. I look on my PC and it says I'm still a free customer and need to sign up annually for the pack. ********! What do I need to do

    If you purchased a subscription from Apple's iTunes store, you'll need to go to them to manage it:
    Manage your auto-renewing subscriptions - Apple Support

  • Error in converting *.doc to *.pdf

    Running winXP home sp2, adobe pro 7.1.0
    This problem has started suddenly.
    When converting *.doc to *.pdf a window titled AcroDist.exe-Application Error comes up:
    "0x00441ae2" referenced memory at "0x0218ebbc". The memory could not be "read".
    Acrobat stops and can only be stopped from the Task Manager. Try to print something in *.pdf -- same thing happens.
    Anyone, any suggestions? I would be thankful.
    joeZy

    Gloria Mc,
    This occurs with all .doc, Excel, .rtf, .txt (even when trying to print .pdf from a txt software like notepad. It does not occur with picture format files like .jpg or .tiff. I also can combine .pdf files.
    As far as JR's question, if I generate a .prn file and drop it in AcroDist (Distiller), it tries to open Distiller and the same error message comes up.
    All other functions of AA7 seem to work, only when trying to convert document files to .pdf is there a problem.
    If I try to bring up Distiller by itself (no file), the same error occurs.
    I'm still willing to try any suggestions. Thanks for your interest.
    joeZy

  • Hyperlink cross-references not converted from doc to pdf

    Hi,
    We are having some problems converting word documents to pdf. This is a standard part of our day to day work, we convert docs to pdf all the time. We use acrobat 7 professional and Office Professional 2003. The symptom is that hyperlinks are not all being converted in the pdf. The TOC is fine but after that the links do not always work. Right now i have downgraded a workstation back to adobe 6 professional and i'm running a conversion on that of one of our docs that doesn't convert properly. Otherwise i have tried all the settings in the conversion settings window, i have tried saving the doc as an xml first.
    So i have some docs which convert perfectly and some which convert except for dead hyperlinks. I can't see anything wrong with the hyperlinks. I've also tried different workstations, it's always the same result.
    Has anyone else seen anything like this and if so can you suggest any way forward apart from recreating a million hyperlinks in the converted pdfs?
    thanks

    From Word I select 'convert to Adobe PDF' from the Adobe PDF menu.
    We convert word docs to pdf as part of the daily running of the business.
    We always use PDFMaker and not the adobe pdf printer.
    Before now hyperlinks were converting fine.
    I have tried previously to update acrobat, it seems to be stuck on the 7.1.0 update.
    When I search for new updates it just installs the 7.1.0 update again - i have 3 workstations like this.
    They have been like this for a long time, i had in fact stopped attempting to update them - adobe has worked fine up til now and it is in daily use.
    Maybe this is the root of the problem.
    I will try and get one up to date on 7.1.2 and run a conversion and see what happens.

  • Extracting text from .doc,.ppt,.pdf files

    How can i extract ascii text from the file types like .doc , .ppt , .pdf ,. xls ..etc.
    Any tips/hints would be helpful
    Thanks
    Rama

    HI I tried for pdf, but didn't succeed
    Following is for text/Doc files
    <pre>
    import java.io.*;
    public class Doc
         public static void main(String[] args)
              try{
                   File file=new File("c:\\downloads\\WP2001.doc");
                   LineNumberReader buffer=new LineNumberReader(new FileReader(file));
                   StringBuffer buff=new StringBuffer("");
              boolean valid=true;
              while(valid)
                   //System.out.println(buffer.readLine());
                   buff=buff.append(buffer.readLine()+"\n");
                   if(buffer.read()==-1)
                        valid=false;
                   else
                   buffer.setLineNumber(buffer.getLineNumber()+1);
                   System.out.println(buff);
              catch(Exception fne)
                   System.out.println("File Not Found"+fne);
    </pre>
    pathreading

  • When converting from .doc to .pdf 1 page becomes more than one page.  How do I fix?

    How do I convert a .doc to .pdf and ensure the pagination is right from the source document?

    Hi,
    Please install Adobe CreatePDF Desktop printer if you are using Winows systems.
    To install Adobe CreatePDF Desktop Printer
    Log into https://createpdf.acrobat.com/signin.html with your Adobe ID and password
    Select “Convert to PDF” tool from right pane
    Click “Download CreatePDF Desktop Tool” link
    Click “Download Installer” button
    Click “AdobeCreatePDFDesktopPrinterSetup.exe” file
    During the installation , you need to enter your Adobe ID and password
    Note: If your Windows is Win 7 SP1 you may need a hotfix to update inetpp.dll file and please see more information at
    http://helpx.adobe.com/acrobat-com/kb/createpdf-desktop-printer-windows-7.html
    You will receive an email once your doc file is printed. Printed PDF files are stored at hpps://files.acrobat.com.
    Hisami

  • Batch conversion from word to pdf

    Hey,
    I know how to convert one, what about if I have many word files,and  any way to convert
    all doc and docx files (don't know the names) from one folder and transfer them to the other folder as a PDF format. One doc = one PDF and so on?
    Thank u.

    Hi JWX123. This DOC library(http://www.e-iceblue.com/Introduce/word-for-net-introduce.html)
    supports the feature to to convert all doc and docx files from one folder and transfer them to the other folder as a PDF format.
    string dir = @"C:\Source\";
    string des = @"C:\Destination\";
    string[] docs = Directory.GetFiles(dir, "*.txt");
    string[] docxs = Directory.GetFiles(dir, "*.rtf");
    foreach (string fileName in docs)
    Document doc = new Document();
    using(TextReader tr=new StreamReader(fileName))
    doc.LoadText(tr);
    var newPath = Path.ChangeExtension(fileName, "pdf");
    var savePath = Path.Combine(des, Path.GetFileName(newPath));
    doc.SaveToFile(savePath, FileFormat.PDF);
    foreach (string fileName in docxs)
    Document docx = new Document();
    docx.LoadFromFile(fileName);
    var newPath = Path.ChangeExtension(fileName, "pdf");
    var savePath = Path.Combine(des, Path.GetFileName(newPath));
    docx.SaveToFile(savePath, FileFormat.PDF);

  • Problems with image conversion from InDesign to PDF

    My images look posterized when I convert from InDesign to PDF. Any ideas about this?

    That'd be in the export settings not in Reader. Ask in the InDesign forum, they'll probably know better.

  • Syntex error converting word doc to PDF

    I am trying to convert a Word doc to PDF so I can send it to the printer, but it stops on page 17 and Word closes.  The Distiller message is attached. How do I correct this? I am using Acrobat 8 Pro. Thanks

    It's the only way I can use Adobe with Word.  It has always never worked any other way and I can't seem to find a solution as to why.  I'd like to be able to use this product as it's intended.  Thinking of trying other PDF software at this point....
    The only way I got the Word doc to print was to delete page 17 and redo it. A lot work.

  • Error in converting doc to pdf file

    I have a doc file - 53100kB word 2007, 180 pages with text and images. When converting to pdf with AdobePdf, it breaks after 99 pages. I got a message MicrosoftOfficeWord encountred a problem and has to close. Don't have the error report (my mistake)
    Try converting from 102 to last page, it breaks after 28 pages, in log file i have the message:
    %%{ProductName: Distiller }%%
    %%{Page: 1}%%
    %%{Page: 28}%%
    %%{ Error: typecheck: offendingCommand: not }%%
    Stack:
    /Encoding
    /Encoding
    -dict-
    What to do next to make a continuous conversion?
    Thank you.

    Gloria Mc,
    This occurs with all .doc, Excel, .rtf, .txt (even when trying to print .pdf from a txt software like notepad. It does not occur with picture format files like .jpg or .tiff. I also can combine .pdf files.
    As far as JR's question, if I generate a .prn file and drop it in AcroDist (Distiller), it tries to open Distiller and the same error message comes up.
    All other functions of AA7 seem to work, only when trying to convert document files to .pdf is there a problem.
    If I try to bring up Distiller by itself (no file), the same error occurs.
    I'm still willing to try any suggestions. Thanks for your interest.
    joeZy

  • Fatal error while converting doc to pdf

    While Adobe Acrobat 7.09 converted a rather simple (albeit long) Word 2003 document, I received the following fatal error message during the "Processing for Tag Information" stage of Acrobat PDFMaker.
    MS Visual C++ Debug Library
    Program: WINWORD.EXE
    Module:Reader For RTF.smrd
    File: <blank>
    Run-Time Check Failure #3 - The variable bNewRowExpectedBeforeFootNote is being used without being defined
    Abort Retry Ignore
    "Retry" dumps both applications.
    "Ignore" re-displays the error, each time with other variables; "iTableLeftBeforeFootNote",
    "iTableGapBeforeFootNote",
    "bFirstElementSentBeforeFootNote",
    "bRowHeightBeforeFootNote"
    and then continues processing, until this same cycle repeats itself several more times before the "Processing for Tag Information" finally completes.
    If the error is "IGNORED" enough, the conversion will complete. However I have not assessed the resulting pdf for usability.

    From what I understand of tagging, it just provides markup in the PDF to indicate where WORD put a paragraph or other format aspect. Thus the saving back to a WORD file is easier. Other than that, I do not think that tags are used for much, except possibly accessibility. I usually just print to the Adobe PDF printer for my needs, but I do not have links and such that are critical for transfer to the PDF. The thing to remember is that tags really bloat the PDF, and you just do not have the memory to deal with that. Unless tagging or other PDF Maker features are important to your need, then it may be best to turn them off. One thing I would suggest leaving in is the embedding of all fonts as subsets.
    Don't know that I helped much or even got it all correct, but maybe that is what you wanted to know. Bill

  • Error message from a BAD PDF

    I am using Adobe Reader to render PDF documents as a part of a process and then convert it into TIFF. Some of the documents that come in are corrupt PDF documents and cannot render itself in the reader and hence cannot be converted. This is the error that the reader throws:
    ADobe reader could not open "test.PDF" because it is either not a supported file type or because the file has been damaged(for example, it was sent as an email attachment and wasn't correctly decoded)
    Now, the process is automated with no human intervention. with the advent of this error message, since there is a modal dialog box waiting for a response from the user, the process is interrupted and needs human intervention.
    My question is simply this. Is there an API i could use where i can figure out beforehand if the PDF is bad so i can reject such files early on? research shows that using the adobe forms server which has the PDF utility services, there is a query "Is a PDF document" that is available. I do not want to use a server product.
    Is there any other ADOBE product that exposes something similar?

    I guess i forgot to add that piece of information. WE do not create the PDFs. We receive PDFs from external sources over which we have absolutely no control  and that explains why we get such corrupt documents in the first place. I was just wondering if there was a simple API event/method/means attached to any ADOBE product which is compatible with .net that tells me if the PDF is corrupt UPFRONT.

  • Converting resources from .doc to .pdf in KM

    I'm trying to make a UI command that can be added to a repository's context menu that would convert a .doc file to a .pdf.  I'm not sure how to go about it though. 
    Do I need 3rd party software or is there some functionality already available within EP?
    Are there any java libraries that can handle this?  I've looked at iText but I'm not sure it can do the job.
    Any help or advice will be appreciated.
    Glenn

    Hi Glen,
    I'm facing with the same situation. I don't have a solution yet, but I'm looking to a special Open Office library.
    Open Office is capable of exporting all kind of Microsoft Office documents in PDF formats. However, it isn't Java, and the PDF exports may not be perfect from MS Office documents. There is some level of Java integration in Open Office, but I don't know how much you can do with it.
    Regards,
    Luciano

Maybe you are looking for

  • HP 1410 All in One Door Open Error

    A friend gave me his HP 1410 All in One printer a while back, so I installed all the drivers to my Windows 7 Home Premiuim Sony Laptop. The Scanner works just fine, but when I attempt to print a document, files pile up in the queue with an error to t

  • Wireless Card Upgrade Help!

    Hello,           First post so be gentle with me! I need some help upgrading my wireless card on my Compaq nx6310 laptop. I have the original card in there since new and I now have a much faster fibre connection with a Hauwei HG533 wireless router so

  • HTTP adapter question - how to tell what URL was used in the runtime

    I need to know the URL information used when sending via HTTP adapter. I cannot find this information in the SXMB_MONI trace under SOAP header or in any other place. THanks, Pam

  • Jtree change childs icons

    Hi All, im wondering if someone try that. i have a tree that include a parent and child/s. when i selected the father all the child's should be selected too. i was trying : public void valueChanged(TreeSelectionEvent arg0) {                     // TO

  • ACS database not functioning after changing secondary acs ip.

    Hi.. im having 2 ACS 3.1 server. ACS01 (Primary) & ACS02 (Secondary). Recently we have moved ACS02 to another site and changed its ip address. When we do database replication from ACS01, we received error message saying that ACS02 has denied replicat