Weblogic JMS IllegalStateException - "Consumer has listener" - when calling .receive() on a consumer

When executing a request/reply, calling .receive() on the consumer
          causes this exception. The detailed error message is "Consumer has
          listener".
          Anyone seen this before?
          Sample code of client:
          tempdestination =
          JMSConnectionHelper.getProducerQueueSession().createTemporaryQueue();
          session =
          JMSConnectionHelper.getConsumerQueueSession();
          qr =
          ((QueueSession)session).createReceiver((Queue)tempdestination);
          qr.setMessageListener(this);
          // set the message properties
          message.setJMSReplyTo(tempdestination);
          // register a consumer
          qr.setMessageListener(this);
          // now send the message - helper class sends the message
          to an MDB - that then composes a new message, and sends it to the
          reply destination above
          MessageManager.send(message);
          // wait for the incoming reply
          returnmessage = qr.receive(); // causes exception!!!!
          

User error. This is expected and documented behavior. See section 4.4.6 of
          the JMS specification regarding the concurrent use of a session from
          multiple threads of execution.
          _sjz.
          "Humphrey" <[email protected]> wrote in message
          news:[email protected]..
          > When executing a request/reply, calling .receive() on the consumer
          > causes this exception. The detailed error message is "Consumer has
          > listener".
          > Anyone seen this before?
          >
          > Sample code of client:
          > tempdestination =
          > JMSConnectionHelper.getProducerQueueSession().createTemporaryQueue();
          > session =
          > JMSConnectionHelper.getConsumerQueueSession();
          > qr =
          > ((QueueSession)session).createReceiver((Queue)tempdestination);
          > qr.setMessageListener(this);
          >
          > // set the message properties
          > message.setJMSReplyTo(tempdestination);
          >
          > // register a consumer
          > qr.setMessageListener(this);
          >
          > // now send the message - helper class sends the message
          > to an MDB - that then composes a new message, and sends it to the
          > reply destination above
          > MessageManager.send(message);
          >
          > // wait for the incoming reply
          > returnmessage = qr.receive(); // causes exception!!!!
          

Similar Messages

  • IllegalStateException: getOutputStream() has already been called

    Hi guys,
    I am writing JSP to retrieve data from database and export to the user as csv or zip file. It has to be binary. I would like to a download dialog to show up and allow users to choose where to save the exported file.
    Funcitonally, it works fine althrough I get an error page saying nothing to display. But it always complains that IllegalStateException: getOutputStream() has already been called for this session. I have done much research and testing, but....in vain.
    Hope somebody could help me with this. so frustrated that I am about to explode.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="application/octet-stream">
            <title>Load Page</title>
        </head>
        <body >
            <% OutputStream outRes = response.getOutputStream( ); %><%@page contentType="application/octet-stream"%><%
            %><%@page pageEncoding="UTF-8" import="java.sql.*,java.io.*,java.util.*,java.util.zip.*,java.math.BigDecimal;"%><%
            %><%
            try {
                Class.forName(ResourceBundle.getBundle("map").getString("driver"));
            } catch (ClassNotFoundException ex) {
               //ex.printStackTrace();
               return;
            String EXPORT_DIR = ResourceBundle.getBundle("map").getString("SUBMITTAL_EXPORT_DIR");
            String EXPORT_NAME = ResourceBundle.getBundle("map").getString("SUBMITTAL_NAME");
            String EXPORT_ZIP_NAME = ResourceBundle.getBundle("map").getString("SUBMITTAL_ZIP_NAME"); 
            String sqlQuery = "SELECT EMP_ID, EMP_NAME FROM EMP";
            Connection conn = null;
            Statement stmt = null;
            ResultSet rs = null;
            OutputStream expStream = null;
            boolean success = false;
            try {
                //out.println("<p>Connecting to the source database ...");
                // establish database connection
                conn = DriverManager.getConnection(
                        ResourceBundle.getBundle("map").getString("sqlurl"),
                        ResourceBundle.getBundle("map").getString("ORACLE_DBUSER"),
                        ResourceBundle.getBundle("map").getString("ORACLE_DBPASSWORD") );
                stmt = conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
                rs = stmt.executeQuery(sqlQuery);
                //out.println("Done</p>");
                // open a file to write
                File exportFile = new File(EXPORT_DIR + File.separatorChar + EXPORT_NAME);
                if (exportFile.exists())  exportFile.delete();
                exportFile.createNewFile();
                expStream = new BufferedOutputStream(new FileOutputStream(exportFile));
                // iterate all records to save them to the file
                //out.print("<p>Exporting the table data ...");
                while(rs.next()) {
                    String recordString = "";
                    ResultSetMetaData metaData = rs.getMetaData() ;
                    int colCount = metaData.getColumnCount();
                    for(int i=1; i<=colCount; i++) {
                        int colType = metaData.getColumnType(i);
                        switch(colType) {
                            case Types.CHAR: {
                                String sValue = rs.getString(i);
                                if (rs.wasNull())
                                    recordString += ("'',");
                                else
                                    recordString += ("'"+ sValue + "',");
                                break;
                            case Types.VARCHAR: {
                                String sValue = rs.getString(i);
                                if (rs.wasNull())
                                    recordString += ("'',");
                                else
                                    recordString += ("'"+ sValue + "',");
                                break;
                            case Types.FLOAT: {
                                float fValue = rs.getFloat(i);
                                if (rs.wasNull())
                                    recordString += (",");
                                else
                                    recordString += (fValue + ",");
                                break;
                            case Types.DOUBLE: {
                                double dbValue = rs.getDouble(i);
                                if (rs.wasNull())
                                    recordString += (",");
                                else
                                    recordString += (dbValue + ",");
                                break;
                            case Types.INTEGER: {
                                int iValue = rs.getInt(i);
                                if (rs.wasNull())
                                    recordString += (",");
                                else
                                    recordString += (iValue + ",");
                                break;
                            case Types.NUMERIC: {
                                BigDecimal bdValue = rs.getBigDecimal(i);
                                if (rs.wasNull())
                                    recordString += (",");
                                else
                                    recordString += (bdValue + ",");
                                break;
                            default:
                                out.println("<p><font color=#ff0000> Unidentified Column Type "
                                        + metaData.getColumnTypeName(i) + "</font></p>"); */
                                success = false;
                                return;
                    recordString = recordString.substring(0, recordString.length()-1);
                    expStream.write(recordString.getBytes());
                    expStream.write((new String("\n")).getBytes());
                expStream.flush();
                //out.println("Done</p>");
                //out.println("<p>Data have been exported to " + filepath + "</p>");
                success = true;
            } catch (SQLException ex) {
               //out.println(ex.getStackTrace());
            } catch (IOException ex) {
               //out.println(ex.getStackTrace());
            } finally {
                if (expStream != null) {
                    try {
                        expStream.close();
                    } catch (IOException ex) {
                       // out.println(ex.getStackTrace());
                if (rs != null) {
                    try {
                        rs.close();
                    } catch(SQLException ex) {
                        //out.println(ex.getStackTrace());
                if (stmt != null) {
                    try {
                        stmt.close();
                    } catch(SQLException ex) {
                       // out.println(ex.getStackTrace());
                if(conn != null) {
                    try {
                        conn.close();
                    } catch(SQLException ex) {
                       // out.println(ex.getStackTrace());
            if (!success) return;
             * compress the exported CSV file if necessary
            int DATA_BLOCK_SIZE = 1024;
            if (request.getParameter("zip")!=null && request.getParameter("zip").equalsIgnoreCase("true")) {
                success = false;
                BufferedInputStream sourceStream = null;
                ZipOutputStream targetStream = null;
                try {
                    File zipFile = new File(EXPORT_DIR + File.separatorChar + EXPORT_ZIP_NAME);
                    if (zipFile.exists())  zipFile.delete();
                    zipFile.createNewFile();
                    FileOutputStream fos = new FileOutputStream ( zipFile );
                    targetStream = new ZipOutputStream ( fos );
                    targetStream.setMethod ( ZipOutputStream.DEFLATED );
                    targetStream.setLevel ( 9 );
                     * Now that the target zip output stream is created, open the source data file.
                    FileInputStream fis = new FileInputStream ( EXPORT_DIR + File.separatorChar + EXPORT_NAME );
                    sourceStream = new BufferedInputStream ( fis );
                    /* Need to create a zip entry for each data file that is read. */
                    ZipEntry theEntry = new ZipEntry ( EXPORT_DIR + File.separatorChar + EXPORT_NAME );
                     * Before writing information to the zip output stream, put the zip entry object
                    targetStream.putNextEntry ( theEntry );
                    /* Add comment to zip archive. */
                    //targetStream.setComment( "comment" );
                    /* Read the source file and write the data. */
                    byte[] buf = new byte[DATA_BLOCK_SIZE];
                    int len;
                    while ( ( len = sourceStream.read ( buf, 0, DATA_BLOCK_SIZE ) ) >= 0 ) {
                        targetStream.write ( buf, 0, len );
                     * The ZipEntry object is updated with the compressed file size,
                     * uncompressed file size and other file related information when closed.
                    targetStream.closeEntry ();
                    targetStream.flush ();
                    success = true;
                } catch ( FileNotFoundException e ) {
                    //e.printStackTrace ();
                } catch ( IOException e ) {
                    //e.printStackTrace ();
                } finally {
                    try {
                        if (sourceStream != null)
                            sourceStream.close ();
                        if (targetStream != null)
                            targetStream.close ();
                    } catch(IOException ex) {
                        //ex.printStackTrace();
                if (!success) return;
             * prompt the user to download the file
            //response.setContentType("text/plain");
            //response.setContentType( "application/octet-stream" );
            InputStream inStream = null;
            //OutputStream outRes = null;
            try {
                if (request.getParameter("zip")!=null && request.getParameter("zip").equalsIgnoreCase("true")) {
                    response.setHeader("Content-Disposition", "attachment;filename=" + EXPORT_ZIP_NAME);
                    inStream = new BufferedInputStream(new FileInputStream(EXPORT_DIR + File.separatorChar + EXPORT_ZIP_NAME));
                else {
                    response.setHeader("Content-Disposition", "attachment;filename=" + EXPORT_NAME);
                    inStream = new BufferedInputStream(new FileInputStream(EXPORT_DIR + File.separatorChar + EXPORT_NAME));
                out.clearBuffer();
                //outRes = response.getOutputStream(  );
                byte[] buf = new byte[4 * DATA_BLOCK_SIZE];  // 4K buffer
                int bytesRead;
                while ((bytesRead = inStream.read(buf)) != -1) {
                    outRes.write(buf, 0, bytesRead);
                outRes.flush();
                int byteBuf;
                while ( (byteBuf = inStream.read()) != -1 ) {
                    out.write(byteBuf);
                out.flush();
            } catch (IOException ex) {
                //ex.printStackTrace();
            finally {
                try {
                    if (inStream != null)
                        inStream.close();
                    if (outRes != null)
                        outRes.close();
                } catch(IOException ex) {
                    //ex.printStackTrace();
          %>
        </body>
    </html>

    So I went to the API: http://java.sun.com/j2ee/1.4/docs/api/
    Looked up ServletResponse, then looked for the getOutputStream() method. It says:
    "Throws:
    IllegalStateException - if the getWriter method has been called on this response"
    You can call only one of the getWriter or getOutputStream methods, not both. You are calling both. When you use a JSP, a variable called 'out' is generated (a PrintWriter) from the the Writer you get when response.getWriter() is called. This is done before your code gets executed as one of the functions that occur when a JSP is translated to a Servlet. You then write to that out variable when you print the HTML in the JSP code.
    This is best done in a Servlet, not a JSP, since there is no display and you require control over the servlet response.

  • Screen is black when call received

    Hi, Recently my xperia Z1 Compact has just recently started doing this: when I receive a call the screen is blank, so there's nothing I can do to answer the call.  If I press the side button to switch on the screen, it sometimes terminates the call, other times it shows me the screen so I can swipe-answer it.  Maybe this is some setting I have inadvertently touched?  How do I stop it doing this?

    1st thing to try is  app preferences reset - Settings then tap the 3 dots then reset app preferences then reboot and test, note this will revert all settings back to factory like ringtone etc
    If the above fails then try the below
    Performing a system repair using PC Companion will often fix issues - This will factory reset your phone and erase all data so best to backup before you begin
    Switch off your phone and unplug from Pc (Hold volume up and power for around 10 seconds)
    Start PC Companion and select Support zone then Update my phone/tablet then in Blue Repair my phone/tablet and follow the on screen instructions - When prompted connect your phone still switched off holding volume down or back button - This should start the repair or reformat process
    If you are using Windows 8/8.1 or a 64bit operating system then adjust the settings for PC Companion and run in compatibility mode and chose Windows 7 or XP

  • TS3367 Since updating to the new operating system I have had some issues with FaceTime.  When calling my Dad through FaceTime I have gotten someone else using my Dad's email.  This has happened on at least 4 occasions.  Has anybody else had this problem?

    Has anyone had an issue contacting someone through FaceTime?  Sometimes when I try to call my Dad I get a different party ( someone I don' t know).  This has happened when calling fro IPad (3) And IPhone 5s.

    In the terminal I go to /volumes/some_folder/test and I type "chmod 4711 test" so that the C++ program will be run as the admin account I'm logged in with. This admin account has privileges to create folders in /volumes/some_folder/test.
    I vaguely recall something about this - isn't it related to the execution of setuid scripts?
    There's a whole discussion on the security implications of doing this. It's generally not considered safe.
    It might be worth reading http://httpd.apache.org/docs/2.0/suexec.html for details of how to implement setuid within Apache.

  • GetOutputStream() has already been called for this response

    I have a problem with my servlet,
    i compiled my code,it works normally but there is an error occured when it works.
    The error is :
    java.lang.IllegalStateException: getOutputStream() has already been called for this response
    *     at org.apache.catalina.connector.Response.getWriter(Response.java:607)*
    *     at org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:196)*
    *     at org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:125)*
    *     at org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:118)*
    *     at org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:179)*
    *     at org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:116)*
    *     at org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:76)*
    *     at org.apache.jsp.KaptchaExample_jsp._jspService(KaptchaExample_jsp.java:209)*
    *     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    *     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)*
    *     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)*
    *     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    *     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)*
    *     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)*
    *     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)*
    *     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)*
    *     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)*
    *     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)*
    *     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)*
    *     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)*
    *     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:874)*
    *     at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)*
    *     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)*
    *     at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)*
    *     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)*
    *     at java.lang.Thread.run(Thread.java:534)*
    here is my code :
    Iterator iter = ImageIO.getImageWritersByFormatName(imageFormat);
    *          if( iter.hasNext() ) {*
    *          ImageWriter writer = (ImageWriter)iter.next();*
    *          ImageWriteParam iwp = writer.getDefaultWriteParam();*
    *          if ( imageFormat.equalsIgnoreCase("jpg") || imageFormat.equalsIgnoreCase("jpeg") ) {*
    *          iwp.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);*
    *          iwp.setCompressionQuality(imageQuality);*
    *          //writer.setOutput(ImageIO.createImageOutputStream(response.getWriter()));*
    *          IIOImage imageIO = new IIOImage(bufferedImage, null, null);*
    *          writer.write(null, imageIO, iwp);*
    *          response.flushBuffer();*
    please help me,would u give me a solutions for my problem..i really appreciate if you want to give a solution.
    Regards,
    Dany Fauzi

    Actually the stack trace indicates the the error is happening in KaptchaExample.jsp, not in a Servlet. I'm guessing that the code you've presented is in a scriptlet (i.e. inside the JSP in <% %> brackets). This is altogether the wrong place for it. JSPs are purely for generating HTML and to try and generate image responses in one is doomed to failure. Write a servlet class to generate your image file. If you want to embed a dynamically generated image in an HTML page, then you need to generate HTML which accesses the Servlet through the <img src=... tag, i.e. the browser retrieves the image data as a separate transaction.
    The immediate source of the crash is that the JSP already opened the output stream in order to write HTML output, so it's too late to try and open it for the writing of image data.

  • FRM-40735 / ORA-06508 when calling an attached package's procedure

    Hello all,
    I've a problem when calling a procedure in one of my attached libraries. the code is :
    when upper(trim(NOT_MSG_NAME)) = 'REN_MSG_REQ_REG_PERMENANT' then SERV.CLFRM_PBL_NRQP_F(:Parameter.NOTIFICATION_ID);
    and it gives me FRM-40735 stating that an ORA-06508 has occurred when calling the procedure.
    Important and funny thing is, when I add the path to the library , It works fine!
    When I attach it, removing the path, It goes wrong like I said..
    the location of the library is:D:\DevSuiteHome\cgenf61\ADMIN , the path is added in FORMS_PATH and all the other
    libraries attached to the form in the same path are working fine !
    I'm using forms builder 10.1.2.0.2, and the platform is windows and I've migrated from forms 9.0.4.0.19
    anybody having any ideas what the problem may be?

    Thank you Sarah
    In fact, somebody had modified the formsweb.cfg adding two working directory directives (It's a shared PC!). I recon none of them works though no configuration error is raised. I omitted both of them and the problem is gone .
    thank you again.

  • When using rabbitmq-jms for vFabric RabbitMQ javax.jms.Message.getJMSDestination does not return the actual destination when it is received from a consumer listening on a Topic with a wild card

    When using rabbitmq-jms for vFabric RabbitMQ javax.jms.Message.getJMSDestination does not return the actual destination when it is received from a consumer listening on a Topic with a wild card. I have tested with both 1.0.3 and 1.0.5 clients with RabbitMQ 3.1.5.
    I was wondering if the community was aware of this problem and if there are any workarounds? If not what is the proper channel to file a bug report. An example code snippet is below. The test fails because the TextMessageMatcher expects the destination passed in on construction (second parameter) to equal the desination on the message received (aquired from getJMSDestination).
            Mockery context = new Mockery();
            final MessageListener messageListener = context.mock(MessageListener.class);
            final Latch latch = new LatchImpl();
            final String prefix = "test" + System.currentTimeMillis();
            context.checking(new Expectations() {
                    oneOf(messageListener).onMessage(with(new TextMessageMatcher("MSG1", prefix + ".1234")));
                    will(new CustomAction("release latch") {
                        @Override
                        public Object invoke(Invocation invocation) throws Throwable {
                            latch.unlatch();
                            return null;
            final Connection connection = createConnection(null, null);
            Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
            connection.start();
            Topic wildcardTopic = (Topic) getInitialContext().lookup(prefix + "." + "#");
            Topic destination = (Topic) getInitialContext().lookup(prefix + ".1234");
            final MessageConsumer consumer = session.createConsumer(wildcardTopic);
            consumer.setMessageListener(messageListener);
            MessageProducer producer = session.createProducer(null);
            producer.send(destination, session.createTextMessage("MSG1"));
            latch.await(5000);
            connection.close();
            Thread.sleep(5);
            context.assertIsSatisfied();

    Check where your MDB sends the [response] messages to.

  • My sound has recently gone on my Iphone4s, this only happens when I use my phone myself. The sound works when I receive calls and texts but I am unable to watch videos, listen to music etc it seems like my volume button has gone! Can anyone help??

    My sound has recently gone on my iphone4s, this only happens when I use my phone myself. The sound works when i receive a call or a message etc but I am unable to watch videos or play music, the sound also doesn't work on games. Please can anyone help with this issue or let me know how to fix it if experienced the same problem?

    Remove all apps from multitasking bar. Double click Home button then tap and hold an icon and tap on little x on every app. Then reset. Hold down Home and Power button until Apple logo appears.

  • TIBCO consumer, WebLogic JMS, reconnecting

    We're currently running TIBCO 7.2 processes with WebLogic 7 as the JMS and DB connection factory.
              When using weblogic.jar to access JMS, we have discovered that TIBCO seems to loose connection entirely if a JMS server node dies, even when using distributed queues.
              We have implemented the 'forward-delay' option to process messages from queues without an active consumer, in the event of a physical node failure. When this occurs however, TIBCO will not automatically reconnect.
              Does anyone know of a work-around or whether or not this is resolved with the WL 9 releast of weblogic.jar?
              The issue is that the entry point to TIBCO processes is to listen on a queue. Once the connection is broken, the component stops listening for messages.

    Hi Uday,
    The best option depends on your use case.
    A messaging bridge is usually only appropriate when you want to store-and-forward from a local destination to a remote destination, instead of directly sending to the remote destination. Store-and-forward is helpful when you still want to be able to produce a message even when the remote destination is unavailable.
    SAF Agents are a store and forward solution, just like bridges, but are only designed to only work with WebLogic JMS destinations.
    For links to WebLogic Messaging white-papers, blog posts, samples, and documentation, click Enterprise Grid Messaging on the [url http://www.oracle.com/technetwork/middleware/weblogic/overview/index.html]Oracle WebLogic Product Page.
    Specifically, see the [url http://download.oracle.com/docs/cd/E17904_01/web.1111/e13727/interop.htm#JMSPG553]Integrating Remote JMS Providers FAQ, which should help you choose between WebLogic's various JMS integration options.
    Hope this helps,
    Tom

  • Weblogic JMS authentication while sending or consuming message

    I have to configure a weblogic jms queue in such a way when a remote sender send a message it has to connect using some authentication. Like when creating the initial context or the connectionFactory. But nowhere I got the steps for configuring it that way. Can you please let me know what is the out-of-the-box steps for achieving it. I am using all out-of the-box tools(no foreign jndi provider). Is it that the authentication comes as a default when you setup the connectionFactory. In that case is it the usercode/password of the weblogic server( or the subdeployment target, e.g. SOA server)

    The discussion here might be useful for you:
    Newbie question on securing JMS resources
    Shortly, You need to create new user/group/roles in the security realm and configure the JMS destination for secured access based on roles. Then in the client code they need to pass the a valid user/password which has access to the destination.
    Note: Weblogic doesn't honour the user id passed in the createConnection() call.. Instead what is checked is the JNDI Security_Principal passed when creating the intial context,, See the above link for details,
    Edited by: atheek1 on May 25, 2010 4:17 PM

  • Permission Denied when calling a method from VB using WebLogic 8.1.2 JCOM

    Hi,
    We are calling an java/ejb methods from VB using WebLogic JCOM 8.1 SP2. But
    using JCOM, we are getting a error Permission denied when called from VB. We think
    that we should update pathch jintegra 2.0 or 2.1 in WebLogic 8.1.2 the to solve
    this issue, because we faced the same problen "permission denied" when we used
    JINTEGRA(third party software). Once we installed the JINTEGRA 2.1 it solved the
    issue.
    So, can anyone help on regard to this issue of "Permission denied" in WebLogic
    JCOM 8.1 SP2.
    Thanks & Regards
    Raghu

    I too am experiencing the jCOM error: "Run-time error '70': Permission Denied". The problem appears to be related to a Microsoft Security Patch KB835732 (MS04-011 which, as you indicated, has been fixed in J-Integra v2.1 (FYI, jCOM 8.1 is based on J-Integra 1.5.4, see J-Integra/jCOM versions.
    Did you ever get a resolution concerning 8.1 SP2? 8.1 SP3 is available now but I don't see any mention of jCOM updates in the WebLogic 8.1 What's New documention. I can't immediately upgrade (trying to stay on same version as a few other developers I work with) but I am hoping it is resolved in SP3.

  • ClassCastException when calling a JMS implemented web service

    Hi,
    I published a Message Driven Bean EJB to WebService using WebLogic 8.1 and servicegen.
    When I try to call it using the automatic generated Web interface, I receive the
    following ClassCastException.
    Do you see what is going wrong?
    Is it a bug?
    Thanks for your help
    Charles
    ClassCastException :
    javax.xml.rpc.soap.SOAPFaultException: Exception during processing: java.lang.ClassCastException
    (see Fault Detail for stacktrace) at weblogic.webservice.core.ClientDispatcher.receive(ClientDispatcher.java:270)
    at weblogic.webservice.core.ClientDispatcher.dispatch(ClientDispatcher.java:131)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:439)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:405)
    at weblogic.webservice.server.servlet.ServletBase.invokeMultiOutput(ServletBase.java:322)
    at weblogic.webservice.server.servlet.ServletBase.invokeOperation(ServletBase.java:296)
    at weblogic.webservice.server.servlet.WebServiceServlet.invokeOperation(WebServiceServlet.java:312)
    at weblogic.webservice.server.servlet.ServletBase.handleGet(ServletBase.java:253)
    at weblogic.webservice.server.servlet.ServletBase.doGet(ServletBase.java:138)
    at weblogic.webservice.server.servlet.WebServiceServlet.doGet(WebServiceServlet.java:232)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6291)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97) at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3575)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2573)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    I use this and command :
    <servicegen
    destEar="${WAS_APPLICATIONS}/${version}${ear_ws_file}"
    contextURI="${version}WebServices" >
    <service
    JMSDestination="mq_receive"
    JMSAction="send"
    JMSDestinationType="queue"
    JMSConnectionFactory="mq_QCF"
    JMSOperationName="${JMSOperationName}"
    JMSMessageType="${JMSMessageType}"
    generateTypes="True"
    targetNamespace="http://www.francetelecom.com/cristal/${version}Webservices"
    serviceName="${version}"
    serviceURI="/${version}"
    expandMethods="True">
    </service>
    <classpath>
    <pathelement location="${build}" />
    </classpath>
    <classpath refid="classpath" />
    </servicegen>
    My MDB is
    public void ejbCreate () throws CreateException {
         LoggerConfigurator.configure();
    log.debug("called");
    public void onMessage(Message msg)
    log.debug("called");
              try
                   ObjectMessage objMessage = (ObjectMessage)msg;
                   String text = (String)objMessage.getObject();
                   home = lookupHome();
                   Toupper client = (Toupper)
                        PortableRemoteObject.narrow(home.create(), Toupper.class);
                   text=client.toupper(text);               
                   log.error("Toupper="+text);
                   startJMS();
                   sendJMS(text);
                   client.remove();
              } catch (Exception e)
                   e.printStackTrace();

    "mq_receive" is define as a Local JNDI Name of a Foreign JMSDestination.
    And it works when I use it with only the MDB (without WebService)
    Good try,
    Thanks
    Charles
    "Neal Yin" <[email protected]> wrote:
    My best guess is that JNDI name "mq_receive" is not bound as JMS queue.
    Thanks
    -Neal
    "Charles Desmoulins" <[email protected]> wrote in
    message
    news:[email protected]...
    Ok Neal,
    This is the result :
    <!-------------------- REQUEST ---------------->
    URL :
    http://localhost:7001/messageToupperWebServices/messageToupper
    Headers :
    SOAPAction: [""]
    Content-Type: [text/xml]
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:soapenc="http://schemas.xmlsoaporg/soap/encoding/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"><env:Header/><env:Body
    env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><m:toupper
    xmlns:m="http://www.francetelecom.com/cristal/messageToupperWebservices"><pa
    ram
    xsi:type="xsd:string">sAmple string totransform</param></m:toupper></env:Body></env:Envelope>
    <!-------------------- END REQUEST ------------>
    <!-------------------- RESPONSE --------------->
    URL :
    http://localhost:7001/messageToupperWebServices/messageToupper
    Headers :
    Date=Fri, 11 Jul 2003 14:29:33 GMT
    Server=WebLogic WebLogic Server 8.1 Thu Mar 20 23:06:05 PST 2003246620
    Content-Length=2522
    Content-Type=text/xml
    Envelope :
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"><env:Header/><env:Body><env:Fau
    lt><faultcode>env:Server</faultcode><faultstring>Exception
    during processing: java.lang.ClassCastException (see Fault Detail forstacktrace)</faultstring><detail><bea_fault:stacktrace
    >
    xmlns:bea_fault="http://www.bea.com/servers/wls70/webservice/fault/1.0.0"/>j
    ava.lang.ClassCastException
    atweblogic.webservice.component.jms.JMSSendInvocationHandler.invoke(JMSSendInv
    ocationHandler.java:131)
    atweblogic.webservice.core.handler.InvokeHandler.handleRequest(InvokeHandler.j
    ava:81)
    atweblogic.webservice.core.HandlerChainImpl.handleRequest(HandlerChainImpl.jav
    a:125)
    atweblogic.webservice.core.DefaultOperation.process(DefaultOperation.java:513)
    atweblogic.webservice.server.Dispatcher.process(Dispatcher.java:150)
    atweblogic.webservice.server.Dispatcher.doDispatch(Dispatcher.java:125)
    atweblogic.webservice.server.Dispatcher.dispatch(Dispatcher.java:74)
    atweblogic.webservice.server.WebServiceManager.dispatch(WebServiceManager.java
    :98)
    atweblogic.webservice.server.servlet.WebServiceServlet.serverSideInvoke(WebSer
    viceServlet.java:274)
    atweblogic.webservice.server.servlet.ServletBase.doPost(ServletBase.java:393)
    atweblogic.webservice.server.servlet.WebServiceServlet.doPost(WebServiceServle
    t.java:244)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    atweblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
    tStubImpl.java:1053)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :387)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :305)
    atweblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
    ebAppServletContext.java:6291)
    atweblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubjec
    t.java:317)
    atweblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:3575)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2573)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    </detail></env:Fault></env:Body></env:Envelope>
    <!-------------------- END RESPONSE ----------->
    An exception Exception during processing: java.lang.ClassCastException(see Fault
    Detail for stacktrace)
    javax.xml.rpc.soap.SOAPFaultException: Exception during processing:java.lang.ClassCastException
    (see Fault Detail for stacktrace)
    atweblogic.webservice.core.ClientDispatcher.receive(ClientDispatcher.java:270)
    atweblogic.webservice.core.ClientDispatcher.dispatch(ClientDispatcher.java:131
    atweblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:439)
    atweblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:425)
    at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:536)
    at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:389)
    at ft.services.messageToupper.WSClient.main(WSClient.java:60)

  • Good day Friends. My phone loses signal when I receive calls and people do not listen to me at times.   I bought my phone used by Amazon and I think it was open, because I see that this manipulated by one hand.  Someone I can help.?

    Good day Friends.
    My phone loses signal when I receive calls and people do not listen to me at times.
      I bought my phone used by Amazon and I think it was open, because I see that this manipulated by one hand.
    Someone I can help.?

    nessbass wrote:
    people do not listen to me at times.
    That's not a phone issue, but rather that they simply find you uninteresting.
    nessbass wrote:
    I bought my phone used by Amazon and I think it was open, because I see that this manipulated by one hand.
    Amazon is not an official reseller.
    If the device has been opened by anyone other than Apple the warranty is voided.

  • JMS Server active connections keep incrementing when calling jms webservice

    I was doing performance and resources consumption analysis of the CGBU Activation product and noticed that when interacting with jms transport web service the number of active connections (JMS Servers/Monitoring/Active Connections in Admin Console) keeps incrementing at the rate of invoking methods on the web service. The number of active connections, when disconnecting the client from the server, doesn't change.
    I've stripped down the web service so it doesn't do anything at all and connect to it via a web service client. When, through admin console, I check the number of active connection in the jms server, it goes up by the number of calls to the jms web service.
    Can anyone tell if this is a known issue in WebLogic jms transport implementation for web services?
    my WSDL
    <?xml version='1.0' encoding='UTF-8'?>
    <s0:definitions name="MslvAsapWsDefinitions" targetNamespace="tns" xmlns="" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="tns" xmlns:s2="java:com.mslv.asap.ws.impl" xmlns:s3="http://schemas.xmlsoap.org/wsdl/soap/">
    <s0:types>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="tns" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://com.bea/wls92/com/bea/staxb/buildtime/internal/bts"/>
    <xs:element name="suspendOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="suspendOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="resumeOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="resumeOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="createOrderByValue">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="createOrderByValueResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getServiceTypes">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getServiceTypesResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="removeOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="removeOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="jsrpGateway">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="jsrpGatewayResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="abortOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="abortOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getOrderTypes">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getOrderTypesResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="queryOrders">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="queryOrdersResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="setOrderByValue">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="setOrderByValueResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="startOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="startOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="java:com.mslv.asap.ws.impl" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:complexType name="MslvAsapWsSessionException">
    <xs:sequence>
    <xs:element minOccurs="1" name="Arg0" nillable="true" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="MslvAsapWsSessionException" type="java:MslvAsapWsSessionException" xmlns:java="java:com.mslv.asap.ws.impl"/>
    </xs:schema>
    </s0:types>
    <s0:message name="suspendOrderByKey">
    <s0:part element="s1:suspendOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="suspendOrderByKeyResponse">
    <s0:part element="s1:suspendOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="MslvAsapWsSessionException">
    <s0:part element="s2:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:message>
    <s0:message name="resumeOrderByKey">
    <s0:part element="s1:resumeOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="resumeOrderByKeyResponse">
    <s0:part element="s1:resumeOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="createOrderByValue">
    <s0:part element="s1:createOrderByValue" name="parameters"/>
    </s0:message>
    <s0:message name="createOrderByValueResponse">
    <s0:part element="s1:createOrderByValueResponse" name="parameters"/>
    </s0:message>
    <s0:message name="getServiceTypes">
    <s0:part element="s1:getServiceTypes" name="parameters"/>
    </s0:message>
    <s0:message name="getServiceTypesResponse">
    <s0:part element="s1:getServiceTypesResponse" name="parameters"/>
    </s0:message>
    <s0:message name="removeOrderByKey">
    <s0:part element="s1:removeOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="removeOrderByKeyResponse">
    <s0:part element="s1:removeOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="getOrderByKey">
    <s0:part element="s1:getOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="getOrderByKeyResponse">
    <s0:part element="s1:getOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="jsrpGateway">
    <s0:part element="s1:jsrpGateway" name="parameters"/>
    </s0:message>
    <s0:message name="jsrpGatewayResponse">
    <s0:part element="s1:jsrpGatewayResponse" name="parameters"/>
    </s0:message>
    <s0:message name="abortOrderByKey">
    <s0:part element="s1:abortOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="abortOrderByKeyResponse">
    <s0:part element="s1:abortOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="getOrderTypes">
    <s0:part element="s1:getOrderTypes" name="parameters"/>
    </s0:message>
    <s0:message name="getOrderTypesResponse">
    <s0:part element="s1:getOrderTypesResponse" name="parameters"/>
    </s0:message>
    <s0:message name="queryOrders">
    <s0:part element="s1:queryOrders" name="parameters"/>
    </s0:message>
    <s0:message name="queryOrdersResponse">
    <s0:part element="s1:queryOrdersResponse" name="parameters"/>
    </s0:message>
    <s0:message name="setOrderByValue">
    <s0:part element="s1:setOrderByValue" name="parameters"/>
    </s0:message>
    <s0:message name="setOrderByValueResponse">
    <s0:part element="s1:setOrderByValueResponse" name="parameters"/>
    </s0:message>
    <s0:message name="startOrderByKey">
    <s0:part element="s1:startOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="startOrderByKeyResponse">
    <s0:part element="s1:startOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:portType name="MslvAsapWsServiceImpl">
    <s0:operation name="suspendOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:suspendOrderByKey"/>
    <s0:output message="s1:suspendOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="resumeOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:resumeOrderByKey"/>
    <s0:output message="s1:resumeOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="createOrderByValue" parameterOrder="parameters">
    <s0:input message="s1:createOrderByValue"/>
    <s0:output message="s1:createOrderByValueResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="getServiceTypes" parameterOrder="parameters">
    <s0:input message="s1:getServiceTypes"/>
    <s0:output message="s1:getServiceTypesResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="removeOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:removeOrderByKey"/>
    <s0:output message="s1:removeOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="getOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:getOrderByKey"/>
    <s0:output message="s1:getOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="jsrpGateway" parameterOrder="parameters">
    <s0:input message="s1:jsrpGateway"/>
    <s0:output message="s1:jsrpGatewayResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="abortOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:abortOrderByKey"/>
    <s0:output message="s1:abortOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="getOrderTypes" parameterOrder="parameters">
    <s0:input message="s1:getOrderTypes"/>
    <s0:output message="s1:getOrderTypesResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="queryOrders" parameterOrder="parameters">
    <s0:input message="s1:queryOrders"/>
    <s0:output message="s1:queryOrdersResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="setOrderByValue" parameterOrder="parameters">
    <s0:input message="s1:setOrderByValue"/>
    <s0:output message="s1:setOrderByValueResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="startOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:startOrderByKey"/>
    <s0:output message="s1:startOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    </s0:portType>
    <s0:binding name="MslvAsapWsSoapBinding" type="s1:MslvAsapWsServiceImpl">
    <s3:binding style="document" transport="http://www.openuri.org/2002/04/soap/jms/"/>
    <s0:operation name="suspendOrderByKey">
    <s3:operation soapAction="tns/suspendOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="resumeOrderByKey">
    <s3:operation soapAction="tns/resumeOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="createOrderByValue">
    <s3:operation soapAction="tns/createOrderByValue" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="getServiceTypes">
    <s3:operation soapAction="tns/getServiceTypes" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="removeOrderByKey">
    <s3:operation soapAction="tns/removeOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="getOrderByKey">
    <s3:operation soapAction="tns/getOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="jsrpGateway">
    <s3:operation soapAction="tns/jsrpGateway" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="abortOrderByKey">
    <s3:operation soapAction="tns/abortOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="getOrderTypes">
    <s3:operation soapAction="tns/getOrderTypes" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="queryOrders">
    <s3:operation soapAction="tns/queryOrders" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="setOrderByValue">
    <s3:operation soapAction="tns/setOrderByValue" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="startOrderByKey">
    <s3:operation soapAction="tns/startOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    </s0:binding>
    <s0:service name="MslvAsapWs">
    <s0:port binding="s1:MslvAsapWsSoapBinding" name="JmsSessionPort">
    <s3:address location="jms:///SAAS-1/Oracle/CGBU/Mslv/Asap/Ws?URI=SAAS-1.WebServiceQueue"/>
    </s0:port>
    </s0:service>
    </s0:definitions>

    I was doing performance and resources consumption analysis of the CGBU Activation product and noticed that when interacting with jms transport web service the number of active connections (JMS Servers/Monitoring/Active Connections in Admin Console) keeps incrementing at the rate of invoking methods on the web service. The number of active connections, when disconnecting the client from the server, doesn't change.
    I've stripped down the web service so it doesn't do anything at all and connect to it via a web service client. When, through admin console, I check the number of active connection in the jms server, it goes up by the number of calls to the jms web service.
    Can anyone tell if this is a known issue in WebLogic jms transport implementation for web services?
    my WSDL
    <?xml version='1.0' encoding='UTF-8'?>
    <s0:definitions name="MslvAsapWsDefinitions" targetNamespace="tns" xmlns="" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="tns" xmlns:s2="java:com.mslv.asap.ws.impl" xmlns:s3="http://schemas.xmlsoap.org/wsdl/soap/">
    <s0:types>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="tns" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://com.bea/wls92/com/bea/staxb/buildtime/internal/bts"/>
    <xs:element name="suspendOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="suspendOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="resumeOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="resumeOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="createOrderByValue">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="createOrderByValueResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getServiceTypes">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getServiceTypesResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="removeOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="removeOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="jsrpGateway">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="jsrpGatewayResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="abortOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="abortOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getOrderTypes">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getOrderTypesResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="queryOrders">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="queryOrdersResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="setOrderByValue">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="setOrderByValueResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="startOrderByKey">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="startOrderByKeyResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:any/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="java:com.mslv.asap.ws.impl" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:complexType name="MslvAsapWsSessionException">
    <xs:sequence>
    <xs:element minOccurs="1" name="Arg0" nillable="true" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="MslvAsapWsSessionException" type="java:MslvAsapWsSessionException" xmlns:java="java:com.mslv.asap.ws.impl"/>
    </xs:schema>
    </s0:types>
    <s0:message name="suspendOrderByKey">
    <s0:part element="s1:suspendOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="suspendOrderByKeyResponse">
    <s0:part element="s1:suspendOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="MslvAsapWsSessionException">
    <s0:part element="s2:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:message>
    <s0:message name="resumeOrderByKey">
    <s0:part element="s1:resumeOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="resumeOrderByKeyResponse">
    <s0:part element="s1:resumeOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="createOrderByValue">
    <s0:part element="s1:createOrderByValue" name="parameters"/>
    </s0:message>
    <s0:message name="createOrderByValueResponse">
    <s0:part element="s1:createOrderByValueResponse" name="parameters"/>
    </s0:message>
    <s0:message name="getServiceTypes">
    <s0:part element="s1:getServiceTypes" name="parameters"/>
    </s0:message>
    <s0:message name="getServiceTypesResponse">
    <s0:part element="s1:getServiceTypesResponse" name="parameters"/>
    </s0:message>
    <s0:message name="removeOrderByKey">
    <s0:part element="s1:removeOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="removeOrderByKeyResponse">
    <s0:part element="s1:removeOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="getOrderByKey">
    <s0:part element="s1:getOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="getOrderByKeyResponse">
    <s0:part element="s1:getOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="jsrpGateway">
    <s0:part element="s1:jsrpGateway" name="parameters"/>
    </s0:message>
    <s0:message name="jsrpGatewayResponse">
    <s0:part element="s1:jsrpGatewayResponse" name="parameters"/>
    </s0:message>
    <s0:message name="abortOrderByKey">
    <s0:part element="s1:abortOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="abortOrderByKeyResponse">
    <s0:part element="s1:abortOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:message name="getOrderTypes">
    <s0:part element="s1:getOrderTypes" name="parameters"/>
    </s0:message>
    <s0:message name="getOrderTypesResponse">
    <s0:part element="s1:getOrderTypesResponse" name="parameters"/>
    </s0:message>
    <s0:message name="queryOrders">
    <s0:part element="s1:queryOrders" name="parameters"/>
    </s0:message>
    <s0:message name="queryOrdersResponse">
    <s0:part element="s1:queryOrdersResponse" name="parameters"/>
    </s0:message>
    <s0:message name="setOrderByValue">
    <s0:part element="s1:setOrderByValue" name="parameters"/>
    </s0:message>
    <s0:message name="setOrderByValueResponse">
    <s0:part element="s1:setOrderByValueResponse" name="parameters"/>
    </s0:message>
    <s0:message name="startOrderByKey">
    <s0:part element="s1:startOrderByKey" name="parameters"/>
    </s0:message>
    <s0:message name="startOrderByKeyResponse">
    <s0:part element="s1:startOrderByKeyResponse" name="parameters"/>
    </s0:message>
    <s0:portType name="MslvAsapWsServiceImpl">
    <s0:operation name="suspendOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:suspendOrderByKey"/>
    <s0:output message="s1:suspendOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="resumeOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:resumeOrderByKey"/>
    <s0:output message="s1:resumeOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="createOrderByValue" parameterOrder="parameters">
    <s0:input message="s1:createOrderByValue"/>
    <s0:output message="s1:createOrderByValueResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="getServiceTypes" parameterOrder="parameters">
    <s0:input message="s1:getServiceTypes"/>
    <s0:output message="s1:getServiceTypesResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="removeOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:removeOrderByKey"/>
    <s0:output message="s1:removeOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="getOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:getOrderByKey"/>
    <s0:output message="s1:getOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="jsrpGateway" parameterOrder="parameters">
    <s0:input message="s1:jsrpGateway"/>
    <s0:output message="s1:jsrpGatewayResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="abortOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:abortOrderByKey"/>
    <s0:output message="s1:abortOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="getOrderTypes" parameterOrder="parameters">
    <s0:input message="s1:getOrderTypes"/>
    <s0:output message="s1:getOrderTypesResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="queryOrders" parameterOrder="parameters">
    <s0:input message="s1:queryOrders"/>
    <s0:output message="s1:queryOrdersResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="setOrderByValue" parameterOrder="parameters">
    <s0:input message="s1:setOrderByValue"/>
    <s0:output message="s1:setOrderByValueResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    <s0:operation name="startOrderByKey" parameterOrder="parameters">
    <s0:input message="s1:startOrderByKey"/>
    <s0:output message="s1:startOrderByKeyResponse"/>
    <s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
    </s0:operation>
    </s0:portType>
    <s0:binding name="MslvAsapWsSoapBinding" type="s1:MslvAsapWsServiceImpl">
    <s3:binding style="document" transport="http://www.openuri.org/2002/04/soap/jms/"/>
    <s0:operation name="suspendOrderByKey">
    <s3:operation soapAction="tns/suspendOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="resumeOrderByKey">
    <s3:operation soapAction="tns/resumeOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="createOrderByValue">
    <s3:operation soapAction="tns/createOrderByValue" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="getServiceTypes">
    <s3:operation soapAction="tns/getServiceTypes" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="removeOrderByKey">
    <s3:operation soapAction="tns/removeOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="getOrderByKey">
    <s3:operation soapAction="tns/getOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="jsrpGateway">
    <s3:operation soapAction="tns/jsrpGateway" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="abortOrderByKey">
    <s3:operation soapAction="tns/abortOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="getOrderTypes">
    <s3:operation soapAction="tns/getOrderTypes" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="queryOrders">
    <s3:operation soapAction="tns/queryOrders" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="setOrderByValue">
    <s3:operation soapAction="tns/setOrderByValue" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    <s0:operation name="startOrderByKey">
    <s3:operation soapAction="tns/startOrderByKey" style="document"/>
    <s0:input>
    <s3:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s3:body parts="parameters" use="literal"/>
    </s0:output>
    <s0:fault name="MslvAsapWsSessionException">
    <s3:fault name="MslvAsapWsSessionException" use="literal"/>
    </s0:fault>
    </s0:operation>
    </s0:binding>
    <s0:service name="MslvAsapWs">
    <s0:port binding="s1:MslvAsapWsSoapBinding" name="JmsSessionPort">
    <s3:address location="jms:///SAAS-1/Oracle/CGBU/Mslv/Asap/Ws?URI=SAAS-1.WebServiceQueue"/>
    </s0:port>
    </s0:service>
    </s0:definitions>

  • How can i see when someone has accessed my call/text log. (This is possible on google) I have been informed that someone has accessed my activity log and is giving my information to a third party. I believe it is a service tech, but I am not interested in

    How can i see when someone has accessed my call/text log. (This is possible on google/gmail) I have been informed that someone has accessed my activity log and is giving my information to a third party. I believe it is a service tech, but I am not interested in persuing that further. I just need to see when my account has been accessed if possible.

    Hi lynniewigs,
    This is a common concern among Android and I-phone user, and one of the drawbacks to using a smart phone.  We lose so much privacy. Our phones become cameras into our homes for us to be spied on.
    I don't know what type of phone you have, if it is even a smart phone, but here is an example of an application that you can use to determine which applications are accessing your information and sending it out. 
    Permission Scanner - Android Apps on Google Play
    Google just recently revamp their permissions geared to hide invasive applications that spy and send out your information without your knowledge.  Report says be aware of what your Android app does - CNET
    Please continue to be mindful of the apps you download and the permissions you give. 

Maybe you are looking for

  • How to keep records in an application

    Hi all, I have a question, may be a silly one. If so I'm really sorry to spending your time. In an application there can be plenty of information display on the console. Following code give an idea to you what i really looking. try{ // do something h

  • After removal of conduit malware websites do not load CSS. (= all text websites)

    I was hit by Conduit and could not completely remove it, although I have all the tools. (Conduit persisted after all traces were gone using Malwarebytes, resetting homepage, untrusted certificate warnings, disabling it in add-ons as there was no remo

  • Adding my new wife in place of my mifi?

    I currently have a calling plan with a mifi card as well.  I just recently got married and she has her own account with Verizon but we wanted to know if we would be able to switch her onto my account in place of my mifi without having an early termin

  • [CS3][VBS] Delete Unused Swatches ALSO clears Gradient Swatches!

    Hi Folks! Heres another weird one. This code deletes unused CMYK swatches properly but also sets the background of some gradient swatches to black. myUnusedSwatches = currentdoc.UnusedSwatches.Count For myLoop = 1 To myUnusedSwatches On Error Resume

  • Why we able to see the messeges in SXMB_MONI at SAP R/3 side??

    Hi All, When we are dealing with Proxy--File scenarios After we triggered the proxy from SAP R/3 we are able to see the Messeges in MONI of SAP R/3. But if I used IDOC--File scenario, then why can't i see the Msg's in MONI??? Regards Suman