Web Service « Transaction « Java Database Q&A





1. Transaction options over Web Service calls    stackoverflow.com

Does anyone have any insight into transaction options available over web-service calls? 1.) There are two applications that we have that need transactional communication between them. 2.) App1 calls a web service on ...

2. Transactions    coderanch.com

I have been going through the WS Choreography spec from W3C and the WS-Transaction spec from IBM . I was just wondering if they are trying to address the same problem . If so ,which of these will be the Industry standard.I hope someone could clarify this for me. [ October 01, 2003: Message edited by: Nirvan Sagar ]

3. security and transaction    coderanch.com

4. AXIS Security Transaction (Highest Protection)    coderanch.com

I want to implement the following security transaction using AXIS Is it possible? If it is not Why ? 1.Clients creates a messages that is a parameter of the webservice call. 2.Client encrypts payload of message using server public key . 3.Clients add to message digital signature using X.509 managed certificate. (It is should be performed automatically to all outgoing clients ...

5. Transaction in WebServices    coderanch.com

6. Transaction in WebService    coderanch.com

7. XA transactions and JCA 1.5    coderanch.com

Hi, I am new in the area of connectivity and integration and I have a question regarding supporting XA transactions. I have a EIS that supports XA transactions. Now, I want to integrate this EIS into a J2EE Application Server. Currently, there is no Resource Adapter (RA) implemented for this EIS. Is it mandatory to supply a RA for this EIS ...

9. [query on RESTful WS] distributed transactions    coderanch.com

Congrats to Leonard R and Sam R on the new book. An excellent subject... Looking at the ToC, I'm intrigued by Chapter 10, which compares REST to the WS-* technology stack (Security, Reliable Messaging, etc). I'm especially interested in distributed transactions over the web. I have not yet used WS-Transactions but have the following newbie questions: (a) can a ROA solution ...





10. Can I control transactions using JBI?    coderanch.com

Using JBI to compose services will often require the sharing of a transaction context between JBI engines/bindings. Such transactions can facilitate reliable operation of composed services. The unit of work in the NMR is a Message Exchange. This is also the unit of work when a transaction is being used. The NMR is considered to be transaction aware. If the NMR ...

12. jdbc and web service consumer in single transaction?    coderanch.com

Hello. I am looking at uploading subsets of a single data set to a target system sequentially via JDBC and web service. I know i can wrap all jdbc calls into a single transaction. However, I just thought about the second upload, the web service call, and if an exception is thrown on that call, the jdbc data subset has already ...

13. Roolback and transaction boundary across multiple apps in Web service    coderanch.com

How to best demarcrate transaction boundary across multiple applications that use web services? For example, from a client application (e.g. App1, which is the client) make a call to another application (e.g. App2, which has web services method). Will it be possible to rollback in App2, if something falis down the stream by making the entire call (App 1 to App ...

14. web services and transactions    coderanch.com

Hello, Question 1: I have an EJB web service. If the web service is invoked from another EJB which is in the middle of a transaction, and the web service has the transaction attribute set to: TransactionAttributeType.REQUIRED, will a new transaction be created in the web service, or will the caller's transaction be used? Question 2: I have a servlet based ...

16. Parallel Web-Service Transactions    coderanch.com





18. Web Service and Transaction    coderanch.com

Hello, I have a UI (basically a mobile client), which has a Button which when I clicked executes a process in the background. THis background process basically uploads data to the server via a webservice which is loaded into a DB. In the foreground after I click the button it shows a new screen with a progress bar and a cancel ...

19. Webservice Transactions    coderanch.com

20. Transaction scope    coderanch.com

How do you design a consumer which calls 2 web services from different sources and then combine results from them to give a final result. The question is that the consumer is responsible for transaction scope. So if one of the service call fails then the other service call should be reverted. Any help will be appreciated

21. Web Service for standalone client with transactional support    forums.oracle.com

Hello, I have an application that is currently running on JBoss server. If it is connected to the server it is online and the user can use the application and if it is not connected to the server, the user cannot use the application. Now the requirement is to separate these two (i.e. client and server) that is to say if ...