Need help on Flex JSP tag library

I am new to Flex and currently developing portlets where I
need to integrate Flex into JSP pages. According to various
documents from Adobe and other online discussions, this can be done
with Flex JSP tag library. It appears that the taglib used to be a
separate package that you could download but no longer available (I
was only able to find a few broken links). Instead, the library is
now part of the LiveCycle DS product according to Adobe. However, I
have downloaded LiveCycle DS and couldn't find the necessary taglib
in the package. Your help will be highly appreciated.

I'm trying to do the same thing you are. Its mentioned that
the library is part of LifeCycle DS but I couldn't find it in there
either.
Here's a site I found where you can download
FlexModule_j2ee.zip It includes some instructions too.
http://opensource.adobe.com/wiki/display/flexsdk/Downloads
Here are some other links which may be helpful.
http://livedocs.adobe.com/flex/3/html/help.html?content=apache_2.html
http://labs.adobe.com/wiki/index.php/LiveCycle_Data_Services:Setting_up_an_SDK,_Compilers, _and_Flex_Builder
http://download.macromedia.com/pub/labs/flex_mod_apache/flex_mod_apache.pdf

Similar Messages

  • I need help proving the date tag on a photo stored in my iPhoto is from the date it was sent to my iphone/date it was imported into iphoto - and that it is NOT the date the photo was actually taken.  Please help!

    I need help proving the date tag on a photo stored in my iPhoto is from the date it was sent to my iphone/date it was imported into iphoto - and that it is NOT the date the photo was actually taken.   I recieved a photo via text on my iphone and then I synced my iphone to my macbook and now it is in iphoto.  I already know that the date on the photo per the tag that shows up on it in iphoto is NOT the date the photo was actually taken.  I need article or literature or something confirming the tag is from when it was sent to the iphone and/or when it was imported.  I greatly appreciate some assistance!

    All I am trying to do is find something on a forum board or article etc stating that the the date showing in iphoto could be the date it was imported or synced or sent to me and not the actual date taken.
    The date on the photo could be anything because you can edit the date with iPhoto or any of 100 apps, free and paid for. So, the date on the photo will prove nothing, I'm afraid.
    Regards
    TD

  • Is a JSP Tag Library providing Oracle Financial look and feel available

    We are going to use Oracle Financial as part of our future application.
    That is why other parts of it (which we plan to develop using JDeveloper)
    have to have the same Look and Feel.
    Is a JSP Tag Library that provides Oracle Financial Look and Feel available?

    Oracle Applications use BC4J, UIX, and JDeveloper.
    The UIX framework implements the Oracle "Browser Look And Feel" (BLAF) that our Oracle Applications self-service applications use.
    The UIX JSP tag library lets JSP developers do the same.

  • EP 6 SP2 and Domino JSP Tag library

    I have been able to establish DIIOP connection between EP6 and Domino based on the workaround posted in this form. Calling the lotus.domino.* classes work just fine.
    However I haven't been able to get EP6 to work consistently with the Domino JSP tag library.
    Has anyone been successful in using the Domino JSP tag library?
    Thanks for sharing any insights/workarounds.

    Hello Luc,
    yes. Pls. perform the following steps:
    (1) add a reference to the taglib in portalapp.xml component profile
                   <component name="default">
                        <component-config>
                             <property name="ClassName" value="com.test.LotusJSPTest">
                             </property>
                             <property name="SecurityZone" value="com.test/high_safety">
                             </property>
                        </component-config>
                        <component-profile>
                             <property name="lotusTagLibary" value="domtags.tld">
                             </property>
                             <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld">
                             </property>
                        </component-profile>
                   </component>
    (2) add a reference in the JSP
    <%@ taglib uri="lotusTagLibary" prefix="domino" %>
    (3) then use the taglib as documented, e.g.:
                 <domino:session id="session1" host ="p70448.wdf.sap.corp:8000" user="*webuser">
                        <domino:db id="db1" dbname="portalchallenge.nsf" >
                             <domino:view id="view1" viewname="view103">
                                  <domino:viewloop id="loop">
         <tr>
         <td style="border: 1px solid #000000; padding: 2px; text-align:right"><%=loop.getPosition('.')%></td>
                                            <td style="border: 1px solid #000000; padding: 2px"><domino:item name="txt_KeywordCode"/></td>
                                            <td style="border: 1px solid #000000; padding: 2px"><domino:item name="txt_Description"/></td>
                                            <td style="border: 1px solid #000000; padding: 2px"><domino:item name="txt_List"/></td>
         </tr>
         </domino:viewloop>
                               </domino:view>
                          </domino:db>
                     </domino:session>
    The easiest way to start is to make domtags.jar, domtags.tld, domutils.tld and NCSO.jar part of your portal application.
    Regards
    Michael

  • 9iAS JSP/Tag Library Help needed

    Info: We have 9iAS 9.0.2.0.0 running on Sun Solaris (Sparc). I have been to Sun class for JSP/Servlets (SL-314) and have an Iterator custom tag that works fine in Tomcat 4.0. I am compiling on a Windows NT machine using Ant and JDK 1.3. I then deploy using Oracle Enterprise Manager (web interface to 9iAS) and use the Deploy WAR option. The only examples I can find that came with 9iAS use JSP 1.1 Taglib code and they work. Am I missing something, or does 9iAS (9.0.2.0.0) not fully support JSP 1.2 / Servlet 2.3, specifically the 1.2 tag library API?
    Any help would be appreciated...
    Code Snippets from failing JSP:
    <%@ taglib uri="hr/taglib" prefix="hr" %>
    <hr:iterator id="empdata" listName="employeeList">
    <li><jsp:getProperty name="empdata" property="name"/> (<jsp:getProperty name="empdata" property="depth"/>)</li>
    </hr:iterator>
    This generates the following 500 Internal Server error:
    java.lang.NullPointerException
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:279)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
         at oracle.jsp.parse.JspUtils.loadClassJDK(JspUtils.java:219)
         at oracle.jsp.parse.JspUtils.loadClass(JspUtils.java:209)
         at oracle.jsp.parse.JspRTTag.(JspRTTag.java:102)
         at oracle.jsp.parse.JspParseState.createTagParser(JspParseState.java:410)
         at oracle.jsp.parse.JspParseTag.parseNextTag(JspParseTag.java:538)
         at oracle.jsp.parse.JspParseTagFile.parse(JspParseTagFile.java:160)
         at oracle.jsp.parse.OracleJsp2Java.transform(OracleJsp2Java.java:40)
         at oracle.jsp.runtimev2.JspPageCompiler.attemptCompilePage(JspPageCompiler.java:295)
         at oracle.jsp.runtimev2.JspPageCompiler.compilePage(JspPageCompiler.java:171)
         at oracle.jsp.runtimev2.JspPageInfo.compileAndLoad(JspPageInfo.java:338)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:481)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:255)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:407)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:330)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
         at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)

    Sorry techie_sudhanshu .. i was away for the month with no internet access and just got back... here's an example :
    <display:table name="CUSTOMERS"  pagesize="10" id="customer" sort="list" defaultsort="3" requestURI="/customer.do?submit=Search" class="model">
         <display:setProperty name="paging.banner.placement" value="both"/>
         <display:setProperty name="paging.banner.some_items_found" value=""/>
         <display:setProperty name="paging.banner.one_item_found" value=""/>
         <display:setProperty name="paging.banner.all_items_found" value=""/>
         <display:setProperty name="paging.banner.no_items_found" value=""/>
         <display:setProperty name="paging.banner.onepage" value=""/>
         <display:setProperty name="basic.msg.empty_list"><center>No Record(s) was found.</center></display:setProperty>
          <display:column title="Name" sortable="false"><c:out value="${customer.name}"/></display:column>
          <display:column title="Address" sortable="false"><c:out value="${customer.address}"/></display:column>
    </display:table>The line where `<display:setProperty name="paging.banner.placement" value="both"/>` was specify solves your problem. By setting it to BOTH it will appear above and bottom of the paging table.

  • Need help on "Displaying items for Library System"

    Hi folks, i am currently new to this forum and I need help on this problem ASAP.
    I currently doing

    Sorry, I accidentally hit the enter button so i start again.
    I currently doing a online Library system and I hve been assign the task of doing the "search items" use case.
    The situation is like this, my system retrieves 50 items based on the user selection and displaying them on a page.
    The problem is I do not know how to seperate the items cos I don wan to display everything on the page, wat i wan is like displaying first 20 items on the page and when the user click the "next" link, the next 20 items will be display on the same page.
    My teacher ask me to use custom tags(WHICH I NEVER LEARN BEFORE) so
    please give me advise or related links as soon as possible cos I have to hand in the project in two weeks time.

  • JSP Tag Library not being parsed

    I have a tag library that has its tld, the corresponding class file, but
              if I put it in defaultWebApp (under Portal 7) it doesn't parse. If I put
              it under a sampleportal it can't parse the deployment descriptor. Is this
              a problem inside my .tld? All this stuff worked in WLS6.1sp2/Portal4.
              weblogic.servlet.jsp.JspException: (line 4): Could not parse deployment
              descriptor: java.io.IOException: cannot resolve 'pstream' into a valid tag
              library
              at weblogic.servlet.jsp.JspLexer.jspException(JspLexer.java:872)
              at
              weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(JspLexer.java:50
              16)
              at
              weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(JspLexer.java:4840)
              at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(JspLexer.java:4686)
              at
              weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(JspLexer.java:2192)
              at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1978)
              at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java:1851)
              at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:1117)
              at weblogic.servlet.jsp.JspParser.doit(JspParser.java:90)
              at weblogic.servlet.jsp.JspParser.parse(JspParser.java:212)
              at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:119)
              Thanks,
              Steve
              

              Steve,
              The solution is simple. Just correct the path for the .tld file in your web.xml
              file. the path should be off the Web application root.
              Hope this helps
              Parag
              [email protected] wrote:
              >I have a tag library that has its tld, the corresponding class file,
              >but
              >if I put it in defaultWebApp (under Portal 7) it doesn't parse. If I
              >put
              >it under a sampleportal it can't parse the deployment descriptor. Is
              >this
              >a problem inside my .tld? All this stuff worked in WLS6.1sp2/Portal4.
              >
              >
              >weblogic.servlet.jsp.JspException: (line 4): Could not parse deployment
              >
              >descriptor: java.io.IOException: cannot resolve 'pstream' into a valid
              >tag
              >library
              > at weblogic.servlet.jsp.JspLexer.jspException(JspLexer.java:872)
              > at
              >weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(JspLexer.java:50
              >16)
              > at
              >weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(JspLexer.java:4840)
              > at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(JspLexer.java:4686)
              > at
              >weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(JspLexer.java:2192)
              > at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1978)
              > at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java:1851)
              > at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:1117)
              > at weblogic.servlet.jsp.JspParser.doit(JspParser.java:90)
              > at weblogic.servlet.jsp.JspParser.parse(JspParser.java:212)
              > at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:119)
              >
              >
              >Thanks,
              >Steve
              

  • Install JSP Tag Library

    which library is missing now... i haven't seen this error before... i have included all the libraries: ADF,JSTL in the JSP Tag Libraries (in the project properties)... any suggestion pls?>

    i resolve the problem... i restarted the jdeveloper and the i dont have that error anymore.. maybe my jdeveloper is tired and need some rest :) thanks anyway :)

  • Newbie needs help with Flex app

    Hi there. I am very new to Flex and also fairly new to
    programming although I do have a little experience.
    I am trying to create an app which stores code snippets or
    common text I tend to use every day in my documents and emails.
    So basically I need help on a design level. I can refer to
    the developer's manual for exact instructions for commands, but I
    need to know what to code first.
    The app will consist of:
    -a tree directory structure where I can create groups.
    -There will be a basic text editor where I input all my data,
    basic text formatting options (font, bullets etc) would be a bonus.
    -A search function
    -Finally it will ideally allow multiple client apps write to
    a central database file over a network
    Can anyone suggest how I should approach such a project?
    Or are there any tutorials / source files which demonstrate
    each bullet point?
    thanks.

    Hey jono,
    I'm new too. But I think I might know the right components.
    If you google any of these + flex 3 you should get some
    decent documentation
    tree - advanced dataGrid component
    basic text editor - rich text editor component
    search function - well, you're gonna need to read up on
    arrays, and arraycollection. Once you get that stuff working, you
    can write up a function to search for a string in an array.
    network functionality - HTTPService, you can dump the
    datagrid into a database, and have it load the database when you
    open up the application.
    Give these things a shot, tutorials / sources will come with
    the google searches.

  • Need help installing Flex !

    Hello Flexians !
    Hope you people are fine !
    Well, have a good background in PHP/MySQL etc, now, I want to expand my skills set and want to learn Flex my self.
    I have a local server with WAMP (Windows XP - Apache - MySQL - PHP). Now, I want to install the necessary files / setups so that Flex files can run on Apache etc through browser.
    Please guide me what are the things i would need to run flex files on my computer. (I do no want ADOBE AIR) and I want to use browser, i.e. web based applications.
    Thanks a trellian
    ZeeHash!

    Apache just serves the Flex app SWF file and its wrapper HTML file.
    So you don't need to do anything on the server side.
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance
    www.ChikaraDev.com
    Flex Development, Training, and Support Services

  • ISA JSP tag library

    I'm working with an ISA jsp and have some questions about the <isa:iterate> tag.  For example does it work with a JCO.Table object? and if so, what other kinds of tables can it use? 
    Can anybody point me to some documentation on this tag library?
    Thanks,
    Brent

    Hi,
    I assume you are using ISA 4.0. You can use "com.sapmarkets.isa.core.util.table.ResultData" class with isa:iterate tag. You can read "ISA dev and ext guide" for this issue.
    Best regards,
    Altug Bayram

  • Standard JSP Tag Library ---- beginner

    Hi
    i'm using Jdeveloper 9.0.3 to develop my JSP pages.
    i'm a begiiner in JSP world & I want to use jsp tag libraries.
    i've tried this :
    <%@taglib uri="/lib/core.jar" prefix="c" %>
    and there were 2 errors :
    Error(5): java.io.FileNotFoundException: META-INF/taglib.tld not found in the jar file
    Error(5): Unable to load taghandler class: /lib/core.jar
    what is (taglib.tld) and how could i found it ? -- error 1
    how to make it possible to enable to load the taghandler class:/lib/core.jar ? -- error 2
    thank you

    <%@taglib uri="/lib/core.jar" prefix="c" %>
    Wrong.
    The URI has to match the value in the TLD, which you
    will find inside the standard.jar in the Jakarta
    release.
    Which JSTL are you using? The URI for the 1.0 JSTL
    standard, which is valid for servlet spec 2.3 and JSP
    spec 1.2, is http://java.sun.com/jstl/core for the
    core library.
    The URI for the 1.1 JSTL standard, which is valid for
    servlet spec 2.4 and JSP spec 1.3, is
    http://java.sun.com/jsp/jstl/core.
    Put the standard.jar and jstl.jar in your WEB-INF/lib
    directory and use the appropriate URI in your JSPs.
    Don't have a <taglib> entry in your web.xml. Tomcat
    will find the TLD in the JAR file by automatic
    discovery if you're using Tomcat 4.1 or later.
    %I dont know what is the TLD and how to use or download it ... please explaine priefly
    and please note that i'm using JDevloper 9i (9.0.3) not Tomcat
    Thank you

  • JSP Tag library

    I keep getting this error when I try to transform an xml file into html.
    org.apache.jasper.JasperException: Unable to open taglibrary http://jakarta.apache.org/taglibs/xsl-1.0 : null
    Here is the jsp file
    <%@taglib uri="http://jakarta.apache.org/taglibs/xsl-1.0"
    prefix="xsltlib" %>
    <html>
    <head>
    <title>Book Inventory</title>
    </head>
    <body bgcolor="white">
    <center>
    Welcome 
    <font color="red">
    On Sale Today ...
    </font>
    <p></p>
    <xsltlib:apply xml="cdcatalog.xml" xsl="cdcatalog.xsl"/>
    </center>
    </body>
    </html>

    I think first od all you have to download the Tag Libraray from this location
    http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/xsl/
    and then configer you web application like
    Follow these steps to configure your web application with this tag library:
    * Copy the tag library descriptor file (xsl/xsl.tld) to the /WEB-INF subdirectory of your web application.
    * Copy the tag library JAR file (xsl/xsl.jar) to the /WEB-INF/lib subdirectory of your web application.
    * Copy the support libs xerces.jar and xalan.jar to the /WEB-INF/lib directory of your web application.
    * Add a <taglib> element to your web application deployment descriptor in /WEB-INF/web.xml like this:
    <taglib>
    <taglib-uri>http://jakarta.apache.org/taglibs/xsl-1.0</taglib-uri>
    <taglib-location>/WEB-INF/xsl.tld</taglib-location>
    </taglib>
    To use the tags from this library in your JSP pages, add the following directive at the top of each page:
    <%@ taglib uri="http://jakarta.apache.org/taglibs/xsl-1.0" prefix="x" %>

  • Reports 11gr2 JSP Tag library

    Is there a reference for the JSP tags available in reports 11gr2
    I see rw: foreach
    rw: field
    wanted to know what else is available but can't find a reference.
    thanks
    greg

    The package javax.servlet.jsp is an integral part of J2EE platform APIs.
    If you are using reference implementation of J2EE that comes with J2EE SDK, it is part of j2ee.jar
    If you are using some other vendor specific product, you should find it in your product vendor specific jar file(s).

  • Need help with the jsp:useBean tag

    Dear Fellow Java/JSP developers:
    I am trying to use the <jsp:useBean> tag in a jsp that displays the values from a javaBean that gets populated by another class.
    <%@ page contentType="text/html" pageEncoding="UTF-8"%>
    <%@ page import = "java.util.ArrayList"%>
    <%@ page import = "java.util.Iterator"%>
    <%@ page import = "salattimes.CalendarParse" %>
    <%@ page import = "salattimes.Salat" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>JSP Page</title>
        </head>
        <body>
            <jsp:useBean id="test" scope="session" class="calendar.Time" />
            <% CalendarParse sTime = new CalendarParse();
                Time mytime = sTime.runExample();%>
            <%=mytime.getA() %>
            <%=mytime.getB() %>
            <%=mytime.getC() %>
            <%=mytime.getD() %>
            <%=mytime.getE() %>
        </body>
    </html>However, up to now, I am only able to display the values on my JSP page using the scriptlet
    <% CalendarParse sTime = new CalendarParse();
                Time mytime = sTime.runExample();%> to declare and create the object (the method call sTime.runExample(); populates the fields in the Java Bean), and the expressions:
    <%=mytime.getA() %>
             <%=mytime.getB() %>
             <%=mytime.getC() %>
             <%=mytime.getD() %>
             <%=mytime.getE() %>to present the values on the screen. What I would like to do is assign the object that I create to a javaBean reference declared in a <jsp:useBean> tag as follows:
    <jsp:useBean id="test" scope="session" class="calendar.Time" />
            <% CalendarParse sTime = new CalendarParse();
                test = sTime.runExample();%>and then present the values stored in the bean to the JSP page as follows:
    <jsp:getProperty name="test" property="a" />
            <jsp:getProperty name="test" property="b" />
            <jsp:getProperty name="test" property="c" />
            <jsp:getProperty name="test" property="d" />
            <jsp:getProperty name="test" property="e" />
            <jsp:getProperty name="test" property="f" />Is this possible? When I try the above, I get "null" as my output on the screen. When I try the first approach listed above, I get the values I am looking for. Is there a way to accomplish this using the <jsp:useBean> approach?
    Thanks to all those who reply.
    Sincerely;
    Fayyaz

    The code:
    <jsp:useBean id="calendar" class="calendar.CalendarParse" scope="session"/>
    <c:set var="time" value="${calendar.time}"/>Would be roughly equivalant to:
    calendar.CalendarParse calendar = new calendar.CalendarParse();
    Object time = calendar.getTime();I assumed that the CalendarParse object was in the calendar package because that was were your Time class was (when you used <jsp:useBean id="test" scope="session" class="calendar.Time" />"), but when I look back at your original post I see I was wrong and the use of calendar as both the incorrect package and the variable name was confusing. To make the code more similar to your original post the code should have read:
    <jsp:useBean id="sTime" class="salattimes.CalendarParse"/>
    <c:set var="myTime" value="${sTime.time}" scope="session"/>
    ${myTime.a}
    ${myTime.b}
    ${myTime.c}
    etc...Here is an explanation of the parts:
             /* name of the variable */  /* fully qualified class name, package.className */
    <jsp:useBean id="sTime"           class="salattimes.CalendarParse"/>
      /* name of the new object from bean */  /* source of object, variable.property */    /* Scope of new object */
    <c:set var="myTime"              value="${sTime.time}"             scope="session"/>
    /* data to display variable.property */
    ${myTime.a}Where a 'property' in a bean is defined as a method in the form of getProperty(). So the 'time' property is getTime() and the 'a' property is getA().

Maybe you are looking for

  • Can I use my iMac as the display with my MacBook Air?

    Here is the hardware configuration of my iMac: Hardware Overview:   Model Name: iMac   Model Identifier: iMac9,1   Processor Name: Intel Core 2 Duo   Processor Speed: 2.66 GHz   Number Of Processors: 1   Total Number Of Cores: 2   L2 Cache: 6 MB   Me

  • CS Live Icon not updating due to Adobe Story

    This is terribly annoying. The icon in Photoshop will not update, even though I have already signed in and used Adobe Story, despite it being completely useless to me in my line of work. What do I have to do to get it to recognize I have seen the ser

  • How to use Reader or InputStream to get byte[]

    Any opinions on the best way to get a byte[] using java.io.Reader or java.io.InputStream? I haven't used these in anger before, so sorry for the rookie nature! Any simple examples would be much appreciated! Thanks

  • Components of Integration Server

    Hi all,,,,          Whats the significant difference and purpose of the components of the Integration Server..... to be clear what are the roles of Business Process Engine , Integration Engine & the Adapter Engine in the Integration Server......... K

  • A website "Content Managment System" with CRM

    hi all, we're looking into revamping our company's website. It'll be mostly a B2B website (in the future b2c). We're looking into finding a Content Managment System (CMS) that can handle most of the work so people form our marketing department will b