Help!!! CCA API - Conference process

Hello.
I have been trying to figure out how to implement Conference through API.
I have checked API document, and found 3 calls following:
CreateConference()
SendToConference()
TerminateConference()
However I am wondering how I can get a Conference ID after I have called CreateConference() API function call.
It just returens ServiceResult object, no conference ID.
Also in messageLooping, I do not see any info for conference id.
I will appreciate for any tips or help.
Thanks, Ray.

Not sure which version of CCA you are using, I'm using 8.1.1 and have looked at the documentation for 8.1.2..
From my experience, and I've done this in an attempt to replicate the Warm Transfer function, you do not need a unique Conference ID.
The basic steps:
1. Dial Number 1
2. Dial Number 2 (Put Call 1 on Hold)
3. Send Number 2 to Conference
4. Send Number 1 to Conference
5. Supervised Transfer Number 1
6. Terminate Conf
For the actual API calls (I'll presume you've already tested the calling aspect):
m_interaction.sendToConference("SessionID", "Interaction ID for call 2", -1)
m_interaction.sendToConference("SessionID", "Interaction ID for call 1", -1)
At this point you would have 3 active calls, you call 1 and call 2. In my scenario I want to leave call 1 and 2 talking and exit just myself.
m_interaction.transferSupervised("SessionID", "Interaction ID for call 1", "-1")
To actually terminate the conference.
m_interaction.terminateConference("SessionID", -1)
After that all that is left is to set the outcomes for the 2 interactions (calls) and end their wrap time.
Hope that helps,

Similar Messages

  • Need help for interface to process employee expenses

    need help for interface to process employee expenses
    i have used the interface tables as
    AP_INVOICES_INTERFACE
    AP_INVOICE_LINES_INTERFACE
    are they the right one
    is there a concurrent program or any API for doing interface

    hi,
    i think what ever table are using for interfacing expenses correct.
    but you have to enter invoice type as expense report.
    Regards,
    Srikanth

  • Need help in optimizing the process

    I need help in optimizing my process. Here is what am I doing:
    I have two tables table A and table B. table A has list of names and table B has name and ID. Right now I am loading name into cursor from table A and for each name from the cursor I try to match with name in table B to get the ID. This process takes very long to complete. I need help to replace PL/SQL with SQL if possible. I am using oracle utl_match to match the best possible record in table B. table B sometimes returns multiple matching records. I take the top nearest match name and ID for my use (there is not always one to one match)
    Any idea or help will be appreciated. Thanks

    always provide create table and sample data instert statements when asking a question. also, provide your database version.
    because you're using utl_match, you can't really use an index, there must be a cartesian join on the two tables so it may always be slow.
    however, here's a sample SQL that you may be able to make use of:
    with n as (select 'KATHERINE' person_name from dual
                 union all
                 select 'STEVE' from dual
                 union all
                 select 'BRUCE' from dual)
        ,nid as (select 'CATHERINE' person_name, 1 NID FROM DUAL
                 union all
                 select 'STEFAN', 2 from dual
                 UNION ALL
                 select 'STEVEN', 2 from dual
                 union all
                 select 'CATHY',3 from dual)
    select n_name, nid
      from (
            select n.person_name N_NAME
                  ,nid.person_name
                  ,nid.nid
                  ,ROW_NUMBER() OVER (partition by n.person_name ORDER BY utl_match.jaro_winkler_similarity(n.person_name,nid.person_name) DESC) jws_ORDER
              from n
              join nid on (utl_match.jaro_winkler_similarity(n.person_name,nid.person_name) > 70)
      where jws_order = 1;    

  • I recently purchased this 21.5 inch iMac in the month of February. The woman that helped me through the process of purchasing this told me that it comes with the latest Mountain Lion. which it did, but i cant write a review in the app store! Help...

    II recently purchased this 21.5 inch iMac in the month of February. The woman that helped me through the process of purchasing this told me that it comes with the latest Mountain Lion. which it did, but i cant write a review in the app store! Help...

    You want to write a review about Mountain Lion? I'm not sure that you can write about the OS at the app store - it's not an app. Or are you talking about the online Apple store? If you want to send feedback to Apple, you could use this:
    http://www.apple.com/feedback/macosx.html

  • Tutorials for using javax.help package api's

    hi! i m woking on javax.help package for my project nowadays. i will be grateful if someone can guide me that where i can find sample codes and tutorials for using api's in this package.
    thanks. bye.

    tutorials for using javax.help package api's

  • To get list of permissions for iview/apps with the help of API (UME API?)

    hello all
    who can answer how to get list of permissions (list of roles or users) for iview or other application with the help of API (UME API ?)
    thanx!

    if anybody whant to know
    https://media.sdn.sap.com/html/submitted_docs/60_sp2_javadocs/ume/com/sap/security/api/acl/IAclManager.html#getAcl(java.lang.String)
    https://media.sdn.sap.com/html/submitted_docs/60_sp2_javadocs/ume/com/sap/security/api/IRole.html

  • Searching task from API by process instance id

    Hi, I am having problem retrieving tasks by process instance id throught API.
    I've look at the help, http://help.adobe.com/en_US/livecycle/9.0/programLC/help/index.html,
    it got sample code to retrieve tasks, it retrieve all tasks by process name, but I need to retrieve only tasks belong to a process instance id.
    how can i achieve this? any help is appreciated, thanks.
    hkho

    The following code may retrieve the tasks for a specific process instance.
    ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
    TaskManagerQueryService queryManager = TaskManagerClientFactory.getQueryManager(myFactory);
    TaskSearchFilter filter = new TaskSearchFilter();
    filter.setServiceName("MortgageLoan - Prebuilt");
    filter.addCondition("procVar.id", Operator.EQUALS, new Long(556677)); // where 556677 is your process Instance Id
    filter.setAdminIgnoreAllAcls(true);
    List result = queryManager.taskSearch(filter);
    Note:
      -> I dint test this code;
      -> You may have to make some corrections if its not working
      -> The code is based on Java API (Not Web Service)
    Nith

  • Help needed for file processing using FTP

    Hi All,
    I am new to ODI tool and currently we are implementing one project in ODI. Could you please, any one help me on the following requirement... how to implement it?
    Scenario:
    i) I need to pick a file from remote host 'outbox' dir using FTP process, and place into local 'temp' dir. (I can do it with odiFTPGet tool)
    ii) Change the file as per target business requirement.??? ( this step challenging me)
    for ex:
    if source file name : <project name>_<source ID>_<transaction name>_<unique id>.txt
    target name should be : 1234_<transaction name>_<sysdate in yyyyMMddhhmmss>_<unique id>_2345.txt ( here 1234 and 2345 are hard coded values)
    iii) Later move to local 'temp' to local 'outbox' dir. ( I can do it with odiFileMove tool)
    iv) After successful process move the file from remote 'outbox' to remote 'archive' dir ??? (again this is challenging me).
    For this my questions are:
    1) How to get file name into a variable ( In one of the post , it says we need to create data model and data stores, and interface to get the file names into a file. apart from is there any easy way i can implement it in package it self?)
    2) How to tokenize a long string ( i.e., need to tokenize the source file to get <unique id> and <transaction name> and map to target file name)
    3) How to define implementation for Java in user function?? do we need to use class declarations and import statements?? I need a sample user function in Java.
    4) How to move/rename a file in remote server?? ( need to move file from remote 'outbox' server to remote archive' dir)
    5) If any step in package fails, How to get the error msg into a variable which i can use for sending mail and raise a ticket in remedy?? ( I will pass that variable to as content to mail and remedy ticket)
    6) How to handle list type data (string list) by variables in ODI?? (As we can define single variable not as list.)
    I am sorry to ask all my queries I a single post. But I need to solutions for all to implement this in my project.
    Thanks in advance. Appreciate early response.
    Regards,
    Kiran.N

    Can any one share your thoughts for my request.
    Thanks in advance.
    Regards,
    Kiran

  • Please Help, Issues when batch processing Multi Frame images in Fireworks

    I hope someone will know how to do this and tell me where I am going wrong.
    Objective 1
    I have a large number of images that all have the exact same number of frames (4) and are all exactly the same size that I want to get resized, cropped and water marked (when I say 'watermarked I mean have my websites logo pasted in a specificlocation on each frame, I have my websites logo as a seperate .png file which I copy from).
    Current Process
    I create a command which will crop the image then paste my companys url/log onto the first frame, move it to the correct location on the frame then copy it again and then paste it onto each of the other frames, the command then resizes the image tot he exact proportions I want.
    I start a batch process and use my command, making sure that I also export from the .png to animated gif (and I edit the settings to make it 256 animated gif).
    Error 1
    The process described above resizes and crops my images however it does NOT put the watermark in the correct place, it seems to put it int he right place on the first frame and then in a different place on all the followingn frames thus giving the effect of the watermark jumping around. Which is obviously NOT what I want.
    Question 1
    Please let me know what process I should be following to correct the Error 1 above.
    Objective & Question 2
    I want to do exactly the same thing as shown above but this time the files have a varying number of frames (from 2 to 45 frames (or instances as CS4 seems to call them)). Is there a way to paste my logo to the to the exact same location on ALL frames?
    Other information
    I have tried WHXY Paste extension and I can not see how to use that to solve the issue. I have also tried 'Paste in Place' however I can not see how to use the Paste In Place extension as it is not appering in my list of commands.
    Many thanks in advance for your help.
    Andy

    Andy, you could start a batch process which will do most of the things you are asking for. THe batch process can be done using Fireworks. The right way to start is going to Archivo / Procesar por Lotes and then follow all the different option this tool has to offer.  Yes, I know I gave you the names in Spanish but that is the way I use Adobe Fireworks.
    I hope this was usefull for you!
    Best regards,
    Frank Meier | Curso Arreglos Florales

  • Need help with a simple process with FTP Adapter and File Adapter

    I am trying out a simple BPEL process that gets a file in opaque mode from a FTP server using a FTP adapter and writes it to the local file system using a File Adapter. However, the file written is always empty (zero bytes). I then tried out the FTPDebatching sample using the same FTP server JNDI name and this work fine surprisingly. I also verified by looking at the FTP server logs that my process actually does hit the FTP server and seems to list the files based on the filtering condition - but it does not issue any GET or RETR commands to actually get the files. I am suspecting that the problem could be in the Receive, Assign or Invoke activities, but I am not able identify what it is.
    I can provide additional info such as the contents of my bpel and wsdl files if needed.
    Would appreciate if someone can help me with this at the earliest.
    Thanks
    Jay

    persiandude wrote:
    Topic: Need help with if, else, and which statements and loops.
    How would I display 60 < temp. <= 85 in java
    System.out.println("60 < temp. <= 85 in java");
    another question is how do I ask a question like want to try again (y/n) after a output and asking that everytime I type in yes after a output and terminate when saying No.Sun's [basic Java tutorial|http://java.sun.com/docs/books/tutorial/]
    Sun's [New To Java Center|http://java.sun.com/learning/new2java/index.html].Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    [http://javaalmanac.com|http://javaalmanac.com]. A couple dozen code examples that supplement [The Java Developers Almanac|http://www.amazon.com/exec/obidos/tg/detail/-/0201752808?v=glance].
    jGuru. A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch. To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    Bruce Eckel's [Thinking in Java|http://mindview.net/Books/DownloadSites] (Available online.)
    Joshua Bloch's [Effective Java|http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/0321356683/ref=pd_bbs_1?ie=UTF8&s=books&qid=1214349768&sr=8-1]
    Bert Bates and Kathy Sierra's [Head First Java|http://www.amazon.com/exec/obidos/tg/detail/-/0596004656?v=glance].
    James Gosling's [The Java Programming Language|http://www.bookpool.com/sm/0321349806].

  • Could someone help me with class Process getErrorStream() ??

    Hello
    I want to execute process "/usr/bin/octave" .So I have to write to its input and read its output and error stream. I have written program and it works good until I need to read error stream of process. After I read the error stream of process i receive the IOException Broken pipe. It looks like after read the data from error stream process is closed so I coudn't write anything to the input stream (what i could do before reading from error stream). The errors I receive :
    java.io.IOException: Broken pipe
    at java.io.FileOutputStream.writeBytes(Native Method)
    at java.io.FileOutputStream.write(Unknown Source)
    at java.io.BufferedOutputStream.flushBuffer(Unknown Source)
    at java.io.BufferedOutputStream.flush(Unknown Source)
    at sun.nio.cs.StreamEncoder$CharsetSE.implFlush(Unknown Source)
    at sun.nio.cs.StreamEncoder.flush(Unknown Source)
    at java.io.OutputStreamWriter.flush(Unknown Source)
    at java.io.BufferedWriter.flush(Unknown Source)
    at wazna$3.run(octave.java:116)
    at java.lang.Thread.run(Unknown Source)
    And here is my code:
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.io.OutputStreamWriter;
    public class octave{
    public static void main(String[] args) throws IOException, InterruptedException {
    Runtime r = Runtime.getRuntime();
    final Process p= r.exec("/usr/bin/octave");
    System.out.print(">>");
    InputStream iss = p.getInputStream();
    BufferedReader br =
    new BufferedReader(new InputStreamReader(iss));
    try {
    while (iss.available() == 0) { }
    while (br.ready())
    System.out.println(br.readLine());
    } catch (IOException e) { e.printStackTrace();}
    String s=null;
    do
    System.out.print(">>");
    BufferedReader in = new BufferedReader(new
    InputStreamReader(System.in));
    s = in.readLine();
    if (s.equalsIgnoreCase("exit"))
    System.out.print(">>");
    System.out.print("END");
    else
    Thread reading = new Thread(
    new Runnable()
    synchronized public void run()
    InputStream iss = p.getInputStream();
    BufferedReader br =
    new BufferedReader(new InputStreamReader(iss));
    try {
    while (iss.available() == 0) { }
    while (br.ready()) {
    System.out.println(br.readLine());
    } catch (Exception e) {e.printStackTrace();                                                                                                                                } }
    Thread error = new Thread(
    new Runnable()
    synchronized public void run()
    InputStream err=p.getErrorStream();
    BufferedReader er =
    new BufferedReader(new InputStreamReader(err));
    try {
    while (err.available() == 0) {
    while (er.ready()) {
    System.err.println(er.readLine());
    } catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    final String g=s;
    Thread writing = new Thread(
    new Runnable()
    synchronized public void run()
    OutputStream oos = p.getOutputStream();
    BufferedWriter bw =
    new BufferedWriter(new OutputStreamWriter(oos));
    try {
    bw.flush();
    bw.write(g);
    bw.newLine();
    bw.flush(); //LINE 116 where is an error
    } catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    writing.start();
    reading.start();
    error.start();
    while (!s.equalsIgnoreCase("exit"));
    Message was edited by:
    tazja
    Message was edited by:
    tazja

    I know it's a bit late for this. But I hope it will help all the people who encountered this problem.
    The only way to let octave work with streams is to use the --interactive switch (otherwise it will crash on the first error). Rembember that using this will need a different way to read data (BufferedReader won't work well).
    Hope this helps anyone, I spent very much time figuring this.
    Bye

  • Urgent help with simple BPEL process for reading data from database

    Hello there,
    I need help with BPEL project.
    i have created a table Employee in Database.
    I did create application, BPEL project and connection to the database properly using Database Adapter.
    I need to read the records from the database and convert into xml fomat and it should to go approval for BPM worklist.
    Can someone please describe me step by step what i need to do.
    Thx,
    Dps

    I have created a table in Database with data like Empno,name,salary,comments.
    I created Database Connection in jsp page and connecting to BPEL process.
    It initiates the process and it goes automatically for approval.
    Please refer the code once which i created.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@page import="java.util.Map" %>
    <%@page import="com.oracle.bpel.client.Locator" %>
    <%@page import="com.oracle.bpel.client.NormalizedMessage" %>
    <%@page import="com.oracle.bpel.client.delivery.IDeliveryService" %>
    <%@page import="javax.naming.Context" %>
    <%@page import="java.util.Hashtable" %>
    <%@page import="java.util.HashMap" %>
    <%@ page import="java.sql.*"%>
    <%@ page import= "jspprj.DBCon"%>
    <html>
    <head>
    <title>Invoke CreditRatingService</title>
    </head>
    <body>
    <%
    DBCon dbcon=new DBCon();
    Connection conn=dbcon.createConnection();
    Statement st=null;
    PreparedStatement pstmt=null;
    Hashtable env= new Hashtable();
    ResultSet rs = null;
    Map payload =null;
    try
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
    env.put(Context.PROVIDER_URL, "opmn:ormi://localhost:port:home/orabpel");//bpel server
    env.put("java.naming.security.principal", "username");
    env.put("java.naming.security.credentials", "password");//bpel console
    Locator locator = new Locator("default","password",env);
    IDeliveryService deliveryService =
    (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME );
    // construct the normalized message and send to Oracle BPEL Process Manager
    NormalizedMessage nm = new NormalizedMessage();
    java.util.HashMap map = new HashMap();
    st=conn.createStatement();
    out.println("connected");
    String query1="Select * from EMPLOYEE";
    rs=st.executeQuery(query1);
    /*reading Data From Database and converting into XML format
    so that no need of going to BPEL console and entering the details.
    while (rs.next()){
    String xml1 = "<AsynchBPELProcess1ProcessRequest xmlns='http://xmlns.oracle.com/AsynchBPELProcess1'>"+
    "<Empno>"+rs.getString(1)+"</Empno>"+
    "<EmpName>"+rs.getString(2)+"</EmpName>"+
    "<Salary>"+rs.getString(3)+"</Salary>"+
    "<Comments>"+rs.getString(4)+"</Comments>"+
    "</AsynchBPELProcess1ProcessRequest>";
    out.println(xml1);
    nm.addPart("payload", xml1 );
    // EmployeeApprovalProcess is the BPEL process in which human task is implemented
    deliveryService.post("EmployeeApprovalProcess", "initiate", nm);
    // payload = res.getPayload();
    out.println( "BPELProcess CreditRatingService executed!<br>" );
    // out.println( "Credit Rating is " + payload.get("payload") );
    //Incase there is an exception while invoking the first server invoke the second server i.e lsgpas13.
    catch(Exception ee) {
    //("BPEL Server lsgpas14 invoking error.\n"+ee.toString());
    %>
    </body>
    </html>
    Its working fine.And i want it for Bulk approvals.please help me step by step procedure if any other way to implement this.

  • Urgent help with simple BPEL process

    Hello there,
    I need help with BPEL project.
    I'm new in JDeveloper&BPEL and i'd like to create process that we'll after sending employee ID return personal details of that employee.
    I did create application, BPEL project and connection to the database properly but somehow i can't deal input and output variable.
    Can someone please describe me step by step what i need to do, how to set up variable etc
    Thx,
    DI

    Me again. This time i hope i'll get some help :(
    Solution to my problem is change to the data-sources.xml and oc4j-ra.xml.
    Since i have database on same machine with BPEL PM Server that uses Olite DB when i tried to make changes i found in tutorials, here on forum and rest of internet
    BPEL PM Server just freeze, didn't start at all.
    Here are data-sources.xml, oc4j-ra.xml and DBAdapter wsdl file. Plz can someone make changes to those files i'll appreciate that.
    HOME\bpel\system\appserver\oc4j\j2ee\home\application-deployments\default\DbAdapter
    oc4j-ra.xml
    <?xml version="1.0"?>
    <oc4j-connector-factories xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.oracle.com/technology/oracleas/schema/oc4j-connector-factories-10_0.xsd" schema-major-version="10" schema-minor-version="0" >
         <imported-shared-libraries>
              <import-shared-library name="oracle.bpel.common"/>
              <import-shared-library name="oc4j.internal"/>
              <import-shared-library name="oracle.xml"/>
              <import-shared-library name="oracle.sqlj"/>
              <import-shared-library name="oracle.toplink"/>
              <import-shared-library name="oracle.jdbc"/>
         </imported-shared-libraries>
         <connector-factory location="eis/DB/DBConn_XE" connector-name="Database Adapter">
              <config-property name="xADataSourceName" value="jdbc/DBConn_XEDataSource"/>
              <config-property name="dataSourceName" value="loc/DBConn_XEDataSource"/>
              <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
              <config-property name="usesNativeSequencing" value="true"/>
              <config-property name="sequencePreallocationSize" value="50"/>
              <config-property name="defaultNChar" value="false"/>
              <config-property name="usesBatchWriting" value="true"/>
              <connection-pooling use="none">
              </connection-pooling>
              <security-config use="none">
              </security-config>
         </connector-factory>
         <connector-factory location="eis/DB/BPELSamples" connector-name="Database Adapter">
              <config-property name="xADataSourceName" value="jdbc/BPELSamplesDataSource"/>
              <config-property name="dataSourceName" value=""/>
              <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
              <config-property name="usesNativeSequencing" value="true"/>
              <config-property name="sequencePreallocationSize" value="50"/>
              <config-property name="defaultNChar" value="false"/>
              <config-property name="usesBatchWriting" value="false"/>
              <connection-pooling use="none">
              </connection-pooling>
              <security-config use="none">
              </security-config>
         </connector-factory>
    </oc4j-connector-factories>
    HOME \bpel\system\appserver\oc4j\j2ee\home\config
    data-sources.xml
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE data-sources PUBLIC "Orion data-sources" "http://xmlns.oracle.com/ias/dtds/data-sources-9_04.dtd">
    <data-sources>
    <!-- Connection pool for oracle database -->
    <!--
    <connection-pool name="BPELPM_CONNECTION_POOL">
    <connection-factory factory-class="oracle.jdbc.OracleDriver"
    url="jdbc:oracle:thin:[username]/[password]@[hostname]:[port]:[sid]" />
    </connection-pool>
    -->
    <!-- Connection pool for oracle lite -->
    <connection-pool name="BPELPM_CONNECTION_POOL">
    <connection-factory factory-class="oracle.lite.poljdbc.POLJDBCDriver"
    user="system"
    password="manager"
    url="jdbc:[email protected]:1531:orabpel" />
    </connection-pool>
    <managed-data-source name="BPELServerDataSource"
    connection-pool-name="BPELPM_CONNECTION_POOL"
    jndi-name="jdbc/BPELServerDataSource" tx-level="global"/>
    <managed-data-source name="BPELServerDataSourceWorkflow"
    connection-pool-name="BPELPM_CONNECTION_POOL"
    jndi-name="jdbc/BPELServerDataSourceWorkflow" tx-level="local"/>
    <managed-data-source name="BPELSamplesDataSource"
    connection-pool-name="BPELPM_CONNECTION_POOL"
    jndi-name="jdbc/BPELSamplesDataSource" />
    </data-sources>
    DBAdapter wsdl file
    GetData_WS.wsdl
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    name="GetData_WS"
    targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/GetData_WS/"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/db/GetData_WS/"
    xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
    xmlns:pc="http://xmlns.oracle.com/pcbpel/"
    xmlns:top="http://xmlns.oracle.com/pcbpel/adapter/db/top/GetDataWS"
    xmlns:hdr="http://xmlns.oracle.com/pcbpel/adapter/db/"
    xmlns="http://schemas.xmlsoap.org/wsdl/">
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/" location="DBAdapterOutboundHeader.wsdl"/>
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/GetDataWS"
    schemaLocation="GetDataWS_table.xsd"/>
    </schema>
    </types>
    <message name="EmpDetailsViewCollection_msg">
    <part name="EmpDetailsViewCollection" element="top:EmpDetailsViewCollection"/>
    </message>
    <message name="GetData_WSSelect_EMP_ID_inparameters">
    <part name="GetData_WSSelect_EMP_ID_inparameters" element="top:GetData_WSSelect_EMP_IDInputParameters"/>
    </message>
    <portType name="GetData_WS_ptt">
    <operation name="GetData_WSSelect_EMP_ID">
    <input message="tns:GetData_WSSelect_EMP_ID_inparameters"/>
    <output message="tns:EmpDetailsViewCollection_msg"/>
    </operation>
    </portType>
    <binding name="GetData_WS_binding" type="tns:GetData_WS_ptt">
    <jca:binding />
    <operation name="GetData_WSSelect_EMP_ID">
    <jca:operation
    InteractionSpec="oracle.tip.adapter.db.DBReadInteractionSpec"
    DescriptorName="GetDataWS.EmpDetailsView"
    QueryName="GetData_WSSelect"
    ReturnSingleResultSet="false"
    MappingsMetaDataURL="GetDataWS_toplink_mappings.xml" />
    <input>
    <jca:header message="hdr:OutboundHeader_msg" part="outboundHeader"/>
    </input>
    </operation>
    </binding>
    <!-- Your runtime connection is declared in
    J2EE_HOME/application-deployments/default/DbAdapter/oc4j-ra.xml
    These 'mcf' properties here are from your design time connection and
    save you from having to edit that file and restart the application server
    if eis/DB/DBConn_XE is missing.
    These 'mcf' properties are safe to remove.
    -->
    <service name="GetData_WS">
    <port name="GetData_WS_pt" binding="tns:GetData_WS_binding">
    <jca:address location="eis/DB/DBConn_XE"
    UIConnectionName="DBConn_XE"
         ManagedConnectionFactory="oracle.tip.adapter.db.DBManagedConnectionFactory"
         mcf.DriverClassName="oracle.jdbc.OracleDriver"
    mcf.PlatformClassName="oracle.toplink.platform.database.oracle.OraclePlatform"
    mcf.ConnectionString="jdbc:oracle:thin:@localhost:1521:xe"
    mcf.UserName="hr"
    mcf.Password="62C32F70E98297522AD97E15439FAC0E"
    />
    </port>
    </service>
    <plt:partnerLinkType name="GetData_WS_plt" >
    <plt:role name="GetData_WS_role" >
    <plt:portType name="tns:GetData_WS_ptt" />
    </plt:role>
    </plt:partnerLinkType>
    </definitions>
    Thx,
    DI

  • Need some help with a Business Process monitor PPO Collector

    We have one particular monitor that won't return any value, consistently gray.
    Monitoring scenario is Shopping Cart/PPO process - we have cases where Shopping carts fail to create purchase orders in our ECC system.
    We can see the errors, and have created a monitor with a threshold of '1" just to try to trigger the alert.
    Process being monitored is PURORD006, monitor object is boppocol
    Configuration is generated and activated, there are no errors in SLG1.  Monitor runs every 5 minutes.  There are no config errors showing anywhere, and there are no authorization errors for any users.
    There are a few red extractors, but they're all workload/e2e related, not BPMON.  Agents are green.
    Solman is 7.1 Sp12, newly upgraded, all Managed system config/techmon/bpm config clean and green .  This also did not work in our previous SP10 incarnation.
    Does not matter which ECC system we configure for this, they all act the same way, no metric.  Like there's something fundamentally incorrect with our setup or we aren't understanding how this particular monitor works.  We have other BPM monitors that work just fine, so it's not a complete config failure, just this one particular one.
    ECC system has st-pi  2008-1-700 10
    st-a/pi is 01R_700
    System is not allowing me to embed screenshots..  grr.....  attached screen shots.
    Any help appreciated.
    Thanks.
    Bernie

    First of all, if you have IT resources inhouse (or even external) consider asking them.
    Also having a backup of the old db would be my recomandation, also check first if there
    is data inside which you might want to export as long as the old tms is up and running.
    There are a lot of different permissions settings which could grant you access to everything, but
    stop you from dropping / deleting the old db.
    You can drop a database in different ways, gui, command line,...
    This is more a Microsoft SQL than a TMS question.
    For more info I would recomend to check the Microsoft sites (and forums) or google.
    Like this article here: "Deleting a Database"
    http://technet.microsoft.com/en-us/library/ms189278(v=sql.105).aspx

  • HELP! GENERIC Host Process For Win32 SERVI

    I updated my drivers the other day now I can't keep my sound working. A few minuts after I reboot I get this message "GENERIC Host Process For Win32 SERVICES". So I tried to uninstall all previous installed drivers and reinstall the newest ones. This didn't help. Once I get the message from windows I then try to open my Volume Control on my tool bar and then I get this message "There are no acti've mixer devices available" Anybody have any ideas on what happend?Message Edited by SYT on 09-09-2005 05:24 PM

    SYT wrote:
    I updated my drivers the other day now I can't keep my sound working. A few minuts after I reboot I get this message "GENERIC Host Process For Win32 SERVICES". So I tried to uninstall all previous installed drivers and reinstall the newest ones. This didn't help. Once I get the message from windows I then try to open my Volume Control on my tool bar and then I get this message "There are no acti've mixer devices available" Anybody have any ideas on what happend?Message Edited by SYT on 09-09-2005 05:24 PM
    Which OS? Which sound card?
    Something went wrong when you updated your drivers.
    Were there any error messages when you updated your sound drivers?
    Can you adjust volume on Windows 'mixer' (Control Panel-->Sounds and Multimedia --> Audio tab:Sound Playback:Volume)? If not then somehow you have maybe 'lost (control over)' windows kmixer.
    If you got XP then try if reinstalling SP2 helps anything. Check also first, if "Audio Service" is running (on services manager).
    .jtp

Maybe you are looking for

  • 2nd time in less than 6 months backlight of Ideatab Lynx stopped working

    Just like the subject says, I've only had this device for less than 6 months and the backlight on the unit has once again stopped functioning. I really can't recommend this product as it has been nothing but a hassle having to get it serviced for a s

  • Can i talk to a person. i don't see my problem listed

    my email message area is blank. it has something to do with internet explorer browser. i would like to discuss this with someone and explain how it happened and what i should do to fix it.

  • Configure VPN Server Cisco 877W

    Hello! I need to implement VPN Server on a Cisco 877W. The idea is as follows: Access the network from anywhere using the Cisco VPN Client; The router need receive a minimum 5 simultaneous connections; Each User would have a login and password; Cisco

  • Trying to us BIPUBLISHER TO PRINT a pdf with APEX

    APEX version 4.1.1.00.2.3 BIPUB 11.1.1.6.0 MICROSOFT OFFICE WORD 2007. We are trying to print a pdf using Bipublisher for APEX. We have done this before when we were using 3.1 of APEX and it worked. We are also using bipublisher add 11.1.1.6 for micr

  • DBUA upgrade 9.2.0.4 TO 10.2.0.2

    Hi Guys, I am upgrading oracle 9.2.0.4 to 10.2.0.2 on solaris. I checked the log file and I found out that the following errors: I tailed few lines : ORACLE instance shut down. select count(*) from v$instance ERROR at line 1: ORA-01034: ORACLE not av