Problem in implementing Pub/Sub using Oracle AQ

Hi,
I am using 10.1.2.0.0 Process Manager
I have created a publishing service which publishes a PAYLOAD as well as two header fields (Header holds the name of TARGET_SYSTEM and SOURCE_SYSTEM). In the receipients list I specified two names i.e. Bob and Jon with a comma seperator.
I published a message to a queue and now I can see data in the queue table.
Then I created two subscribing services (one for Bob and another for Jon).Here I specified the Consumer name as Jon in one service and Bob in another.
When I deploy the subscription services and run them, it is not subscribing to the queue.
Is there any additional step I need to perform in order to create the Consumer/ Subscriber?
Regards,
Vikas

Hi,
This is vikas again.
Does some one know where to find out the document that can explain Using Oracle AQ in BPEL and steps to create rule based Consumer?
Thanks & Regards,
Vikas

Similar Messages

  • Problem changing default key bindings using Oracle Terminal

    Hello,
    I'm facing a problem changing default key bindings using Oracle Terminal. I changed
    some bindings, saved them in forms60/fmrusw.res, started the generation and saved again.
    I thought that's it but it wasn't. It took no effect at all in Forms (even after recompilation) although reopening the file in Terminal showed the changes. I'm using Forms in German, which means that even the key bindings displayed in Forms are translated i.e. STRG+F1 instead if CTRL+F1,
    but I can't find a german version of this resource file, so i think it's the same resource file for all supported languages. But what is needed for the changes to take effect ?
    Thanks in advance
    STD
    null

    Hi,
    is it client/server you are working?
    if so you should not be using the fmrusw.res file because I guess your NLS_LANG is German_Germany.WE8ISO8859P1 or something like that. This means the terminal that is being opened is fmrdw.res instead of fmrusw.res and this file should be edited using Oracle Terminal.
    if you are working via the web implementation than you can open the file fmrweb.res in a text editor and change the keybindings in there. If you need to have the PC like key bindings on the web just open the fmrpcweb.res and see if it contains the German texts. If so you can either copy this file over the frmweb.res file or you can specify term=fmrpcweb.res in the serverargs parameter.
    Hope this helps.
    Kind regards,
    Frank van der Borden
    Oracle Support Services
    Netherlands

  • Please advise regarding implementing pub/sub in a BPEL process.

    Hi guys,
    Requirement
    The customer information comes as HTTP/SOAP message and is sent to the BPEL process as input. BPEL uses ESB and database adapters to create the customer in Oracle apps. Now, we need to send the same customer information with the Oracle apps customer number to some other systems. The number of systems is not know at this time, so we need a pub/sub mechanism where we can publish the customer creation event with the required parameters (customer name, number, etc.). Then we just create subscriptions to that event as an when required. This gives us the flexibility to add subscriptions withougt changing the initial BPEL process.
    My questions
    I can think of three ways to do this, please advise.
    1. Use Oracle workflow business events and subscriptions. At the end of the BPEL process, raise the wf event and the subscriptions to that will be processed by workflow engine. My doubt here is that most of the times the subscriptions is another BPEL process, so does it make sense to go from BPEL to WF and then WF to PL/SQL to invoke a new BPEL?
    2. Use Advanced Queues (Oracle AQ). This is similar to using Oracle WF and to me the issues are also the same.
    3. Use routing rules in ESB -- I am not really sure if this can be done to replicate a pub/sub scenario, please advise and elaborate.
    As a summary, we want the ability to have pub/sub within BPEL and/or ESB. Any other suggestions are also welcome.
    Thanks!

    I have the same question , but could not find the releveant post in ESB forum.. is the response posted ? pls post the link to that thread...

  • Problem in connecting to database using oracle jdbc thin driver

    hi
    i am trying to connect to a database using oracle thin driver.
    i am getting following error:
    java.sql.sqlexception:Io exception: the network adapter could not establish the connection
    Io exception: the network adapter could not establish the connection
    the connection string has the property of using a dedicated server
    for this reason i have put USE_DEDICATED_SERVER=ON in sqlnet.ora file...
    we did not face this problem while connecting to other databases which do not have the property of dedicated server in their connection string in tnsnames.ora file.
    please suggest a solution for this.
    thanks and regards,
    asif

    If you are using the thin driver, sqlnet.ora does not come into play. None of Oracle networking does. That is one of the great things about using the thin driver, no need to have the client installed.
    That error is due to incorrect connection info you are supplying or the machine you are connection from can't ping the machine it is trying to connect to.

  • Problem with type 4 driver using oracle 10g

    HI,
    I am unable to establish a type 4 connection with oracle 10g.
    Specs:
    Driver used: OracleDriver that comes with the ojdbc14.jar along with oracle 10g
    JDK used: Tried using both j2sdk1.4.2 and using JDK 5.0
    JRE: Again, JRE that was shipped with j2sdk 1.4.2 and JRE 5.0
    OS: Windows XP sp2
    I am able to compile the following piece of code, so there is no classpath problem, etc.
    When I try to run the program, the exception thrown is "No Suitable Driver"
    There is no problem with the TNSListener, etc...even if all Oracle related services in 'services.msc' are Started/Stopped, the error remains.
    I am, however, able to establish the connection using type1 driver.
    Please Help!
    import java.sql.*;
    import java.io.*;
    class TestConn
         Connection connection;
         Statement statement;
         ResultSet resultset;
         public void testConn() throws SQLException, ClassNotFoundException
              DriverManager.registerDriver(new oracle.jdbc.driver.OracleStatement());
              //DriverManager.registerDriver(new sun.jdbc.odbc.JdbcOdbcDriver());
              connection = DriverManager.getConnection("oracle:jdbc:thin:@127.0.0.1:1521", "scott", "tiger");
              //connection = DriverManager.getConnection("jdbc:odbc:dsn1", "scott", "tiger");
              System.out.println("Connection Established");
              statement = connection.createStatement();
              resultset = statement.executeQuery("select ename from emp");
              while(resultset.next())
                   System.out.println(resultset.getString(1));
    class Test
         public static void main(String args[]) throws SQLException, ClassNotFoundException
              TestConn obj = new TestConn();
              obj.testConn();
    };

    The JDBC URL should include the database SID. For example, if the database SID is Orcl
    connection = DriverManager.getConnection("oracle:jdbc:thin:@127.0.0.1:1521:Orcl", "scott", "tiger");

  • Problem saving data model when using Oracle DB Pivot feature

    I have problem saving a data model - SQL Query that uses the Oracle DB PIVOT feature?
    When I hit save, nothing happends.... have also tried "save as" - nothing is saved
    No error message is shown.
    Is Oracle DB PIVOT not supported by OBIEE?
    The SQL that is causing the problem is this one:
    SELECT * FROM
    SELECT field_name as field,
    CASE
    WHEN col_1 = 'A' THEN 'Name 1'
    WHEN col_1 like 'B_%' THEN 'Name 2'
    END
    as gastype,
    energy
    FROM table_1
    WHERE code = 'K'
    AND trunc(DAYTIME,'YYYY') = trunc(to_date('2012-01-01 00:00:00','YYYY-MM-DD HH24:MI:SS'), 'YYYY')
    AND (col_1 in ('A') or col_1 like 'B_%')
    PIVOT (sum(energy) for (gastype) in ('Name 1' as Name1, 'Name 2' as Name2))
    order by field
    We are using OBIEE 11.1.1.6.7 (Win 2008R2) against Oracle DB 11.2.0.3

    Just a wild guess .. Have you done dbsetup after installing IAS and said you are going to said databases ?

  • Problem with path length when using oracle drive

    Hello!
    Does anybody else experience this problem with Oracle Drive?
    When I create a deep or nested hierarchy in which the path length is longer than 250 (the limit might be 255) characters, I cannot access the deeper subpages.
    Example:"X:\INET\START1\pfadlaengentest\das istein langer ordnername mit etwa 50 zeichen\and this is another veryveryvery long\and this is another veryveryvery lon2\and this is another veryveryvery lon3\and this is another veryveryvery lon4\and this is another veryveryvery lon5".
    I can access the page "and this is another veryveryvery lon4" but not "and this is another veryveryvery lon5"
    Is this problem due to WebDAV?
    What can I do - I think it is a critical error / bug?
    Regards Joerg.

    I opened a service request and oracle support could help me.
    The problem is the windows file system: the path length cannot be longer than 256 chars.
    There's a workaround with MS-Webfolders.
    More information is available via metalink: watch out for SR-Number 5659267.992.
    PS: Thanks to Bert
    bye :-j (joerg)

  • Problem in implementing ODATA update using SAP UI5

    Hi,
      I am trying to develop an hwc mobile app [hwc] using sapui5 and phonegap. I am trying to perform odata crud operations in the app.
    In the netweaver side, currently we have disabled the setting for X-CSRF token so that CUD operations are possible even without CSRF token. I am using datajs library for consumption of the odata services in my app. My read operation is successful and i am able to display the data in my app. But I am facing problems in the update operation.
    In order to ensure that serverside is perfect, I used the WFetch tool to perform the update operation and verified that data got updated successfully in SAP backend { i got 204 response from server ]. In the wfetch tool, the headers and body section was like this
    x-requested-with: XMLHttpRequest\r\n
    \r\n
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>\r\n
      <entry xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">\r\n
          <content type="application/xml">\r\n
            <m:properties>\r\n
              <d:value>0203_IN120</d:value> \r\n
              <d:scheme_id>Z_BANK_RFC_GANESH</d:scheme_id> \r\n
              <d:scheme_agency_id>LOCAL</d:scheme_agency_id> \r\n
              <d:post_bank /> \r\n
              <d:bank_branch>BANASWADI</d:bank_branch> \r\n
              <d:street>123 MARUTHI SEVA NAGAR.</d:street> \r\n
              <d:city>BANGALORE</d:city> \r\n
              <d:swift_code/>\r\n
              <d:region>KA</d:region> \r\n
              <d:bank_name>HSBC</d:bank_name> \r\n
              <d:pobk_curac /> \r\n
              <d:bank_group /> \r\n
              <d:addr_no /> \r\n
            </m:properties>\r\n
          </content>\r\n
    </entry>\r\n
    The response i got was like this
    WWWConnect::Connect("XXXXX.XXXX.com","8000")\nIP = "10.6.13.146:8000"\nsource port: 50054\r\n
    REQUEST: **************\nPUT /sap/opu/sdata/sap/ZBANKRFCGANESH/z_bank_rfc_ganeshCollection(value='0203_IN120',scheme_id='Z_BANK_RFC_GANESH',scheme_agency_id='LOCAL')/?$format=xml HTTP/1.1\r\n
    x-requested-with: XMLHttpRequest\r\n
    Host: i3lbwvids.itcinfotech.com\r\n
    Accept: */*\r\n
    Content-Length:884\r\n
    Authorization: Basic Z2FuZXNoOmxvZ2luQDEyMzQ=\r\n
    \r\n
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>\r\n
      <entry xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">\r\n
          <content type="application/xml">\r\n
            <m:properties>\r\n
              <d:value>0203_IN120</d:value> \r\n
              <d:scheme_id>Z_BANK_RFC_GANESH</d:scheme_id> \r\n
              <d:scheme_agency_id>LOCAL</d:scheme_agency_id> \r\n
              <d:post_bank /> \r\n
              <d:bank_branch>BANASWADI</d:bank_branch> \r\n
              <d:street>123 MARUTHI SEVA NAGAR.</d:street> \r\n
              <d:city>BANGALORE</d:city> \r\n
              <d:swift_code/>\r\n
              <d:region>KA</d:region> \r\n
              <d:bank_name>HSBC</d:bank_name> \r\n
              <d:pobk_curac /> \r\n
              <d:bank_group /> \r\n
              <d:addr_no /> \r\n
            </m:properties>\r\n
          </content>\r\n
    </entry>\r\n
    RESPONSE: **************\nHTTP/1.1 204 No Content\r\n
    set-cookie: MYSAPSSO2=AjQxMDMBABhHAEEATgBFAFMASAAgACAAIAAgACAAIAACAAY4ADAAMAADABBJAEQAUwAgACAAIAAgACAABAAYMgAwADEANAAwADEAMgA5ADAANwAyADUABQAEAAAACAYAAlgACQACRQD%2fAPowgfcGCSqGSIb3DQEHAqCB6TCB5gIBATELMAkGBSsOAwIaBQAwCwYJKoZIhvcNAQcBMYHGMIHDAgEBMBkwDjEMMAoGA1UEAxMDSURTAgcgEQQGCClRMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xNDAxMjkwNzI1MzlaMCMGCSqGSIb3DQEJBDEWBBRF%2fqnZ6znAGOYDuA1QJxZ7kOYTfDAJBgcqhkjOOAQDBC4wLAIUNk9rqGV16RPsLrLsHfHtNPc%21Q44CFBRiJ4BhRrmxUVH77EYIGSSd8WPb; path=/; domain=.itcinfotech.com\r\n
    content-length: 0\r\n
    dataserviceversion: 2.0\r\n
    x-sap-odata-extension-version: 0.9;gp=0.8\r\n
    server: SAP NetWeaver Application Server / ABAP 702\r\n
    \r\n
    Now i tried to do that using sapui5 code.
    OData.request(
                       requestUri: "http://XXXXX.XXXXX.com:8000/sap/opu/sdata/sap/ZBANKRFCGANESH/z_bank_rfc_ganeshCollection(value='0203_IN120',scheme_id='Z_BANK_RFC_GANESH',scheme_agency_id='LOCAL')/?$format=xml",
                       method: "PUT",
                       headers: { "X-Requested-With": "XMLHttpRequest", "sap-user" : "ganesh", "sap-password" : "login@1234",  "Content-Type": "application/atom+xml" },
                       data: {
                               "value" : "0203_IN120",
                               "scheme_id" : "Z_BANK_RFC_GANESH",
                               "scheme_agency_id" : "LOCAL",
                               "post_bank" : "",
                               "bank_branch" : "Park Street",
                               "street" : "Russel Street",
                               "city" : "KOLKATA",
                               "swift_code" : "",
                               "region" : "WB",
                               "bank_name" : "HSBC",
                               "pobk_curac" : "",
                               "bank_group" : "",
                               "addr_no" : ""
                     function (data, response){ 
                       // var header_xcsrf_token = response.headers['x-csrf-token']; 
                      //  alert(header_xcsrf_token);
                        //  alert("hello");
                          //alert(data);
                         alert(JSON.stringify(response, null, 4));
                     function (err) {
                        alert(err.message);
      I found the I am always getting a 200 OK in the respose and not 204 [ when i displayed the response using the alert message]. As expected data is also not getting updated.
    Kindly guide me where i am going wrong in the code. Please help me out.
    thanks and regards,
    krishna.

    Hi Krishna
    I will try and help.
    The first thing i notice is you are using OData.request, this is not part of SAPUI5, OData is a global introduced by the datajs thirdparty plugin, I would recommend not using it directly, instead use the ODataModel API start by reading the Class sap.ui.model.odata.ODataModel and ODataModel.  There are a lot of good of reasons for using the ODataModel, like databinding, event handling, it doesn't smell like a leak, besides the SAPUI5 ODataModel is a lot easier to use.
    try something like this
    var url = 'http://XXXXX.XXXXX.com:8000/sap/opu/sdata/sap/ZBANKRFCGANESH';
    var bJSON = true; //use JSON
    var sUser = 'ganesh';
    var sPassword = 'login@1234';
    // create a model for OData service call
    var oModel = new sap.ui.model.odata.ODataModel(url, true, sUser, sPassword);
    sap.ui.getCore().setModel(oModel);
    var path = '/z_bank_rfc_ganeshCollection(value='0203_IN120',scheme_id='Z_BANK_RFC_GANESH',scheme_agency_id='LOCAL')';
    // create the data
    var data =  {
        "value": "0203_IN120",
        "scheme_id": "Z_BANK_RFC_GANESH",
        "scheme_agency_id": "LOCAL",
        "post_bank": "",
        "bank_branch": "Park Street",
        "street": "Russel Street",
        "city": "KOLKATA",
        "swift_code": "",
        "region": "WB",
        "bank_name": "HSBC",
        "pobk_curac": "",
        "bank_group": "",
        "addr_no": ""
    // get a CSRF token if needed
    oModel.refreshSecurityToken();
    // add own callback code
    var oParams, fnSuccess, fnError, bUseMERGE;
    //PUT data back to server
    oModel.update(path, data, oParams, fnSuccess, fnError, bUseMERGE);
    Let us know how you get on
    hth
    jsp
    Message was edited by: John Patterson
    I really dislike the SCN editor, especially the way it re formats code so it cannot be read while writing

  • Re: Problems while implementing video chat using JMF.

    I googled for "Java jmf alternatives" but i didn't get that much :(, can any body help me in JMF so i can make my basic peer to peer video chat as given at very first post. I am exploring this API.
    Please help

    Answered in your hijack post that had been split away to stand on its own merits:
    Re: Is JMF the best choice for video capture ?

  • Implementing Event listeners in Oracle ADF

    I have a selectonechoice UI component by which the user selects the user name and an UI table component which displays all the documents the user has access to. There are three tables involved 1) User 2) Access 3) Documents. USER table has a FK relation to ACCESS table. The ACCESS table has FK relation to DOCUMENTS table.
    I have written two SQL queries/view objects (userView) to get the user name and another join query (userAccessView) to get the document names that a particular user has access to.
    I want to link the two UI components such that when the selectonechoice UI component changes value, the table UI component should display document list has the user has access to.
    Is there any sample example of how to implement the functionality using Oracle ADF? Or any suggestion on how to do it.
    Regards
    Thomas

    You should be able to achieve this with PPR - for example see this demo of the navigation list:
    http://blogs.oracle.com/shay/2008/11/the_navigation_list_select_som.html

  • Problem publishing using pub-sub adapter

    Hi,
    I want to see events from my EPN in the Visualizer. For that I created an adapter that connects to a channel in side the EPN. It is a httppub adapter.
    When I am trying to start it for publishing from the visualizer I get in the Eclipse (I run the CEP from the Eclipse):
    <18:20:23 IST 08/12/2011> <Error> <EventInspector> <BEA-2060506> <Stage adapter cannot be configured for event tracing because it is not an event source. The stage must implement StreamSource or EventSource to be an event source.>
    Isn't the adapter "automatically" publish the event? Do I need to create a bean for that?
    Below the adapter config and my EPN file:
    Adapter config:
    <?xml version="1.0" encoding="UTF-8"?>
    <wlevs:config xmlns:wlevs="http://www.bea.com/ns/wlevs/config/application">
    <http-pub-sub-adapter>
    <name>adapter</name>
    <server-context-path>/pubsub</server-context-path>
    <channel>/InputChannel</channel>
    <user>wlevs</user>
    <password>welcome1</password>
    </http-pub-sub-adapter>
    </wlevs:config>
    EPN file:
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:osgi="http://www.springframework.org/schema/osgi"
    xmlns:wlevs="http://www.bea.com/ns/wlevs/spring"
    xmlns:jdbc="http://www.oracle.com/ns/ocep/jdbc"
    xmlns:spatial="http://www.oracle.com/ns/ocep/spatial"
    xmlns:ha="http://www.oracle.com/ns/cep/config/cluster"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/osgi
    http://www.springframework.org/schema/osgi/spring-osgi.xsd
    http://www.bea.com/ns/wlevs/spring
    http://www.bea.com/ns/wlevs/spring/spring-wlevs-v11_1_1_3.xsd
    http://www.oracle.com/ns/ocep/jdbc
    http://www.oracle.com/ns/ocep/jdbc/ocep-jdbc.xsd
    http://www.oracle.com/ns/ocep/spatial
    http://www.oracle.com/ns/ocep/spatial/ocep-spatial.xsd">
         <wlevs:event-type-repository>
              <wlevs:event-type type-name="StringEvent">
                   <wlevs:class>com.oracle.cep.training.events.StringEvent</wlevs:class>
              </wlevs:event-type>
         </wlevs:event-type-repository>
         <!-- HA EPN -->
         <wlevs:adapter id="JMSInboundEventsAdapter" provider="jms-inbound">
              <wlevs:listener ref="HaInputAdapter"/>
              <wlevs:instance-property name="converterBean" ref="CSVInboundMessageConverter"/>
              <!-- <wlevs:listener ref="EventListenerCSV2" /> -->
         </wlevs:adapter>
         <bean id="CSVInboundMessageConverter" class="com.oracle.cep.training.converter.CSVInboundMessageConverter"> </bean>
         <!-- <bean id="EventListenerCSV2" class="com.oracle.cep.training.listeners.EventListenerCSV" /> -->
         <wlevs:adapter id="HaInputAdapter" provider="ha-inbound" >
              <!-- <wlevs:instance-property name="eventType" value="StringEvent"/> -->
              <wlevs:instance-property name="keyProperties" value="messageText"/>
              <wlevs:instance-property name="timeProperty" value="arrivalTime"/>
         </wlevs:adapter>
         <wlevs:channel id="InputChannel" event-type="StringEvent">
              <wlevs:listener ref="Processor" />
              <wlevs:listener ref="adapter" />
              <wlevs:source ref="HaInputAdapter" />
              <wlevs:application-timestamped>
                   <wlevs:expression>arrivalTime</wlevs:expression>
              </wlevs:application-timestamped>          
         </wlevs:channel>
         <wlevs:processor id="Processor">
              <wlevs:listener ref="OutputChannel" />
         </wlevs:processor>
         <wlevs:channel id="OutputChannel" event-type="StringEvent">
              <wlevs:listener ref="CSVBean" />
              <wlevs:listener ref="HaCorrelatingAdapter" />
         </wlevs:channel>
         <wlevs:adapter id="HaCorrelatingAdapter" provider="ha-correlating" >
              <wlevs:instance-property name="correlatedSource" ref="clusterCorrelatingOutstream"/>
              <wlevs:listener ref="JMSOutboundAdapter"/>
              <wlevs:instance-property name="failOverDelay" value="2000"/>
              <wlevs:listener ref="CSVBean" />
         </wlevs:adapter>
         <bean id="CSVBean" class="com.oracle.cep.training.listeners.EventListenerCSV">
         </bean>
         <bean id="CSVOutboundJmsMessageConverter" class="com.oracle.cep.training.converter.CSVOutboundJmsMessageConverter">
         </bean>
         <wlevs:adapter id="JMSOutboundAdapter" provider="jms-outbound">
              <wlevs:instance-property name="converterBean" ref="CSVOutboundJmsMessageConverter"/>
         </wlevs:adapter>
         <wlevs:adapter id="JMSInboundEventsAdapter2" provider="jms-inbound">
              <wlevs:instance-property name="converterBean" ref="CSVInboundMessageConverter"/>
         </wlevs:adapter>
         <wlevs:channel id="clusterCorrelatingOutstream" event-type="StringEvent" advertise="true">
              <wlevs:source ref="JMSInboundEventsAdapter2"/>
         </wlevs:channel>
         <wlevs:adapter id="adapter" provider="httppub" />
    </beans>

    Sorry maybe I should have gave detailed information:
    On the visualizer I opened the EPN->right click on the http pub adapter->open panel-> trace event->put the channel name->start->get a message "you are about to start event tracing"->pressOK
    nothing happens the status stays OFF.
    In the Eclipse (I run the server from the Eclipse) I get:
    <20:44:33 IST 08/12/2011> <Error> <EventInspector> <BEA-2060506> <Stage adapter cannot be configured for event tracing because it is not an event source. The stage must implement StreamSource or EventSource to be an event source.>
    When going to view strean the channel is not there.
    Am I doing something wrong?

  • Need to use JMS in Web service for PUB/SUB pattern

    Hi All,
    I have JMS configured in my Web logic server 10.3.4.
    I have stand alone program for JMS in PUB/SUB pattern.
    I have Web service application with Apache CXF framework.
    Now, the problem I need to integrate JMS in my web service application for new web service with PUB/SUB pattern.
    Can any one guide me to this.
    I am trying to use @WLJmsTransport annotation provided by Weblogic. Is this approach is correct?
    And It is giving error during deployment that weblogic.jws.WLJmsTransport is not allowed as it is a JAX-WS type web service.
    I think It is creating problem with annotation parameters.
    I am using annotation like @WLJmsTransport(contextPath="transports", serviceUri="JMSTransport", queue="Queue", portName="JMSTransportServicePort")
    and ConnectionFactory with name ConnectionFactory and JNDI jms/ConnectionFactory, Queue with name Queue and JNDI jms/Queue, Topic with name Topic and JNDI jms/Topic.
    Thanks
    Thanks in advance.
    Edited by: HBM on 21 Apr, 2011 1:42 AM

    Use this link.
    http://webloic-wonders.com/weblogic/2011/04/30/jms-based-webservice-on-weblogic-server/
    Thanks.
    Harshal

  • Problem with database control returning multiple rows as Array  using Oracle

    Has anybody using Oracle gotten a Database control that
    returns multiple rows to work returning an array?
    The only way I can seem to return multiple rows is by returning
    a RowSet. Returning an array gives me a NullPointerException
    (when called within a pageFlow). When calling a database control
    that returns an array from a web service I get a
    "java.sql.SQLException: ResultSet has no more data." error.
    The samples using the pointbase database seem to work, but when I
    converted the CustomerDBClient web service to use Oracle, it starts
    failing on calling the database control that returns an array
    with: "java.sql.SQLException: ResultSet has no more data."
    Has anybody gotten this to work using Oracle?
    I'm also having some problem returning an Iterator. It seems
    to work when called from a web service, but returns nothing
    if called from a page flow.
    I'm using Oracle 8.1.7 and WebLogic 8.1.
    Eric

    Do you need a particular service pack installed to return an array of custom object?
    I am getting a ResultSet contained no data error when trying.
    Thanks,
    -Thomas
    "Robin Karlin" <[email protected]> wrote:
    >
    Eddie O'Neil <[email protected]> wrote:
    All--
    Unfortunately, returning an Iterator to a JPF (or JSP) from a
    database control is broken in WLW 8.1, though it will work inside of
    a
    JWS or JCS.
    There shouldn't be a problem with returning an array of objects out
    of Oracle to the JPF, and if you need an Iterator specifically, youcan
    wrap the array in an Iterator implementation.
    Sorry for the inconvenience.
    Eddie
    Lenny wrote:
    I have gotten it to work on Oracle using Array:)
    However, I haven't gotten it to work on Oracle using Iterator:( Itis so
    simple, but doesn't work:(
    "Eric Dokken" <[email protected]> wrote in message
    news:[email protected]...
    Has anybody using Oracle gotten a Database control that
    returns multiple rows to work returning an array?
    The only way I can seem to return multiple rows is by returning
    a RowSet. Returning an array gives me a NullPointerException
    (when called within a pageFlow). When calling a database control
    that returns an array from a web service I get a
    "java.sql.SQLException: ResultSet has no more data." error.
    The samples using the pointbase database seem to work, but when I
    converted the CustomerDBClient web service to use Oracle, it starts
    failing on calling the database control that returns an array
    with: "java.sql.SQLException: ResultSet has no more data."
    Has anybody gotten this to work using Oracle?
    I'm also having some problem returning an Iterator. It seems
    to work when called from a web service, but returns nothing
    if called from a page flow.
    I'm using Oracle 8.1.7 and WebLogic 8.1.
    Eric
    I get the same error that Eric reported when trying to return an Array
    of objects.
    It is really frustrating because I can't use much of the built-in control
    logic
    that WLW provides. All I did was create a data pool for Oracle and a
    datasource.
    I modified the sample app in C:\bea81\weblogic81\samples\workshop\SamplesApp\WebApp\callJavaControl
    to point to that datasource and I get the error that Eric reports above.
    Can
    anyone help me out????
    Thanks,
    Robin

  • Pub.Sub.Agent problem

    Hi everybody,
    i have an iMac G5 and a Macbook intel 2.5 ghz.
    Sometimes i use the wifi network to send file from a computer to another.
    Now the iMac and the Macbook have the same probem.
    Pub.Sub.Agent use the 70/90 % of cpu.
    I don't understand when it started.
    How can i stop that? If i close mail and safari seem the problem temporary solved, but when i close (forced) the pub.sub.agent in few mintutes it starts again.
    Thank you in advance and sorry for my bad english

    One or more of them is probably broken. Remove them one by one and see if the problem goes away.

  • Problems with Drive Mapping using Oracle Drive

    It seems as though we are having some trouble with oracle drive. The install was a piece of cake, as was the configuration. The problem arises when at times we connect with the proper credentials, Oracle Drive logs the user in, but then the appropriate drive does not map. Nothing shows up under "My computer". The window will launch for the user to use Oracle Drive, but they get error messages including, "Cannot support long file names." (AKA, anything longer than 8 characters).
    Has anyone else come across these issues? Any ideas how to resolve. The issues we get with the long file names seem to only be when the drive doesn't properly map.
    Any thoughts would be helpful.
    Also, I have heard rumors of a Production version of Oracle Drive. Anyone have some news on that?

    We are very pleased to announce the Production Release 10.1.2.0 of Oracle Drive.
    You can download the software from here:
    http://www.oracle.com/technology/software/products/cs/index.html
    Note:
    - This version is production for English only. Other languages are Beta.
    - Oracle Drive 10.1.2.1 for ALL languages is expected soon.
    Find more information on Installation and Configuration as well as a Viewlet that shows Oracle Drive in Action here:
    http://www.oracle.com/technology/products/ias/portal/content_management_10gr2.html
    regards,
    Christian

Maybe you are looking for

  • Tech Challenge!! Late 2009 27.5" Major problems but HDD seemd to be Ok. I can clean install 10.6.8 but can't upgrade or reinstall from TM?

    Here's the last crash report from failure to reinstall a TM backup.  Was running Yosemite and things went sideways a couple of days ago. Got through a reinstall attempt and it was working. Ended up going through all the reset hoops and flashing quest

  • Processing LONG RAW in the trigger

    I'm currently using Oracle 7.3.4.x. I'd like to perform in the update trigger of LONG RAW column the copy of that value to another table. Since the :new and :old is prohibited in triggers and you cannot defined variables as LONG RAW data type in the

  • ABAP calling Webservice

    Hello, Please guide me how i can call webservice i.e EJB develped in Java Stack from ABAP program. Please let me know if some blog is avalabilbe for same. Thanks a lot in advance. regards, Vikrant

  • J2EE engine hangs on status Starting Apps

    Hi All We are currently experiencing issues with our J2EE engine.  When we start it, it goes up to the status Starting Apps and never leaves that status.  There are no errors on any of the logs/traces under work directory or the server0/log directory

  • Need help figuring out how to make all images appear on every page

    Hello, I user Dreamweaver MX and created this site for my church www.ccosj.com. When I created the site I used image ready for the ind. parts of the page. Loading them into dreamweaver and adjusting the rollovers there (with some tutorial help since