Adding a Formview in a rich client application---urgent

Hello,
I am developing an XML editor as an eclipse plugin as a rich client application
I want to add a form view to it...
I have followed every instruction of this tutorial
http://www.eclipse.org/articles/Article-Forms/article.html
But the project does not run and flashes the following error
Missing required bundle org.eclipse.ui.views_0.0.0.
java.lang.RuntimeException: Application "test.application" could not be found in the registry. The applications available are: <NONE>.
at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:68)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
at org.eclipse.core.launcher.Main.run(Main.java:977)
at org.eclipse.core.launcher.Main.main(Main.java:952)
java.lang.RuntimeException: Application "test.application" could not be found in the registry. The applications available are: <NONE>.
at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:68)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
at org.eclipse.core.launcher.Main.run(Main.java:977)
at org.eclipse.core.launcher.Main.main(Main.java:952)
Application error
java.lang.RuntimeException: Application "test.application" could not be found in the registry. The applications available are: <NONE>.
at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:68)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
at org.eclipse.core.launcher.Main.run(Main.java:977)
at org.eclipse.core.launcher.Main.main(Main.java:952)
The application does not start once the code is added and al its references are commented
Pl help me out...thanks...<img class="emoticon" src="images/emoticons/confused.gif" border="0" alt="" />

You seem to be having a problem with creating an Eclipse plugin. You don't seem to be having any problem at all with Java and XML that I can see. I think you would have more chance of getting an answer if you looked over on the Eclipse site for a forum for plugin writers.

Similar Messages

  • LDAP authentication in a rich client application

    Hi,
    Our application runs ona WLS 8.1 environment. It has a Flash client side. On WLS side, we created an IPlanetAuthenticator and now are able to see the LDAP users in myrealm / users. I went through some weblogic docs. There were info about FORM based authentication and some similar methods. Since the client side of out apps. is a rich one (FLASH) and not using form submission process, we need some different way of authentication like calling a method in my model class from a controller servlet and receive a true / false reply.
    I don't know if this can be done?. Any idea, samle code etc. highly appreciated :-)
    Thanks in advance and regards

    You seem to be having a problem with creating an Eclipse plugin. You don't seem to be having any problem at all with Java and XML that I can see. I think you would have more chance of getting an answer if you looked over on the Eclipse site for a forum for plugin writers.

  • Rich client access server for data

    Hi
    I have a Rich client application and it need to access a web server via http protocol to access large amount of data.
    Any idea what is the best way to do this?
    im think of writing some server side code to generate the data object into XML files and then the client can retrieve the file. (either that or a plain text file...)
    Please advise me what is the best/common practice because this is the first time im doing this.
    thx

    XML can be a good idea, but remember that XML can bloat your data because of all the added tag information. so if you are working with large amounts of data, it can become a huge amount of data. Still you can use SAX to parse the XML on the fly in stead of parsing it into one large DOM tree structure first, which at least is efficient in the resources.
    If you can access the data in small parts, a webservice system might be a better, cleaner and more portable solution.

  • Rich Internet Applications and PL/SQL

    I am developing a database framework, specifically designed to
    run on Oracle databases, to render rich client applications
    similar to what the HTP/HTF packages offer. In this case I render
    Java Swing interfaces based on stored procedures and packages.
    What I want with this is to have a Rich Internet Application (RIA)
    totally centralized on the database. Maybe something similar to
    HTMLDB but not using HTML interfaces. I am also thinking the
    possibility to create migration routines to convert our Oracle
    Forms modules to stored procedures using this framework. The only
    requirement to run this framework is to have a database and Apache
    with MOD_PLSQL. The main objectives I want to achieve are:
    - To render "rich client" interfaces.
    - To be able to dynamically create objects.
    - Low network usage, small messages.
    - Fast user interaction.
    - Small memory footprint on the client side.
    - Must use HTTP/HTTPS.
    - Run inside any standard Browser or standalone.
    - Stateless execution based on client events.
    - Events can be conditionally triggered to avoid round trips.
    - Oracle 8.1.7+ compatibility.
    - MDI/SDI capability.
    I already have a prototype working. The renderer Applet is just
    12Kb and all objects are created dynamically using "Reflection".
    The framework has an option to establish conditions for events using
    regular expressions to avoid unnecessary round trips. Performance so
    far is good even in slow networks. Of course I still have room for
    improvement in this area. The protocol was implemented in a way that
    it can be optimized by removing redundant messages. I also implemented
    a simple dictionary compression algorithm which further reduces the
    message size. We can also use HTTP compression in Apache with MOD_GZIP
    which has a very good compression factor. The renderer Applet runs with
    Java Web Start either so the user has the option to completely ignore
    the Browser. The framework will be composed of layers, from
    communication to application. In the highest layer I will offer
    functionalities available in 4GL languages like "maintain_table(x)"
    to automatically render a maintenance form of the passed table (very
    simple example). Even in this layer the developer will also be able to
    customize all aspects of the form like colors, fonts, layout managers,
    panels, etc. I am doing this in principle as a learning, private
    project. I am still thinking about best ways to organize the APIs,
    performance, security, etc. I was wondering if there is anyone
    interested in helping me, take a look in what I have done so far,
    opinions (good or bad), etc. The code I have so far can be accessed below.
    Thanks in advance for any comment.
    https://jgr.dev.java.net/

    Your links are broken. This is not a good demonstration of your web-based development skills. Obviously this means I have not been able to look at your examples. However, I will offer three comments.
    (1) Dynamic rendering of objects is liable to translate into a slow experience for the user. Anyone who's migrated client/server Oracle Forms to web-deployed Forms will know what I mean. And Oracle have put person-years of effort into optimising the rendering of their Forms applet.
    (2) Doing a GUI in Java Swing is the easy bit. The hard stuff resides in the transaction management that Forms does for us. Again the amount of effort Oracle have put into JDeveloper's ADF packages is a testament (and a warning).
    (3) I suppose you will say that are going to put all that stuff into database stored procedures. But that merely relocates the complexity rather than answering it. Furthermore a lot of the benefit users derive from rich client applications (as opposed to HTML forms) is not due to the superior aesthetic experience of using Windows widgets. Rather it is the embedded business logic (complex data validation, event triggers, etc.) which means the gets instantaneous responses to their input. That's a lot of complexity to render on the fly.
    I am also thinking the possibility to create migration routines to
    convert our Oracle Forms modules to stored procedures using this framework. Good luck!
    Cheers, APC

  • No business layer sent back from server in Rich Client

    Hi,
    Whenever user tries to open a universe from Rich Client, he gets this error while webi works fine for him. What could be the issue?
    Hi Rich Client version is SAP 4.0.6.02 same as mine and mine is working fine.
    Only this particular user is affected. What could be the issue?
    Thanks for your time.

    There are several cases for this issue to occur, as per your discussion it appears to be a user/machine specific issue
    If the issue is machine specific:
    Cause: SAP Business Objects BI Platform client tools was unable to make changes in the Windows Operating system registry due to insufficient access rights of a Windows user who used to perform the installation
    Resolution:
    Log on to the host with SAP BusinessObjects BI Platform SP04 Client tools as Windows Administrator (or a member of Administrators group)
    Launch Web Intelligence Rich Client application
    This will make entries in windows registry, further you will not get the error
    It the issue is user specific: That is this user will get the specified error across all client machines for the give scenario
    Cause:
    Insufficient rights to the user/group on Universe Connection
    Resolution:
    Login to Central Management Console (CMC) using Enterprise Administrator.
    Navigate to Connections.
    Grant User/Group 'View on Demand' Access level to the Connection on which the Universe is to be created.
    Login to the BI Launchpad with the user and create New Webi report.

  • Bachelor thesis in Rich Internet Applications

    Hi,
    First of all, sorry for my engIish.
    I don't know if this is the right section of the forum, anyway I'm going to explain my problem:
    I'm writing down a thesis about RIAs: in my intentions i want to "speak" in particoular about Java
    tecnologies in RIAs development. Before starting, I need a hand in creating an index of the topics.
    Here comes my draft:
    INTRO
    Web 2.0
    Web Infrastructure (like old style sync request, AJAX, COMET)
    Tools (donno the right name to give them, talking about XHTML, CSS, XML, JSON, and all that supports RIAs and the previuos section in general)
    SERVER SIDE
    Server (Tomcat, Glassfish)
    Servlet, JSP, JSF
    Database (JavaDB, JDBC)
    Web Services (REST, SOAP, WDSL and so on)
    CLIENT SIDE
    JavaFX
    Applet
    Java Web Start
    APPLICATION EXAMPLE
    CONCLUSION
    It is just what I have in my mind right now, it's confused and obfuscated, but still gives the idea of my organization. Or not?
    What you think about it? Anything I'm missin'? Anything out of topic, or in the wrong section?
    Thank you for any answer.

    Your links are broken. This is not a good demonstration of your web-based development skills. Obviously this means I have not been able to look at your examples. However, I will offer three comments.
    (1) Dynamic rendering of objects is liable to translate into a slow experience for the user. Anyone who's migrated client/server Oracle Forms to web-deployed Forms will know what I mean. And Oracle have put person-years of effort into optimising the rendering of their Forms applet.
    (2) Doing a GUI in Java Swing is the easy bit. The hard stuff resides in the transaction management that Forms does for us. Again the amount of effort Oracle have put into JDeveloper's ADF packages is a testament (and a warning).
    (3) I suppose you will say that are going to put all that stuff into database stored procedures. But that merely relocates the complexity rather than answering it. Furthermore a lot of the benefit users derive from rich client applications (as opposed to HTML forms) is not due to the superior aesthetic experience of using Windows widgets. Rather it is the embedded business logic (complex data validation, event triggers, etc.) which means the gets instantaneous responses to their input. That's a lot of complexity to render on the fly.
    I am also thinking the possibility to create migration routines to
    convert our Oracle Forms modules to stored procedures using this framework. Good luck!
    Cheers, APC

  • Rich client frameworks

    Hello,
    I am looking for a framework to develop rich client application quickly or easily. I have found the following frameworks:
    1. TikeSwing: I have read it is a good choice, but it has not enough documentation.
    2. SpringRCP: It can be another choice, but I think It is not matured.
    3. With EclipseRCP or NetbeansRCp.
    Anybody knows something about them? Any opinion?
    Thanks in advance.

    I also want to develop a rich client application and I decided to use NetBeans platform. The reason why I did this decision is that NetBeans IDE has a very nice templates which will guide you through the creation of your first RCP application. However, the documentation is not very good, but getting better each day...
    Hope this opinion helps.
    Miso

  • Can Eclipse Rich Client Platform embedded javaFX script?

    My application is based on Eclipse Rich Platform Application (RCP), and rcp includes the SWT_AWT bridge,
    which allows RCPs to integrate Swing components as:
    Composite swtAwtComponent = new Composite(parent, SWT.EMBEDDED);
    java.awt.Frame frame = SWT_AWT.new_Frame( swtAwtComponent );
    javax.swing.JPanel panel = new javax.swing.JPanel( );
    frame.add(panel)
    First, I create a JavaFX project, where a subclass of the Scene creates, let's look at the code:
    * Rect.fx
    public class Rect extends Scene {
    init {
    content = [
    Rectangle { width: 200 height: 200 fill: Color.BLUE },
    Text { x: 20 y: 20 content: "Greetings Earthling!" fill: Color.WHITE }
    public function run(args : String[]) {
         Rect {}
    Then, another Plug-in Project has been created a rich client application, and rcp includes the SWT_AWT bridge,
    which allows RCPs to integrate Swing components as:
    Composite swtAwtComponent = new Composite(parent, SWT.EMBEDDED);
    java.awt.Frame frame = SWT_AWT.new_Frame( swtAwtComponent );
    javax.swing.JPanel panel = new javax.swing.JPanel( );
    frame.add(panel)
    There are two lines to create the JavaFX scene to be loaded into a JFrame:
    String sceneClass = "test.Rect";
    JComponent myScene = SceneToJComponent.loadScene(sceneClass);
    The SceneToJComponent class comes from the JFXtras project.
    Its loadScene() method loads a JavaFX Scene class and returns a JComponent object,
    which can be used as a normal Swing JComponent.
    String sceneClass = "test.Rect"; // the main class of the javafx script
    JComponent theScene = SceneToJComponent.loadScene(sceneClass);
    In Rcp application, when try the load the class, this code compiling,
    running and trowing exceptionon console I have the following error:
    Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: org/jfxtras/scene/SceneToJComponent
    also if this class is present in the classpath of the java project.
    Then I've tried to place this code in simple java application (not eclipse rcp) and all went ok.
    Has anyone tried to include this code in eclipse rich client platform (rcp)?
    Thanks in advance, Best regards
    Shanti

    I have download Java FX2.0 to emebed a scene in a Swing component inside a view of a rcp application, setting the classpath with jfxrt.jar.
    See the following code:
         public void createPartControl(final Composite parent) {
    SwingUtilities.invokeLater(new Runnable() { 
              public void run() { 
    jfxPanel = new JFXPanel();
    createScene();
    but my problem is unresolved, the eclipse console shows the following error:
    Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: javafx/embed/swing/JFXPanel
         at test2zero.FxView$1.run(FxView.java:59)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
         at java.awt.EventQueue.access$000(Unknown Source)
         at java.awt.EventQueue$1.run(Unknown Source)
         at java.awt.EventQueue$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: javafx.embed.swing.JFXPanel
         at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:506)
         at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)
         at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)
         at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)
         at java.lang.ClassLoader.loadClass(Unknown Source)
    Has anyone ever tried to integrate javafx in eclipse rcp application ?
    Thanks
    Shanti

  • Bank row was added in webi rich client when using excel as data provider

    reproduding steps:
    1.open webi rich client.
    2.Create a new webi report,then select "local data source"
    3.select an excel file as data source.
    4.run query.
    For example,there are 5rows in excel,but in webi report there are 6 rows,and the last row is bank which is added by webi.
    question
    1. mcro has been defined in the excel file,is there any impact by using macro?
    2.I want to know why this happens,

    >could you please test the following solution if you have multiple data providers in the report.
    >We need to manually link the dimensions then in the resulting crosstab/table we are need to apply >filters and select only the values but not the #empty values.
    I have only one data provider in the report.
    And, I have do the following test,
    test1:Delete the last row which is blank row of the excel file,refresh webi report, the last blank row is still there.
    test2: press ALT+F8,delete marco in the excel file,refresh webi report, the last blank row is still there,then delete the last blank row in the excel file ,save excel file,refresh webi,the last blank row is disappear.

  • Client Side Rich Internet Applications in Java. Do we have support for it ?

    What about the use of Java EE technologies on client-side ? The Java EE 5 specification lists different technologies: servlet, JSP, JSF, EJB, JTA, JDBC, JPA, JMS, JNDI, JavaMail, XML processing, JCA, JAAS, web services, JMX...
    Almost all of them are used on the server side. What about building applications on the client side ?
    Is Sun thinking too much hardware these days ? Why is that most of the products come out of 3rd party vendors like apache for instance ?

    There's your fundamental problem... We KNOW from bitter experience that rich client app are NOT scalable. The world simply doesn't work that way.
    Architecture starts from the foundations and works up. Computer systems achitectures start from the server and work out... We're just not out there yet dude.
    My crystal ball says that within 20 years computers will be sooooo freeken fast that "scalable" really won't be an issue any longer, except for worldwide realtime massive transaction rate systems (like VR role playing games)... so enterprise solutions will naturally migrate back towards the desktop.
    In the meantime the kids are having fun on the desktop and us "boring backend people" collect $40 million dollars in twenty minutes with rock-solid server-side solutions. Horses for courses. Watch for pitch reports.

  • Rich-client Java application that is client to WLS6.1 but behind corporate proxy server

    We have a rich-client Java application that is a client to WLS6.1 that can't
    connect to the WLS6.1 server when the client is behind a corporate proxy
    server. What is a remedy for this?
    Thanks,
    Jim Weavere

    Found solution. Followed Part 2 of the solution as explained in http://support.bea.com/application?namespace=askbea&origin=ask_bea_answer.jsp&event=link.view_answer_page_solution&answerpage=solution&page=wlw/S-19283.htm
    What surprises me is that this solution to a common problem is hidden and hard
    to find. If I am correct, no part of WLS 8.1 documentation suggests this. Rather
    the doc says, set the system properties for the standard JDK 1.4 network properties
    and it should work fine. If it is actually supposed to work like this, is it a
    bug then?
    "Naveen Kumar" <[email protected]> wrote:
    >
    Hi,
    I have a web application deployed on WebLogic server 8.1 sp1. And my
    server is
    behind a http proxy server. Now one of the components in the application
    makes
    a web service call to a service located external to the system, and it
    always
    throws "java.net.UnknownHostException". I have set the Java system properties
    http.proxyHost = my proxy server, http.proxySet = true and http.proxyPort
    = 80
    and it still does not help.
    If I try to evaluate the web service component as a stand alone client
    using WebLogic's
    webserviceclient.jar, everything works fine. I can't figure what I have
    to do
    to get this component working from within the WebLogic server. Can anybody
    provide
    me with inputs, comments or suggestions.
    Naveen.

  • Error in Creating a WebI Report on SAP Source using Rich client in BOxi 3.1

    Hi
    I tried to create a webi report using rich client on sap source. I get a error message " A Database error occured. the Database text is 'unable to connect to SAP BW server name and password is incorrect(repeat logon) (WIS 10901) .
    SAP Integration kit installed
    BO XI 3.1 is installed on windows server 2003
    Application server - Tomcat 5.5 server.
    Any configuration or sap files/folders should be added?
    how can I move forward to solve it ?
    Thanks!
    J.M Raj

    Hi
    Ya I used SAP authentication - then also get same error.
    Connections are created with username, password to access SAP Source
    Thanks!
    J>M>Raj
    Edited by: John Milton on Jun 25, 2009 10:03 AM

  • Add hyperlink or button to open document in client application

    Good day.
    I have SharePoint 2013 and Office Web Apps 2013 integrated with it.
    I configured the default behavior when clicking on a document in a document library to open it in web app. 
    And I want additionally to have column in this library with hyperlink or button to open document in client application.
    I can click on menu near document name with WAC preview and then click "change" button. But in this case I make 2 clicks. So I want to have this  "change" button as a column in the list of document library.
    How can I do it?

    Hi, Daniel.
    I successfully created rich
    text type column - richtextcolumn.
    Then I created workflow associated with documents library and added action to set field in current element
    - it sets richtextcolumn with value you wrote - "<a class="ms-listlink ms-draggable"
    onclick="return DispEx(this,event,'TRUE','FALSE','FALSE','SharePoint.OpenDocuments.3','1','SharePoint.OpenDocuments','','','','1','0','0','0x7fffffffffffffff')" href="[%Current
    Item: Server Relative URL%]" DragId="7">test</a> .".
    I configured this workflow to run on element creating and editing.
    Then I upload a document and see link to this document appearing in richtextcolumn.
    But when I click this link it just download document and then open it in client application. So if I change something in this document and try to save it, it will be saved in my local download folder and not sharepoint.

  • Looking up JMS administered objects in a rich client

    We have JMQ running as a broker. Using 'jmqjmsadm.sh' we added a Topic and a
    TopicConnectionFactory, using
    ../jmqjmsadm.sh t theLogTopic logTopic
    ../jmqjmsadm.sh tf providerTopicFactory TopicConnectionFactory
    and also set up the proxy using
    ../jmspadm theTopicFactory providerTopicFactory
    Everything seemed to work, and all three objects show up under
    SOFTWARE\iPlanet\Application Server\6.0\JMSObjects in kregedit. This is
    depicted in the attached JPG.
    We also have an application client running in the ACC, and this client needs
    to access these JMS objects. My understanding is that iPlanet does NOT
    support resource references for JMS, so even though this is a rich client my
    subsequent expectation is that we would access the connection factory using
    TopicConnectionFactory conFactory = (TopicConnectionFactory) jndi.lookup(
    "java:comp/env/jms/providerTopicFactory" );
    This does not work, unfortunately, resulting in a
    javax.naming.NameNotFoundException, on the lookup on
    "jms/providerTopicFactory". I have, however, also tried looking up
    "java:comp/env/providerTopicFactory", and
    "java:comp/env/jms/TopicConnectionFactory", and none of them are successful.
    I might add thgat an earlier JNDI lookup on an env-entry is successful, so
    the CosNaming is set up OK, as near as I can tell.
    The app client is definitely running in the ACC; it is not a standalone.
    This seems to be a combination (JMS plus rich client running in the ACC)
    that is poorly documented. I am wondering if anyone has any suggestions.
    TIA.
    Regards,
    Arved Sandstrom
    [Attachment jmsobjects.jpg, see below]

    Hi Arved,
    Can you try to set the initial context factory using:
    Properties prop = System.getProperties();
    prop.put("java.naming.factory.initial","com.netscape.server.jms.RefFSContextFactory");
    prop.put("java.naming.provider.url","/");
    and then do a lookup using:
    ctx.lookup("jms/providerTopicFactory");
    Regards,
    Durga
    Arved Sandstrom wrote:
    We have JMQ running as a broker. Using 'jmqjmsadm.sh' we added a Topic and a
    TopicConnectionFactory, using
    ./jmqjmsadm.sh t theLogTopic logTopic
    ./jmqjmsadm.sh tf providerTopicFactory TopicConnectionFactory
    and also set up the proxy using
    ./jmspadm theTopicFactory providerTopicFactory
    Everything seemed to work, and all three objects show up under
    SOFTWARE\iPlanet\Application Server\6.0\JMSObjects in kregedit. This is
    depicted in the attached JPG.
    We also have an application client running in the ACC, and this client needs
    to access these JMS objects. My understanding is that iPlanet does NOT
    support resource references for JMS, so even though this is a rich client my
    subsequent expectation is that we would access the connection factory using
    TopicConnectionFactory conFactory = (TopicConnectionFactory) jndi.lookup(
    "java:comp/env/jms/providerTopicFactory" );
    This does not work, unfortunately, resulting in a
    javax.naming.NameNotFoundException, on the lookup on
    "jms/providerTopicFactory". I have, however, also tried looking up
    "java:comp/env/providerTopicFactory", and
    "java:comp/env/jms/TopicConnectionFactory", and none of them are successful.
    I might add thgat an earlier JNDI lookup on an env-entry is successful, so
    the CosNaming is set up OK, as near as I can tell.
    The app client is definitely running in the ACC; it is not a standalone.
    This seems to be a combination (JMS plus rich client running in the ACC)
    that is poorly documented. I am wondering if anyone has any suggestions.
    TIA.
    Regards,
    Arved Sandstrom
    [Image]--
    Durgaprasad Swaminathan
    iPlanet E-Commerce Solutions, A Sun-Netscape Alliance
    +65 - 337 3658 (DID)
    +65 - 337 4688 (Fax)

  • Tutorial and SDRDemo ..Build Rich Client Forms in JDeveloper .

    I am doing the self learn tutorial in Jdeveloper
    ADF Business Components     10.1.3.34.12
    CVS Version (External)     (CVSNT) 2.5.03 (Scorpio) Build 2260 (client/server)
    Java™ Platform     1.5.0_05
    Oracle IDE     10.1.3.34.12
    Struts Modeler Version     10.1.3.34.12
    UML Modelers Version     10.1.3.34.12
    Versioning Support          10.1.3.34.12
    First one is simple
    1. I am using the "Build Rich Client Forms in JDeveloper using ADF swing .. Tutorial "
    when i select New Application , I cant see Java Application Swing ADF BC value from the application Temp in drop down ?? What am i misssing .???
    The second issue is bit complex I am doing the Tutorial SRDemo
    I am doing on page 2 –14 of Tutorial creating EJBS Session Beans when Running the Wizard I don’t see
    Generate Session Facade
    Entity Implementation
    Options, subsequently the screen shot on next page does which has all the methods are not appearing.
    Also when adding code (2-16) in SPPublic FacadeBean Iam getting snytax error for
    (clearly related to above issue), I have no choice but to redo the tutorial from begin
    but should I change something before I do that ?
    public ServiceRequests createServiceRequests
    (String problemDescription, Integer productId, Integer createdBy)
    { UnitOfWork uow = getSessionFactory().acquireUnitOfWork();
    ServiceRequests newInstance = (ServiceRequests)uow.newInstance(ServiceRequests.class);
    Products product = (Products)uow.executeQuery("findProductById", Products.class, productId);
    Users user = (Users)uow.executeQuery("findUserById", Users.class, createdBy);
    product.addServiceRequests(newInstance);
    user.addCreatedBy(newInstance);
    newInstance.setStatus(null);
    newInstance.setRequestDate(null);
    newInstance.setProblemDescription(problemDescription);
    uow.commit(); return newInstance; }
    ==============
    Other than that in previous steps I came across a few interesting Scenarios
    While following the step by steps operation of Tutorial I see on 2 –6 when I was “adding code to manage Default Value “ while I was doing the code adding
    public Integer getNextLineItem() {
    int maxLineNo = 0;
    for (ServiceHistories svh:getServiceRequests().getServiceHistoriesCollection()){
    if (svh.getLineNo() !=null) {
    int testLineNo = svh.getLineNo().intValue();
    if (testLineNo > maxLineNo){
    maxLineNo = testLineNo;
    return ++maxLineNo;
    for (ServiceHistories svh:getServiceRequests().getServiceHistoriesCollection()){
    I kept on getting the compile error for type casting, which when I tried to compare the source provided at the end of the chapter I found the type cast generated by Jbuilder was missing
    public List <ServiceHistories> getServiceHistoriesCollection() {
    return this.serviceHistoriesCollection;
    2.Another interesting thing I came across was by default the wizrd created the names of these variables and there corresponding getter and setter methods as user1 and user2, which lead to some confusion while doing Named query section on 2 –9 (Once again I took care of the problem by doing File comparison with the )
    private ValueHolderInterface createdBy;
    private ValueHolderInterface assignedTo;
    3. Also by default on 2 - 12 When I was Creating Top link Session, I didn’t get any session.xml file. ( tutorial presumed I will get one by default )
    4. Last is it normal to get Warning when getting report for POJO mapping for some of the Tables

    'Generate Web Service Stub/Skeleton' option in 10.1.2, was replaced by 'Generate Web Service Proxy' in 10.1.3

Maybe you are looking for

  • Problems with Photo Booth?

    Anybody having Pbs. with Photobooth?

  • Whats wrong with this applet TAG

    Hi, Any ideas why this tag: <APPLET codebase="/applet" archive="JavaLibrary1.jar" code="org.gregnet.NewJApplet.class" width=350 height=200> </APPLET> results my web server is giving an error indicating it can't find anything at: "/applet/org/gregnet/

  • FF resolution settings to lower bandwidth usage

    Which versions of FF will do this and what specific settings are there to lower bandwidth usage? Also, will the FF settings override settings on websites such as youtube? For example, if my kids were to click on higher resolution or HD video settings

  • IPhone Table View Initialization

    Hi, I am trying to write an app with two views. One view there will be a simple game, and the other, settings for the game. I have successfully written the game, and the code that allows the app to switch to the opposite view and back again. However,

  • Datapump process cannot connect to REMOTE HOST.

    hi, I am using ORACLE DATABASE 11g on 2 servers. Both have IBM AIX OS in it. I am trying to implement Golden Gate(GG) on it. The scenario is as follows :- Server 1 :- I have created 1 extract and 1 datapump processes. GGSCI (JLFLXFC1) 228> info all P