Using adapters with ALSB

We need to integrate several systems and would prefer to use ALSB for this project. Systems are SAP, CICS and PeopleSoft. I know BEA has adapters for these systems, but can't find documentation on how to use ALSB with adapters. Any suggestions?
(none of our systems have web services interfaces)

Hi all.
I have a question regarding this issue.
I'm new to BEA Service Bus, but have worked with Oracle ESB for some time. Oracle ESB has IDE support through JDeveloper, where I can create adapters in general. Those adapters are automatically exposed as web services and immediately availabe as what BEA calls a Business Service. Thus, I don't need to create a web service manually in order to expose the JCA adapter.
So, I have two questions:
1 - Does Aqualogic Service Bus have IDE support through BEA Workshop, or all the configuration is done by using the ESB Console?
2 - Is there a way to automatically expose a RDBMS adapter as a business service in Aqualogic Service Bus? If not, do someone have a step-by-step guide in order to acomplish this?
Thanks
Denis

Similar Messages

  • Can I use powerline wireless adapters with airport extreme

    can I use power line wireless adapters with airport extreme?

    Can this work?
    Yes
    I read somewhere that powerline adapters are not compatible with Airport.
    That information is not correct.
    If the AirPort Extreme is already set up as your "main" router, you would connect a short Ethernet cable from one of the LAN <-> ports on the Extreme to the power line adapter.
    Locate another adapter in the area where you want to use the AirPort Express and connect a short Ethernet cable from the adapter to the Express.
    Configure the Express to "create a wireless network" using the same wireless network name, same security settings and and same password as the AirPort Extreme network and select the Bridge Mode setting for the Express so that it work correctly on the network.

  • Is it possible to use Application Adapters with out having ESB, BPEL

    Hi,
    Is it possible to build and use application and DB adapters with out having ESB, BPEL in the project. We need to have Oracle E-business suite adapters in our application but we don't want to purchase ESB and BPEL.
    Is there any workaround possible or i need to go for ESB and BPEL.
    Thanks,
    Amit Kumar

    Hi,
    Application adapters and technology adapters are delivered with Oracle's SOA Suite. It can be used with BPEL, ESB, BAM or other products with SOA Suite.
    In theory, the JCA adapters can be accessed through JAVA CCI calls. Hence, any J2EE application can invoke the adapter. But, you will have to find from Oracle whether they provide support for such a access. Application adapters such as MySAP, Siebel, PeopleSoft and JDEdwards supports invocations only through BPEL and ESB. They do not support any other invocations such as JAVA CCI calls.

  • ALDSP 3.0 Integration with ALSB 2.6

    Hi All,
    I tried integrating ALDSP 3.0 data service with ALSB 2.6 using the WSDL generated by me using ALDSP 3.0.
    However as soon as I try to import the WSDL into ALSB 2.6, I am getting the below exception:
    One of the WSDL dependencies is invalid.
    - http://www.osoa.org/sdo/2.1/schemas/datagraph.xsd -> - undefined -
    Do I need to do some settings to avoid this? Please let me know.
    Thanks
    Ram

    Hi mreiche,
    Thanks a lot. It worked.
    I am just recaping the steps for future references:
    1) Save the attached datagraph .xsd on to your system.
    2) In ALSB 2.6 sbconsole, for a project, add the datagraph.xsd as a XML Schema Resource
    3) Now open the WSDL resource and click "Edit References" button provided and attach the datagraph.xsd.
    4) Conflicts disappears .... :-)
    Thanks
    Ram
    Edited by libranram at 01/17/2008 9:53 PM

  • I have a new I Pad air and I am trying to use it with a projector and a whiteboard, unfortunately the two are not connecting. Can anyone give me reasons why this might be happening.

    I have a new I Pad air and I am trying to use it with a projector and a whiteboard, unfortunately the two are not connecting. Can anyone give me reasons why this might be happening.

    You can connect via a cable or wireless using an Apple TV.
    http://ipad.about.com/od/iPad_Guide/a/How-To-Connect-Your-Ipad-To-Your-Tv.htm
    Connect an iPad to a Television or Projector
    http://www.everymac.com/systems/apple/ipad/ipad-faq/how-to-connect-ipad-to-tv-te levision-projector.html
    Connecting iPad iPhone or iPod to TV or Projector
    http://www.disabled-world.com/assistivedevices/computer/ipad-tv.php
    iPad Accessories: Connections for a TV or Projector
    http://www.dummies.com/how-to/content/ipad-accessories-connections-for-a-tv-or-p rojector.html
    You may be interested in AirPlay on the Apple TV:
    http://www.apple.com/airplay/
    http://www.apple.com/airplay/
    Alternately, there are Apple Digital AV Adapters for hardwired connections:
    http://support.apple.com/kb/ht4108
    http://support.apple.com/kb/ht4108
     Cheers, Tom

  • Returning CDATA using XQuery in ALSB

    I would like to know how to pass CDATA section using XQuery in ALSB. This is required as the client application wants certain data with XML tags as string. I used the following:
    <web:getFlightDetails xmlns:web="http://webservices.ods.mwcoe.united.com">
    <web:getFlightDetailsResponse>
    <XMLBODY>
    { fn:concat("<![CDATA[" ),  " ") }
    { $body/FML32/* }
    { fn:concat(("]]>"), " ") }
    </XMLBODY>
    </web:getFlightDetailsResponse>
    </web:getFlightDetails>
    But I get the following response:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
    <web:getFlightDetails xmlns:web="http://webservices.ods.mwcoe.united.com">
    <web:getFlightDetailsResponse>
    <XMLBODY>
    " & l t ; " ![CDATA[
    <STATDES>N/A</STATDES>
    <BAGFIN>-1</BAGFIN>
    <INBLK>2007-10-23 07:33:00</INBLK>
    <FLTDETORIG>SFO</FLTDETORIG>
    ]] "& g t ;"
    </XMLBODY>
    </web:getFlightDetailsResponse>
    </web:getFlightDetails>
    </soapenv:Body>
    </soapenv:Envelope>
    Basically the question is how do I pass < & > and not " & l t ;" and " & g t ;". Please space padding is done on purpose here.
    Thanks,
    Channu Kambalyal
    United Airlines.

    here we get it done using instead of
    { fn:concat("<![CDATA[" ), " ") }
    { $body/node() }
    { fn:concat(("]]>"), " ") }
    this:
    { fn:concat("<![CDATA[" ), $body/node(), "]]>") }
    getting a correct response
    ex:
    <XMLBODY>
    <![CDATA[
    <STATDES>N/A</STATDES>
    ]]>
    </XMLBODY>
    but, if there's any namespace on the variable node, we get all replace by <
    ex:
    <XMLBODY>
    " & l t ; " ![CDATA[
    & l t ; a:STATDES xmlns:a="http://localhost/a">N/A & l t ; /a:STATDES>
    ]] "& g t ;"
    </XMLBODY>
    do anybody have any idea why this happens?

  • HT202667 Hi - My daughter was using her Apple TV until recently when she got a Smart TV.  Now the Apple TV is not needed so she passed it on to me.  How do I get it transferred over from her Home Sharing account to mine so that I can use it with my PC?

    Hi - My daughter was using her Apple TV until recently when she got a Smart TV.  Now the Apple TV is not needed so she passed it on to me.  How do I get her Home Sharing account transferred over to mine so that I can use it with my PC? Thanks!

    As  Winston Churchill wrote, however you might want to do a factory reset on the Apple TV.
    This way all information pertaining to your daughter will be removed from the device. Specifically if see was sign into any of the streaming service, Netflix, Hulu, etc. her credentials will still be associated with this Apple TV, doing  a factory reset will remove all that and make it as if you purchased the device and just plugged it in.
    regards

  • OPEN CURSOR using a WITH clause in the select query

    Hi,
    I am using Oracle 9i. I have a requirement where I have a REFCURSOR as an OUT parameter for my procedure. I have declared the TYPE and created the procedure.
    In the procedure, I am using OPEN <cursor_name> FOR <query>;
    Ideally this works in most of the cases that I have tried earlier. However, in the current case I am using a WITH clause in my query to get the results.
    I need help in understanding if the above mentioned syntax would not allow me to use the WITH clause in the query.

    What error do you get , seems to work ok for me on 10g
    SQL> begin
      2  open :cv for 'with x as (select * from emp)  select * from x';
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> print :cv
         EMPNO
    ENAME
    JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7521
    WARD
    SALESMAN        7698 22-FEB-81       1250        500         30
          7566
    JONES
    MANAGER         7839 02-APR-81       2975                    20
         EMPNO

  • My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    In the Music tab of iTunes, do you have 'Include Voice Memos' checked?

  • I ordered my Macbook Air with Aperture two years ago. I now have an iMac - can I use that with Aperture in any way?

    I ordered my Macbook Air with Aperture two years ago. I now have an iMac - can I use that with Aperture in any way? I appreciate that it is a different computer but I am now the end user of both devices and I was just wondering if it was possible.
    Thanks,
    Sean

    The answer would be in your software license agreement for Aperture. However if you cannot locate it you can ask in the Aperture forum, the link for that is:
    https://discussions.apple.com/community/professional_applications/aperture
    However I believe you can have Aperture installed on two machines however only one may be using it at a time.
    On the new iMac launch the Mac App Store - Purchased - look for Aperture and download to your new machine.

  • How do I use LDAP with iMQ 2.0?

    I am looking for an example to see how to use LDAP with iMQ 2.0.
    I was able to set up the config settings to access a local LDAP,
    but iMQ authentication still rejects valid logins.
    Let me know if I can find more info someplace.

    You can also find an example I put togther in the Sun One knowledge base.
    If you go here:
    http://knowledgebase.iplanet.com/NASApp/ikb/index.jsp
    Search for article 7772
    Alternatively here is the direct link
    http://knowledgebase.iplanet.com/ikb/kb/articles/7772.html

  • How do you use Struts with Jboss Portal

    I am trying to use strust with jboss portal but I am getting the following error:
    An error occured while rendering window 'default.MyPortlet2.myportlet2Window'
    org.apache.jasper.JasperException: Exception in JSP: /WEB-INF/jsp/SearchResultPage.jsp:71 68: List searchresult = (List) request.getAttribute("searchresult"); 69: %> 70: Stacktrace:
    I am getting this is in the log file
    Caused by: org.apache.jasper.JasperException: Exception in JSP: /WEB-INF/jsp/SearchResultPage.jsp:71
    68: List searchresult = (List) request.getAttribute("searchresult");
    69: %>
    70: <%
    71: for (Iterator itr=searchresult.iterator(); itr.hasNext(); )
    72: {
    73: testPackage.net.dao.hibernate.WorkList workList = (testPackage.net.dao.hibernate.WorkList)itr.next();
    74: %>
    Stacktrace:
    at org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:504)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.jboss.portal.portlet.impl.jsr168.PortletRequestDispatcherImpl.execute(PortletRequestDispatcherImpl.ja
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.jboss.portal.server.servlet.CommandFilter.doFilter(CommandFilter.java:65)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)
    at org.jboss.portal.portlet.impl.jsr168.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.ja
    ... 238 more
    Caused by: java.lang.NullPointerException
    at org.apache.jsp.WEB_002dINF.jsp.SearchResultPage_jsp._jspService(SearchResultPage_jsp.java:152)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
    ... 255 more

    I am trying to use strust with jboss portal but I am getting the following error:
    An error occured while rendering window 'default.MyPortlet2.myportlet2Window'
    org.apache.jasper.JasperException: Exception in JSP: /WEB-INF/jsp/SearchResultPage.jsp:71 68: List searchresult = (List) request.getAttribute("searchresult"); 69: %> 70: Stacktrace:
    I am getting this is in the log file
    Caused by: org.apache.jasper.JasperException: Exception in JSP: /WEB-INF/jsp/SearchResultPage.jsp:71
    68: List searchresult = (List) request.getAttribute("searchresult");
    69: %>
    70: <%
    71: for (Iterator itr=searchresult.iterator(); itr.hasNext(); )
    72: {
    73: testPackage.net.dao.hibernate.WorkList workList = (testPackage.net.dao.hibernate.WorkList)itr.next();
    74: %>
    Stacktrace:
    at org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:504)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.jboss.portal.portlet.impl.jsr168.PortletRequestDispatcherImpl.execute(PortletRequestDispatcherImpl.ja
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.jboss.portal.server.servlet.CommandFilter.doFilter(CommandFilter.java:65)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)
    at org.jboss.portal.portlet.impl.jsr168.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.ja
    ... 238 more
    Caused by: java.lang.NullPointerException
    at org.apache.jsp.WEB_002dINF.jsp.SearchResultPage_jsp._jspService(SearchResultPage_jsp.java:152)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
    ... 255 more

  • How do I use my apple bluetooth keyboard with touch and will I still be able to use it with my ipad?

    How do I use my apple bluetooth keyboard with touch and will I still be able to use it with my ipad?

    iPod touch User Guide (For iOS 4.3 Software)

  • How do I use user_datastore with a feeder proc to add an mdata section?

    Hi,
    I have text data spread across a number of different tables. I have created a user_datastore with a feeder procedure that creates an xml document which is then indexed into a dummy column on the parent table. This works fine. However I need to add an mdata section to the index, via my xml document. I haven't seen any examples of this being done in conjunction with the ctxsys.auto_section_group option of the create index statement, and am wondering if it is possible?
    Could somebody furnish me an example of how I achieve this.
    Oracle 11.2.
    Thanks
    Ralph

    You can't use MDATA with AUTO_SECTION_GROUP. AUTO means it automatically assigns zone sections for every tag it finds - if you want anything other than zone sections you must use BASIC_SECTION_GROUP, XML_SECTION_GROUP or HTML_SECTION_GROUP and manually define your sections.

  • I have a used Iphone with someone elses email on it for itunes, how do i remove it and put my account there

    I have a used Iphone with someone elses email on it for itunes, how do i remove it and put my account there
    It is an Iphone 4

    If you go to settings- store - click on the ID and sign out. Then you can put in your apple id.

Maybe you are looking for

  • Why Do I Have Two Feeds at the Itunes Store?

    I began podcasting through wordpress. To do so I made a category called "Podcast" which then becomes the feed that goes to the Itunes store. Because of the limitations of Wordpress I went to feedburner and burned the same feed. And NOW, on the Itunes

  • SLD Business system not appearinn in Integration Directory Configuration

    Hello, I have configured a business system in SLD(defined a Technical system,assigned it to a business system),but when i go to Integration directory and assign a business system without a partner,I am not able to see this business system. can any on

  • Payment terms problem in me21n

    Dear Sapgurus, In OBB8 Create Payment Terms as per your requirement. Create 4 Payment terms PT , PT1, PT2, PT3. For the 1st one PT you select Installment Payment CheckBox. For PT1, PT2 & PT3 give the no of days as per your requirement. Go to OBB9 and

  • FM which does Palletization while creating TO

    Hi, I am trying to create and split Transfer order based on Palletization data in Material master. Do you know any FM which does that? I am using L_TO_CREATE_TR to create TO but I did not find any field which considers Palletization. Thank you, Jagad

  • Please support to remove the icloud account on my iphone

    This is my story, i have a brother, he came to US 1 years ago, he go there to study, and after few months he bought an iphone 5 from a friend, and in the summer he came back to Viet Nam, and gave me that iphone, but i when i try to restore that iphon