XML API access to the chat pod?

Is it possible to access the contents of the chat pod, in
Connect Professional, using the XML API? What I want to do is clear
the contents of the pod programmatically.
I've tried drilling down through the SCO ID's of my test
meetings, but I don't see anything below the meeting level. In
other words there doen't seem to be a SCO for the individual pods.
Thanks Eric

Bummer. I suppose there's no way to tie into the stream
between the different meeting clients either? What I mean is that
if I'm the moderator of a meeting and I clear the chat through my
pod then all the other chat pods (for the guests) are cleared as
well. Any way to get at the functionality outside of the XML API?
The reason I ask is that I'm trying to automate the process
for a customer that uses persistent meetings. The problem is they
don't want the chat text from the previous session to show up in
the next session, and quite often the moderator forgets to clear it
out before they exit the meeting.
Thanks
Eric

Similar Messages

  • Dabu etal: per war classloader vs XML API per war

    OC4J classloader folks;
    A general problem for the deployment folks/production env
    is
    how to host or configure the deployment of war's that need specific versions or
    specific vendor's XML apis.
    IMO the XML api vendors, designers have not helped at all with package name spaces and
    top level factories and
    VM wide system properties for determining the instandiated engine.
    Anybody have thoughts on how a OC4J production environment can effectively be
    a "job shop" for deploying anonymous wars who might have internal dependancies on specific XML parsers, versions or vendors?
    Ok, so a little easier, we're not an anonymous war job-shop. We do know what's
    being deployed and have complete control over the wars. What help is this in
    solving the problem? :)
    Thanks, curt

    Hi Lars,
    Hay, the new tag <web-app-class-loader search-local-classes-first="true" />
    for 903 is great!
    I stand corrected, I would have bet $10, maybe $50, that this
    is the default behavior of a J2EE container. :)
    But I'm on 902 OC4J so this isn't available anyway.
    BTW, whats the rationale for this NOT being default behavior?
    You know if other J2EE containers do class loading from world on down to war by default
    too?
    Thanks
    curt

  • Unable to add xml-apis.jar

    When ever i add xml-apis.jar to the oracle application server as part of deployment of my application, the server gives the following error when i want to log into the application server control.
    This OC4J is configured to make JMX connections via RMIS and fall back to RMI if the RMIS port is not configured. The RMIS connection on the OC4J instance home on Application Server test.10.224.1.158 is configured but a connection could not be established. The JMX protocol is specified by the oracle.oc4j.jmx.internal.connection.protocol property in opmn.xml

    let follow your post on unable to add xml-apis.jar
    regards
    Tugdual Grall

  • What would cause my Chat Pod to spontaneously close?

    During a live event today the chat pod suddenly closed, without anyone hiding it. Several of the attendees reported it closed before it happened on my Mac. What could have caused this to happen?

    Hi,
    I can think of few scenarios where this can happen:
    1. Host hiding it (you already ruled it out)
    2. Host changing the layout to one which doesn't have the chat pod in it.
    3. Host moving the chat pod to presenter only area(poa)
    I guess you were not the host  or were there multiple hosts in the meeting room? If this is the case can you get in touch with (other) hosts and see if they did any of the 3 activities above mentioned?
    Thanks
    Sameer Puri

  • Accessing XML API's from Java Stored Procedures in DB

    I am working in an environment that does not contain any Oracle applications and we have been looking at XML publisher as a stand alone service. I have successfully configured the UI and created some command line java programs to produce documents and deliver these documents.
    How do I install (do I need to install) XML Publisher java in the database in order to access XML Publisher API's from stored procedures. Any clues or help would be gratefully appreciated.
    George

    Hello Chris,
    I have been able to create a PDF from the database. I loaded the following jar files and removed any java class that could not compile.
    activation.jar, axis-ant.jar, axis.jar, axis-schema.jar, bicmn.jar, bipres.jar, collections.jar,
    commons-beanutils.jar, commons-collections-3.1.jar, commons-collections.jar, commons-dbcp-1.1.jar commons-digester.jar, commons-discovery.jar, commons-el.jar, commons-fileupload.jar, commons-logging-api.jar commons-logging.jar, commons-pool-1.1.jar, http_client.jar, i18nAPI_v3.jar, javamail.jar, jaxrpc.jar,
    jewt4.jar, jsp-el-api.jar, log4j-1.2.8.jar, logkit-1.2.jar, ojpse.jar, oracle-el.jar, oraclepki.jar,
    orai18n.jar, quartz-1.5.1.jar, quartz-oracle-1.5.1.jar, regexp.jar, saaj.jar, service-gateway.jar, share.jar, uix2.jar, uix2tags.jar, versioninfo.jar, wsdl4j.jar, xdocore.jar, xdoparser.jar, xdo-server-delivery-1.0-SNAPSHOT.jar, xdo-server-kernel-0.1.jar, xdo-server-kernel-impl-0.1.jar, xdo-server-scheduling-1.0-SNAPSHOT.jar, xercesImpl.jar, xmlparserv2-904.jar, xmlpserver.jar, xsu12.jar
    I needed to copy the XML Publisher fonts to the database server and ran the following java grants, note my $ORACLE_HOME is /opt/app/oracle/product/10.1.0/
    dbms_java.grant_permission('XMLP', 'java.util.PropertyPermission', '*', 'read,write');
    dbms_java.grant_permission('XMLP', 'java.net.SocketPermission', '*', 'connect, resolve');
    dbms_java.grant_permission('XMLP', 'java.io.FilePermission', '/tmp/*', 'read, write, delete');
    dbms_java.grant_permission('XMLP', 'java.io.FilePermission', '/opt/app/oracle/product/10.1.0/javavm/lib/*', 'read');
    dbms_java.grant_permission('XMLP', 'java.io.FilePermission', '/opt/app/oracle/product/10.1.0/javavm/lib/fonts/*', 'read');
    dbms_java.grant_permission('XMLP', 'java.lang.RuntimePermission', 'setFactory', '');
    George

  • Is it possible to access to the path property of a shape layer by AEGP API?

    Hi everyone! I recently started depeloping AE plug-in and trying to access to the path of shapes on the layer from AEGP API. Sorry in advance if my question has been already asked by someone before, but I couldn't find exact answer to my question so let me ask.
    In a composition, I have a shape layer and the shape layer has a vector shape depicted by the pen tool. The constitution of the layer looks like below.
    Apparently, those streams of the layer like Anchor Point, Position, and Scale can be accessed by AEGP_GetNewLayerStream. However, I have no idea how I can get the pointer to the Shape 1 and get the Path from it because the these valuse are not categolized into any AEGP_LayerStream types.
    Very similar question was asked in the following link and the it was advised to use MaskOutlineSuite, PathQuerySuite, and PathDataSuite, although these suites are for making effect plugins, not for AEGP plugins, so I am not sure if they can be used here.
    http://forums.adobe.com/thread/1068528
    So would someone kindly enlighten me about this??
    Thank you very much.

    hi hagmas! welcome to the forum, where there are plenty of existing answers
    but never for exactly what you seek.
    first off, every suite who's functions name start with AEGP, were actually
    created for AEGP's plug-ins use, but most of them (including the suites you
    mentioned) can also be used in effects. (and not as you thought, the other
    way around)
    the shape layer's stream indeed are not indexed, and that's because then
    are added dynamically by the user and can be re-ordered.
    look into the "dynamic stream suite", using which, you'll get the first
    stream of the shape layer, and start navigating though there by getting the
    stream name, type, parent group ect...
    you'll eventually find the "content" group, and in it the "shape" groups,
    and in them the... you get the picture.
    yes, it's somewhat tedious, but since nothing in these gourps order is
    pre-determined or guaranteed, there's no other way to go (that i know of).

  • Using API to download the webi document in the XML format

    I am just trying to use this API to download the webi document in the XML format. I need a sample XSL file which we can use to download the XML in a formatted output.
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/en/RE_SDK/resdk_java_doc/doc/resdk_java_apiRef/com/businessobjects/rebean/wi/XMLView.html
    getReader
    public java.io.Reader getReader(java.net.URL xsl)
                             throws REException
    Return the result of the XSL transformation applied to the XML report output stream.
    Parameters:
    xsl - URL to an XSL file used to transform report XML.
    Since:
    11.5
    See Also:
    getReader()

    If the same content of file already thr in the Internal table as 1 STRING/LINE then you can loop the internal table count the entries which one you want like
    Kanagaraja L

  • Can I remove attendee's name attached to comments in the chat or Q&A pod?

    I am doing a series of webinars concerning foster and adoptive parents. Many of the attendees want to remain anonymous to the other attendees but would like to participate in Q&A's and chats. Is there a way to hide the name of the person entering a question or chat comment from the other attendees but have everyone still see the comments?
    Thanks ahead of time!
    Mike

    Now that I think of it, you can change the display name in the chat (and attendee list) pod. Go to Meeting > Preferences > Display Name and you can choose to show just the first or last name of the individuals, so it doesn't single out any one in the chat tool. Unfortunatly, you can tell it to display nothing. If you do it will just display the users' full name.

  • What is the good voice xml api for java

    dear buddies,
    what is the best voice xml api for java? has somebody comeacross and work involving this, i would like to hear more about this
    thanks
    Kuha

    Maybe the VXML forum is a better place: http://www.voicexml.org/
    Good luck.

  • BingAds API: Can we configure the same email id to get API access for multiple BingAds account ?

    Hi Eric,
    We help our customers to analyze their marketing performance. We have configured the email id e.g. [email protected] which has the API access to one of our customer BingAds Account. Now we are able to authenticate using Oath tokens and able to access customer
    data using the given developer token.
    Now i need your help to clarify the below.
    1) Can i have the access to my other customer BingAds account using the same email Id i.e. [email protected] or Do i need have the two different users/email ids to access different BingAds account?
    2) If it is possible to configure the same emailId/usert for different BingAds accounts , then i belive my Oauth tokens will be same in this case, but how about my devloper token , do i need to maintain two seperate developer tokens?
    3) If its not possible to use the same email id for two BingAds account api access, is there any alternate way to have the common oauth authentication for  both the accounts?
    Thanks in advance.
    Regards,
    Sreekanth.
    Sreekanth A

    Hi Eric,
    I have got to know from the BingAds support that i have to switch my account to Agency type to access multiple accounts data over API. But they only assist on this for Microsoft Managed BingAds account, but it can not access the data from BingAds account which
    is managed by Yahoo.
    If i need to create Agency type BingAds account which can have the API access to multiple BingAds accounts managed by Yahoo, what may be the process?
    Can you please guide me on this? as of now i got the news is that to contact the Yahoo Account managers, if you have any more information on this , please let me know.
    Thanks,
    Sreekanth.
    Sreekanth A

  • I need to know how to access the book pod in robohelp 8/

    i need to know how to access the book pod in robohelp 8/

    Hi there
    Actually, by my count there are at least five ways to coax books into the TOC
    From the menu, Click File > New > Book.
    Type the keyboard shortcut of Ctrl+Shift+B.
    Right-click the pod and choose New > Book.
    Click the New Book icon in the pod toolbar.
    If you have organized your project using folders, you may automatically create a TOC based on the file structure and each folder becomes a book. There are also multiple ways to automatically create the TOC. One is by right-clicking the TOC pod. Another is by clicking an icon in the pod toolbar and another is by clicking the Tools menu.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Cannot create 110 vlans per vnic usiing the XML API

    In a Service Profile, I have 2 vnics and both has 110 vlans, The HTTPS request to the UCS fails but when I cut it down to 60 it works. I have seen this working (110) on some UCS versions and fail on the same version on a different UCS. It is not a version issue.
    Anybody has any insight.
    Thanks

    Hi Kumar,
    I need to create multiple Vlan's using XML API. However I am able to create only one at a time
    Currently, I am posting the XML shown below-
            cookie="$cookie">
                    key="fabric/lan/net">
                        defaultNet="no"
                        dn="fabric/lan/net"
                        id="100"
                        name="myLANtest"
                        pubNwName=""
                        sharing="primary"
                        status="created"
                        />
    I tried by sending VlanId's in a range like "1-10". However, received an error mentioned below
    XML PARSING ERROR: unknown property value 101-105, name id, class fabricVlan [fabric/lan/net]
    Can you please throw some light over the issue..
    Thanks
    Dilip

  • InfoPath 2013 Read SharePoint 2013 File data using Rest API Access Denied Exception

    I am designing a set of Forms and they need to query Data from among themselves.
    The whole set up described below works in the Form Filler/Preview
    I'll call them Form A and Form B
    Form A has a repeating table that needs to be displayed in Form B
    The user selects from a DropDown in Form B an Instance of Form A, using the selected I REST connection is executed so the Form A xml is available inside Form B. The connection is set up as follows:
    _api/web/lists/ListName/Items(SelectedId)/File/$value
    I publish the form as site content type, add it to a library, after triggering the REST connection I get an error. ULS gives me a 401 Access denied for NT Authority\IUSR (as it should since I don't have anonymous access enabled [nor has that solved the issue])
    That's my issue. All requests on the REST api are being executed as anonymous and not as a user that should have permission.
    Things I've tried:
    1. The connection uses a UDCX file, the conenction is set to use the form server proxy. The proxy has been enabled for the Form Services, web application and user connection. I've tried it with a configured App ID or an Explicit account
    2. I've tried enabling Anonymous access, but have had no success
    3. I've gotten the Query to work on Post Backs by adding the following to the web.config:
    <location path="_layouts/15/Postback.FormServer.aspx">
        <system.web>
          <identity impersonate="false" userName="bhs\sp_admin_dev" password="M1crosoft" />
        </system.web>
      </location>
    And while it solves the issue for Postback requests and I could add FormServer.aspx to the list I can't use this solution for a production environment, nor can I predict other issues that could be caused by the change.
    I haven't been able to find any references to this error so I wonder if I'm doing something wrong or if there's another way to do this.
    If I've been unclear on anything, let me know and I'll try to clear it up.

    Hi Choggo,
    thank you for your information,
    regarding this issue, it seems we may need to debug and trace your network, to check if should the parameter that is used for the REST connection is correct.
    i checked with infopath team members regarding this issue, they suggest that you try with impersonation, so that the user that login is not anonymous, but the user that you already been assign with.
    the last suggestions from our sharepoint team members that we are able to do, as we have limited tools on this forum support, that you need to check the file udcx itself, do the permission to access that file is correct, so for example, if the file is not
    having the permission to be read/access then the system may result with anonymous account, so that we may have the result that the data that should be passed are able to accessed.
    if should this suggestion not applicable to your environment, our sharepoint team members suggest that you to open an incident ticket, so that we can check and re-confirm more deep for you if should this is an undocumented feature or not.  the action
    plans is to have a remote session, then we can trace the data passing process, that is already correct, so that the IUSR is not appear when it authenticate.
    http://support.microsoft.com/contactus/?wa=wsignin1.0
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • API available for the Oracle PM?

    We are developing a tool that will automatically generate a (graph based) workflow, which can be fairly complex (invoke hundreds of web servcie operations).
    When the workflow executes we would like the tool to monitor the execution and display the progress dynamically, where each service is displayed as a node on a graph and changes colour as the state of execution changes.
    Does the Oracle PM have an API that allows us to interrogate the state of a BPEL process during execution?

    There is an API in the client package (Java doc available in C:\orabpel\docs\apidocs) that offers access to the list of activities and the audit trail (disclaimer: the xml representation of the audit trail is rather cryptic at this point).
    If you want a more granular mapping, we have seen customers assigning metadata to the in-flight instance as it progresses (assigning a special status for example using <bpelx:exec>setStatus( "...." )</bpelx:exec>.
    Finally, in 2.1, we will start advertizing what we call BPEL sensor which are classes that can register for callbacks to monitor the status/health of in-flight process instances. This is the interface for example that our BAM tool will us to collect business events.
    I hope this helps.
    Edwin

  • XML API Authentication Fails

    Trying to set up the XML API on an ASR 9K and find myself unable to authenticate with the XML API using Netcat.
    I've configured the box as below:
    Building configuration...
    !! IOS XR Configuration 5.1.2
    !! Last configuration change at Wed Apr 15 07:19:42 2015 by root
    username xml
    group sysadmin
    secret 5 $1$LY8B$39t3eTXf/ajMGWnX99.ux0
    password 7 07182E414C080D1657
    aaa authorization exec default group tacacs+ local
    interface MgmtEth0/RSP0/CPU0/0
    ipv4 address 10.2.100.1 255.255.0.0
    interface MgmtEth0/RSP0/CPU0/1
    shutdown
    interface TenGigE0/0/2/0
    shutdown
    interface TenGigE0/0/2/1
    shutdown
    interface TenGigE0/0/2/2
    shutdown
    interface TenGigE0/0/2/3
    shutdown
    router static
    address-family ipv4 unicast
    0.0.0.0/0 10.2.0.1
    ssh server v2
    xml agent ssl
    xml agent tty
    xml agent
    iteration on size 100
    end
    and RP/0/RSP0/CPU0:ios# xml echo Wed Apr 15 07:27:10.765 UTC XML>
    I've got two test users, root:root and xml, both of which I can connect to using SSH though the XML interface seems to reject them - using nc:
    alexanderturner@Alexanders-MacBook-Pro~/Downloads> nc -v 10.2.100.1 38751
    found 0 associations
    found 1 connections:
    1: flags=82<CONNECTED,PREFERRED>
    outif en0
    src 10.0.1.40 port 61066
    dst 10.2.100.1 port 38751
    rank info not available
    TCP aux info available
    Connection to 10.2.100.1 port 38751 [tcp/*] succeeded!
    User Access Verification
    Username: root
    Password: root
    User Access Verification
    Is this not authing against local?
    Thanks,
    Alex

    hey alex,
    it is likely failing tacacs author because of this line:
    aaa authorization exec default group tacacs+ local
    as long as the tacacs server is available, it will try against him and if that user doesnt exist in tacacs, it will fail that shell author.
    revise config to:
    aaa authentication login default local
    aaa authorization exec default local
    have a local username available that has cisco-support/root-system
    or you can also do a debug aaa author and debug tacacs and see what service is requested so taht the user profile can be updated providing that author if you like to leave the existing tacacs author in place.
    cheers!
    xander

Maybe you are looking for