Is it possible to use Microsoft's Java Packages in Forte4Java/JBuilder?

Dear all,
I am wondering whether it is possible to use those java packages installed by MS Visual J++ in Sun's Forte4Java or Borland's JBuilder? I found one of the java packages of Microsoft -- com.ms.com.* quite useful for calling ActiveX Components in java code and I have succeeded in calling my DLL COM under Visual J++ with the help of com.ms.com.Dispatch. But I have to use Forte4Java to write my Java program, therefore, it will be great if I can still use com.ms.com.* under Forte4Java. Is it possible? If so, how to do it? Please advise and thanks in advance...
Tracy

You can use any java package if you just add it to the classpath. In Forte this means adding it to the explorer pane, I am not sure about Builder.
The problem will be when you try to run it. Any Microsoft class which uses some part of their runtime will require the Microsoft VM. If you have that, and are willing to be permenantly tied to it, then you will be in business.

Similar Messages

  • Is it possible to use WMI in Java

    hi,
    Is it possible to use WMI in java.We can use C# code to fetch Windows information using WMI,but is it possible to do the same in Java?

    One easy solution is to generate a vbscript, launch it and capture the output.
    Example at [http://www.rgagnon.com/javadetails/java-0580.html]
    ok, it's ugly but unless you want to go with JNI then it's worth a look.
    Bye.
    RG.

  • Is it possible to use php in java

    Is it possible to use php in java.java in php is possible but is vice versa possible?
    iwapsms

    http://zez.org/article/articleview/26/

  • Is it possible to use Microsoft excel on iPad?

    Is it possible to use all the functionality of Microsoft excel on an Ipad. I can currently view spreadsheets but I can't edit, filter/sort them the way I can on my PC?
    Many thanks

    All of the "Office" document editing applications on the iPad have limitations.  Best try them out to see if they meet your needs.
    Free apps
    Apple iWork
    iWork by Apple  -- free with newly purchased iPads
    Keynote
    How to compose PowerPoint presentations that are compatible with iPad Keynote presentations. http://www.pchelps.com/2011/06/from-pc-to-ipad-creating-presentations-that-work/ #comment-2234
    Numbers
    Pages
        http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
        iWork for iCloud Beta
        https://www.apple.com/iwork-for-icloud/
    Citrix ShareFile QuickEdit
    "Is the simplest document-editing tool available for iOS devices. Open, view, create and edit Microsoft® Word, Excel® and PowerPoint® files — right from your iPod®, iPhone® or iPad®!" Was Office² HD.
    https://itunes.apple.com/gb/app/id364361728?mt=8
    Kingsoft Office
    "Read, edit PowerPoint files, and read Word documents on your iPhone or iPad, Share it by cloud storage."
    http://www.kingsoftstore.com/office-free-ios
    Microsoft Office
    Microsoft read only apps for Excel, Powerpoint and Word.  To edit, you need a subscription.
       https://itunes.apple.com/us/app/microsoft-excel-for-ipad/id586683407?mt=8
       https://itunes.apple.com/us/app/microsoft-powerpoint-for-ipad/id586449534?mt=8
       https://itunes.apple.com/us/app/microsoft-word-for-ipad/id586447913?mt=8
    Quickoffice
    Quickoffice is an application available for iOS and Android tablets and phones that lets you view, create, and edit Microsoft Office, as well as view and annotate PDF files. Connect Google Drive to Quickoffice for cloud storage so that you can easily access and edit files from your tablet, phone, or computer and know that your files are always up-to-date
    https://support.google.com/quickoffice/answer/2986862?hl=en&ref_topic=2986859
    CloudOn
    Client front end to a Microsoft Office running on a server
    "CloudOn brings Microsoft Office® to your iPhone & iPad and links it to your Box, Dropbox, Google Drive and SkyDrive accounts."  Free for a give number of documents.
    https://itunes.apple.com/us/app/cloudon/id474025452?mt=8
    Paid
    DocsToGo
    • VIEW/EDIT/CREATE Word & Excel files(Office 2007/2008/2010)
    • VIEW PowerPoint, PDF, iWork, Text, .RTF, and more!
    • Send & receive attached supported documents using the built-in Mail app
    • FREE desktop application with your purchase! Compatible on Win & Mac allows you 2-way file sync with a WIFI connection.
    • Open & Edit files within DocsToGo from any 3rd party app that supports the “Open In” feature
    • Supports iTunes File Sharing via USB cable for manually moving files
    https://itunes.apple.com/us/app/documents-to-go-office-suite/id317117961?mt=8
    Thanks to Texas Mac Man for pointing to this link.
    "Quickoffice Connect Mobile Suite and Documents To Go These two apps share an important feature: unlike Numbers, they can open, edit, and save an Excel spreadsheet without stripping out any data or formatting, even though they can’t display or edit all the existing information; spreadsheets can make the round trip from Mac to iPad and back safely, without losing anything."
    http://www.macworld.com/article/1159958/ipadspreadsheet.html
    Office 365
    Office Mobile for iPhone requires a qualifying Office 365 subscription
    * Edit - You can make quick edits to Word, Excel and PowerPoint documents.
    * Documents Remain Intact - Formatting and content remain intact when you edit Word, Excel, or PowerPoint documents on your phone.
    * Edit While Offline - Your device doesn’t have to be continuously connected to the network to work on an Office document that is stored online. You can view and edit recently used documents even while you’re offline. Your changes will be saved online when your device reconnects to the network or to Wi-Fi.
    * Create – You can create new Word and Excel documents on your phone.
    https://itunes.apple.com/en/app/office-mobile-for-office-365/id541164041?mt=8
    Hazeware
    Run Windows 7 and Microsoft Office off of a cloud computer.
    https://hazeware.com/

  • Is it possible to use  closures in java 1.6

    I wan to to use closures they reduce lot of time .I know I can write closures in other languages like groovy , scala etc.But I have troubles using these langauges , I am wondering if I can use closures inside my java files , is this possible?

    Not in 1.6.0 but you will be able to in 1.7.
    You can get a very similar effect using inner classes which have been available since 1.1.x

  • Small, but useful enchancement of java package

    I'm suggesting to have a new interface:
    java.util.Filter {
    public boolean matches(Object o);
    The maches method returs true, if a value match to a defined pattern.
    Then we need, an enchancement:
    the Collection.iterator() and List.listIterator() should be enchance and two additional methods will be useful:
    Collections.iterator(Filter f) and List.listIterator(Filter f).
    Such iterators iterates only through the elements of an Container/List that are matching the Filter.
    What do you think ?
    Greetings,
    Witold Kaminski

    Hi !
    Thank you for the suggestion. This is of course possible.
    But .iterator(Filter) has the advantage, that it could be implemented optimized. In a list there is nothing to optimize, but in a sorted tree there are some optimations possible.
    But anyway you are right. In my opinion an additionanal adaptor class java.util.FilterIterator would be nice.
    A Filter operation is like a compreTo operation very abstract and may be used in a simmular powerful way, can't it ?

  • How to use the Public Java API

    Is it possible to use the Public Java API to write a custom transformation in Java and use this in OWB. i.e. Say I have a Dateofbirth field in my source database and an Agegroup field in the target database, and I write a transformation in Java to take the Dateofbirth as an input parameter to the method and calculate the Agegroup e.g. 25-30, and return it from this method which then populates the Agegroup field in the target database. If so, how do I go about this?

    Martin,
    In general, yes you could... but you do not need to. You could use the UI to implement this requirement. The public Java API is there for you to manipulate metadata. How you implement your system, is independent of that.
    The way you would go about the case you just mentioned... you would write the Java code, deploy it into the database, wrap it in a PL/SQL procedure or function, and call it from OWB.
    Would this be a good idea...? I think no. Unless you have very complicated calculations that can only be performed in Java, I strongly encourage you use the PL/SQL language. Reason being: transformation will be much faster, because there is no need to translate PL/SQL into Java and back again.
    Hope this helps,
    Mark.

  • Using microsoft.sharepoint.client.search.analytics to report the monthly hit count of site collections on SharePoint Online

    Is it possible to use microsoft.sharepoint.client.search.analytics to report the monthly hit count of site collections on SharePoint Online.
    GetHitCountForDay()
    GetHitCountForMonth()
    If yes, how can this be called and executed successfully from a Console application using the Client Object Model.
    Reference:
    http://download.microsoft.com/download/8/5/8/858F2155-D48D-4C68-9205-29460FD7698F/[MS-SPACSOM].pdf
    http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/54310f5f-e8a3-469e-86a3-63781b91670d/how-to-get-analytics-reports-programmatically-in-sharepoint-2013?forum=sharepointdevelopment

    Check if this works in 2013 as well.
    http://blogs.technet.com/b/sharepointdevelopersupport/archive/2012/10/04/how-to-retrieve-web-analytics-report-data-using-api.aspx
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • JSC2 Support for Traditional Java Package Names

    We have been looking for some encouraging words in the JSC2 documentation concerning the use of traditional java package organization for our creator projects but have been unable to find any. JSC2 appears to use a new project directory structure for its own purposes. However, there is no mention of package naming improvements in response to past requests from JSC1 users. We still very much want to organize our project content in the familiar java "com.company.ourproject.ourfeature" style. Is it the intention of the Creator developers to provide improvement in support for custom package names in JSC2 that is beyond what was possible in JSC1? Any insightful comments would be greatly appreciated.

    Hi,
    Please go through the following thread which discusses about the package structure:
    http://swforum.sun.com/jive/thread.jspa?threadID=53439&tstart=0
    Hope this heps
    Cheers
    Giri :-)
    Creator Team

  • Is it possible to flag e-mails and/or right click an e-mail to mark as read/unread, etc. when using Microsoft Outlook Web Access in Firefox on a Mac?

    Is it possible to flag e-mails and/or right click an e-mail to mark as read/unread, etc. when using Microsoft Outlook Web Access in Firefox on a Mac?
    == This happened ==
    Every time Firefox opened
    == I've never been able to figure out how to do those things in Firefox.

    When you use OWA in something other than IE, you're using OWA lite and no--it is not possible to do either in OWA lite (well, new Exchange stuff makes my answer a little less emphatic but still: pretty much no). Thanks Microsoft. But this guy made it possible to mark unread/read and select all/none:
    http://david-burger.blogspot.com/2008/07/firefox-greasemonkey-outlook-web-access_19.html

  • Is it really not possible to change outgoing name in Gmail when I am using Microsoft Exchange?

    I am using Microsoft Exchange for the PUSH notification because Gmail Account only fetches data. I want to use PUSH because I want to receive real time email messages. I also want to add my middle name in the outgoing name.
    Is this not possible?

    Thank you so much!!!
    I didin't realize to go to the Account Settings of my Google Account, but what I tried before was to go to the Accounts and Import Settings of Gmail and it didn't helped.
    Anyway, thank you so much!!!

  • Is it possible to login into the Java instance without password's input, using only my Windows workstation authorization?

    Dear Sirs,
    I try to do an authorization to my NW 7.3 Java instance through my Windows domain authorization.
    I done:
    1) Create connection to LDAP-server and tested it.
    2) Add windows domain certificate to TrustedCAs
    3) Configure SPnego
    Now, I can to login in my NW7.3 Java instance with my windows password, but however I must to input password when I open NW7.3 Java homepage.
    Is it possible to login into the Java instance without password's input, using my windows workstation login/password?
    What I have to do for that?
    I use Windows XP on my workstation and IE 8.0.6 & Chrome 38.0.2125.
    Best regards,
    Alexey Lugovskoy

    Please check
    Using Kerberos Authentication on SAP NetWeaver AS Java - User Authentication and Single Sign-On - SAP Library (NW7.3)
    Using Kerberos Authentication for Single Sign-On - User Authentication and Single Sign-On - SAP Library (NW7.0)

  • Is it possible to use the JS coding in webdynpro java application!!!

    Hi Experts,
    Is it possible to use the JS coding in webdynpro java application by any means?
    If yes, kindly suggest the procedure or any pointers for the same.
    Thanks in advance.
    Regards,
    Anurag

    Hi,
    I'm not an expert in this matter, but I will post here what I know:
    In NW7 releases (at least 7.01.05) it is possible to run JS, also to capture any WD Event and run your own JS code after that, using IFRAME. I have jQuery running here, it would take some time till you create a "framework" to enable some easy usage. I just want to highlight that is possible, thou I think it's a lot of effort.
    Not sure about CE7.1 it seems iFrame is deprecated. Still, being deprecated should not "block" the usage, thou it's not recommended since this functionality can be removed in next releases.
    I've read that CE7.2 has JS support, and I think you should try having a word with Armin maybe..
    Hope it helps,
    Daniel

  • Using MicroSoft. XMLHttp in jsp or  java

    Hi,
    Can anybody tell me is it good to use
    MicroSoft. XMLHttp in jsp and java programs for connectint to remote url and sending xml data..(in java script fucntions)
    regards,

    By default, JSTL variables are kept in servlet
    attributes. Default is to store it in the page
    context. You can make it request/session/application
    scope as required by an attribute of the set tag.Hi there,
    Can anyone advise how to access JSP variables in JSTL?
    Can it be done as the same method through request/session/application scope?
    Thnks...

  • Is it possible to use portal service written in Java?

    Hello,
    I've written a certain portal service in Java and deployed it to the portal and it is working OK.
    My question is if it is possible for .NET developers to use it and it's method in their projects as I am using in my Java and DynPro projects.
    Roy

    Hi Roy,
    What you asked requires interoperability between two very different technology stacks - Java and .NET (which is basically what the .NET PDK does for you).
    What you need for this is a mechanism to "translate" between these two stacks. This can be done with various 3rd party tools (that you can buy from companies who specialize in this kind of tools).
    BUT
    The quick, easy and cheap way is to use the industry-standard of interoperability, which is, as Tsachi told you - Web-Services.
    Regards,
    Ofer

Maybe you are looking for