Couldn't complete tutorial 'Integrating EJB 3.0 into Web Dynpro ...'

Hi All,
I am trying to complete the “Integrating EJB 3.0 into Web Dynpro Using the EJB Model Importer” tutorial that goes with SAP NetWeaver Composition Environment 7.1 SP3 Developer Studio.
Does anyone ever completed this tutorial because I have problems completing it. The result is very important for me because I need to use this technology for my essay.
In this tutorial you create a button that calls the method StudsBean.getStudent(String). In this method the object student is created and it will be returned. In several labels the information of the returned student should be displayed. But that doesn’t happen, when I push the button no error occurs but the labels are still empty. When I try to debug the Enterprise Bean and Web Dynpro application I see that the method StudsBean.getStudent(String) is called and the property’s are set and the student object is returned, but still it isn’t displayed.
After discussing this with a colleague I tried to search for a solution on the SDN and of course Google. First I thought I would be a bug but I only found 2 people with the same problem. I found it remarkable because it’s one of the key subjects of Java EE 5 and it’s a tutorial displayed in the welcome page of the Developer Studio.
So do you people think it’s a bug in WebDynpro? Because I am sure that I followed all the steps mentioned (a colleague checked it even).
Regards,
Sander

Hi Sander,
I guess, it's not a bug in Web Dynpro, maybe it's a bug in the tutorial
I tried something similar, but not following the tutorial and it works. I wasn't able to call the model from the view controller and I guess that's the problem. Take the code from the init-method of the view controller and put it to the component controller's init -method and the code inside the onActionGetStudent and put it into a method you create in the component controller, too. From onActionGetStudent just call this method in the component controller with some code like this:
wdThis.wdGet<your component controller's name>.<your method's name>;
Hope this helps
Kind regards
Stefanie

Similar Messages

  • Couldn't complete tutorial u0091Integrating EJB 3.0 into Web Dynpro ... '

    Hi All,
    I am trying to complete the “Integrating EJB 3.0 into Web Dynpro Using the EJB Model Importer” tutorial that goes with SAP NetWeaver Composition Environment 7.1 SP3 Developer Studio.
    Does anyone ever completed this tutorial because I have problems completing it. The result is very important for me because I need to use this technology for my essay.
    In this tutorial you create a button that calls the method StudsBean.getStudent(String). In this method the object student is created and it will be returned. In several labels the information of the returned student should be displayed. But that doesn’t happen, when I push the button no error occurs but the labels are still empty. When I try to debug the Enterprise Bean and Web Dynpro application I see that the method StudsBean.getStudent(String) is called and the property’s are set and the student object is returned, but still it isn’t displayed.
    After discussing this with a colleague I tried to search for a solution on the SDN and of course Google. First I thought I would be a bug but I only found 2 people with the same problem. I found it remarkable because it’s one of the key subjects of Java EE 5 and it’s a tutorial displayed in the welcome page of the Developer Studio.
    So do you people think it’s a bug in WebDynpro? Because I am sure that I followed all the steps mentioned (a colleague checked it even).
    Regards,
    Sander

    Hi Vesselin,
    Thank you for the quick replay, this is the code I'm using:
    public void onActionGetStudent(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionGetStudent(ServerEvent)
              try {
                  // executes the corresponding method on the session facade
                  wdContext.currentRequest_StudsLocal_getStudentElement().
                  modelObject().execute();
                  // forces Web Dynpro to re-create the Request model object
                  // in order to clear the InputField
                 wdContext.nodeRequest_StudsLocal_getStudent().invalidate();
                  // updates the UI elements bound to the Response node
                  wdContext.nodeResponse().invalidate();
                  //Code for trying something out
                  //wdContext.nodeReturn().invalidate();
                  //wdContext.nodeAddress().invalidate();
               } catch (Exception e) {
                  throw new RuntimeException(e);
    Have you tried this example yourself, or is replay based on experience?
    Kind Regards,
    Sander

  • Importing EJBs into web dynpros

    I have created EJBS and I would like to use these EJBs in
    web dynpros. How do I do it.
    I think I can create a jar file for the EJBS and reference them in my Web Dynpro project but I think that is not the right way to do it.
    Thanks,
    PKK.

    Hi Simon + Praveen,
      I will try to walk you through how to do it but I think you may need a bit of experience with EJB's, Web Dynpro and NWDS to understand it right away. <i>The following assumes you have created a session and entity bean.</i>
    First you need to make sure your table is deployed in the database that you created(dictionary perspective).
      Second deploy your EJB (.ear file) to the J2EE engine (J2EE development perspective)
      Third switch to Web Dynpro perspective and goto your project properties (right click on the project and click properties)
       Now goto Java Build Path - libraries - add external jars and add the EJB-Jar file. then choose the tab called "order and export" and move the jar file to the top.
    <b>THIS IS A LITTLE TRICKY</b>. Next you need to add the sharing reference. In the same properties wizard where you add the java build path select Web Dynpro References and then select the Sharing references tab. Click on Add and enter the vendor name and name of the ear file like this <vendor name>/<name of the ear file>, This is how your web dynpro knows where the ear file is on the j2ee engine. <b>IF YOU ARE NOT SURE WHAT IT IS</b> you need to access the J2EE visual administrator. and goto SERVER 0/Services/Deploy then select the "runtime" tab then look under <i>Server 0/EJBContainer</i> save all your meta data. your WD application now accesses your EJB logic.
    Good luck!!
    -wael
    *plz dont forget the rewards?

  • I want weblog or tutorial for component usage in abap web dynpro

    Hi team,
    I want to know how component usage works in abap web dynpro.so can you please help me with providing a tutorial and step by step to use component in it.
    Thanks,
    Mainak

    Hi Mainak.
    In https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/fed073e5-0901-0010-4eb4-c9882aac7b11">tutorial [original link is broken] [original link is broken]
    Hope this helps.
    Cheers,
    Sascha

  • Tutorial The concept of componentization in web dynpro java...

    Hello there,
    I try to complete this tutorial but i have a problem, maybe this tutorial is a little bit incomplete.
    in page 18 have a code with this line:
    pUsage.createComponent(wdContext.currentSelectedPersonElement().getPerson());
    but in my app there aren't this code:  wdContext.currentSelectedPersonElement().
    I believe, this Element i need to declare in a Context Attribute of RootComponent.
    In the Page 19 there something like the above situation:
    The value of selectedKey of RadioButton is SelectedPerson.Person, probably this value is an attribute mapping to the SelectedPerson.Person of RootComponent.
    In the tutorial, don't have how declare this attribute and i don't now how declare it.
    Can anyone help me.
    Marcos Brandão.

    Hi Marcos
    Sorry, this was an omission on my part.
    The exercise document has been corrected and is available at the link below
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/30d56578-f7e5-2a10-5ab5-8afc55d2e0e8">https://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/30d56578-f7e5-2a10-5ab5-8afc55d2e0e8</a>
    Regards
    Chris W

  • Better Design for EJB 3 and Java Web Dynpro

    Hi all,
    When using EJB Model on CE, to each method a Request and Response are generated. To a CRUD i've 4 methods.
    I've a Foo (JPA Entity).
    public Foo create(Foo)
    public Foo update(Update)
    public void remove(Foo)
    public List<Foo> findBy...
    I think that i could use a Single view for both create and update method. But i will need a separated context objects to each function.
    Request_<Bean>_create
    Request_<Bean>_update
    What is better in this case? a single method createOrUpdate on my EJB? Or a View to each operation?
    Best regards

    Hi all,
    Just to share my decision:
    My EJB continue with the methods.
    public Foo create(Foo)
    public Foo update(Update)
    public void remove(Integer)
    public List<Foo> findBy...
    Was generated one Request to each method.
    Request_<Bean>_create
    Request_<Bean>_update
    I've mapped the both on my Component controller and have created on view to edit and create a new record.
    When the record already exists i'm initializing the Request_<Bean>_createElement with record data, when is a new i've just initialize the new Foo object and put on currentElement of update.
    On the generic save method of controller, a test is done to decide if the Request<Create> or Request<Update> model Object.
    Best regards

  • EJB library reference from Web Dynpro

    Hi,
    1. I have got a WD DC that references an EJB DC and an external library DC (ext_ims_lib_depl) on the same server
    2. I have specified the ejb20 DC under SAP-JEE_1 as a used DC on both the DCs for design time, deploy time and runtime.
    3. But after deploying the WD DC and trying to invoke the call to the EJB DC I get the exception below.
    4. It’ evident that the classloader cannot pick up the ejb20.jar and my question is how do I resolve the reference, I tried adding sap.com/ejb20 under Webdynpro references but it does not seem to do the trick.
    Exception----
    Processing HTTP request to servlet [dispatcher] finished with error. The error is: java.lang.NoClassDefFoundError: javax/ejb/EJBHome
    Loader Info -
    ClassLoader name: [library: test.comapplext_ims_lib_depl]
    Parent loader name: [Frame ClassLoader]
    No references !
    Resources:
       C:\usr\sap\VDW\JC00\j2ee\cluster\server0\bin\ext\test.comapplext_ims_lib_depl\commons-collections-2.1.1.jar
       C:\usr\sap\VDW\JC00\j2ee\cluster\server0\bin\ext\test.comapplext_ims_lib_depl\test.comapplj2ee_ims.jar
       C:\usr\sap\VDW\JC00\j2ee\cluster\server0\bin\ext\test.comapplext_ims_lib_depl\cglib-2.1.3.jar
       C:\usr\sap\VDW\JC00\j2ee\cluster\server0\bin\ext\test.comapplext_ims_lib_depl\commons-logging-1.0.4.jar
       C:\usr\sap\VDW\JC00\j2ee\cluster\server0\bin\ext\test.comapplext_ims_lib_depl\dom4j-1.6.1.jar
       C:\usr\sap\VDW\JC00\j2ee\cluster\server0\bin\ext\test.comapplext_ims_lib_depl\ant-antlr-1.6.5.jar
       C:\usr\sap\VDW\JC00\j2ee\cluster\server0\bin\ext\test.comapplext_ims_lib_depl\ims_beans.jar
       C:\usr\sap\VDW\JC00\j2ee\cluster\server0\bin\ext\test.comapplext_ims_lib_depl\ehcache- 1.2.3.jar
       C:\usr\sap\VDW\JC00\j2ee\cluster\server0\bin\ext\test.comapplext_ims_lib_depl\hibernate3.jar
    Loading model: {parent,local,references}
    The error occurred while trying to load "com.test.za.securityRiskManagement.service.EventHandlerHome".
    at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:401)
    at java.lang.ClassLoader.loadClassInternal (ClassLoader.java:302)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:141)
    at com.test.za.securityRiskManagement.bean.EventCommandBean.executeCreateEvent(EventCommandBean.java :205)
    at com.test.event.view.EventRegistrationView.onActionSubmit(EventRegistrationView.java:143)
    at com.test.event.view.wdp.InternalEventRegistrationView.wdInvokeEventHandler(InternalEventRegistrationView.java :150)
    at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
    at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent (WindowPhaseModel.java:420)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132)
    at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java :335)
    at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:752)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:705)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:154)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent (DispatcherServlet.java:62)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service (HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java :266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
    at com.sap.engine.services.httpserver.server.Client.handle (Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java :33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged (Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Thanks.

    Hi Maksim,
    Below is an extract of my dcdef file:
      <dependency>
           <dc-ref>
               <name>ejb20</name>
              <vendor>sap.com</vendor>
          </dc-ref>
          <pp-ref>default</pp-ref>
          <at-build-time/>
          <at-runtime qualifier="strong"/>
      </dependency>
    It looks exactly like what you send except for the runtime qualifier.
    Thanks.

  • Integrating BIRT 4.5 into web application with tomcat8

    Hello,
    i made a web application integrating birt 3.7.1, running on tomcat 7. All is fine. Now i wanted to update from birt 3.7.1 to birt 4.5.0. And tomcat 7 to tomcat8.
    So i downloaded birt-source and changed all files from 3.7.1/ReportEngine/lib to 4.5.0/ReportEngine/lib. After that, my application wasn't able to start. So additionally i included jar-files from "birt-runtime-4.5.0-20150609.zip\birt-runtime-4_5_0\WebViewerExample\WEB-INF\lib\"
    Application starts. But it's still not working.
    Here's my code for creating the report engine:
    EngineConfig config = new EngineConfig();
    Platform.startup();
    IReportEngineFactory factory = (IReportEngineFactory) Platform
    .createFactoryObject( IReportEngineFactory.EXTENSION_REPORT_ENGINE_FACTORY );
    engine = factory.createReportEngine( config );
    It throws following exception:
    java.lang.NoClassDefFoundError: org/eclipse/core/runtime/CoreException
    org.eclipse.birt.core.framework.Platform.createPlatformLauncher(Platform.java:115)
    org.eclipse.birt.core.framework.Platform.startup(Platform.java:74)
    org.eclipse.birt.core.framework.Platform.startup(Platform.java:57)
    chromareportengine.CallReportEngineMain.<init>(CallReportEngineMain.java:64)
    chromareportengine.ChartGenerator.<init>(ChartGenerator.java:80)
    org.apache.jsp.Dashboard_jsp._jspService(Dashboard_jsp.java:191)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:438)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
    What am i missing? It's maybe a bug of birt?
    Kind regards Marina
    So here is my class path:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <project default="ChromaReportEngine" name="Chroma Report-Engine" basedir=".">
    <target name="ChromaReportEngine">
    <jar destfile="release/report.jar">
    <manifest>
    <attribute name="Main-Class" value="CallReportEngineMain"/>
    <attribute name="Class-Path" value="lib/com.ibm.icu_54.1.1.v201501272100 lib/com.lowagie.text_2.1.7.v201004222200 lib/derby lib/flute lib/javax.wsdl_1.5.1.v201012040544 lib/javax.xml.stream_1.0.1.v201004272200 lib/javax.xml_1.3.4.v201005080400 lib/net.sourceforge.lpg.lpgjavaruntime_1.1.0.v201004271650 lib/ojdbc6 lib/org.apache.batik.bridge_1.6.0.v201011041432 lib/org.apache.batik.css_1.6.0.v201011041432 lib/org.apache.batik.dom.svg_1.6.0.v201011041432 lib/org.apache.batik.dom_1.6.1.v201505192100 lib/org.apache.batik.ext.awt_1.6.0.v201011041432 lib/org.apache.batik.parser_1.6.0.v201011041432 lib/org.apache.batik.pdf_1.6.0.v201105071520 lib/org.apache.batik.svggen_1.6.0.v201011041432 lib/org.apache.batik.transcoder_1.6.0.v201011041432 lib/org.apache.batik.util.gui_1.6.0.v201011041432 lib/org.apache.batik.util_1.6.0.v201011041432 lib/org.apache.batik.xml_1.6.0.v201011041432 lib/org.apache.commons.codec_1.6.0.v201305230611 lib/org.apache.commons.logging_1.1.1.v201101211721 lib/org.apache.lucene.core_3.5.0.v20120725-1805 lib/org.apache.poi_3.9.0.v201405241750 lib/org.apache.xerces_2.9.0.v201101211617 lib/org.apache.xml.resolver_1.2.0.v201005080400 lib/org.apache.xml.serializer_2.7.1.v201005080400 lib/org.eclipse.birt.runtime_4.5.0 lib/org.eclipse.core.contenttype_3.5.0.v20150421-2214 lib/org.eclipse.core.expressions_3.5.0.v20150421-2214 lib/org.eclipse.core.filesystem_1.5.0.v20150421-0713 lib/org.eclipse.core.jobs_3.7.0.v20150330-2103 lib/org.eclipse.core.resources_3.10.0.v20150423-0755 lib/org.eclipse.core.runtime.compatibility_3.2.300.v20150423-0821 lib/org.eclipse.core.runtime_3.11.0.v20150405-1723 lib/org.eclipse.datatools.connectivity.apache.derby.dbdefinition_1.0.2.v201107221459 lib/org.eclipse.datatools.connectivity.apache.derby_1.0.103.v201212070447 lib/org.eclipse.datatools.connectivity.console.profile_1.0.10.v201109250955 lib/org.eclipse.datatools.connectivity.db.generic_1.0.1.v201107221459 lib/org.eclipse.datatools.connectivity.dbdefinition.genericJDBC_1.0.2.v201310181001 lib/org.eclipse.datatools.connectivity.oda.consumer_3.2.6.v201403131814 lib/org.eclipse.datatools.connectivity.oda.design_3.3.6.v201403131814 lib/org.eclipse.datatools.connectivity.oda.flatfile_3.1.8.v201403010906 lib/org.eclipse.datatools.connectivity.oda.profile_3.2.9.v201403131814 lib/org.eclipse.datatools.connectivity.oda_3.4.3.v201405301249 lib/org.eclipse.datatools.connectivity.sqm.core_1.2.8.v201401230755 lib/org.eclipse.datatools.connectivity_1.2.11.v201401230755 lib/org.eclipse.datatools.enablement.hsqldb.dbdefinition_1.0.0.v201107221502 lib/org.eclipse.datatools.enablement.hsqldb_1.0.0.v201107221502 lib/org.eclipse.datatools.enablement.ibm.db2.iseries.dbdefinition_1.0.3.v201107221502 lib/org.eclipse.datatools.enablement.ibm.db2.iseries_1.0.2.v201107221502 lib/org.eclipse.datatools.enablement.ibm.db2.luw.dbdefinition_1.0.7.v201405302027 lib/org.eclipse.datatools.enablement.ibm.db2.luw_1.0.3.v201401170830 lib/org.eclipse.datatools.enablement.ibm.db2.zseries.dbdefinition_1.0.4.v201107221502 lib/org.eclipse.datatools.enablement.ibm.db2.zseries_1.0.2.v201107221502 lib/org.eclipse.datatools.enablement.ibm.db2_1.0.0.v201401170830 lib/org.eclipse.datatools.enablement.ibm.informix.dbdefinition_1.0.4.v201107221502 lib/org.eclipse.datatools.enablement.ibm.informix_1.0.1.v201107221502 lib/org.eclipse.datatools.enablement.ibm_1.0.0.v201401170830 lib/org.eclipse.datatools.enablement.msft.sqlserver.dbdefinition_1.0.1.v201201240505 lib/org.eclipse.datatools.enablement.msft.sqlserver_1.0.3.v201308161009 lib/org.eclipse.datatools.enablement.mysql.dbdefinition_1.0.4.v201109022331 lib/org.eclipse.datatools.enablement.mysql_1.0.4.v201212120617 lib/org.eclipse.datatools.enablement.oda.ws_1.2.6.v201403131825 lib/org.eclipse.datatools.enablement.oda.xml_1.2.5.v201403131825 lib/org.eclipse.datatools.enablement.oracle.dbdefinition_1.0.103.v201206010214 lib/org.eclipse.datatools.enablement.oracle_1.0.0.v201107221506 lib/org.eclipse.datatools.enablement.postgresql.dbdefinition_1.0.2.v201110070445 lib/org.eclipse.datatools.enablement.postgresql_1.1.1.v201205252207 lib/org.eclipse.datatools.enablement.sap.maxdb.dbdefinition_1.0.0.v201107221507 lib/org.eclipse.datatools.enablement.sap.maxdb_1.0.0.v201107221507 lib/org.eclipse.datatools.modelbase.dbdefinition_1.0.2.v201107221519 lib/org.eclipse.datatools.modelbase.derby_1.0.0.v201107221519 lib/org.eclipse.datatools.modelbase.sql.query_1.1.4.v201212120619 lib/org.eclipse.datatools.modelbase.sql_1.0.6.v201208230744 lib/org.eclipse.datatools.sqltools.data.core_1.2.3.v201212120623 lib/org.eclipse.datatools.sqltools.parsers.sql.lexer_1.0.1.v201107221520 lib/org.eclipse.datatools.sqltools.parsers.sql.query_1.2.1.v201201250511 lib/org.eclipse.datatools.sqltools.parsers.sql_1.0.2.v201107221520 lib/org.eclipse.datatools.sqltools.result_1.1.6.v201402080246 lib/org.eclipse.emf.common_2.11.0.v20150512-0501 lib/org.eclipse.emf.ecore.change_2.11.0.v20150512-0501 lib/org.eclipse.emf.ecore.xmi_2.11.0.v20150512-0501 lib/org.eclipse.emf.ecore_2.11.0.v20150512-0501 lib/org.eclipse.equinox.app_1.3.300.v20150423-1356 lib/org.eclipse.equinox.common_3.7.0.v20150402-1709 lib/org.eclipse.equinox.preferences_3.5.300.v20150408-1437 lib/org.eclipse.equinox.registry_3.6.0.v20150318-1503 lib/org.eclipse.help_3.6.0.v20130326-1254 lib/org.eclipse.orbit.mongodb_2.10.1.v20130422-1135 lib/org.eclipse.osgi.services_3.5.0.v20150519-2006 lib/org.eclipse.osgi_3.10.100.v20150529-1857 lib/org.eclipse.update.configurator_3.3.300.v20140518-1928 lib/org.mozilla.javascript_1.7.5.v201504281450 lib/org.w3c.css.sac_1.3.1.v200903091627 lib/org.w3c.dom.events_3.0.0.draft20060413_v201105210656 lib/org.w3c.dom.smil_1.0.1.v200903091627 lib/org.w3c.dom.svg_1.1.0.v201011041433 lib/plugins/birt.controls.lib.ui_2.5.2.1.jar lib/plugins/birt.controls.lib_2.5.2.1.jar lib/itextpdf-5.5.2.jar lib/servlet-api.jar lib/tomcat-dbcp.jar lib/axis.jar lib/axis-ant.jar lib/chartengineapi.jar lib/chartexamplescoreapi.jar lib/chartitemapi.jar lib/commons-cli-1.0.jar lib/commons-discovery-0.2.jar lib/coreapi.jar lib/crosstabcoreapi.jar lib/dataadapterapi.jar lib/dataaggregationapi.jar lib/dataextraction.jar lib/dteapi.jar lib/emitterconfig.jar lib/engineapi.jar lib/jaxrpc.jar lib/js.jar lib/modelapi.jar lib/modelodaapi.jar lib/odadesignapi.jar lib/org.eclipse.birt.axis.overlay_4.5.0.v201506092134.jar lib/saaj.jar lib/scriptapi.jar lib/viewservlets.jar"/>
    </manifest>
    <fileset dir="bin" includes="**/*.class"/>
    </jar>
    </target>
    </project>

    Hi,
    i finally found a solution. So if someone is interested...
    In tomcat installation file catalina.properties i added common.loader=${catalina.base}/lib,${catalina.base}/lib/*.jar,${catalina.home}/lib,${catalina.home}/lib/*.jar,{path to birt jars}/lib/*.jar
    Kind regards

  • Error in integrating flex with web dynpro abap

    Hi,
    I did integrating   Island Component into Web Dynpro ABAP as per the tutorial given by Thomas Jung.
    Now i'm facing a problem that in that bar chart ,after giving the values in web dynpro table,bars are not getting populated.
    I'm getting X and Y axis populated...only bars are not getting populated..
    plz help....

    hi,
    i'm using flex 4...
    Is it because of that??

  • Web Dynpro using EJB to implement database access for MS SQL 2005 server

    Hello,
    For using EJB model in Java Web Dynpro, why do I need another dictionary project with all the required tables (there are 5 tables in my project), when the same database is already created in back end MS SQL 2005 Server.
    Thanks
    Srinivas

    Thanks for your reply Charan,
    I am fairly new to EJB. I have created only one session bean (called TrainingBean) and created all the business methods inside it.
    Here is my database schema, with the following 5 tables
    Courses
    CourseSchedules
    Students
    Registrations
    Competencies
    Here are the session bean business methods:
    changeCourse(String)
    changeStartDate(String)
    createCourse()
    createCourseSchedule()
    getCourses()
    getCourseSchedules()
    registerStudent(String)
    unRegisterStudent(String)
    Is this good way to implement EJB, or should I create multiple session beans and multiple corresponding Data access command beans  ?
    Thanks a lot
    Srinivas

  • XI - MDM - Web Dynpro Integration..

    Hi,
        Can you please explain me the steps used for integration of XI - MDM and Web dynpro integration..
    I need the front end through web dynpro that has the data from MDM tables (Read / Write) and also store the data from MDM into a flat file with multiple records.
    Thanks
    Mamta

    Hi,
    Have you seen this weblogs:
    /people/balas.gorla/blog/2006/09/27/mdm-xi-r3-integration
    /people/sriram.vasudevan3/blog/2005/09/01/mdm-55-data-distribution-using-sap-xi
    /people/harrison.holland5/blog/2006/12/20/xi-configuration-for-mdm-integration--sample-scenario
    /people/balas.gorla/blog/2007/02/05/r3-xi-mdm-outbound-scenario
    /people/steffen.nesper/blog/2007/01/05/master-data-management-posting-confirmation
    ---Satish

  • How to import EJB components and Web Dynpro into WAS 6.4

    I have EJB components and developed Web Dynpro application.
    Is it possible to upload directly without using NWDS? My system is very slow while running NWDS.
    I don't know how to upload or deploy those on WAS 6.4.
    Can any one help me out on this.
    Thanks,
    Mahesh

    Hi,
    The default SDM password is <b>sdm</b>, try this one.
    1. Once login into SDM select <b>Deployment</b> tab.
    2. Click the first Icon to add your .EAR files.
    3. Continue the deployment process by clicking the <b>Next</b> button.
    4. In last screen of the deployment <b>Confirm</b> the deployment.
    Let me know if you need anything.
    Thanks
    Srinivasu Rao Sandaka

  • I loaded in Lion - but my time capsule will not back up. I get an message: couldn't complete backup due to a network prolem. Also it says "make sure your computer and back up disk are on the same network, and that the backup disk is turned on.

    I installed Lion on my Mac Pro laptop. Regarding Time Capsul - I get a messaage as follows: couldn't complete backup due to a network problem. Make sure your computer and back up disk are on the same network and that the  backup disk is turned on. Then try again to back up. I have time capsul turned on. bill

    I have exactly same problem with my MBP and MBA, after upgrading to Lion. I've tried to fix this issue while cheking key chain issues and network setup, even formating hdd and time capsule firmware upgrade (ver. 7.6.1.). Nothing can help. It is very annoying.

  • My back up failed and I get a messageTime Machine couldn't complete the backup to "TimeCap".  The backup disk image "/Volumes/Data/Mary Fleming's MacBook Pro .sparsebundle" is already in use.

    I noticed today that my last back-up was this a.m. and it has tried several times to back up since but I keep getting this message
    Time Machine couldn’t complete the backup to “TimeCap”.
    The backup disk image “/Volumes/Data/ MacBook Pro ."sparsebundle” is already in use.
    I have never had this problem before and don't know what to do. I am not that great around computers so if anyone can help I would appreciate it. I did try to do some research but could not understand any of the content I read. I sure don't know what "sparsebundle" is and this is the first time I ever heard the term.
    If anyone can help woold appreciate it.
    I have Version 10.9.1

    This is a standard issue..
    Been around since LION but you missed out.. !! Well the old rule applies.. there are three types of Mac users.
    1. The bugs have bitten you, and you have done the work arounds.
    2. The bugs are biting you and you are now trying to find out what is going on.
    3. The bugs will bite you. And in the meantime you laugh at everyone with problems and say it must be all their fault. Doesn't happen to my system. 
    You were simply in the last group.. now, with the wonders of mavericks to help, you got bit.
    The solution is simple.. unplug the power cord from the TC .. count to 10.. power up the TC again.
    No luck look at the more technical help.
    C12 here. http://pondini.org/TM/Troubleshooting.html
    Your naming might also be an issue if this continues to happen.. see C9.

  • Time Machine couldn't complete the backup due to a network problem

    Firstly apologies for the long post, I've been bottling these problems up and could now use some expert advice.
    I have a MacPro (10.6.3) with four internal drives (320GB system/apps. + 3x 750GB data, images etc) and a MacBook Pro (10.6.6) with a 320GB internal. With so much accumulated data (Mac user since SE FDHD) I wanted a reliable means to backup all my projects, books, papers, research, images etc. I had several bad experiences using Iomega drives (Ultramax and Storcentre) which were not very Mac compatible and shifted over to a 10TB LaCie 5Big Network 2 which is promoted as Time Machine compatible. Set up Time Machine (with a few hiccups) in Sept 2010 and it ran perfectly, backing up both main computers until March 2011. I have now experienced a string of problems backing up the MacPro, some of which have been resolved speaking to people, some by checking forums and some by using my own noddle to figure it out. The latest error message I am getting is "Time Machine couldn't complete the backup due to a network problem. Make sure your computer and the backup disc are on the same network, and that the backup disc is turned on. Then try again to back up."
    The circumstances of this are as follows: TM seems to be trying to completely back up everything already backed up from previous months so I am using the "exclude" option to do this in manageable chunks (5.54TB of 7.99TB is available so there is a lot of stuff on there, hence my reticence to erase and start again). I started a backup last night which said it was 242GB and when I came back hours later (I estimate 30GB and hour or 500MB a minute) it has failed with the error message above. I asked it to back up again and it said it now had 191GB to backup, at the next failure it was 142GB, dropping by approx 50GB a time (if there a maximum it can manage in one go?), the next time it was starting again with 242GB.
    I checked the disc it was backing up to, discovered it was now selecting Public-1, re-selected Public which houses the macpro.sparsebundle, dropped the backup size (Options) to 73GB and set it off again and it is backing up as I write. I am hoping it will complete and permit another chunk to be backup but the fact it looses network connection (seemingly) or has a maximum backup in one go, is annoying because it means you cannot leave it overnight and trust it to do the backups.
    The other problem seems to be a shut down by LaCie 5Big because several times (and once this morning) I have had this message "The file server "LaCie 5Big" has closed down, followed by a complete Lacie shut down and auto-reboot with all lights and whistles. Lacie think this could be a power supply problem and say they are sending me another power brick. They also say they do not support Time Machine (they should check their own literature) and suggest I use LaCie 5Big for 'drag and drop' backup. If I wanted to do that I could pick up a cheap and nasty HD from PCWorld, not this high end 10TB drive which cost over £1,000 !
    For a while y'day I could not even find the Lacie on the network but after changing the ethernet cable from Lacie to router (Linksys) it miraculously re-appeared so that problem may have been the original Lacie blue ethernet cable had developed a fault. Checking cables is an oft-overlooked option.
    A catalogue of errors, some solved, others still all pervading, so any words from the wise would be gratefully accepted.

    I verified the macpro.sparsebundle and Time Machine backups in Disk Utility and it said both appeared to be Okay in green type. So that did not solve the issue. I did a Disk Utility repair a day or so again (despite Verify saying everything was fine) and said there was nothing to repair. I suspect two problems, the power brick may be faulty producing intermittent power and maybe causing the drive to close down (hopefully Lacie will send me a replacement to try) and second, I am thinking the network connection is getting dropped causing crashed backups without the Lacie shutdown/reboot sequence. The 73GB back up failed, I started it again at 54GB and it failed again, just started it again at 45GB - this is no way to progress!
    Perhaps the relatively new (last year) Linksys router is the problem, I find my MBP says AirPort is active but it fails to appear in Go>Server unless I switch it off and on again and perhaps a similar problem drops the connnection to the Lacie.

Maybe you are looking for