Open closed XML files - IPCC

Hi All
We are looking to implement basic IVR into our schools using our IPCC Express Prem.
We would like to provide school admin staff with the ability to manage their own open/closed xml files and were thinking of writing an
application that delivers username, password and date fields that would then update their relevant files on IPCC.
Can anyone suggest possible problems,flaws,advice to help our adventure.
Thanks
Rich

Hi Arun,
These files are encrypted. If your organisation is a partner with Nakisa you can obtain the decrypter from them.
Portal SSO works without any configuration directly in the XML files. If you are getting an error stating that the Portal ticket cannot be interpreted then your configuration is not correct. In your URL iView you need to ensure the fully qualified domain name (FQDN) is used for the application URL. In the Administrator Console you need to ensure you enter the system details (Host, Sys Nr and Client) for the backend system which holds your SSO ticket for that Portal. You need to use FQDN here too.
There is additional security configuration that can be done in the XML files but SSO will still work with just the Administrator Console configuration.
I hope that helps!
Luke

Similar Messages

  • How to open and XML file?

    Does anyone have a way on Mac to open an XML file for viewing. This can be done with WIN Excel and XML toolkit but doesn't exist for Mac Excel in Office 2008. I can open with TextEdit but would like to see the info with headers and cells without all the XML coding. Numbers 09 can't open it at all.

    Numbers uses XML to build the description of the documents but it's not an XML editor.
    A simple search in Google with the intricate key string xml editor AND mac return numerous interesting links.
    Yvan KOENIG (VALLAURIS, France) vendredi 9 octobre 2009 11:33:27

  • How to open a XML file in internet explorer from labview

    I need to open the xml file and see the content in the internet explorer through labview. clicking the button in labview front panel  i need to see the same view as we double click the xml file as it open in internet explorer .

    Hi parthipan,
    you can use the "Open URL in Default Browser.vi".
    Mike

  • Error while opening the XML file

    Hi all,
    i'am trying to download data from internal table to XML file with root node and its
    corresponding child nodes.i have written the program in this way.
    tables: mara.
    include bcciixml_decl.
    include bcciixml_impl.
    parameters: p_matnr like mara-matnr.
    start-of-selection.
    data: piXML          type ref to if_ixml,
            pDocument      type ref to if_ixml_document,
            pStreamFactory type ref to if_ixml_stream_factory,
            pIStream       type ref to if_ixml_istream,
            pParser        type ref to if_ixml_parser,
            pNode          type ref to if_ixml_node,
            pText          type ref to if_ixml_text,
            string         type string,
            count          type i,
            index          type i,
            totalSize      type i,
            dsn(40)        type C,
            xstr           type xstring.
      types: begin of it_mara,
                matnr like mara-matnr,
                ernam like mara-ernam,
                aenam like mara-aenam,
                vpsta like mara-vpsta,
            end of it_mara.
    data: itab_mara type table of it_mara.
    select matnr ernam aenam vpsta from mara into table itab_mara where
           matnr =  p_matnr.
    types: begin of xml_line,
            data(256) type X,
          end of xml_line.
    data: xml_table type table of xml_line.
    parameters: filename like rlgrap-filename.
    pixml = cl_ixml=>create( ).
    *-- create the initial document
      pDocument = pixml->create_document( ).
      pStreamFactory = pixml->create_stream_factory( ).
    *-- create an input stream for the table
    *pIStream = pStreamFactory->create_istream_itable( table = xml_table
                                                     size  = totalSize ).
      pParser = piXML->create_parser( stream_factory = pStreamFactory
                                      istream        = pIStream
                                      document       = pDocument ).
    data: pOStream type ref to if_ixml_ostream.
    pOStream = pStreamFactory->create_ostream_itable( table = xml_table ).
    call method pDocument->render( ostream   = pOStream ).
    *-- how many bytes were written to the table?
    totalSize = pOStream->get_num_written_raw( ).
    *-- write the XML document back to the frontend
    concatenate filename '.out' into filename.
    condense filename no-gaps.
    CALL FUNCTION 'WS_DOWNLOAD'
         EXPORTING
              BIN_FILESIZE            = totalSize
              FILENAME                = filename
              FILETYPE                = 'BIN'
         TABLES
              DATA_TAB                = itab_mara
         EXCEPTIONS
              OTHERS                  = 11
    IF SY-SUBRC <> 0.
    ENDIF.
    *-- print the whole DOM tree as a list...
    pNode = pDocument.
    perform print_node using pNode.
          FORM print_node                                               *
    form print_node using value(pNode) type ref to if_ixml_node.
      data: indent      type i.
      data: pText       type ref to if_ixml_text.
      data: string      type string.
      indent  = pNode->get_height( ) * 2.
      case pnode->get_type( ).
        when if_ixml_node=>co_node_element.
          string = pNode->get_name( ).
          write: at /indent '<', string, '> '.
        when if_ixml_node=>co_node_text.
           pText ?= pNode->query_interface( ixml_iid_text ).
           if pText->ws_only( ) is initial.
            string = pNode->get_value( ).
            write: at /indent string.
           endif.
      endcase.
      pNode = pNode->get_first_child( ).
      while not pNode is initial.
         perform print_node using pNode.
         pNode = pNode->get_next( ).
      endwhile.
    endform.
    but when open the XML file which i created on the desktop it shows the following error.
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    XML document must have a top level element. Error processing resource 'file:///C:/Documents and Settings/anilda/Desktop/sim...
    how to rectify this error.
    Regards,
    satish.

    You are going to need to provide more details about this shell script file you are executing and the environment it is in. Beyond being on a Windows box, you have provided none of those details.
    If the SQL statement will execute cleanly in SQLDeveloper but not your script, then the issue lies in the script. How do you know the error is that SQL statement? Can your script even "select * from dual;" successfully?
    Also, SQLDeveloper (which I don't use) may contain its own libraries for accessing the DB. You probably should consider upgrading to a SQL*Plus client that is at least the same version or later as your database.
    Note:
    As I recall, xmlgen in 9.2 is now a synonym for dbms_xmlgen. You should change the package name accordingly [url http://docs.oracle.com/cd/B10501_01/appdev.920/a96612/d_xmlge2.htm#1010709]dbms_xmlgen.getXML

  • Open an xml file from a URL

    i am trying to open an xml file from a URL.
    i have been using the standard (i think!) xml suite, part of the System Events. is this possible? is this the best way? are there alternatives? any good tutorials of how to use it too?
    the file i am trying to open is: http://www.tvrage.com/feeds/episode_list.php?sid=xxxx
    where "xxxx" is a number of a show, e.g. 2930 is buffy
    regards
    jingo_man

    It works!!
    I used the URL and BufferedReader classes to fill the parser. Here's how:
    // create a new object of type URL
    URL xmlURL = new URL( "http://ServerName/DbName/PageName?OpenPage&username=myname&password=mypassword");
    // Create the SAX2 parser
    SAXParser saxParser = spf.newSAXParser();
    xr = saxParser.getXMLReader();
    // Set the ContentHandler
    DefHandlerClass myHandler = new DefHandlerClass();
    xr.setContentHandler( myHandler );
    // read the URL stream into the BufferedReader
    BufferedReader in = new BufferedReader( new InputStreamReader(xmlURL.openStream()));
    // parse the document
    xr.parse( new InputSource( in ) );
    // close the input stream
    in.close();
    PjR

  • As opening an xml file in excel?

    I can not open a xml file in excel, and I get a message that is not a valid spreadsheet, and if the same file can be opened from a normal machine, anyone know how?

    altairdfdfdf wrote:
    I can not open a xml file in excel, and I get a message that is not a valid spreadsheet,
    It's not a spreadsheet, that is why.
    Open it with TextEdit.

  • Unable to open the XML files in Nakisa

    Hi Gurus,
    We are unable to open certain XML files in Nakisa. They show up as encrypted in the notepad or fail to open using the XML Marker. The files in question are
    AppResources.xml
    LoginConfiguration_SAP_Standard
    LoginConfiguration_Anonymous
    Purpose: We want to enable the SSO with the portal . We have checked the radio button but nakisa does not recognize the SSO ticket from the portal (Any folder in Nakisa where we need to place the Portal ticket?)
    Also we want Nakisa to show the org chart for the logged in user. Luke had mentioned that some changes need to be made in the AppResources.xml (hope i correctly remember this) and we were looking to make these changes (rather try out.. any pointers please..?)
    Thanks and Regards,
    Arun E V

    Hi Arun,
    These files are encrypted. If your organisation is a partner with Nakisa you can obtain the decrypter from them.
    Portal SSO works without any configuration directly in the XML files. If you are getting an error stating that the Portal ticket cannot be interpreted then your configuration is not correct. In your URL iView you need to ensure the fully qualified domain name (FQDN) is used for the application URL. In the Administrator Console you need to ensure you enter the system details (Host, Sys Nr and Client) for the backend system which holds your SSO ticket for that Portal. You need to use FQDN here too.
    There is additional security configuration that can be done in the XML files but SSO will still work with just the Administrator Console configuration.
    I hope that helps!
    Luke

  • Can´t Open Model XML file - URGENT

    Hi all,
    I have made a model in SQL Developer Data Modeling, and save it. Now when I open the xml file the model is empty, but the all the information about entities and relations are on the other directory xml files. I send the main xml and the whole directory for evaluation... Can you please help, its about 1 week work... :(
    Regards,
    Sérgio Teixeira

    Hello Sergio,
    I'm sorry for your problems. I'll try to help you if you send me your design ( design xml file and directory with the same name).
    I see that mail information is hidden in the forum. You can use feedback application http://apex.oracle.com/pls/otn/f?p=2306:101 to post the problem.
    Best regards,
    Philip

  • How to open an .xml file

    Attempting to open an *.xml file; unreadable.

    Thanks for your reply. The file has been saved on my computer; it was created via Surgeon General's "My Family Health Portrait". It can be uploaded to that site, and, in fact, the data contained in the xml file can be printed from the site after editing. So, I suppose it becomes less important to open the xml file, since all the data will be contained on the site.
    I did spend considerable time attempting to open the xml file in a readable format, e.g. as a web page on Firefox, and I am still curious as to whether that can be done. By the way, I can open it in a text editor, but rendering it into something easily readable seems to me to be an outsized task.

  • Adobe Premiere Pro CC not opening an xml file created in Adobe Premiere Pro CC 2014

    Hello,
    I had created a project using Adobe Premiere CC 2014 which had some minor changes, which were going to be done by my boss, who uses Premiere Pro CC. However the project file of Adobe Premiere CC 2014 was not getting opened in Premiere Pro CC giving a message of type that as this file was created in a newer version of Premiere, it cannot be opened. After searching on this forum I found that we have to convert the Premiere Pro CC 2014 project file to XML file which can be then imported onto Premiere CC. So I created a XML file by selecting File-> Export -> Final Cut Pro XML and sent it to my boss. However even the xml file is not getting opened after being imported onto Premiere Pro CC giving an error of sorts, Cannot open the file since there is a problem with the codecs.
    Have I done something wrong? Please guide me since I am a beginner to the Adobe environment and would very much appreciate any help.
    Thank you.

    Indeed..... but are they fully documented, includuing Adobe's implementation of Multicam?  
    Collapsing them should really be no more than a day or two of work for an Adobe engineer and a day of beta testing.  Seriously.  Lots of people want this - it only takes a few minutes with google to find people struggling with this exact problem.   Premiere Pro Multicam --> Resolve.
    Since we do a lot of multicam work it's something that's important to us.
    Lots of other people never go near multicam, so I guess for them it's something they really don't care about.
    I currently have > 22 hours of multicam sequences that need primary colour correction and follow on grading..... resolve would be the best choice by far. 

  • Opening Teststand XML file in Internet Explorer

    I have TestStand 4.1 installed on my PC.
    The test station PC has TestStand 4.0 installed.
    When I open the XML report file in Internet Explorer on my PC, I just get run-on text.
    What am I doing wrong?

    What do you mean with "run-on text"?
    If you refer to the XML content (including the tags, "raw XML"), then the Internet Explorer fails to display the content of the XML using the style sheet.
    Another option is that you configured the Internet Explorer to always display the raw content instead of using the style sheet.
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Safari 6 opens Mail when opening an XML file

    Hi all,
       I just upgraded to Mac OS 10.8 w/Safari 6. I used Safari to look at my podcast XML feed and make sure it was OK once in a while. Now, with 10.8, going to an XML file opens Mail with the error "no app associated with this type of file". Any idea how to get Safari to open XML files natively again? I'm using Firefox in the meantime which works fine, but I'd rather not have to use it. Thanks.

    Select the item in Finder > Get Info > Open with > Choose App from drop-down menu. If you want all XML files to open with Safari, then click the "Change All" button underneath it.

  • Open an xml file thru Abap

    i have an excel that has always the same formating.
    Especially is a form this Excel .
    I want to be able to import it to a ztable that i have .
    I thought that i could save the Excel as Xml file and then open it in SAP .
    Can anyone give a hint ?
    Points will be rewarded (as usual) !!!!

    Dimath,
    There are some FM to use to upload information from excel file to SAP - find this example:
    REPORT Z_TEST_EXCEL .
    TYPE-POOLS truxs.
    tables : ZTABLE_TEST, KNA1.
    types: begin of t_tab,
    col1 type ZTABLE_TEST-KUNNR,
    col2 type ZTABLE_TEST-NAME1,
    col3 type ZTABLE_TEST-VORNA,
    end of t_tab.
    data : itab type standard table of t_tab,
    wa type t_tab.
    data it_type type truxs_t_text_data.
    parameter p_file type rlgrap-filename.
    data ttab type tabname.
    at selection-screen on value-request for p_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    FIELD_NAME = 'P_FILE'
    IMPORTING
    FILE_NAME = p_file.
    start-of-selection.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
    EXPORTING
    i_tab_raw_data = it_type
    i_filename = p_file
    tables
    i_tab_converted_data = itab[]
    EXCEPTIONS
    CONVERSION_FAILED = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    end-of-selection.
    ZTEST_TEST-KUNNR = wa-col1.
    ZTEST_TEST-NAME1 = wa-col2.
    ZTEST_TEST-STRAS = wa-col3.
    ZTEST_TEST-ORT01 = wa-col5.
    ZTEST_TEST-PSTLZ = wa-col4.
    modify ZTEST_TEST.
    hope that helps,
    please reward if useful!

  • Open the xml file in a new tab with javascript??

    Hello all,
    I have given Denes Kubicek example on Export to xml files straight from Reports http://htmldb.oracle.com/pls/otn/f?p=31517:118:651492651950833::NO .
    I am glad to say that with a few changes it also works on Interactive reports.
    However i am trying to implement something different.
    I wish to have the same feature but within an ajax request, i don't want to submit the page.
    I already know how to fill in all the variables required.
    the only problem is on how to return the file to download.
    In your method as soon as the page submits you present the file to download.
    I want to be able to do that but after an ajax request and not after a submit.
    I am quite sure the problem is about http/header mime types.
    I can return the whole xml into the javascript. I can even see it in an alert() or in the page with document.write(); but i haven't found a way on how to make it as a file download automatically.
    Can anyone tell me how to solve this??
    Regards Pedro.

    about:config
    set browser.search.openintab to true

  • I am trying to open a .xml file in FCP, when i try to import the file it says choose a translation document. Any ideas?, I am trying to open a .xml file in FCP, when i try to import the file it says choose a translation document. Any ideas?

    I am trying to import a .xml file into FCP; it asks for a translation document file. Any ideas on how to proceed? Thanks

    What kind of xml?  What kind of xml?
    Shane is right if it's an xml exported from finalcutpro but there are many other kinds/uses for xml, most of which will not import into fcp.

Maybe you are looking for

  • Is there any way to emulate "nounix" option when mounting Samba fileshares?

    I need to mount an SMB file share from a Linux server that I do not control. The server was recently upgraded to the new version of samba. With that change, the server now supports samba's new "unix extensions". The problem with this is when the file

  • Apple ID retrieval not working

    The wife cannot log into her Apple ID on any Apple products.  When trying to recover the password the e-mail is never received.  When going through to retrieve the login information it claims the information provided (e-mail and birthdate) are unknow

  • Validate XML Document

    Hi I was wondering how I could validate a document based on a hard coded string representing a dtd in my program. basically I have: private static final String DTD =  // dtd that the animation xml file must follow             "<?xml version='1.0' enc

  • How can i populate the Jcombobox with the data from my jpa list? Desperate

    I need to populate my jcombobox with data from my jpa. This is my first time trying this and i just need some sample or a quick solution to this. Thanks in advance <code> public static MyNames myNames() { EntityManagerFactory emf = Persistence.create

  • How can i creat a "book"

    i have microsoft office but i can figure out how to make a document where it takes an 8 1/2 by 11, landsape, print on both sides and make it into colums. if anybody could help me that would be great!