Integrating Microsoft Word documents with ADF BC and JClient technologies

Hi,
We are developing a Police Management System in JAVA with the Oracle Jdeveloper 10.1.2.0.0. We are using for the access to the data, in the businesses tier, the ADF Business Component Technology and for the User Interface, in the client tier, the JClient for ADF Technology. The used Database is Oracle Enterprise Edition 10.1.0.3.0. with the intermedia option.
We were looking for ways to upload and insert Microsoft Word Documents into a view object using JClient on the client tier. We have found the following options:
1) Oracle Intermedia database datatype ORDSYS.ORDDOC and their corresponding ADF Business Compomnents domains -> The problem is using Jclient on the client tier. In Oracle JDeveloper 10g, developers will not be able to create new applications using JClient interMedia controls. JUImage (limited to images only) is the JClient control available to access multimedia in the database.
2) Oracle COM Automation Feature -> We were studying the possibility to built a solution with Oracle and Microsoft Word using Oracle COM Automation Feature for Java. The problem is Oracle COM Automation Feature requires Windows NT, Windows XP, Windows 2000, or Windows Server 2003. We are using a database on linux, therefore this option is not valid.
3) CLOBs in database and theirs corresponding ADF Business Components domains -> But I don't know how to use ADF BC objects in JClient tier.
Can someone please help?
Thanks,
Patri

Hi,
I have worked with BLOBS or CLOBS and their corresponidng ADF Business Components domains, but I don't know how to use ADF BC objects in JClient tier.
To sum up, I want to upload, insert and view microsoft word documents by using a JClient application using ADF/BC4J components.
Thanks,
Patri

Similar Messages

  • Convert 1 single microsoft word document with section breaks to multiple pdf files

    I am a windows 7 users. I have a single microsoft word document which contain 1500 pages. These 1500 pages are seperated by sections breaks in the microsoft word. I am trying to convert this word document to multiple pdf files seperated by the section breaks in the Microsoft word. How can I convert the single microsoft word document with section breaks to multiple seperate pdf files?

    Acrobat (Adobe PDF Printer and PDFMaker ) doesn't recognize the Section breaks.  It never has as far as I am aware.  The easiest thing to do is to manually break up a copy of the MS Word Document into the Sections you need and then create the PDFs from those MS Word documents.

  • HELP!!!! I have spent hours trying to find out how to embed an image with a link or a Microsoft Word document with a hyperlink built within the document -- not as an attachment! Does ANYONE know the secret? Can it be done, or not! My PC clients do it.

    HELP!!!! I have spent hours trying to find out how to embed an image with a link, or embed a Microsoft Word document with a hyperlink built within the document -- not as an attachment into my email -- but where it shows as the email content when opened! Does ANYONE know the secret? Can it be done, or not? My PC clients do it all the time easily. Then I want to be able to send the embedded image/document (not as an attachment, but visable within the email when opened) to many email contacts at once, BUT the individuals receiveing them DO NOT SEE the other email contacts. Cannot seem to be able to find anything on being able to do these 2 tasks.PLEASE, SOMEONE, HELP!!!

    Don't know if this applies to Lion, but read here:
    http://www.makeuseof.com/tag/create-html-announcement-mail-iweb-mac/

  • Can I sign a Microsoft Word Document with the digital signature from a MIlitary issued CAC card?

    Is it possible to sign a MS Word doc with the digital signature froma  Military issued CAC card? It is easily done in Adobe but, I cannot find any guidance for MS Word docs.

    According to this thread in Microsoft's forums:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/can-i-how-do- i-add-a-digital-signature-to-a/eb2c2787-b13f-4388-b20f-4580515eec95
    this is not possible with Word for Mac.
    Regards.

  • Importing Microsoft Word document with images to InDesign CS5

    Hey,
    I'm trying to import a MS Word document that contains inline images to InDesign CS5.
    I tried File->Place with checking "Import Inline Graphics" but unfortunately it imports the document without the images, there are blank regions where the images are suppose to be.
    Any ideas?
    Thank you,
    Kathy

    Yes, aligning image on its own paragraph works, I will skip wraping text inside paragraph, this can be done inside InDesign. Here is one part of Internet PDF books I am talking about, both are in Serbian http://issuu.com/bojan_zivkovic/docs/prikazivanje_slika_u_adobe_photoshop_elements - word + indesign, http://www.scribd.com/doc/49583823/Nau%C4%8Dite-Adobe-Photoshop   - indesign only
    Basicaly I am writing tutorials then turn them into PDF books, for now.
    Thank you, I never try to insert image on its own paragraph.

  • Opening Word documents with Appleworks

    I often receive Word documents as email attachments (though my hotmail account). I can download these Word documents to my desktop but when I click on them to open them I get an offer to purchase MS Word (which I do not have). I would like to be able to simply open the Word documents with Apple works--and I am hoping I can just click on them and have that happen automatically. But it doesn't. I have tried opening Appleworks and going into the wordprocessing program and then opening the Word document through that, but it only is successful part of the time. What can I do? I would like to have these Word douments open automatically in Appleworks but every time I click on them (i.e., their icon on my desktop) I get that advertisement from Microsoft asking me to buy Word. Is this ad blocking a normal function of Appleworks that would otherwise allow me to open Word documents with a click? And in any case, how can I proceed?

    The ad for Word is almost certainly being tacked on through or at Hotmail (taglines or adware from Hotmail? Hoodathunk .....) ; it sure isn't coming from AppleWorks or from anything on your own system, unless you have that demo copy of Office still lurking somewhere. I suppose it could come from that, somehow.
    Assuming you can get a clean attachment downloaded to your Desktop from Hotmail, the procedure for having what you want to happen automatically is fairly straightforward and, really, has nothing at all to do with Appleworks. Try the following:
    --> Select (highlight) one of those downloaded .doc files from Word, then
    --> use the Finder's Get Info command (⌘-I). In the window which appears,
    --> see the "Open with" section, and set it to AppleWorks.

  • HT2506 hi i can't seem to copy and paste pdf files from preview to a microsoft word document. it always comes up with nonsense characters in the word document. how do i fix this? thanks in advance

    hi i can't seem to copy and paste pdf files from preview to a microsoft word document. it always comes up with nonsense characters in the word document. how do i fix this? thanks in advance

    Hi,
    The quickest way to do this (tested with OS 10.8.2, MS Word 2011) is in one line:
    tell application "Microsoft Word" to close every document whose name begins with "book"
    The reason why your script doesn't work is that you aren't specifying to Word which document you want it to close.
    So, changing one line ought to do it:
    close document incrementvalue -- instead of "close document"
    But... when you close a document, you change the document count. Document 2 becomes document 1, document 3 becomes document 2 etc. So eventually you'd get a message saying "The object you are trying to access doesn't exist".
    Because of this, if you want to do it in a repeat loop, you have to work backwards:
    tell application "Microsoft Word"
      set doc_count to count documents
      repeat with x from doc_count to 1 by -1
      if name of document x begins with "book" then close document x
      end repeat
    end tell
    Hope this helps.

  • Sometimes when i get out of the full screen option for a microsoft word document i lose my main toolbar (the toolbar with the minimize and escape buttons, etc. etc.)

    Sometimes when i get out of the full screen option for a microsoft word document i lose my main toolbar (the toolbar with the minimize and escape buttons, etc. etc.)??

    MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro 
    https://discussions.apple.com/community/mac_os?view=discussions
    http://www.apple.com/support/macbookpro

  • I created a 5x7 postcard document in Word with text boxes and graphics.  When I converted it to PDF, some of the items were missing, even though they were in the boundaries of the page and looked fine on the Word document.  What happened, and how do I fix

    I created a 5x7 postcard document in Word with text boxes and graphics.  When I converted it to PDF, some of the items were missing, even though they were in the boundaries of the page and looked fine on the Word document.  What happened, and how do I fix it?  I'm trying to upload the PDF version to Vistaprint.  Thanks.

    Reader doesn’t create pdf files. You can use Acrobat (ask in that forum) to create pdfs. You can subscribe to the Adobe PDF Pack which has a create pdf functionality (please ask in that forum), or you can use a third party utility such as ghostscript, cutepdf, or Microsoft’s own PDF creation capability. For third party pdf creation you will need to ask in a forum dedicated to that software as fellow users of Reader are unlikely to have the knowledge to help.

  • Double click a word document in your PC and have it opened with Buzzword

    I am trying to replace Microsoft Word with Buzzword but I keep receiving emails with word attachments or downloading word documents from other websites and is really tedious to manually import each of those documents into Buzzword to read/edit it.
    Why don't you create a small utility that I can install in my local PC so that when I try to open a word document, it automatically imports it into Buzzword and opens it in my browser?
    I try to post this in the Acrobat.com ideas section of this forum but it is blocked!
    I am also open to develop this utility by myself but:
    There is no way to obtain an Acrobat.com development key. The email address where the key requests need to be sent no longer exist.
    I didn't see in the API any method to import into Buzzword. I only saw the option to upload the file and another missing feature in Acrobat.com is that you cannot import a word document already uploaded into buzzword. You need to download it and upload it again using the Import button.

    Automatic syncing between the Mac and iCloud is not supported at this time.  Which is good, as there is a difference between the Pages file format used on iOS - and, thus, on iCloud - and the file format on a Mac.  Due to limitations of iOS, the format on iOS is less comprehensive, and automatic syncing might cause your Mac copy to lose some formatting.
    In order to upload a Pages file from the Mac to iCloud, you log in to iCloud and upload it there.  You can also download from there, but be warned that the version you download could be missing some formatting.

  • Reading and displaying Ms.Word document with web dynpro java

    Hi,
    I'm using NetWever developer studio 7..0.21.
    I'm developing web dynpro java application.I'm in difficulty to read and display word document with its original format in web dynpro view. Is it possible?
    If possible , is there a blog etc.?
    Thanks.

    Hello,
    You have to use the Office Integration Library. Please, follow the documentation below:
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/32853febec3c17e10000000a114084/frameset.htm
    I hope this helps you.
    Regards,
    Blanca

  • Is there a way to protect a PDF document as with a Microsoft Word document?

    Is there a way to protect a PDF document similar to a Microsoft Word document?

    Hi ,
    If you could specify how exactly you want to protect the PDF that would be great .
    However there are various options to protect a PDF available in Acrobat as well .
    If you select the protection option in Acrobat,you will get to see several options of protecting or encrypting  a PDF .
    You can encrypt it with with a password or a certificate .
    You can even redact a PDF if you want .
    Please go ahead and have a look at the options available to get more details and ways to protect a PDF .
    Let us know if that suits your requirement .
    Regards
    Sukrit Dhingra

  • Convert Adobe Form (with data) to Microsoft Word Document

    Adobe Acrobat 8.0 Standard
    Windows XP Professional SP2
    Microsoft Word 2003 SP3
    I am attempting to convert an Adobe PDF Form (with data included) to a Microsoft Word document.
    When I use the menu to attempt this, I get a Word document containing only the form fields.
    I want to be able to grab all the text from the document, as these forms were used to fill in information for Job Descriptions, and I want to submit the text to job boards (without having to retype anything).
    What are my options for obtaining this information?

    Bill:
    Thank you for all of your help. I do not have the program in front of me, so I don't have a means of independently verifying this, until I go see the user tomorrow when he returns to the office ...
    Just to confirm, a fillable PDF is different from a standard PDF, as it stores the form fields in a special way, likewise, the data is stored in a special way. This is actually a quite useful feature, for compiling data, if you use the form multiple times.
    A standard export of a fillable PDF exports only the fields.
    To get the data, I would have to choose to save form data.
    To get the fields and the data, I have to print it using a PDF printer to create a new PDF document. Once I create this new PDF document, I can then export to Word as desired.
    If I want ONLY form fields: (one-step process)
    Export > Microsoft Word > %filename%.DOC
    If I want ONLY form data:(one-step process)
    File > Save FORM DATA > FDF file format > %filename%.FDF
    If I want both the form and the data: (two-step process)
    File > Print to PDF > Save as %filename%.PDF
    Open %filename%.PDF > Export > Word Document
    Is this the process? Pardon my confusion, but I am a newbie, and I do not have the program to test with.
    Thanks for your help, kind sir.

  • Microsoft word documents and removing policy.

    Can DocumentManger class can be used to remove security policy from secured Microsfot word docuemnts.
    Or protable protection library is the only way to deal with Microsoft word documents?
    I want my application to remove the strip off all security information from the document and re insert the same again at a later point.
    is portable protection library is the only way to go here.

    Thanks Steve for pointing out to API.
    I am getting exception as below for java client code snippet while inspecting document which is secured using MS Word 2007.
    Properties connectionProps = new Properties();
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "jnp://vvcon-qa-1.ptcnet.ptc.com:1099");
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceC lientFactoryProperties.DSC_EJB_PROTOCOL);         
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "administrator");
    ServiceClientFactory factory = ServiceClientFactory.createInstance(connectionProps);
    RightsManagementClient rightsClient = new RightsManagementClient(factory);
    //Reference a policy-protected Word document from which to remove a policy
    FileInputStream is = new FileInputStream(args[0]);
    Document inPDF = new Document(is);
    //Create a Document Manager object
    DocumentManager  documentManager = rightsClient.getDocumentManager();
    RMInspectResult lic = documentManager.inspectDocument(inPDF);
    Exception I am getting
    com.adobe.edc.sdk.SDKException: Error while looking up RM Header in the document -- Invalid argument(error code bin: 1281, hex: 0x501)
        at com.adobe.livecycle.rightsmanagement.RightsManagementService.throwSDKException(RightsMana gementService.java:958)
        at com.adobe.livecycle.rightsmanagement.RightsManagementService.getLicenseID(RightsManagemen tService.java:794)
        at com.adobe.livecycle.rightsmanagement.RightsManagementService.inspectDocument(RightsManage mentService.java:2260)
    Event if I try with user who can access document after connecting to LiveCycle ES2 from Microsoft Word 2007 I am getting same exception.
    I can acess document from MS Word after I have secured it using all users who have right permission for document but from java client I am not able to do that. Looks like RMS information is not embedded properly in my document.
    jars included in my classpath are
    adobe-rightsmanagement-client.jar,namespace.jar,jaxb-api.jar,jaxb-impl.jar,jaxb-libs.jar,j axb-xjc.jar,relaxngDatatype.jar,adobe-livecycle-client.jar,adobe-usermanager-client.jar,jb ossall-client.jar
    My client is running on Windows XP 32 bit with Office 2007.
    Server is installed on Windows server 2008 R2 64 bit and deplyoed using JBoss.
    Regards,
    Sharang

  • I have a MacBook Pro (2011) and need to access Microsoft word documents. Is there any way to do this??

    I have a MacBook Pro (2100) OS 10.7.5 and need to access some Microsoft Word documents- but that is no longer supported in my 10.7.5 - is there any way around this????

    Miss Pamela wrote:
    I have a MacBook Pro (2100) OS 10.7.5 and need to access some Microsoft Word documents- but that is no longer supported in my 10.7.5 - is there any way around this????
    Sure, download the free/donationware LibreOffice.
    https://www.libreoffice.org/
    Cross platform and loaded with goodies.

Maybe you are looking for

  • Timecapsule - opening files from within an application!!

    I have a time capsule... 500Mb I have an airport extreme with external hard drive - 250 Mb. Through Finder, I can place files on either of these drives and open them from Finder. If I open Numbers, or Pages, then try to open any file on Timecapsule,

  • Application doesn't render the updated changes

    Hi Experts, When ever I made changes in the abap code / javascript and run the application directly from IE instead of SE80 I can't see the updated changes in the screen, instead scrap dispaly on the screen. It is the behaviour untill I delete all th

  • Deleating the open PO

    Dear Gurus, I want to check out the list of open PO for a particular materils & delete them . Pl also suggest that if any GR & IR has been done completetely and partialy for the material then what is the procedure . I need this change the valution cl

  • Adobe Premiere CC, Trying to Sync 2 camera for Multi cam edit.

    Hi, I am at present trying out Premeire CC, my workflow is usually a minimum of a 2 camera shoot for weddings, what I am trying todo in CC is to try and sync all the clips together for a multi cam sequence ready to edit. I have followed various optio

  • How can I get the Icon for setting back? It just went away?

    How can I get my Setting Icon back?