J2ee cas com bridge help

Hi,
I need documentation about j2ee cas com bridge. I know that is not still supported but I have to mantain a software that was developed in vb6 using .class files. I have to check something but I haven't the documentation. Does someone knows where I can find it?
Thanks
Valy

There is now an IBM product available for free download.
See http://www.alphaworks.ibm.com/tech/dtjcb?open&S_TACT=104AHW61&S_CMP=GR&ca=dgr-eclpsw02awdtjcb
I have been trying today to investigate migrating from CASCOM to this product. It appears to have the facilities I need (i.e. COM client to Java Server) but I'm having trouble trying to 'match' the two products.
CASCOM can generate TLB files for use by the COM application direct from the Java class, whereas it appears that you have to provide IDL definitions for all Interfaces from scratch, and then convert them to TLBs using 'midl'. Anyone been through a migration already who could share their experiences??
Thanks
Steve Waters

Similar Messages

  • Use J2EE CAS COM Bridge locally for non visual components

    if you only have non visual java-classes which you want to access locally through COM, you should use J2EE CAS COM Bridge. this is a very powerfull component, that makes it very easy to use about ANY java-class in VC++, VB, ASP and VBScripts. Some people said earlier in this forum, that you can only use EJBs which must also have been deployed in a J2EE EJB server. well that's not true!! if you need only local access to java-components, you can use J2EE CAS COM Bridge as well. All you need is just a JRE, actually you can have multiple JREs installed and choose among them, even dynamiclly in runtime. No JDKs and no additional J2EE components are required.
    J2EE CAS COM Bridge comes with very usefull tools and lots of examples that show, how you can access java-classes in VC++, VB, ASP, etc.
    So TRY THIS!!

    unfortunately, it's outdated! The last example (6) doesn't work. The batch file cloudUtil.bat has to be adjusted to use the current cloudscape JAR files. And even then, the Visual Basic Programm terminates with an Exception at line:
    Set AcctHome = J2eeRi.LookupEjbHome("MyAccount", "account.AccountHome")
    Exception:
    Run-time error '-2147467259 (80004005)':
    JavaException: java.lang.Exception: Could not call javax.naming.InitialContext.lookup because:
    javax.naming.CommunicationException: Can't find SerialContextProvider
    :-(

  • CAS COM Bridge

    I downloaded the latest early access 4 of the J2EE CAS COM Bridge (http://developer.java.sun.com/developer/earlyAccess/j2eecas/download-com-bridge.html) and work through the Tutorial (http://developer.java.sun.com/developer/earlyAccess/j2eecas/doc/guide/html/Tutorial.html). I came to the point where the examples use type libraries, but those examples don't work. After replacing the types with "Object", they work.
    In paragraph 3.2 Type libraries in Visual Basic
    (http://developer.java.sun.com/developer/earlyAccess/j2eecas/doc/guide/html/Tutorial.html#3.2), it says:
    - Under the "Projects" menu select "References...". The "References" dialog box will appear.
    - The "java_lang_System_Lib" checkbox should be checked. Uncheck it.
    But there is no entry "java_kang_System_Lib", only J2EExxx entries. Of course, I tried to check all the J2EExxx entries, but with no success. Is somebody else working with the CAS COM Bridge getting it to run with Type Libraries?

    So, what's up with the broken type libraries?

  • J2EE To COM Bridge

    We have a Workflow product that is based on the COM
    architecture. We're in in the process developing a new
    LOB application based on J2EE specs.
    What are our options (vendor products, how) to
    integrate these products so that they can talk to
    each other through the data layer?

    JIntegra from http://www.intrinsyc.com is one of your options, I think.

  • Java EJB's from VB via CAS COM

    I'm am trying to access a Java EJB on an Orion
    application server from a VB app using the Early
    Access version of the current CAS COM Bridge.
    I am providing details of the Orion server configuration and also relevent statement for the VB app.
    First, the following is the rmi.xml file for our orion server:
    <?xml version="1.0"?>
    <!DOCTYPE rmi-server PUBLIC "Orion RMI-server" "http://xmlns.oracle.com/ias/dtds/rmi-server.dtd">
    <rmi-server port="23791" >
    <!-- A remote server connection example -->
    <!-- <server host="the.remote.server.com" username="adminUser" password="123abc" /> -->
    <!-- path to the log-file where RMI-events/errors are stored -->
    <log>
    <file path="../log/rmi.log" />
    </log>
    </rmi-server>
    Second, the following is our server.xml file:
    <?xml version="1.0"?>
    <!DOCTYPE application-server PUBLIC "-//Evermind//DTD Orion Application-server//EN" "http://xmlns.oracle.com/ias/dtds/application-server.dtd">
    <application-server application-directory="../applications"
    deployment-directory="../application-deployments">
    <library path="../tools.jar" />
    <rmi-config path="./rmi.xml" />
    <jms-config path="./jms.xml" />
    <log>
    <file path="../log/server.log" />
    </log>
    <transaction-config timeout="30000" />
    <global-application name="default" path="application.xml" />
    <application name="eproposal" path="C:\oc4j\j2ee\home\applications\eproposal.ear auto-start="true" />
    <global-web-app-config path="global-web-application.xml" />
    <web-site path="./default-web-site.xml" />
    <cluster id="-1335203624" />
    </application-server>
    Lastly, we are using the Early Access version of the current Sun J2EE CAS COM Bridge to access this server from a VB6 app. Sun's documentation for Accessing EJB components on a J2EE server from a VB app states the following:
    Dim J2eeRi As J2eeRiServices
    Set J2eeRi = New J2eeRiServices
    J2eeRi.ProviderURL="iiop://host:port"
    We replaced the call to ProviderURL with the following:
    J2eeRi.ProviderURL="ormi://n6908ccj4b166/eproposal"
    and when it executes we get the following error:
    Invalid ProviderURL:ormi//n6908ccj4b166/eproposal
    Can anyone provide any help?
    Thanks,
    Mike

    the first stuff i haven't really looked at but this...
    J2eeRi.ProviderURL="iiop://host:port"
    is not the same as
    J2eeRi.ProviderURL="ormi://n6908ccj4b166/eproposal"
    1) where is the port.. shouldn't it look like
    J2eeRi.ProviderURL="ormi://n6908ccj4b166/eproposal:5000"
    if for example the port was 5000
    2)also i'm not sure what is happening but in the error Invalid ProviderURL:ormi//n6908ccj4b166/eproposal
    what has happened to the : between ormi and //
    make sure the : is there too.
    3)is the ormi part valid. this is the protocol no? should it not also be iiop. i really don't know about this one but it strikes me as odd....
    hope this is somewhat helpful.

  • Bridge Help | Work with metadata in Adobe Bridge

    This question was posted in response to the following article: http://helpx.adobe.com/bridge/using/metadata-adobe-bridge.html

    Might check this past post to see if you have ownership of your HD.
    The key to solving this issue lies is understanding that in terms of Windows 7 Security, every internal or external hard drive, plus folders, sub-folders and files thereon has an OWNER. Also each OWNER has a certain level of PERMISSION to do things such as moving files to a different folder, deleting or re-naming them etc. If you try to do things that you don't currently have Permission to do, that is when you get an ‘Access Denied’ error message. Also your system has an Admistrator or Administrators and at the outset you need to ensure through the Control Panel that you are listed as one of them. .
    If, like me, you didn't realise these things, (and why would you if Microsoft or your computer or hard drive suppliers couldn't be bothered to really make sure you knew about them), then trying to fathom the ‘Access Denied’ problem becomes a stressful and frustrating nightmare as I can testify having spent a week at it!
    The steps that I took to resolve the issue and which I believe now constitute the 'Correct Answer' are as follows:
    First make sure that you have Administrator rights on your system via the Control Panel
    Next ‘right click’ on the Drive whose files you want to gain full access to, for example the drive that your pictures are stored on, and click on 'Properties'.
    Under the Security tab you will see a list of Groups and Users on this drive and the Permissions that they have to do things.
    Before doing anything to edit these Permissions, first click on the Advanced button. This opens another window with a tab showing the Owner of this drive.
    Click on the Owner tab and if you are not already listed as the owner, make yourself the owner by selecting your name from the list. I believe it should appear there if you are an admistrator or user. (In my case at this stage the owner was initially shown as an obscure string of numbers and letters which I believe identified the drive when it was connected to the lap top I was using before I upgraded my machine)
    Now be sure to check the box that says "Replace Owner on Subcontainers and Objects" and the click Apply. On completion of this step, the drive in question and all the folders, subfolders and files thereon should now be 'owned' by you. You could check this out by right clicking on a particular folder then clicking Properties > Security > Advanced > Owner. Your name should appear. So far so simples!
    Now go back to the Security Tab for your drive (Step 2 / 3 above) and look at the Permissions you currently have. Your aim now is to allow yourself 'Full Control.' If you don’t currently have this level of permission click Edit, select your name on the list, check ‘Full Control’ and 'Apply' the change.
    I think I'm right in saying that at this point whilst still working in the Drive directory you are now given the option of ticking boxes which allow you to, in effect, cascade the permission you have just granted yourself to all the files and folders on that drive. Tick the box to allow this and Windows should then take care of the rest.If I'm not quite correct here then in my particular case, for example, all my images were stored on my external drive. The top level, or 'parent' folder in which all my pictures could be found was the 'My Pictures' folder and I had created a number of folders and subfolders ('child ' folders) within that folder. The permissions I gave to the Parent folder – My Pictures – were cascaded down through the Child folders.
    On completion of the above step I tested the result in Windows Explorer by dragging a few files back and forth between folders and it now worked perfectly - I was now able to move / delete / rename etc all files without now getting the dreaded access denied message. What a sense of relief! This meant that I could now open Bridge normally rather than having to right click it and 'Run As Admistrator' - albeit that is a very useful thing to do until you get the problem sorted as described.

  • I have had to replace a faulty hard-drive on my imac. Some applications (incl iphoto) are telling me that my OSX (10.82?) isnt recent enough to use the application. I need 10.9. I have upgraded to Maverick but this remains the case. Any help?

    I have had to replace a faulty hard-drive on my imac. Some applications (incl iphoto) are telling me that my OSX (10.82?) isnt recent enough to use the application. I need 10.9. I have upgraded to Maverick but this remains the case. Any help?

    If your Mac is from the age of Mac OS X 10.8.2:
    How to find your Mac's model and age?
    Contact AppleCare to request the prebundled iPhoto be uploaded to the Mac App Store, or the Mac App Store support.
    This is just a user to user forum.  This link goes direct to the Apple Store support:
    http://www.apple.com/support/mac/app-store/contact.html?form=account&topic=MacAp pStoreAccountandBilling

  • Output in Bridge CC missing. Attempt to install fix from Bridge Help. WinZip failed. Now what?

    The Output function in Bridge CC is missing. I attempted to install the fix that was available via Bridge help. The WinZip download worked fine. I found the recommended file location. The fix did not install. What else can I use? When will an update be available? Thanks.

    In CC, I am forced to leave Bridge, go into the application, and Open the file through the system dialog box.
    That is not normal behavior (at least on my Mac I still have all installed applications as option under this menu). By default the open with menu under the righty mouse menu should show all installed applications on your system. It sometimes even shows them double in case of attached disks with back up etc.
    This has not changed in Bridge CC. If you have those applications installed on your system at the same location as Bridge they should show.
    First try a reset of preferences for Bridge with holding down control key while restarting Bridge and choose rest preferences from the provided menu.

  • IPhone 4 Case to specifically help with RSI (Repetitive strain injury)

    Hello! Does anyone know of a case, that would help someone who suffers with RSI?  (Repetitive strain injury).  I find the iPhone 4 rather uncomfortable to hold.
    I did see somebody on the train the other day who's case which has a hard front and sides but a very soft cushioned back. I've tried to Google this but it's impossible and I've also been to the Apple store.
    Many thanks.

    The issue is when our sweaty, meaty hands make contact with the antenna so anything which is non-conductive. So any plastic or rubber case will do the job.
    This will fix the issue where bridging the two antennas causes things to go squiffy and make the iphone respond like every other phone.
    I find it strange that people are acting like signal attenuation is totally new. Every phone ever made looses signal when lost. The issue is that the bare antenna means the signal loss is higher than any other phone. The case just puts things back in balance and signal loss will occur but back in line with other phones.

  • I have used Final Cut Pro 7 for about a year. Two weeks ago when I tried to open it, it opened for 15 seconds and then the icon disappeared. I have tried to reinstall and it didnt help. any one has similar case or can help?

    I have used Final Cut Pro 7 for about a year. Two weeks ago when I tried to open it, it opened for 15 seconds and then the icon disappeared. I have tried to reinstall and it didnt help. any one has similar case or can help?

    Please post your problem in the Final Cut Studio (Final Cut Pro 7) forum:
    https://discussions.apple.com/community/professional_applications/final_cut_stud io?view=discussions
    You'll get the help you need in that forum.

  • Bridge Help | What's new in Adobe Bridge CC

    This question was posted in response to the following article: http://helpx.adobe.com/bridge/using/whats-new.html

    Dear Adobe, Please add the Export panel back to Bridge!  The ability create presets to batch save RAW files to JPEG in a specified size was/is critical to my workflow.  I like that I could just drag/drop the files to my custom "Save to Hard Drive" preset, click one button, and Bridge would process and save any number of files in the background.  I can't believe the official solution is for users to go to Lightroom to export photos they are already managing in Bridge/Photoshop.  If I'm using Bridge, it's because I prefer it to Lightroom.   What about the users who don't even have access to Lightroom? What are they supposed to do (besides buy and learn Lightroom)?  I just can't understand why when I am spending $50/month for this software, Adobe is removing more features than it's adding?

  • FW: [Adobe Reader] I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie

    What a dumb answer, the payment is done and charged already,
    ADOBE DOES NEED MY CREDIT CARD INFO ANYMORE, PLEASE REMOVE IT
    FROM YOUR DATABASE AS I CANNOT DO IT MYSELF.  It is quite annoying
    to be controlled like this, please confirm that my request has been answering
    with intelligence please.
    Lucie Lévesque
    Date: Mon, 8 Dec 2014 08:09:59 -0800
    From: [email protected]
    To: [email protected]
    Subject:  I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie
        I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie
        created by Bernd Alheit in Adobe Reader - View the full discussion
    Adobe needs the credit card information for the payments.
         If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/6995243#6995243 and clicking ‘Correct’ below the answer
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/6995243#6995243
         To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

    Adobe Reader is a FREE program, so you would not enter a credit card
    If you have a subscription to a PAID program, removing your credit card information would cause that program to stop working when you stop paying for your subscription
    If that is what you want, here is the information on how to cancel
    Cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Bridge Help | About Adobe Bridge

    This question was posted in response to the following article: http://helpx.adobe.com/bridge/using/adobe-bridge.html

    Not clear on what you have.  A trial version of CS5?  Not sure where you would get that as Adobe just has trials of CS6 now.
    What OS?
    All versions come with uninstallers.  But best not to uninstall previous versions as it can sometimes can cause file association problems.

  • Bridge Help | The Adobe Bridge workspace

    This question was posted in response to the following article: http://helpx.adobe.com/bridge/using/adobe-bridge-workspace.html

    For reinforcement, a basic tutorial video on setting favorites and image ratings can be found on the InfiniteSkills blog: http://infiniteskills.com/blog/2012/08/adobe-photoshop-cs6-tutorial-favorites-and-ratings- in-bridge/

  • Bridge Help | Create web galleries and PDFs with Adobe Output Module

    This question was posted in response to the following article: http://helpx.adobe.com/bridge/using/create-web-galleries-pdfs-adobe.html

    Plug-ins that failed to load:
    It seems to me that something is wrong with your install. Maybe you did clone a former mac to install on this one? or copies old stuff to the new one. Don't know, it seems easy and quick but I prefer always a new install using a new computer or switching to a new system upgrade.
    Lightning effects shows to be 32 bit while I think to know that Photoshop CS5 and CS5.5 are both 64 bit, however Bridge was turned to 64 bit in the CS6 version but that should not mater for you to use both applications from the same install disk (or download?)
    And variations is something I tried to find in CS6 but can't find it there. I had long forgotten this feature that presented different previews and you could switch to color corrections and brightness (not sure) while looking at the result in the previews.
    So I think you have some old material residing on your system. I would advice you to back up all custom settings (actions, tools, workspaces etc. and keywords in Bridge) Then do a search for the Adobe Cleaner tool :
    http://www.adobe.com/support/contact/cscleanertool.html?promoid=GYTAU
    (don't know this links work for you but you can find it easy with google).
    Read the instructions carefully and follow this using the official uninstaller that came with PS (see application folder). Also be sure to have your serial number and AdobeID present and while an activation of PS is for the computer maybe for security first deactivate before uninstall.

Maybe you are looking for

  • How do I fix Mail's [apparently lost] "create iCal event" feature?

    When the data detector feature in Mail detects a date (and/or time) the contextual menu offers to create (or edit and create) an event in iCal. This used to work. Recently (not sure how long, perhaps last week or two, maybe longer) I have found that

  • APEX limitation or am I missing something?

    I'm not sure if my issue is a limitation of the APEX development environment or if there is another way to achieve my goal. The problem is this: I've created a report that has 30 ITEMs (4 charts & 26 display texts) that are all fed by a SQL statement

  • JDeveloper's compiled JSP location in a .war file

    When I choose to build a .war file in JDeveloper 10.1.2 that contains the .JSP files, it sticks the compiled jsps in WEB-INF/classes/.jsps. To get the app server to properly recognize the precompiled JSPs, they need to be located in the WEB-INF/class

  • EJB lookup

    Hi i am using RSA for developing the code and i use the following code for looking up the ejb from the servelt deployed as part of the Same EAR file. Object objsessionBeanLookup = m_initialContext.lookup("java:comp/env/ejb/UpdateHistory"); UpdateHist

  • Accidentally installed Adobe Reader XI in Japanese

    while trying to view a Japanese PDF on a Japanese website.My computer's language is in English, and I tried switching the language by mimicking an English Adobe, but the two versions don't match. I can't uninstall it either to reinstall because Japan