BlazeDS RPC request-response - Require ability to push server-response asynchronously

Hi BlazeDS developers,
I understand that BlazeDS has RPC req-response async client and server mechanism (whats the big deal html UI also has been aync?). It also has publish subcribe pattern with ability to have server side push to client.
My questions is if below ability present in BlazeDS in request-response RPC?? (Do not want to use pub-sub messaging.):
Asynchronous mechanism for a response "at server side" (not between client and server) i.e.
1. a request from flex client using RemoteObject on a POJO at server,
2. POJO at server processes the request asynchrnously, i.e. spawns a thread, and does some business logic calculation.
3. Has the response ready after few seconds.
4. prepares the response and pushes to client
Server business logic does not have to block client POJO object function call made from RemoteObject RPC from client. (consider RemoteObject use case)
Thanks in advance for your comments/answers
Nilesh

Hi Nilesh,
What you describe is not currently possible in BlazeDS with request/response RPC requests. While handling of remote object requests is async in the client code, it's not async between the client and the server.
A bug has been logged to get this functionality added and it is currently targeted for inclusion in the next release of BlazeDS.
Here is the link to the bug if you want to watch its progress.
https://bugs.adobe.com/jira/browse/BLZ-184
Hope that helps.
-Alex

Similar Messages

  • Using Request Response Bean Module in FILE Adapter

    Hi Experts,
    Can we use Request Response Bean Module in FILE Adapter in reverse way. That is can we configure thses adapter modules in Reciever file channel and call a sender file channel in it?
    My case is RFC to File synchronous case? How do we do this?
    Thanks & Regards,
    priyanka

    Can we use Request Response Bean Module in FILE Adapter in reverse way. That is can we configure thses adapter
    modules in Reciever file channel and call a sender file channel in it?
    My case is RFC to File synchronous case? How do we do this?
    The above is not possible....Bean works only for Sender channel and not for Receiver.....requirement not possible using even a BPM as FILE does not support SYNC communication in receiver end......max you can do is split the scenario into SYNC-ASYNC bridge.
    Regards,
    Abhishek.

  • Blocking Request/Response model

    Hi everyone !
    I'm starting to write a JMS application and I'm having some doubt about the request/response model enabled by the replyTo() method and CorrelationID field. As far is I know JMS is intended to let the client be free from the server's response by posting it's message on the queue and start doing some other work. But supposing the client needs a response from the server(a MDB) after the processing of the message I wonder how would him receive this response, assuming there is a second queue for posting the response messages. Simply using the MessageConsumer.receive() the client will be blocked, killing all the purpose of the model(even with timeout). So I wonder, should I create a second MDB just to handle the response queue ? This would left me with an RPC message producer, a MDB Message consumer (of the request message), and a MDB Message consumer (on the response queue). Is this a normal approach or is there something better ???

    Simply using the MessageConsumer.receive() the client will be blocked, killing all the purpose of the model(even with timeout).
    You have to send the message and wait for the response in two separate transactions. For example:
    // Start create and send transaction  
    ctx.getUserTransaction().begin();
    connection = connectionFactory.createQueueConnection();
    connection.start();
    session = connection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
    final Message request = // create message
    final Queue tempQueue = session.createTemporaryQueue();
    request.setJMSReplyTo(tempQueue);
    final QueueSender sender = session.createSender(destination);
    sender.send(request);
    ctx.getUserTransaction().commit();
    // End create and send transaction
    // Start receive transaction
    ctx.getUserTransaction().begin();
    final QueueReceiver receiver = session.createReceiver(tempQueue);
    final Message response = receiver.receive(TIMEOUT);
    ctx.getUserTransaction().commit();
    // End receive transaction
    // process response

  • Blocking Request/Response JMS model

    Hi everyone !
    I'm starting to write a JMS application and I'm having some doubt about the request/response model enabled by the replyTo() method and CorrelationID field. As far is I know JMS is intended to let the client be free from the server's response by posting it's message on the queue and start doing some other work. But supposing the client needs a response from the server(a MDB) after the processing of the message I wonder how would him receive this response, assuming there is a second queue for posting the response messages. Simply using the MessageConsumer.receive() the client will be blocked, killing all the purpose of the model(even with timeout). So I wonder, should I create a second MDB just to handle the response queue ? This would left me with an RPC message producer, a MDB Message consumer (of the request message), and a MDB Message consumer (on the response queue). Is this a normal approach or is there something better ?
    Thank you !

    Simply using the MessageConsumer.receive() the client will be blocked, killing all the purpose of the model(even with timeout).
    You have to send the message and wait for the response in two separate transactions. For example:
    // Start create and send transaction  
    ctx.getUserTransaction().begin();
    connection = connectionFactory.createQueueConnection();
    connection.start();
    session = connection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
    final Message request = // create message
    final Queue tempQueue = session.createTemporaryQueue();
    request.setJMSReplyTo(tempQueue);
    final QueueSender sender = session.createSender(destination);
    sender.send(request);
    ctx.getUserTransaction().commit();
    // End create and send transaction
    // Start receive transaction
    ctx.getUserTransaction().begin();
    final QueueReceiver receiver = session.createReceiver(tempQueue);
    final Message response = receiver.receive(TIMEOUT);
    ctx.getUserTransaction().commit();
    // End receive transaction
    // process response

  • Does any one implemented solution for httpservlet request/response object in IWSDLInterceptor implemented class?

    I am trying to handle Producer not available situation in which I am using Interceptor IWSDLInterceptor in WLP 10.3.4. I am able to retrieve exception using onWSDLException but from here if I have to forward my pageURL object I need httpservlet request and response. I tried my own filter class to have its own customize request and also tried it out all other Interceptor to see if any one can handle IOException. I did manage to throw my own Customize exception but  that also did not work out as Page does not have any backing file or any supportive Controller class.
    Does any one implemented solution for httpservlet request/response object in IWSDLInterceptor implemented class? or do we have any specific documentation in regards to this? As I am not able to find much martial on IWSDLInterceptor except Java API from Oracle and article defining Two way SSL handshake Producer.
    Any kind of help is appreciated.
    Thanks
    PT

    Thanks Emmanuel for your response but render behavior is not available for IWSDLRequestContext/IWDSLResponseContext object which IWSDLInterceptor uses for implementation.
    Let me put my question in little simpler manner. May be my approach to the problem is not proper.
    Problem : Handle Producer Not available (no application exists on server) on consumer side.
    So far tried approach : Producer is not running then I am able to handle that TransportException at IInitCookieInterceptor/IHandleEventInterceptor onFault behaviour but in the case of Producer not even exists Consumer try to get WSDL fetch operation and failed with FileNotFoundException.
    To handle this exception, I used IWSDLInterceptor which is available under IWSDLInterceptor.OnWSDLException (Oracle Fusion Middleware Java API for Oracle WebLogic Portal)
    I am able to catch the exception but problem arise when application needs to forward at specific page/render portlet for this situation. For that it required request/response object but IWSDLInterceptor does not give any kind of instances to redirect request as there is no direct access to HTTPServlet request/response object.
    I tried my custom request object to use there. I tried out custom filter object of IWSDLrequestContext. nothing works.
    One approach works is to put producer WSDL file at consumer level. But in that, you need to handle different producer files for different environment. Which I don't think its a good approach.
    eAny one Let me know if my approach to the problem/scenario is wrong. Or if I am missing out any other supporting interface which also required to handle this scenario. or I am using wrong interface for this scenario.
    Thanks for your help in advance.
    PT.

  • JMS Transport, Transactional, asynchronous request-response

    Hi again :)
    I have weblogic web service with jms transport and have chosen session bean implementation.
    I'm testing transactional processing now.
    Required feature is to put getting request from queue and processing it in web service in one transaction.
    During tests I have noticed that:
    When I throw RuntimeException from my web service method the message doesn't come back to the queue.
    When I try to sessionContext.setRollbackOnly(); I get an error
    javax.ejb.EJBException: EJB Exception: : java.lang.IllegalStateException: [EJB:010158]Illegal attempt to call EJBContext.setRollbackOnly() from an EJB that was not participating in a transaction.
    When I deploy web service I get the following warning:
    <Warning> <EJB> <> <AdminServer> <[STANDBY] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1238752023176> <BEA-010212> <The EJB 'EventNotifierServiceEJB(Application: portal, EJBComponent: EventNotifierService-1.0-SNAPSHOT.jar)' contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: local[publish(package.PackageType)] >
    And putting @TransactionAttribute(TransactionAttributeType.MANDATORY) doesn't change this.
    So It seems that transactions doesn't work by default.
    I turned on XA in my own jms connection factory used by web service but this didn't help.
    Looking in weblogic documentation I have found the following sentences:
    In (http://e-docs.bea.com/wls/docs103/webserv_adv_rpc/jmstransport.html)
    "If you have specified that the Web Service you invoke using JMS transport also runs within the context of a transaction (in other words, the JWS file includes the @weblogic.jws.Transactional annotation), you must use asynchronous request-response when invoking the service. If you do not, a deadlock will occur and the invocation will fail."
    In (http://e-docs.bea.com/wls/docs103/webserv_adv_rpc/asynch.html)
    "The asynchronous request-response feature works only with HTTP; you cannot use it with the HTTPS or JMS transport."
    For me these two sentences are in conflict.
    Currently I'm trying to use just transactional annotation without asynchronous request-response but the risk of deadlocks doesn't sound good for me.
    BTW I have Oneway annotation in my web service method, I'm not sure if this changes something.
    I'll be grateful for any help in resolving this problem.
    Edited by: user10930859 on Apr 3, 2009 3:49 AM

    Hi Karthik-
    You can link the corelation-id..
    Make you third-party application to receive Message-id from JMSRequestQueue and send this message id as correlation-id to JMSResponseQueue. I guess it would work we have tried this as POC.
    Regards,
    Ramesh

  • HTTP Channel request-response

    Hi,
    I have configured HTTP channel for synchronous request response (syncresponse=true in additional headers). I have to send an outbound Invoice to TP via http, get the response back and process it as an email. I have the outbound and inbound agreements set and it works fine. The issue is that I am unable to create a correlation between the request and response (invoice request corresponds to which response). Is there any setting to achieve this?
    Thanks in advance.

    This looks to be known issue. Similar bug was reported for
    Bug 17304428 - hcfpmlr: sync 271 response does not set reference to outbound 270
    There could be one possible solution of using correlation xpaths defined into the document definition, however, this being a sync transfer, it might happen that the outbound msg's xpaths are not persisted into the DB and the response msg xpath for correlation wouldn't find this.
    Hence, for the correlation of sync request and response to work by default the bug should get fixed. Please indicate the same in the bug if fix is required.

  • Request response as xml

    I have been given an xsd file and asked to create a web service whose request/response is based on this provided xsd.
    and the requirement is to have request/response of web service in xml doc. This complete XML cannot be a sent as string.
    So, please let me know how to acheive this. i.e how to inject the required xml structure in the web service response.
    Edited by: jumst on Nov 2, 2009 2:58 AM

    jumst wrote:
    how would i pass on the request on to web service -From jaxb classes i can send the resquest in an xml doc to the web service? or how? and likewise the result ftom web service to jaxb classes?Answer of your question is XML Marshaling and Unmarshalling will be used for the above purpose.
    The Java Architecture for XML Binding (JAXB) provides a fast and convenient way to bind between XML schemas and Java representations, making it easy for Java developers to incorporate XML data and processing functions in Java applications. As part of this process, JAXB provides methods for unmarshalling XML instance documents into Java content trees, and then marshalling Java content trees back into XML instance documents. JAXB also provides a way to generate XML schema from Java objects.
    -- From [Java™ EE 5 Tutorial - Binding between XML Schema and Java Classes|http://java.sun.com/javaee/5/docs/tutorial/doc/bnazf.html]
    Other Ref:
    [JAXB Architecture|http://java.sun.com/javaee/5/docs/tutorial/doc/bnazg.html]
    [NetBeans.org - Binding WSDL to Java with JAXB|http://www.netbeans.org/kb/docs/websvc/jaxb.html]
    JAX-WS Client App                                                    JAX_WS Server App
                                                                         JAS-WS Web Service
    Consume JAX-WS Web            <--------------------------            Deployed here
    Service here using WSDL
    of the deployed Web
    Service. This is JAX-WS
    Client with all proxy and
    schema(JAXB) classes.       
    Client sends request to                                             
    server with JAXB                                                         
    classes. At the end JAX-WS                                          
    Client proxy classes will                                           
    marshal request to XML          
    and send to server.           -------------------------->            On request arrival JAX-WS Server
                                                                         classes will unmarshal incoming
                                                                         XML Request to JAXB Classes and
                                                                         invoke web service and web method.
                                                                         As web service response server
                                                                         prepares response using JAXB
                                                                         classes,and sends back to client.
                                                                         JAX-WS Web Service will marshal
                                                                         the response to XML and sends to
    Client receives XML response   <--------------------------           client.
    and JAX-WS client proxy
    classes will unmarshal the
    response to JAXB classes.
    Client app. will use these
    as response.Developing web service with JAX-WS, Server and client will do marshaling and unmarshaling of SOAP XML requests and response for you.
    Just go through tutorial given in my previous and current post. Use any good IDE to develop, I prefer NetBeans first and then Eclipse.
    Below two links will help you to build and consume a web service using NetBenas IDE.
    [Getting Started with JAX-WS Web Services|http://www.netbeans.org/kb/docs/websvc/jax-ws.html]
    [Advanced Web Service Interoperability|http://www.netbeans.org/kb/docs/websvc/wsit.html]
    Disclaimer: I am not an professional technical author so please forgive my English and Grammar.+ *:-))*
    *Cheers,
    typurohit* (Tejas Purohit)

  • I can not create a JCA Service (Request / Response)

    Hi
    I need to generate a JCA Service (Request / Response) to call a MBF that exists in JDE.
    I install Oracle Applications Adapters 11.1.1.3.0 in Oracle SOA Suite 11.1.1.4.0 and follow the Installation Guide and User Guide for applications adapters.
    I can view the Business Functions that I packaged with Genjava but when I try to Generate a JCA Service (Request / Response) does not generate the expected files.
    The machine on which I have installed the adapters is different from the machine where it was installed JDE
    The first warning message appears when i connect to the target:
    ADVERTENCIA: Unable to successfully register object with name 'jde:instanceName=*unknown.syworksoa*,metricName=jdenet_connection_manager,metricType=runtime.
    javax.management.RuntimeMBeanException: RuntimeException thrown in preRegister method
    Note: sywork-soa is the machine on which I have installed the adapters.
    The second message appears when i try to generate the JCA Service from a MFB in application explorer.
    java.lang.NullPointerException
    at java.io.StringReader.<init>(StringReader.java:33)
    at com.iwaysoftware.af.container.tools.wsdl.oracle.WSDLGenerator.getType
    Definition(WSDLGenerator.java:546)
    at com.iwaysoftware.af.container.tools.wsdl.oracle.WSDLGenerator.addRequ
    estResponseElements(WSDLGenerator.java:220)
    at com.iwaysoftware.af.container.tools.wsdl.oracle.WSDLGenerator.createW
    SDL(WSDLGenerator.java:275)
    at com.iwaysoftware.af.container.tools.wsdl.oracle.WSDLGenerator.getWSDL
    Document(WSDLGenerator.java:199)
    at com.iwaysoftware.af.container.tools.wsdl.oracle.IWayWSILBrowser.gener
    ateIWayWSDL(IWayWSILBrowser.java:130)
    at com.iwaysoftware.af.container.OracleAEManager.generateWSDL(OracleAEMa
    nager.java:83)
    at com.iwaysoftware.af.container.OracleAEManager.generateWSDL(OracleAEMa
    nager.java:64)
    at com.iwaysoftware.af.container.ae.AEComponentMessage.buildEXPORTWSDL(A
    EComponentMessage.java:182)
    at com.iwaysoftware.af.container.ae.AEComponentMessage.build(AEComponent
    Message.java:86)
    at com.iwaysoftware.af.container.ae.AEComponentMessage.<init>(AEComponen
    tMessage.java:58)
    at com.iwaysoftware.af.container.AEManager.dispatch(AEManager.java:134)
    at com.iwaysoftware.af.container.IWAFContainer.dispatchAERequest(IWAFCon
    tainer.java:809)
    at com.ibi.afjca.cci.IWAFInteraction.execIWAE(IWAFInteraction.java:279)
    at com.ibi.afjca.cci.IWAFInteraction.exec(IWAFInteraction.java:164)
    at com.ibi.afjca.cci.IWAFInteraction.execute(IWAFInteraction.java:98)
    at com.iwaysoftware.iwae.common.JCATransport.execute(JCATransport.java:1
    66)
    at com.iwaysoftware.iwae.common.AdapterClient.generateWSDL(AdapterClient
    .java:437)
    at com.ibi.bse.gui.ExportWSDLDialog.saveWSDL(ExportWSDLDialog.java:502)
    at com.ibi.bse.gui.ExportWSDLDialog.okButtonActionPerformed(ExportWSDLDi
    alog.java:416)
    at com.ibi.bse.gui.ExportWSDLDialog.access$000(ExportWSDLDialog.java:29)
    at com.ibi.bse.gui.ExportWSDLDialog$2.actionPerformed(ExportWSDLDialog.j
    ava:387)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:19
    95)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.jav
    a:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:387)
    any help you can give me I am very grateful
    Carlos Andres Gonzalez.

    I have tried to create an account via ePrintCenter and it seems that the published application has several flaws in interpreting the provided input.
    1) In the Filed for last Name I enter my last name, which consist of only Alph Characters. The form however thinks that there is some sort of special character and rejects my Input.
    2) E-Mail address. is not identical; OK, so I do a quick OCR on the E-Mail and guess what they are identical. Again the form Fails to recognize this.
    3) Enter a password (2 Fields) and a third is displayed which is marked as "*required" but is not labeled as to what the required info could possibly be. Or is it a 3 password confirmation box, who knows.
    All I know is that a simple registration is a major pain with this HP site.
    Any Help as to how to alleviate this would of course be greatly appreciated.

  • Client Request/Response Context

    I'm new to Weblogic Integration and have a question regarding client response action.
    I've seen an example of a quick workflow where the webpage calls the process
    and gets a response back. In essence the workflow is synchronous.
    Now I want to include a long running process, using Worklists and involving many
    different actors. During the worklist task acceptance I want to get some feedback
    from the user. My questions is what context does the Client Request/Response
    execute in. The example in the docs shows the worklist application. Is this
    absolutely required? How about a client response to a portlet.
    Thanks,
    noah

    One of the Certification mandates logging the remote client IP AND PORT for each log-event.
    I cannot pass these from GUI client because the user may
    be on a private network. This calls for capturing the IP and PORT at GUI server end.
    Capturing remote IP is simple as SOAP library exposes the request object from which the IP can be obtained.
    The dificult part is to capture port. I addressed this problem by introducing a
    new Tomcat Service Engine, CSMServiceEngine. This engine has access to the underneath socket using which
    i obtain the client port and pass it across to SOAP layer as a x-csm-client-port HTTP theader.
    I have a custom SOAP provider, CSMSoapSPI, which obtains the port using the above x-header and the
    client IP from its request object. THese are done only for 'login' task and hence i published a new
    SOAP service: LoginCommand.
    But bcoz of upgradation of tomcat from 4.0 to 5.0.28 the invoke method in the StandardEngine(which was initially extended by class i posted) is made final with JDK 1.5 and i can no longer use the StandardEngine. Hence i tried with the Valve class.But with no luck.
    Hope this answers ur question

  • Asynchronous request/response

    Could you picture/explain about Asynchronous request/response(synchronous-to-asynchronous bridging) ?

    You should look at "Is Response Required" feature [url http://e-docs.bea.com/alsb/docs26/userguide/transport.html#wp1082058 ]http://e-docs.bea.com/alsb/docs26/userguide/transport.html#wp1082058 

  • Implementing synchronous request response behaviour with JMS

    i have a requirement wherein i send a list of tasks to be executed (this has to be executed in parallel so taking the JMS route) and should wait for the results of al these tasks. How could i do this with JMS? I need JMS since the originally these tasks was being done using threading and since in j2ee it is not advisable to spawn threads we are planning to use JMS so that we can have concurrency that is done by the container. can someone please tell how can i simulate this synchronous request-response paradigm using JMS?

    It may not be great idea however possibility of State full session bean can be explored.
    State full session bean will send all 100 tasks to JMS queue without waiting for the result. There will be another JMS program (Say ResponseCollector) which will listen on queue for all responses. Once ResponseCollector collects all the responses, it will trigger the state full session bean again.
    You can use some properties in JMS header to discriminate between the request and response on same queue and apply the message selector.

  • Possible to get runtime info (Http request, response) from a WD4A Appl.?

    Hey,
    In a BSP / JSP application, it is possible to retrieve and set the runtime data (http request and response). For Example:
    response.setContentType("application/x-suvaagent;charset=iso-8859-1");
    response.setHeader("Cache-Control", "public");
    response.getWriter().print("<Request>");
    response.getWriter().print("</Request>");
    Is it possible to do this in a WebDynpro (ABAP) Application?
    The requirement is to construct a file using http response method. This file contains parameters like business data etc. The file type is already registered as a MIME type which is associated with a standalone program.
    When sending the http response, the file will be filled out with needed data and the associated program will be called using the data in the file.
    I haven't found out how to do this in web dynpro application, since we use WD4A in our project.
    Thanks and Regards,
    Liang

    In Web Dynpro you do not have direct access to the Request or Response object. This is part of the design of the abstracted rendering and makes things like the SmartClient and the AJAX based Delta Rendering possible.
    In Web Dynpro you should use the FileDownload UI element or the CL_WD_RUNTIME_SERVICES=>ATTACH_FILE_TO_RESPONSE
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/a8d95673b12fe2e10000000a42189d/frameset.htm
    If you want more control over the response object for a download then I might suggest that you can create a cached response object, place it into the ICM cache and generate a unique URL for it.  You can then fire a navigation plug or a LinkToURL to go to that cached response object.

  • RPC request to the Microsoft Exchange Information Store service for log truncation

    Hello all
    Running Exchange 2013 CU3 on Windows 2008R2 sp1 in a two node DAG. We are seeing the bellow warning when running a backup. How to resolve this?
    RPC request to the Microsoft Exchange Information Store service for log truncation failed for database CoramB3\Servername. Error: Failed to notify source server 'servername.coram.com' about the local truncation point. Hresult: 0xc8000713. Error: Unable to find
    the file. Also log files are not being flushed
    Bulls on Parade

    Hello,
    Please verify backup software.
    Please use vssadmin list writers command to check the status of the VSS admin. If it is in a
    failed state, please restart the Exchange replication service and then check the status again.
    Please use Get-MailboxDatabaseCopyStatus cmdlet to view health and status information about mailbox database copies.
    Please use Get-DatabaseAvailabilityGroupNetwork “DAG Name” | fl cmdlet to view configuration and state information for a DAG network.
    Please use Get-DatabaseAvailabilityGroupNetwork DAG Name\MAPINetwork | fl cmdlet and Get-DatabaseAvailabilityGroupNetwork DAG Name\ReplicationNetwork | fl cmdlet to
    check configuration information for MAPI network and Replication Network.
    If the above configuration information is ok, please check if there are other related errors in application log.
    Cara Chen
    TechNet Community Support

  • Sender adapter request response bean not working for calling a webservice

    Hi All,
    In PI 7.31, My scenario :  SOAP sender Asynch-> PI -> HTTP Receiver Sync ->take response to call another webservice  (SOAP)
    I have configured request response bean and response one way bean in the sender adapter to make this work.
    Attached the screenshot of the module config in  the sender soap adapter. The final response from HTTP has to be used to call another webservice (not sender webservice)
    This giving an error "couldn't retrieve binding values for sender to receiver etc etc ----------"
    Has anyone configured response one way bean to call a webservice to submit? If so, please share the configuration details. And let me know if I am doing anything wrong
    thx
    mike

    Hi Michael,
    I think the adapter type is for the receiver channel looking at the documentation SAP Library - SAP Exchange Infrastructure
    Have you checked your receiver channel doesn't belong to a party?
    I havent tried this bridge with the http_aae but looks to be problematic according with Michal comment here http://scn.sap.com/community/pi-and-soa-middleware/blog/2014/01/28/generic-pi-async-sync-bridge-configuration-for-any-adapters#comment-454463
    Regards.

Maybe you are looking for

  • Dynamic HtmlDataTable issue.

    I am populating the HtmlDataTable dynamically through an ArrayList of String[] objects(rowData) where rowData is populated from database. Its working fine. Now I need to create a Link inside the datatable where the target and text of the link is also

  • Results mismatch between query and web item

    Hi SDN, I have a query which produces 12 fiscal quarters for the last three years and the query is working when I run it by itself. The query is based upon a multiprovider. I use this query as a DP for a checkbox web item. When I run the web-app, the

  • Does the Transaction FERD has the capability to access  archived data?

    Hi All, Does the Transaction FERD has the capability to access  archived data? Regards Prathima

  • PSE compatability with Snow Leopard?

    After using PSE v6.0 for years under Mac Leopard, I upgraded to Snow Leopard and it is no longer stable....crashes mostly when saving a file.  I tried reinstalling PSE v6.0 but nothing changed.  I've looked for upgrades to both Snow Leopard and PSE v

  • Effect of a cancelling a 'Technically incomplete' line item of a S. O.

    Hi, Can somebody guide me what is the effect in GTS of cancelling versus deleting a 'Technically incomplete' line item of a S. O.in ECC ?  Since this line item is appearing as Technically incomplete in GTS, I want to either cancell or delete this lin