Can i use JMS use as Middleware ?

Hi All,
Can i use JMS 1.0.2b specification as MOM to fwd request to another application ?
Or any suggestion to use Middleware as JMS
Thanks
- Rim

Hi All,
Can i use JMS 1.0.2b specification as MOM to fwd
request to another application ? Sure, its one of the main use cases of JMS :)
Or any suggestion to use Middleware as JMSI'd recommend starting off finding your feet with an open source JMS provider like ActiveMQ or JORAM
James
http://logicblaze.com/

Similar Messages

  • Can I use ODI as a typical middleware solution ?

    Hi gurus,
    I have a requirement where I basically need to feed data from a DB/2 database running on AS/400 (Trading System) to TimesTen. This should be a realtime process and the scalability and throughput should be extremely high since this is for a Stock Exchange company. Can ODI be an alternative for MQ Series or TIBCO or any other middleware for this purpose ?
    Thanks,
    -Cem

    ODI can be used to replace the messaging kind of architecture, but the benefit offered by messaging is the reliability of the TRANSPORT mechanism, irrespective of failures on the part of the receiving application. ODI can be the sending and receiveing application, utilising the messaging infrastructure (through a JMS interface) for the added reliability of the transport and inherent benefits in the queueing mechanisms offered by the messaging.
    If there is no requirement for the transport and queueing, then ODI's direct data oriented approach to moving your data would be appropriate. If there is the requirement, then ODI combined with the reliable transport mechanism is ideal.

  • How can i use JMS in J2ME

    how can i use JMS in J2ME?
    What are steps i have to follow to run JMS in J2ME?

    http://www.microjava.com/articles/techtalk/jms

  • Can I use JMS instead of  multithreaded approach

    Hi,
    I am having a typical problem where the XML data coming through sockets using TCP/IP needs to be read and perform some action.
    The code I have uses two classes to do this, each of them extending the Thread class, and invokes the individual run() method. In the run() method the second class's constructor is called which in turn invokes its own run() method. In the second run() method a handler method is invoked which does the required function. The dedicated threading approach is required in my application but my question is:
    1. Instead of achieving the handling using threading, which seems to be a bit complex, can I write a JMS listener and queue the XML messages in a Oracle database. ( I am using Oracle 9i (Advance Queue can be used)).
    2. Will using JMS will increase the overall performance any way?
    PLease help!!
    regards
    Kaushik

    The JMS does the threading for you. This would potentially make your application simpler but you still need a thread(s) at the end of the day in the same way.
    The JMS is a more comprehensive package which hides much of the work for you. It also does alot of work which is not needed. For this reason I would expect JMS to be slower than a well written custom implementation. However, typically JMS is fast enough and much more maintainable, easily reconfigured etc. etc. and CV++ :)
    My guess is that most of your work is in decoding your XML data or somewhere you don't expect.
    If you want it to go faster I would suggest getting a profiler e.g. JProfiler on demo license and do some performance tests. You will probilbly find there a few simple things you can do to improve performance.
    I would not concider the kind of migration you suggest until you know expectly what the problem is. You can waste alot of time optimising code which was not a problem in the first place. (: from experience :)

  • Can I  use JMS?

    I write a trigger to detect the updated record in my oracle db table(once trigger detects the change it sends out the information). I also want to write a servlet on websphere app server. How can I make the servlet as a listener in order to get the information sent from oracle? Can I use JMS?

    Yes, you do indeed get the point :-)
    For your other questions -
    1) Oracle AQ does not use JNDI to connect - you get the connection with...
    TopicConnectionFactory tc_factory = AQjmsFactory.getTopicConnectionFactory(serverAddr,"ORCL",1521,"thin");2)Yep - Queues are one-to-one, Topics are one-to-many. You will need to be careful with the client id when you create the subscriptions. Each applets client ID will need to be different or only one will consume the message.
    R.
    KMS

  • JMS Persistent Mode (can I use alternate provider, ie database)

    When I am using JMS Persistence in Queued messages or PubSub, can I use an alternate form of persistence.
    In other words can I run persistence thru a database like DB2 or Oracle, instead of the native support by the SAP engine.
    I dont mean using MQSeries or another JMS provider, but rather having the SAP JMS connect to DB2 or Oracle to provide a more robust form of persistence.
    Is that possible ?
    Thanks, John

    Hello John,
    Yes, that was exactly what I meant. In the download section there is a Sneak preview with Linux and DB2.
    I think that the Sneak preview was available for MS-SQL as well while the official versions support more DBMS-s. However I am certainly no expert on the installation, I have just small JMS experience and I was trying to help.
    Please have a look at :
    SAP WAS 6.40 for Oracle
    where another user was asking about possible installations.
    Best Regards
    Peter

  • Can we download employee data from ECC to CRM using standard middleware?

    HI,
    Can we download employee data from ECC to CRM using standard middleware? If yes pl give me the procedure.(not using HR ALE/IDOC)
    Thanks,
    Regards,
    PV

    Standard replication for employee to CRM is using ALE.
    BDoc send information for CRM for other business partner. If you want to use BDOC message for send employee to CRM, you should build your own BDOC message that read HCC Table and send this information to CRM.
    However send this information using ALE is not difficult. Why don't you wan to use ALE?
    Regards,
    Lyda

  • Can I develop JMS apps using J2SE 1.4.1 SDK?

    I am using a Mac using OSX that supports J2SE 1.4.1 (but not J2EE). Can I develop JMS apps on this platform?
    Thanks for your time.
    (I have searched this forum before I leaped into wasting anyones time, but have not found any answer)

    You will need JMS combined with your j2se and a JMS implementation(like mqseries). Thats it. No need of j2ee. You can use them in Mac using OSX.
    Please refer samples in sun for sample jms programs.

  • Can I use JMS for this?

    User logs into our administrative console, selects a job, clicks run.
    Behind the scenes, the run command actually creates a job and returns XML which provides a long list of commands that need to be executed in order for that "job" the user triggered to be complete. This XML contains everything from shell scripts that need to be triggered to PL/SQL functions and stored procedures that need to be called...and they're listed in this XML file in the order they need to be executed and the next process in the list can only be executed when the process before it is finished. This all needs to go on behind the scenes, uninhibiting the user's experience on the website...so that's why I thought I might be able to use JMS but it seems everything needs to be written in java for this to work, which is a problem being I need to trigger runtime processes on the Linux box to execute shell scripts, which are not written in java...how would those shell scripts communicate with the JMS?
    Anyone doing anything like this? Examples somewhere? It's kind of like a job management console...the jobs are pretty complex and can take up to 45 minutes or more to complete, which is why we need to come up with a way to run them from the app server, but in the background, asynchronously from the user's website utilization. This obviously, because of the time some of these take to complete, can't be a request/response architecture...
    Thoughts? Help? Anything greatly appreciated.
    Thanks!
    rlb

              poorni wrote:
              > Hello everyone,
              > I need to send an alert message from the client to a server(which is
              > remote). Can I use JMS for this?.
              Yes.
              If so can anyone please suggest me
              > an open source JMS provider.
              WebLogic has JMS built-in.
              > Thank you,
              > poornima
              

  • How to restrict the number of batch jobs used by middleware?

    Hi,
       I'm using middleware to replicate data which send IDOCs from one system to another. I know on source system, I can use SMQS to restrict the number of connections. But on target system, can I use any tool to restrict number of batch jobs? Because every time when replicating data, all batch jobs are occupied.
       Thanks a lot!

    Priya:
    It is likely that the BLOB content defined in your table is being stored 'Out-of-Line'. This means that the LOB columns are stored in segments of their own. These then are the segments that may need shrinking.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14249/adlob_tables.htm#i1006363
    Varad

  • Can we use OWSM in OSB for ServiceType Other than WSDL Webservice

    Hi all,
    We want to use OWSM in OSB can we use OWSM in OSB for all the Service Type like WSDL,Messaging service(mfl,text,binary) , SOAP , ANY XML service????
    Is there any restriction in the service Type???
    What bout Adapters like JMS,FTP,File can we use OWSM in the adapters for authentication ??????????
    Thanks
    Phani

    you can attach OWSM policies to the "WSDL" and "Any SOAP" types of proxy and business services in Oracle Service Bus on the Policies page. See section "50.2.2 Attaching Oracle Web Services Manager Policies to Oracle Service Bus Services" at below link -
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e15866/owsm.htm#CHDBIJHD
    Regards,
    Anuj

  • XI used as middleware for Telecom related end to end integration

    How is XI used as middleware for Telecom relaed end to end Implementation.....please help me out with some concrete scenarios...Yes Im using SAP ERP & SAP BW alon with it...

    Hi,
    XI is an application integratoin engine and you have to use Netweaver Stack as a whole ( PI + Portal)for implemeting the telecom integartiopn scenarios.
    I'll point you to some practical scenario...suppose you want to integrate any BSS & OSS system with SAP ( ERP + CRM ) to offer an end to end telco service.
    You need to form an application server that resides outside XI and which handles all telco related request and puts them in form of web service calls to XI which then maps it to upstream systems whose front end can be CRM or Portal.
    Lets take up a scenario like Lead to Cash...typically this will involve SAP CRM to capture teh order process it thru SAP CRM and finally OSS calls will be required for Order Management & provisionng wherein XI(PI) will forward process specific web service calls to downstream OSS applications and keep the Billing systems in sysnc.
    you can also refer to following for more info
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0243748-acbb-2a10-0fa7-ba7a353ae668
    http://help.sap.com/saphelp_nw04s/helpdata/en/01/d9d43fb9490c65e10000000a114b1d/frameset.htm

  • Can I use a 4.6c backend system to integrate with DOE?

    Hi all,
    I need to know if I can use a backend system like 4.6c (R/3) to integrate it with DOE (Mobile 7.1)
    Is there any restrictions to use this backend version?
    Thanks
    Investiga

    Hi,
    Am not aware of any such limitations in using specific backend with DOE.
    In few words to mobilize enterprise solutions
    SAP R/3 will act as backend
    ---talks to DOE through remote enabled BAPI Wrappers ---
    NW mobile will be middleware that does the data orchestration
    Via messaging protocol talks to Receiver---
    Receivers could be devices with client framework /Partner server.
    As long as it is possible to have remote enabled BAPI wrappers for data modification in backend, mobile 7.1 can be used .
    Regards,
    Liji

  • Cons of using 2 middlewares

    Hi all,
    Can anyone help in this ?
    Let me explain my exact scenario:
    We have an SAP ECC Server and a third-party application connected via biztalk. Now we need to connect SAP ECC system with SAP Enterprise Portal via a SAP PI System.
    I need to know what would be the disadvantages of using 2 middlewares as mentioned above.
    Also any documents you have to support would be appreciated.
    Regards,
    Malita

    Hi
    I dependend on the client requirement , some client do not want to replace their existing systems ,
    Like i worked for a Sydney based client , they were having around 50 legacy systems , Tibco & XI was the two middleare boing used , here XI was getting the the data from Tibco , not by the legacy systems ..some  transformation logic were handled at Tibco , some at XI ....
    I do'nt think so there may be any disadvantage ..it may be just a landscape , as per client wants ....
    Regards
    Abhishek

  • How can i use connectionfactory efficiently?

    i am wondering about the connection factory Object in jms.it may be used by one or more client.So how can i use it efficiently, each client have a connection factory or all of clients use the only one. pls tell me the truth,and thanks a lot !

    Connection Factory is an administered Object and ideally should be shared between n number of users. (1<=n<=Total Number of users).
    There are some connection factory which are used for administrative purposes. Only the administrators of the JMS server can access them.
    JMS server can run on different protocols or more than one transport protocol (HTTP , TCP, HTTPS etc). So client can use the connection factory depending upon the protocol with which it can communicate.
    Also the connect URL in the connection factory can be different. So one connection factory may be responsible for connections on JMS server1 and other may be responsible for connections on JMS server2.
    Also check out your vendors documentation to know more about the power of Connection factories.

Maybe you are looking for