XdbConfig.xml and XDB version 9.2.0.3

Since we've upgraded to 9.2.0.3 W2k, Enterprise Manager Console 9.2.0.1 will no longer update the xdbconfig.xml file. Only blanks show up under the configuration section of EMC. This component is aparently not upgraded in the 9.2.0.3 RDBMS patch, and this is one of the problems we've had with it.
Additionally, we have servers with Multiple databases and only default xdbconfg.xml files. This is BAD, because they want to use the same FTP 2100 and http 8080 ports. It appears that the last database started maintains control over the default ports, and if you shut that database down, one of the other instances will take over the ports.
How do you change the xdbconfig.xml file with out using ECM?
I've tried two methods and both have failed.
First simply using FTP logged in with SYS as sysdba, and copying a modified xdbconfig.xml into the root, and then shutting down the database with a restart. This had no effect to the xdbconfig.xml file.
Second I attempted to use the code blurb on Page A-14 in the XML Database Development Guide - Oralce XML DB Part #A99620-02.
Here is the code:
begin
DBMS_XDB.CFG_UPDATE(UPDATEXML(UPDATEXML
(DBMS_XDB.CFG_GET(),
'/xdbconfig/decendant::ftp-port/text()','2101'),
'/xdbconfig/decendant::http-port/text()',
'8001'));
DBMS_XDB.CFG_REFRESH();
end;
Here is the error result:
SQL> @c:\Xdb\changeXdbconfigORG.sql
DBMS_XDB.CFG_UPDATE(UPDATEXML(UPDATEXML
ERROR at line 2:
ORA-06550: line 2, column 22:
PLS-00201: identifier 'UPDATEXML' must be declared
ORA-06550: line 2, column 2:
PL/SQL: Statement ignored
I spent some time tooling around the forums, and I've seen reference to a permissions violation on updateXML, and I've also seen reference that the UpdateXML has to be out side the Begin Block. I've not been able to take advantage of either of references, and make it work. Can someone help me out with this?

Have a look at the xdbConfig.sql file in the zip file attached to the following post...
Posting Guidelines...

Similar Messages

  • 10.1.2.3 app server, xml, and Module version="101020300" and upgrade=yes

    We upgraded our app server from 10.1.2.2 to 10.1.2.3. I converted some of our Oracle Forms to xml before upgrading. I noticed the following "Module version" element and value? What version of Oracle Forms is this 10.1.0.2 , 10.1.2.2, or 10.1.2.3. When I add upgrade=yes on the compile line the fmb file dates do not change and the xml version tag stays the same in unix. Whenver I do this on windows the files dates of the fmbs do change, but the version tag also stays the same. Is it possible the 10.1.2.3 compiler uses 10.1.0.2 version for fmbs and knows there is nothing to change so it leaves the fmb untouched when upgrade=yes?
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <Module version="101020300" xmlns="http://xmlns.oracle.com/Forms"> Edited by: Mark Reichman on Aug 18, 2010 1:33 PM

    Although the "upgrade" option does not throw an error, it really doesn't apply any longer. It was used historically to convert SqlForms to Forms Menu Modules. Here is the text from the Forms Online help for this option:
    Upgrades modules from Oracle Forms 4.5, or from SQL*Menu 5.0, to an Oracle Forms menu module.You gain nothing from including "upgrade=yes" when you compile your 10.1.2 modules.
    Regarding the Module version you see in the XML or FMT, this version represents the engine used to create the module and not the Forms version. This version will not necessarily line up with the Forms version to which you are accustom to viewing. This is more of an internal reference. Your form's modules will not change in any way when you patch from 10.1.2.0 to 10.1.2.2 to 10.1.2.3. This is why there is generally no need to recompile when you patch. The changes are made in our product and not your app.

  • I've upgraded my firefox into 6.0 version.. when i want to play cityville from facebook it missing the en-US.xml and gameSettings.xml.. how can i fix this problem..??

    when i started my cityville from facebook the loading progress stopped at 73%.. when it stop i need to download file en-US.xml and gameSettings.xml
    this is the download URL for gameSettings.xml : http://cityvillefb.static.zgncdn.com/54988/gameSettings.xml.z
    and this is the download URL for en-US.xml :
    http://cityvillefb.static.zgncdn.com/54988/en_US.xml.z
    when i used version 5.0.1 i never met any problem like this..!!
    and i already use adobe flash player higher than version 10
    so how can i fix this problem..??

    Hi Scott,
    in SDIXML_DATA_TO_DOM you can only pass the name of root node, so you can not assign attribute xmlns to root node (<Data xmlns="ServiceNet">) ... unless you build the xml document from scratch (without SDIXML_DATA_TO_DOM)
    when using your sample code (without sale) I get xml without <item>
    SDIXML_DATA_TO_DOM => SDIXML_DOM_TO_SCREEN::
    <?xml version="1.0" encoding="utf-8" ?>
    - <Data>
      <LV_XMINS>xmlns="DUMMY FIELD</LV_XMINS>
      <BATCHDATETIME>2009-11-13T12:05:58</BATCHDATETIME>
      </Data>
    regards, Karsten

  • App Files Saved as XML and Working with New Versions

    We work with app data in the form of array of large clusters and use LV Anything to XML conversion VIs to save to disk.
    The problem is when new app versions are developed and changes are made to the cluster format; we want the customer to be able to open the old version saved XML file format.
    Usually the saved cluster (in XML) has be changed by adding/removing a field or even changing the options of a ring control for example.
    The app name and version is stored in the XML.
    Question: Is there a way of easily working with XML file formats with slightly different fields?
    In the past we have worked with the raw XML text by searching for fields which are different and modifying them accordingly so they are accepted by the new file format.
    Any tips would be greatly appreciated.

    battler. wrote:
    I have written a software name and version cluster to XML.  How do you read the version field in the XML?  Do you use string search?  Is there a better way?
    Yes, I use String Search (because it is near the beginning of the XML string).  Depending on your XML "flavor", you should be able to uniquely-identify the Version information.
    I'm interested in how best to work with XML.  It seems cumbersome and prone to error to use string functions.  Is there a way or best practice of reading the XML fields directly without converting to cluster?
    XML is, after all, text with specific "tag" information, also text, identifying it.  String functions are pretty much "the way to go", but except in rare circumstances, you shouldn't necessarily "roll your own", but should try to use the utilities that come with your XML package that "know" how to do the mapping between the XML representation of a LabVIEW variable (and its value) and the Variable itself.
    Can you elaborate on these "mapping" and "reading/conversion" routines you're using?  How do they work and what functions do they use?
    An excellent question.  There are at least three XML packages out there for LabVIEW -- the "native" LabVIEW package that NI provides, EasyXML from JKI Software (distributed using VIPM), and GXML, also on the LabVIEW Package network.  I'm afraid that I'm slightly "abusing" XML, and have made some modifications to how I use EasyXML and GXML. 
    If you simply view an XML file in a "smart" editor, you'll see a series of text lines with Begin/End tags (like HTML).  Depending on the XML "flavor", embedded between the tags are data that describe the LabVIEW variable type (e.g. Dbl, Cluster, Array, etc.) and also the value(s) of the Variable.  The "ReadXML" (or similarly-named) function takes this description and (usually) returns a Variant that you can "turn into" the chosen variable (because you know the data type).  [You may need to tell the Reader, in advance, the type of LabVIEW variable to expect so that it "knows when to stop reading"].
    As to how they work, they just do String pattern matching and processing, usually of a pretty sophisticated level, but then you don't have to do the hard work yourself!
    Why do you use Private Project library?  Is your project based on OO?
    The reason I used a Project Library with the "messy details" in the Private parts has nothing to do with OO, but rather with "data hiding".  I actually developed this for my data processing routines.  I had a set of routines that collected and analyzed the data (about 700 VIs).  Let's call this Project "Version 1".
    For Version 2, I basically added a dozen variables to the main  Data Cluster (having over a hundred elements) that characterized the response.  As this Cluster was in a Type Def, I didn't have to change my code very much to accomodate this new data format, so most of my VIs kept the same name, but were "different" because the underlying TypeDefs were different.
    So I have a Version 1 program that can analyze Version 1 data, and a Version 2 program for Version 2 data.  What I want is a Version-independent program that can look at the data, and then call for Version 1 or Version 2 analysis.  By burying the Version 1 and Version 2 code inside of a Project Library, and only exposing the top-level "Analyze My Data" VI, my Analysis routine, which didn't know (and didn't care) about the two different Data TypeDefs, just figures out (from the XML) which Version of data I have and then calls either Lib1:Analyze My Data or Lib2:Analyze My Data.  If I ever change the Version again, I just need to copy the code in the Library to a new Lib3 Library, modify the TypeDef and related version-specific code as needed, and I'm done.
    I may have made this sound easy -- trust me, it was a definite learning experience.  While trying this out, the first thing I did was to "break" my installations of LabVIEW 2012, 2013, and 2014 (curiously, LabVIEW 2011 wasn't broken).  It stayed "broken" for about a week, then "cured" itself (I'd done something illegal, or maybe just immoral, with my Library, and it took a while to purge the badness).
    BS

  • 11g http2-port http2-protocol xdbconfig.xml

    Hi,
    I'm using 11g, I tried to configure HTTPS for my xdb.
    I followed "Oracle® XML DB Developer's Guide" -> "28 Using Protocols to Access the Repository"
    to setup "http2-port" and "http2-protocol" parameters, but it didn't work.
    Here's what I did:
    SQL>DECLARE
    *2 v_cfg XMLType;*
    *3 BEGIN*
    *4 SELECT updateXML(DBMS_XDB.cfg_get(),*
    *5 '/xdbconfig/sysconfig/protocolconfig/httpconfig/http2-port/text()',*
    *6 '433',*
    *7 '/xdbconfig/sysconfig/protocolconfig/httpconfig/http2-protocol/text()',*
    *8 'TCPS')*
    *9 INTO v_cfg*
    *10 FROM DUAL;*
    *11 DBMS_XDB.cfg_update(v_cfg);*
    *12 COMMIT;*
    *13 exception*
    *14 when others then*
    *15 dbms_output.put_line(sqlerrm);*
    *16 END;*
    *17 /*
    PL/SQL procedure successfully completed.
    SQL> SELECT DBMS_XDB.cfg_get() FROM DUAL;
    DBMS_XDB.CFG_GET()
    *<xdbconfig xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/xdb/xdbconfig.xsd http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<sysconfig>*
    *<acl-max-age>15</acl-max-age>*
    *<acl-cache-size>32</acl-cache-size>*
    *<invalid-pathname-chars/>*
    *<case-sensitive>true</case-sensitive>*
    *<call-timeout>6000</call-timeout>*
    *<max-link-queue>65536</max-link-queue>*
    *<max-session-use>100</max-session-use>*
    *<persistent-sessions>false</persistent-sessions>*
    *<default-lock-timeout>3600</default-lock-timeout>*
    *<xdbcore-logfile-path>/sys/log/xdblog.xml</xdbcore-logfile-path>*
    *<xdbcore-log-level>0</xdbcore-log-level>*
    *<resource-view-cache-size>1048576</resource-view-cache-size>*
    *<protocolconfig>*
    *<common>*
    *<extension-mappings>*
    *<mime-mappings>*
    *<mime-mapping>*
    *<extension>au</extension>*
    *<mime-type>audio/basic</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>avi</extension>*
    *<mime-type>video/x-msvideo</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>bin</extension>*
    *<mime-type>application/octet-stream</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>bmp</extension>*
    *<mime-type>image/bmp</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>css</extension>*
    *<mime-type>text/css</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>doc</extension>*
    *<mime-type>application/msword</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>eml</extension>*
    *<mime-type>message/rfc822</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>gif</extension>*
    *<mime-type>image/gif</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>htm</extension>*
    *<mime-type>text/html</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>html</extension>*
    *<mime-type>text/html</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>jpe</extension>*
    *<mime-type>image/jpeg</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>jpeg</extension>*
    *<mime-type>image/jpeg</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>jpg</extension>*
    *<mime-type>image/jpeg</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>js</extension>*
    *<mime-type>application/x-javascript</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>jsp</extension>*
    *<mime-type>text/html</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>mid</extension>*
    *<mime-type>audio/mid</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>mov</extension>*
    *<mime-type>video/quicktime</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>movie</extension>*
    *<mime-type>video/x-sgi-movie</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>mp3</extension>*
    *<mime-type>audio/mpeg</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>mpe</extension>*
    *<mime-type>video/mpg</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>mpeg</extension>*
    *<mime-type>video/mpg</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>mpg</extension>*
    *<mime-type>video/mpg</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>msa</extension>*
    *<mime-type>application/x-msaccess</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>msw</extension>*
    *<mime-type>application/x-msworks-wp</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>pcx</extension>*
    *<mime-type>application/x-pc-paintbrush</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>pdf</extension>*
    *<mime-type>application/pdf</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>png</extension>*
    *<mime-type>image/png</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>ppt</extension>*
    *<mime-type>application/vnd.ms-powerpoint</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>ps</extension>*
    *<mime-type>application/postscript</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>qt</extension>*
    *<mime-type>video/quicktime</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>ra</extension>*
    *<mime-type>audio/x-realaudio</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>ram</extension>*
    *<mime-type>audio/x-realaudio</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>rm</extension>*
    *<mime-type>audio/x-realaudio</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>rtf</extension>*
    *<mime-type>application/rtf</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>rv</extension>*
    *<mime-type>video/x-realvideo</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>sgml</extension>*
    *<mime-type>text/sgml</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>svg</extension>*
    *<mime-type>image/svg+xml</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>tif</extension>*
    *<mime-type>image/tiff</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>tiff</extension>*
    *<mime-type>image/tiff</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>txt</extension>*
    *<mime-type>text/plain</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>url</extension>*
    *<mime-type>text/plain</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>vrml</extension>*
    *<mime-type>x-world/x-vrml</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>wav</extension>*
    *<mime-type>audio/wav</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>wpd</extension>*
    *<mime-type>application/wordperfect5.1</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>xls</extension>*
    *<mime-type>application/vnd.ms-excel</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>xml</extension>*
    *<mime-type>text/xml</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>xsd</extension>*
    *<mime-type>text/xml</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>xsl</extension>*
    *<mime-type>text/xml</mime-type>*
    *</mime-mapping>*
    *<mime-mapping>*
    *<extension>zip</extension>*
    *<mime-type>application/x-zip-compressed</mime-type>*
    *</mime-mapping>*
    *<mime-mapping xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<extension>htc</extension>*
    *<mime-type>text/x-component</mime-type>*
    *</mime-mapping>*
    *<mime-mapping xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<extension>xbl</extension>*
    *<mime-type>text/xml</mime-type>*
    *</mime-mapping>*
    *</mime-mappings>*
    *<lang-mappings>*
    *<lang-mapping>*
    *<extension>en</extension>*
    *<lang>english</lang>*
    *</lang-mapping>*
    *</lang-mappings>*
    *<charset-mappings/>*
    *<encoding-mappings>*
    *<encoding-mapping>*
    *<extension>gzip</extension>*
    *<encoding>zip file</encoding>*
    *</encoding-mapping>*
    *<encoding-mapping>*
    *<extension>tar</extension>*
    *<encoding>tar file</encoding>*
    *</encoding-mapping>*
    *</encoding-mappings>*
    *</extension-mappings>*
    *<session-pool-size>50</session-pool-size>*
    *<session-timeout>6000</session-timeout>*
    *</common>*
    *<ftpconfig>*
    *<ftp-port>0</ftp-port>*
    *<ftp-listener>local_listener</ftp-listener>*
    *<ftp-protocol>tcp</ftp-protocol>*
    *<logfile-path>/sys/log/ftplog.xml</logfile-path>*
    *<log-level>0</log-level>*
    *<session-timeout>6000</session-timeout>*
    *<buffer-size>8192</buffer-size>*
    *</ftpconfig>*
    *<httpconfig>*
    *<http-port>80</http-port>*
    *<http-listener>local_listener</http-listener>*
    *<http-protocol>tcp</http-protocol>*
    *<max-http-headers>64</max-http-headers>*
    *<max-header-size>16384</max-header-size>*
    *<max-request-body>2000000000</max-request-body>*
    *<session-timeout>6000</session-timeout>*
    *<server-name>XDB HTTP Server</server-name>*
    *<logfile-path>/sys/log/httplog.xml</logfile-path>*
    *<log-level>0</log-level>*
    *<servlet-realm>Basic realm=&quot;XDB&quot;</servlet-realm>*
    *<webappconfig>*
    *<welcome-file-list>*
    *<welcome-file>index.html</welcome-file>*
    *<welcome-file>index.htm</welcome-file>*
    *</welcome-file-list>*
    *<error-pages/>*
    *<servletconfig>*
    *<servlet-mappings>*
    *<servlet-mapping>*
    *<servlet-pattern>/Test</servlet-pattern>*
    *<servlet-name>TestServlet</servlet-name>*
    *</servlet-mapping>*
    *<servlet-mapping>*
    *<servlet-pattern>/oradb/*</servlet-pattern>*
    *<servlet-name>DBURIServlet</servlet-name>*
    *</servlet-mapping>*
    *<servlet-mapping>*
    *<servlet-pattern>/orarep/*</servlet-pattern>*
    *<servlet-name>ReportFmwkServlet</servlet-name>*
    *</servlet-mapping>*
    *<servlet-mapping xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<servlet-pattern>/i/*</servlet-pattern>*
    *<servlet-name>PublishedContentServlet</servlet-name>*
    *</servlet-mapping>*
    *<servlet-mapping xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<servlet-pattern>/*</servlet-pattern>*
    *<servlet-name>APEX</servlet-name>*
    *</servlet-mapping>*
    *<servlet-mapping xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<servlet-pattern>/apex/*</servlet-pattern>*
    *<servlet-name>APEX</servlet-name>*
    *</servlet-mapping>*
    *</servlet-mappings>*
    *<servlet-list>*
    *<servlet>*
    *<servlet-name>TestServlet</servlet-name>*
    *<servlet-language>Java</servlet-language>*
    *<display-name>XDB Test Servlet</display-name>*
    *<description>A servlet to test the internals of the XDB Servlet API</description>*
    *<servlet-class>xdbtserv</servlet-class>*
    *<servlet-schema>xdb</servlet-schema>*
    *</servlet>*
    *<servlet>*
    *<servlet-name>DBURIServlet</servlet-name>*
    *<servlet-language>C</servlet-language>*
    *<display-name>DBURI</display-name>*
    *<description>Servlet for accessing DBURIs</description>*
    *<security-role-ref>*
    *<role-name>authenticatedUser</role-name>*
    *<role-link>authenticatedUser</role-link>*
    *</security-role-ref>*
    *</servlet>*
    *<servlet>*
    *<servlet-name>ReportFmwkServlet</servlet-name>*
    *<servlet-language>C</servlet-language>*
    *<display-name>REPT</display-name>*
    *<description>Servlet for accessing reports</description>*
    *<security-role-ref>*
    *<role-name>authenticatedUser</role-name>*
    *<role-link>authenticatedUser</role-link>*
    *</security-role-ref>*
    *</servlet>*
    *<servlet xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<servlet-name>PublishedContentServlet</servlet-name>*
    *<servlet-language>C</servlet-language>*
    *<display-name>Unauthenticated File Access Servlet</display-name>*
    *<description>Servlet for files for unauthenticated users</description>*
    *<init-param>*
    *<param-name>RootFolder</param-name>*
    *<param-value>/images</param-value>*
    *<description>RootFolder</description>*
    *</init-param>*
    *<security-role-ref>*
    *<role-name>anonymousServletRole</role-name>*
    *<role-link>anonymousServletRole</role-link>*
    *</security-role-ref>*
    *</servlet>*
    *<servlet xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<servlet-name>APEX</servlet-name>*
    *<servlet-language>PL/SQL</servlet-language>*
    *<display-name>APEX</display-name>*
    *<plsql xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<database-username xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">ANONYMOUS</database-username>*
    *<default-page xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">apex</default-page>*
    *<document-table-name xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">wwv_flow_file_objects$</document-table-name>*
    *<document-path xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">docs</document-path>*
    *<document-procedure xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">wwv_flow_file_mgr.process_download</document-procedure>*
    *<nls-language xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">american_america.al32utf8</nls-language>*
    *<request-validation-function xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">wwv_flow_epg_include_modules.authorize</request-validation-function>*
    *</plsql>*
    *<security-role-ref xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">*
    *<role-name>anonymousServletRole</role-name>*
    *<role-link>anonymousServletRole</role-link>*
    *</security-role-ref>*
    *</servlet>*
    *</servlet-list>*
    *</servletconfig>*
    *</webappconfig>*
    *<authentication>*
    *<allow-mechanism>basic</allow-mechanism>*
    *<digest-auth>*
    *<nonce-timeout>300</nonce-timeout>*
    *</digest-auth>*
    *</authentication>*
    *</httpconfig>*
    *</protocolconfig>*
    *<xdbcore-xobmem-bound>1024</xdbcore-xobmem-bound>*
    *<xdbcore-loadableunit-size>16</xdbcore-loadableunit-size>*
    *<acl-evaluation-method>ace-order</acl-evaluation-method>*
    *</sysconfig>*
    *</xdbconfig>*
    you can see that there's no "http2-port" or "http2-protocol" in xdbconfig.xml.
    then, I tried this:
    SQL> DECLARE
    *2 v_cfg XMLType;*
    *3 BEGIN*
    *4 SELECT insertXMLbefore(DBMS_XDB.cfg_get(),*
    *5 '/xdbconfig/sysconfig/protocolconfig/httpconfig/authentication',*
    *6 XMLType('<http2-port>433</http2-port>'))*
    *7 INTO v_cfg*
    *8 FROM DUAL;*
    *9 DBMS_XDB.cfg_update(v_cfg);*
    *10 COMMIT;*
    *11 exception*
    *12 when others then*
    *13 dbms_output.put_line(sqlerrm);*
    *14 END;*
    *15 /*
    ORA-30937: No schema definition for 'http2-port' (namespace '##local') in parent '/xdbconfig/sysconfig/protocolconfig/httpconfig'
    it seems I can't insert "http2-port" into xdbconfig.xml either.
    I don't know why...
    Please help, thanks in advance!

    Namespaces :)
    SQL>   SELECT insertXMLBefore
      2           (
      3             DBMS_XDB.cfg_get(),
      4             '/xdbconfig/sysconfig/protocolconfig/httpconfig/authentication',
      5             XMLType('<http2-port xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">433</http2-port>'),
      6             'xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd'
      7           )
      8    from dual;
    <xdbconfig xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd" xmlns:xsi="http://w
    ww.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/x
    db/xdbconfig.xsd http://xmlns.oracle.com/xdb/xdbconfig.xsd">
      <sysconfig>
        <acl-max-age>15</acl-max-age>
        <acl-cache-size>32</acl-cache-size>
        <invalid-pathname-chars/>
        <case-sensitive>true</case-sensitive>
        <call-timeout>6000</call-timeout>
        <max-link-queue>65536</max-link-queue>
        <max-session-use>100</max-session-use>
        <persistent-sessions>false</persistent-sessions>
        <default-lock-timeout>3600</default-lock-timeout>
        <xdbcore-logfile-path>/sys/log/xdblog.xml</xdbcore-logfile-path>
        <xdbcore-log-level>0</xdbcore-log-level>
        <resource-view-cache-size>1048576</resource-view-cache-size>
        <protocolconfig>
          <common>
            <extension-mappings>
              <mime-mappings>
              </mime-mappings>
              <lang-mappings>
                <lang-mapping>
                  <extension>en</extension>
                  <lang>english</lang>
                </lang-mapping>
              </lang-mappings>
              <charset-mappings/>
              <encoding-mappings>
                <encoding-mapping>
                  <extension>gzip</extension>
                  <encoding>zip file</encoding>
                </encoding-mapping>
                <encoding-mapping>
                  <extension>tar</extension>
                  <encoding>tar file</encoding>
                </encoding-mapping>
              </encoding-mappings>
            </extension-mappings>
            <session-pool-size>50</session-pool-size>
            <session-timeout>6000</session-timeout>
          </common>
          <ftpconfig>
            <ftp-port>21</ftp-port>
            <ftp-listener>local_listener</ftp-listener>
            <ftp-protocol>tcp</ftp-protocol>
            <logfile-path>/sys/log/ftplog.xml</logfile-path>
            <log-level>0</log-level>
            <session-timeout>6000</session-timeout>
            <buffer-size>8192</buffer-size>
          </ftpconfig>
          <httpconfig>
            <http-port>80</http-port>
            <http-listener>local_listener</http-listener>
            <http-protocol>tcp</http-protocol>
            <max-http-headers>64</max-http-headers>
            <max-header-size>16384</max-header-size>
            <max-request-body>2000000000</max-request-body>
            <session-timeout>6000</session-timeout>
            <server-name>XDB HTTP Server</server-name>
            <logfile-path>/sys/log/httplog.xml</logfile-path>
            <log-level>0</log-level>
            <servlet-realm>Basic realm=&quot;XDB&quot;</servlet-realm>
            <webappconfig>
            </webappconfig>
            <allow-repository-anonymous-access xmlns="http://xmlns.oracle.com/xdb/xd
    bconfig.xsd">true</allow-repository-anonymous-access>
            <http2-port xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">433</http2
    -port>
            <authentication>
              <allow-mechanism>basic</allow-mechanism>
              <digest-auth>
                <nonce-timeout>300</nonce-timeout>
              </digest-auth>
            </authentication>
          </httpconfig>
        </protocolconfig>
        <schemaLocation-mappings xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">
          <schemaLocation-mapping xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">
            <namespace>http://earth.google.com/kml/2.1</namespace>
            <element>kml</element>
            <schemaURL>http://code.google.com/apis/kml/schema/kml21.xsd</schemaURL>
          </schemaLocation-mapping>
          <schemaLocation-mapping xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">
            <namespace>http://earth.google.com/kml/2.2</namespace>
            <element>kml</element>
            <schemaURL>http://code.google.com/apis/kml/schema/kml21.xsd</schemaURL>
          </schemaLocation-mapping>
        </schemaLocation-mappings>
        <xdbcore-xobmem-bound>1024</xdbcore-xobmem-bound>
        <xdbcore-loadableunit-size>16</xdbcore-loadableunit-size>
        <acl-evaluation-method>ace-order</acl-evaluation-method>
      </sysconfig>
    </xdbconfig>
    Elapsed: 00:00:01.03
    SQL>

  • Multiple plugtmp-1 plugtmp-2 etc. in local\temp folder stay , crossdomain.xml and other files containing visited websitenames created while private browsing

    OS = Windows 7
    When I visit a site like youtube whith private browsing enabled and with the add-on named "shockwave flash" in firefox add-on list installed and activate the flashplayer by going to a video the following files are created in the folder C:\Users\MyUserName\AppData\Local\Temp\plugtmp-1
    plugin-crossdomain.xml
    plugin-strings-nl_NL-vflLqJ7vu.xlb
    The contents of plugin-crossdomain contain both the "youtube.com" adress as "s.ytimg.com" and is as follows:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    -<cross-domain-policy> <allow-access-from domain="s.ytimg.com"/> <allow-access-from domain="*.youtube.com"/> </cross-domain-policy>
    The contents of the other file I will spare you cause I think those are less common when I visit other sites but I certainly don't trust the file. The crossdomain.xml I see when I visit most other flashpayer sites as well.
    I've also noticed multiple plugin-crossdomain-1.xml and onwards in numbers, I just clicked a youtube video to test, got 6 of them in my temp plus a file named "plugin-read2" (no more NL file cause I changed my country, don't know how youtube knows where I'm from, but that's another subject, don't like that either). I just noticed one with a different code:
    <?xml version="1.0"?>
    -<cross-domain-policy> <allow-access-from domain="*"/> </cross-domain-policy>
    So I guess this one comprimises my browsing history a bit less since it doesn't contain a webadress. If these files are even meant to be deposited in my local\temp folder. The bigger problem occurs when they stay there even after using private browsing, after clearing history, after clearing internet temporary files, cache, whatever you can think of. Which they do in my case, got more than 50 plugtmp-# folders in the previous mentioned local\temp folder containing all website names I visited in the last months. There are a variety of files in them, mostly ASP and XML, some just say file. I have yet to witness such a duplicate folder creation since I started checking my temp (perhaps when firefox crashes? I'd say I've had about 50 crashes in recent months).
    I started checking my temp because of the following Microsoft Security Essential warnings I received on 23-4-12:
    Exploit:Java/CVE-2010-0840.HE
    containerfile:C:\Users\Username\AppData\Local\Temp\jar_cache2196625541034777730.tmp
    file:C:\Users\Username\AppData\Local\Temp\jar_cache2196625541034777730.tmp->pong/reversi.class
    and...
    Exploit:Java/CVE-2008-5353.ZT
    containerfile:C:\Users\Noname\AppData\Local\Temp\jar_cache1028270176376464057.tmp
    file:C:\Users\Noname\AppData\Local\Temp\jar_cache1028270176376464057.tmp->Testability.class
    Microsoft Security Essentials informed me that these files were quarantained and deleted but when going to my temp file they were still there, I deleted them manually and began the great quest of finding out what the multiple gigabytes of other files and folders were doing in that temp folder and not being deleted with the usual clearing options within firefox (and IE).
    Note that I have set my adobe flasplayer settings to the most private intense I could think of while doing these tests (don't allow data storage for all websites, disable peer-to peer stuff, don't remember exactly anymore, etc.). I found it highly suspicious that i needed to change these settings online on an adobe website, is that correct? When right-clicking a video only limited privacy options are available which is why I tried the website thing.
    After the inital discovery of the java exploit (which was discovered by MSE shortly after I installed and started my first scan with Malwarebytes, which in turn made me suspicious whether I had even downloaded the right malwarebytes, but no indication in the filename if I google it). Malwarebytes found nothing, MSE found nothing after it said it removed the files, yet it didn't remove them, manually scanning these jar_cache files with both malwarevytes and MSE resulted in nothing. Just to be sure, I deleted them anyways like I said earlier. No new jar_cache files have been created, no exploits detected since then. CCleaner has cleaned most of my temp folder, I did the rest, am blocking all cookies (except for now shortly), noscript add-on has been running a while on my firefox (V 3.6.26) to block most javascripts except from sites like youtube. I've had almost the same problem using similar manual solutions a couple of months ago, and a couple of months before that (clearing all the multiple tmp folders, removing or renaming jar_cache manually, running various antmalware software, full scan not finding a thing afterwards, installing extra add-ons to increase my security, this time it's BetterPrivacy which I found through a mozilla firefox https connection, I hope, which showed me nicely how adobe flash was still storing LSO's even after setting all storage settings to 0 kb and such on the adobe website, enabling private browsing in firefox crushed those little trolls, but still plugtmp trolls are being created, help me crush them please, they confuse me when I'm looking for a real threat but I still want to use flash, IE doesn't need those folders and files, or does it store them somewhere else?).
    I'm sorry for the long story and many questions, hope it doesn't scare you away from helping me fight this. I suspect it's people wanting to belong to the hackergroup Anonymous who are doing this to my system and repeating their tricks (or the virus is still there, but I've done many antivirus scans with different programs so no need to suggest that option to me, they don't find it or I run into it after a while again, so far, have not seen jar_cache show up). Obviously, you may focus on the questions pertaining firefox and plugtmp folders, but if you can help me with any information regarding those exploits I would be extremely grateful, I've read alot but there isn't much specific information for checking where it comes from when all the anti-virus scanners don't detect anything anymore and don't block it incoming. I also have downloaded and installed process monitor but it crashes when I try to run it. The first time I tried to run it it lasted the longest, now it crashes after a few seconds, I just saw the number of events run up to almost a million and lots of cpu usage. When it crashed everything returned back to normal, or at least that's what I'm supposed to think I guess. I'll follow up on that one on their forum, but you can tell me if the program is ligit or not (it has a microsoft digital signature, or the name micosoft is used in that signature).

    update:
    I haven't upgraded my firefox yet because of a "TVU Web Player" plugin that isn't supported in the new firefox and I'm using it occasionally, couldn't find an upgrade for it. Most of my other plugins are upgraded in the green (according to mozilla websitechecker):
    Java(TM) Platform SE 6 U31 (green)
    Shockwave for Director (green - from Adobe I think)
    Shockwave Flash (green - why do I even need 2 of these adobe add-ons? can I remove one? I removed everything else i could find except the reader i think, I found AdobeARM and Adobe Acrobat several versions, very confusing with names constantly switching around)
    Java Deployment Toolkit 6.0.310.5 (green, grrr, again a second java, why do they do this stuff, to annoy people who are plagued with java and flash exploits? make it more complicating?)
    Adobe Acrobat (green, great, it's still there, well I guess this is the reader then)
    TVU Web Player for FireFox (grey - mentioned it already)
    Silverlight Plug-In (yellow - hardly use it, I think, unless it's automatic without my knowing, perhaps I watched one stream with it once, I'd like to remove it, but just in case I need it, don't remember why I didn't update, perhaps a conflict, perhaps because I don't use it, or it didn't report a threat like java and doesn't create unwantend and history compromising temp files)
    Google Update (grey - can I remove? what will i lose? don't remember installing it, and if I didn't, why didn't firefox block it?)
    Veetle TV Core (grey)
    Veetle TV Player (grey - using this for watching streams on veetle.com, probably needs the Core, deleted the broadcaster that was there earlier, never chose to install that, can't firefox regulate that when installing different components? or did i just miss that option and assumed I needed when I was installing veetle add-on?)
    Well, that's the list i get when checking on your site, when i use my own browseroptions to check add-ons I get a slightly different and longer list including a few I have already turned off (which also doesn't seem very secure to me, what's the point in using your site then for anything other than updates?), here are the differences in MY list:
    I can see 2 versions of Java(TM) Platform SE 6 U31, (thanks firefox for not being able to copy-paste this)
    one "Classic Java plug-in for Netscape and Mozilla"
    the other is "next generation plug-in for Mozilla browsers".
    I think I'll just turn off the Netscape and Mozilla one, don't trust it, why would I need 2? There I did it, no crashes, screw java :P
    There's also a Mozilla Default plugin listed there, why does firefox list it there without any further information whether I need it or not or whether it really originates from Mozilla firefox? It doesn't even show up when I use your website plugin checker, so is there no easy way by watching this list for me to determin I can skip worrying about it?
    There's also some old ones that I recently deactivated still listed like windows live photo gallery, never remember adding that one either or needing it for anything and as usual, right-clicking and "visit homepage" is greyed out, just as it is for the many java crap add-ons I encountered so far.
    Doing a quick check, the only homepage I can visit is the veetle one. The rest are greyed out. I also have several "Java Console" in my extentions tab, I deactivated all but the one with the highest number. Still no Java Console visible though, even after going to start/search "java", clicking java file and changing the settings there to "show" console instead of "hide" (can't remember exact details).
    There's some other extentions from noscript, TVU webplayer again, ADblock Plus and now also BetterPrivacy (sidenote, a default.LSO remains after cleanup correct? How do I know that one isn't doing anything nasty if it's code has been changed or is being changed? To prevent other LSO's I need to use both private browsing and change all kinds of restrictions online for adobe flashplayer, can anyone say absurd!!! if you think you're infected and want to improve your security? Sorry that rant was against Adobe, but it's really against Anonymous, no offense).

  • ITunes crashes on startup (7.4.3.1 and previous versions on Vista 32Bit)

    Deleting/moving the itunes library files (iTunes Music Library.xml and iTunes Library.itl) makes it work fine which leads me to believe it crashes when loading the playlist. But not always!
    iTunes crashes on startup on my vista 32bit.
    Even after I upgraded to 7.4.3.1 and reinstalled iTunes several times.
    I've also tried reinstalling quicktime and selecting "Repair" to no avail.
    Running it in XP2 compatibility mode doesn't help.
    Disabling Aero doesn't help.
    Whether or not my iPhone is plugged in or not seems to make no difference.
    This is the error msg.
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: iTunes.exe
    Application Version: 7.4.3.1
    Application Timestamp: 46f9e539
    Fault Module Name: ntdll.dll
    Fault Module Version: 6.0.6000.16386
    Fault Module Timestamp: 4549bdc9
    Exception Code: c0000005
    Exception Offset: 00062613
    OS Version: 6.0.6000.2.0.0.256.6
    Locale ID: 1033
    Additional Information 1: 3121
    Additional Information 2: cd54b1815dd1a98f8c82cbbbae6b50f8
    Additional Information 3: cfbc
    Additional Information 4: 4370a065bc45e009ac3228b1173ce35a

    Crashes on windows xp pro sp2 as well.
    A whole night wasted trying to trouble-shoot this bogus software.
    Ipod touch returns to best-buy tomorrow.
    Never to buy another apple product.
    Love & Kisses.

  • How to set buildID.xml and custom.properties in SDK

    Hello,
    I just completed a new build deployment of SAP ME5.2, because after I deployed the new version, I don't think I have set a
    correct version number.Can you someone give me a sample how to set the buildID.xml and custom.properties? I am a new on the SAP ME5.2
    The Base version is ME_Base_5.2.5.16.5_netweaver-71_Update.zip and
    MEClient_Base_5.2.5.16.5_netweaver-71_Update.zip. the HB customzation
    version is ME_xxxxxx_2.0.0.0.x_netweaver-71.
    Within the sap note 1484551, you mentioned we need change the
    SDKInstallDir/build/buildID.xml file, here is the context of the file:
    buildID.xml -
    <?xml version="1.0" encoding="UTF-8"?>
    <buildID xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <customer>XXXXXX</customer>
    <revision>1.0.0.0</revision>
    <build>1</build>
    </buildID>
    buildID.xml -
    1. how can we change the revision and build?
    There is another file BuildToolDir/build/script/custom.properties, here
    is the file context:
    custom.properties----
    This file contains build properties used to configure the build
    system.
    The name of the software vendor implementing the customizations.
    vendor.name=xxxxxxxxx
    Vendor build identifier. This value is used to uniquely identify
    customizations built by a particular vendor for a particular customer
    and base
    application version.
    This is also used in path locations and in naming certain build
    artifacts, like the custom EJB module and the utility classes archive.
    vendor.id=xxxxxxxxx
    The installation of the J2EE engine installed in the development
    environment.
    ex. C:/usr/sap/CE1\J00
    j2ee.instance.dir=J2EEInstanceDir
    The web context path used to access the main web application. This
    is used by the build to set the
    context-root value in application.xml after an update has been
    imported.
    web.context.path=
    The web context path used to access the production XML interface web
    application. This is used by the build to set the
    context-root value in application.xml after an update has been
    imported.
    xml.context.path=
    The web context path to access resources from the web extension
    application, like images and work instruction HTML files.
    web-ext.context.path=web-ext
    The target database vendor. Valid values are 'oracle' or 'sqlserver'.db.vendor=ORACLE
    The JDBC driver configured for the application server.
    db.drivername=VMJDBC
    JDBC connection propertes for the WIP (Work In Process) database.
    This is the primary application database.
    db.wip.driverclassname=
    db.wip.driver.url=
    db.wip.host=
    db.wip.port=
    db.wip.sid=
    db.wip.user=
    db.wip.password=
    JDBC connection propertes for the ODS (Open Data Store) database.
    This is the offline reporting and archiving database.
    db.ods.driverclassname=
    db.ods.driver.url=
    db.ods.host=
    db.ods.port=
    db.ods.sid=
    db.ods.user=
    db.ods.password=
    Flag indicating whether to add DPMO NC codes to NC idat files when a
    new update is imported. This value is initially
    set by the installer according the the user selection.
    dpmo.nc.codes=
    The default locale used by the production system. The default locale
    is the locale used to display locale
    specific text and messages when the requested locale is not
    available. This property does not need to
    be set if the default locale is english.
    default.locale=en
    Used when running the build from Eclipse to locate the java compiler
    used by the WebLogic EJB compiler.
    jdk.home=C:/Program Files/Java/jdk1.5.0_20
    Compiler debug mode. If set to 'true', debug symbols will be
    compiled into the byte code.
    compile.debug=true
    Keystore alias
    security.alias=xxxxx
    Keystore password
    security.storepass=ChangeIt
    Key password
    security.keypass=ChangeIt
    Keystore type (jks=default,jceks,pkcs12)
    security.storetype=jks
    Optional source control build identifier that is to be displayed with
    standard version information.
    scs.build.ID=
    Optional extended version information to be displayed with standard
    version information.
    ext.info=
    custom.properties----
    2. How can we change this here?
    Regards,
    Leon Lu
    Edited by: Leon Lu on Aug 4, 2011 11:14 AM
    Edited by: Leon Lu on Aug 4, 2011 11:21 AM

    Hi,
    I created one request with logo in the header an page in the footer etc. and called StyleSheet. After you can import this formats by each request.
    You can do this in compound layout.
    Regards,
    Stefan

  • XML Publisher/eBS version

    Hi,
    If I look in the white paper "Publishing Concurrent Requests with XML Publisher" from January 2005 I can on page 9 see that there is a new field in the Submit Request form (Forms environment); "Layout", where you can tell which XML Publisher template the report should use. This fixes the problem that you need to submit two requests, one for the actual report to XML and one for the layout generation.
    Does anyone know in which patch level/version on eBS/XML Publisher this new field is added? I have an environment 11.5.10 (unpatched) and there the new field is not visible? Does it come with the 11.5.10 CU2 or what do I have to do get this new field?
    Regards,
    Daniel

    Hi Daniel,
    Please apply patch 3435480, that integrates the XML Publisher concurrent requests into one (instead of running two).On application of this patch, the service request form FNDRSRUN will upgrade itself to the newer version ($Header FNDRSRUN.fmb 115.136 2004/12/10 15:14 jtoruno ship). You will be able to see a new button called 'Options' in the 'Layout' section of the same SR form. This is the place where one selects the 'Template/Output Format' and then submit the request for further processing. We have implemented this with the 11.5.10 CU2 release and then applying the patch.
    I hope this helps.
    Thx,
    Nitin

  • Difference between attachment variable between OSB old and new version

    Hi,
    We have OSB proxy to read the mail box with attachment and then do the further operation.
    Now we are upgrading the same OSB process to new version of OSB 11g. I found that there is various changes in attachment variable
    OLD version of Email Attachment:
    <<anonymous>> <BEA1-72F5B9A3382C86F8F149> <> <1346063760557> <000000> < [PipelinePairNode1, PipelinePairNode1_request, Processing, REQUEST] Email with attachments: <attachment xmlns="http://www.bea.com/wli/sb/context">
    <Content-Type>text/xml;
    name="/usr/appl/sem/data/ESB/Report/archive/2012-08-27-18-35-59-242-FileName_94371";
    charset=utf-8</Content-Type>
    <Content-Disposition>attachment;
    filename="/usr/appl/sem/data/ESB/Report/archive/2012-08-27-18-35-59-242-FileName_94371"</Content-Disposition>
    <body>
    <binary-content ref="file:////usr/appl/sem/data/ESB/Report/archive/2012-08-27-18-35-59-242-FileName_94371" xmlns:con="http://www.bea.com/wli/sb/context"/>
    </body>
    </attachment><attachment xmlns="http://www.bea.com/wli/sb/context">
    <Content-Type>text/xml;
    name="/usr/appl/sem/data/ESB/Report/archive/2012-08-27-18-35-59-242-14-FileName__2010.10.26_.pdf";
    charset=utf-8</Content-Type>
    <Content-Disposition>attachment;
    filename="/usr/appl/sem/data/ESB/Report/archive/2012-08-27-18-35-59-242-14-FileName__2010.10.26_.pdf"</Content-Disposition>
    <body>
    <binary-content ref="file:////usr/appl/sem/data/ESB/Report/archive/2012-08-27-18-35-59-242-14-FileName__2010.10.26_.pdf" xmlns:con="http://www.bea.com/wli/sb/context"/>
    </body>
    </attachment>>
    New Version of Email Attachment:
    <<anonymous>> <BEA1-426F87D2506E3B795149> <0000J_7pu7p3r235znw0yW1GCmZN000002> <1346060008469> <BEA-000000> < [PipelinePairNode1, PipelinePairNode1_request, Processing, REQUEST] fileAttachments:::: <con:attachments xmlns:con="http://www.bea.com/wli/sb/context">
    <con:attachment>
    <con:Content-Type>application/octet-stream;
         name="14-FileName__2010.10.26_.pdf"</con:Content-Type>
    <con:Content-Description>14-FileName__2010.10.26_.pdf</con:Content-Description>
    <con:Content-Disposition>attachment;
         filename="14-FileName__2010.10.26_.pdf"; size=56022;
         creation-date="Tue, 26 Oct 2010 23:32:35 GMT";
         modification-date="Tue, 26 Oct 2010 23:32:35 GMT"</con:Content-Disposition>
    <con:Content-Transfer-Encoding>base64</con:Content-Transfer-Encoding>
    <con:body>
    <con:binary-content ref="cid:14fbe5b6:13947d789f5:12c0"/>
    </con:body>
    </con:attachment>
    </con:attachments>>
    We are find the <Content-Type> is text/xml and in new environment application/octet-stream;
    Is there any way to find the same xml. as previous version.
    Regards,
    Abhishek

    Abhishek,
    You seem to be hitting a known bug. Please log a SR with support.
    Regards,
    Anuj

  • Passing parameters for a query throught XML and capturing response in the same

    Hi All,
    I have defined a RequestParameters object and i am passing paramerts for a query through XML and trying to capture the result in the same and send back to the source. In this case i am send XML from excel.
    Below is my XML format.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <Insert xmlns="http://tempuri.org/">
    <dataContractValue>
    <dsRequest>
    <dsRequest>
    <SOURCE></SOURCE>
    <ACTION>Insert</ACTION>
    <RequestParams>
    <RequestParams>
    <ACC_NO>52451</ACC_NO>
    <EMP_CITY>HYD</EMP_CITY>
    <EMP_NAME>RAKESH</EMP_NAME>
    <EMP_CONTACT>99664</EMP_CONTACT>
    <EMP_JOM>NOV</EMP_JOM>
    <EMP_SALARY>12345</EMP_SALARY>
    </RequestParams>
    <RequestParams>
    <ACC_NO>52452</ACC_NO>
    <EMP_CITY>HYD</EMP_CITY>
    <EMP_NAME>RAKESH</EMP_NAME>
    <EMP_CONTACT>99664</EMP_CONTACT>
    <EMP_JOM>NOV</EMP_JOM>
    <EMP_SALARY>12345</EMP_SALARY>
    </RequestParams>
    </RequestParams>
    </dsRequest>
    <dsRequest>
    <SOURCE></SOURCE>
    <ACTION>Update</ACTION>
    <RequestParams>
    <RequestParams>
    <ACC_NO>52449</ACC_NO>
    <EMP_CITY>HYD1</EMP_CITY>
    <EMP_NAME>RAKESH1</EMP_NAME>
    <EMP_SALARY>1345</EMP_SALARY>
    </RequestParams>
    <RequestParams>
    <ACC_NO>52450</ACC_NO>
    <EMP_CITY>HYDer</EMP_CITY>
    <EMP_NAME>RAKEH</EMP_NAME>
    <EMP_SALARY>1235</EMP_SALARY>
    </RequestParams>
    </RequestParams>
    </dsRequest>
    </dsRequest>
    </dataContractValue>
    </Insert>
    </s:Body>
    </s:Envelope>
     Where i have a List of dsRequest and RequestParams, where i can send any number of requests for Insert,Update. I have two a XML element defined in RequestParams "RowsEffected","error" where the result will be caputred and is updated
    to the response XML.
    I have 6 defined in RequestParams
    EMP_SALARY(int),ACC_NO(int),EMP_CITY(string),EMP_NAME(string),EMP_CONTACT(string),EMP_JOM(string)
    My Question is:
    When i am trying to build response XML with the following code, the parameters which are not given in the Request XML are also appearing in the Response.
                    ResponseParams.Add(
    newdsResponse()
                        ACTION = OriginalParams[a].ACTION,
                        SOURCE = OriginalParams[a].SOURCE,
                        Manager = OriginalParams[a].Manager,
                        RequestParams = OriginalParams[a].RequestParams
    Where the OriginalParams is dsRequest
    Ex: In my update query i will only send three parameters, but in my response building with ablove code, i am getting all the variables defined as INT in the RequestParameters.
    Is there any way i can avoid this and build response with only the parameters given in the Request ??
    Appreciate ur help..Thanks
    Cronsey.

    Hi Kristin,
    My project is, User will be giving the parameters in the excel, and using VBA, the values are captured and an XML is created in the above mentioned format and is send to web service for the Insert/Update.
    I created a webservice which reads the values from <datacontract> and it consist of list of <dsRequests> where any number of Insert/Upate commands can be executed, with in which it contains a list of <RequestParams> for multiple insertion/Updation.
    //function call
    OriginalParams = generator.Function(query, OriginalParams);
    where OriginalParams is List<dsRequest>
    //inside function
    command.Parameters.Add()// parameters adding
    int
    val = command.ExecuteNonQuery();
    after the execution,an XML element is added for the response part.and it is looped for all the RequestParams.
    OriginalParams[i].Result.Add(
    newResult()
    { ERROR = "No Error",
    ROWS_EFFECTEFD = 1 });
    //once all the execution is done the response building part
    for(inta
    = 0; a < OriginalParams.Count; a++)
                    ResponseParams.Add(
    newdsResponse()
                      Result = OriginalParams[a].Result
    QUEST: When i am trying to build response XML with the following code, the parameters which are not given in the Request XML are also appearing in the Response.
    Ex: In my update query i will only send three parameters, but in my response building with ablove code, i am getting all the variables defined as INT in the RequestParameters.
    Is there any way i can avoid this and build response with only the parameters given in the Request ??
    Appreciate ur help..Thanks
    Cronsey.

  • XML and Web Service Data Source Missing in Crystal Reports for VS

    I would like to use a Web Service as the data source for a Crystal Report that will be running outside of my Visual Studio application.  So setting the data source to the web service in code is not possible.  My understanding is Crystal Reports has a connection (in the Database Expert under New Connection) named XML and Web Service.  Here you can select web service and enter the WSDL URL for the web service.  However it does not appear in the list for Crystal Reports for Visual Studio.  Does this connection type come with the Visual Studio version of Crystal Reports and if not is their a way to obtain it? 
    Thank you for your assistance.

    None of the bundled versions of CR have the driver. Reason is that the driver responsible for these connections requires the Java framework and I suspect MS would not be too pleased if we installed the Java framework. The stand alone versions, since they are not part of any bundle can and do install the Java framework and the driver. Note that even the latest release of CR - CRVS2010 does not have the driver as it essentially becomes a bundle or a VS2010 plug-in.
    So, the short of it is; you have to obtain a stand-alone version of CR. I'd recommend CR 2008 (12.x) as CRXI R2 will run out of support in June of this year.
    - Ludek

  • Use Sign.xml and Encrypt.xml for both request AND response within WSDL?

    Hi,
    ALSB: 2.6
    I was wandering if it's possible to use abstract outof the box WS-Policy file within WSDL file to specify encryption
    (Encrypt.xml) and digital signature(Sign.xml) with X509 for both request and response???
    So far, it only works for either request or response BUT not both. i.e. within WSDL file
    <!-- following WSDL works for encrypting and signing request with X509 in test console -->.....
    <wsdl:binding name="DexService2Soap" type="tns:DexService2Soap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="Message">
                <soap:operation soapAction="urn:moe:dex:dexservice:2.0.0/Message" style="document" />
                              <wsdl:input>
                               <!-- WS-Policy file applied here -->
                             <wsp:Policy>
                                            <wsp:PolicyReference URI="policy:Sign.xml"/>
                                            <wsp:PolicyReference URI="policy:Encrypt.xml"/>
                                       </wsp:Policy>
                                     <soap:body use="literal" />
                               </wsdl:input>
                             <wsdl:output>
                                  <soap:body use="literal" />
                               </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
               Or
    <!-- following WSDL works for encrypting and signing response with X509 in test console -->
    <wsdl:binding name="DexService2Soap" type="tns:DexService2Soap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="Message">
                <soap:operation soapAction="urn:moe:dex:dexservice:2.0.0/Message" style="document" />
                              <wsdl:input>
                                     <soap:body use="literal" />
                               </wsdl:input>
                             <wsdl:output>
                                       <!-- WS-Policy file applied here -->
                                       <wsp:Policy>
                                            <wsp:PolicyReference URI="policy:Sign.xml"/>
                                            <wsp:PolicyReference URI="policy:Encrypt.xml"/>
                                       </wsp:Policy>
                                  <soap:body use="literal" />
                               </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
    But not both
    <!-- following WSDL doesn't work for encrypting and signing both response and request with X509 in test console -->
    <wsdl:binding name="DexService2Soap" type="tns:DexService2Soap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="Message">
                <soap:operation soapAction="urn:moe:dex:dexservice:2.0.0/Message" style="document" />
                              <wsdl:input>
                                        <!-- WS-Policy file applied here -->
                                       <wsp:Policy>
                                            <wsp:PolicyReference URI="policy:Sign.xml"/>
                                            <wsp:PolicyReference URI="policy:Encrypt.xml"/>
                                       </wsp:Policy>
                                     <soap:body use="literal" />
                               </wsdl:input>
                             <wsdl:output>
                                       <!-- WS-Policy file applied here -->
                                       <wsp:Policy>
                                            <wsp:PolicyReference URI="policy:Sign.xml"/>
                                            <wsp:PolicyReference URI="policy:Encrypt.xml"/>
                                       </wsp:Policy>
                                  <soap:body use="literal" />
                               </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
    ...      Instead, I got error message like
    <15/01/2008 10:15:04 AM NZDT> <Error> <ALSB Security> <BEA-387023> <An error ocurred during web service security inbound response processing [error-code: Fault
    , message-id: 3917705281899426819-4368b1eb.117762cff6e.-7fdb, proxy: DexServiceX509-Stub/Proxy Services/DexServiceX509-ProxyService, operation: Message]
    --- Error message:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><soapenv:Fault><faultcode>soapenv:Server</faultcode>
    <faultstring>Failed to get token for tokenType: http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3</faultstring></soapenv:Fa
    ult></soapenv:Body></soapenv:Envelope>
    weblogic.xml.crypto.wss.WSSecurityException: Failed to get token for tokenType: http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#
    X509v3
    at weblogic.xml.crypto.wss.SecurityBuilderImpl.addEncryption(SecurityBuilderImpl.java:308)
    at weblogic.wsee.security.wss.SecurityPolicyDriver.processConfidentiality(SecurityPolicyDriver.java:280)
    at weblogic.wsee.security.wss.SecurityPolicyDriver.processOutbound(SecurityPolicyDriver.java:75)
    at weblogic.wsee.security.wss.SecurityPolicyDriver.processOutbound(SecurityPolicyDriver.java:64)
    at weblogic.wsee.security.WssServerHandler.processOutbound(WssServerHandler.java:86)
    Truncated. see log file for complete stacktrace
    >
    <15/01/2008 10:15:24 AM NZDT> <Error> <com.bea.weblogic.kernel> <000000> <Failed to build CertPath
    java.security.cert.CertPathBuilderException: [Security:090603]The certificate chain is invalid because it could not be completed. The trusted CAs did not inclu
    de CN=x509,OU=x509,O=x509,L=Wellington,ST=Wellington,C=NZ.
    at weblogic.security.providers.pk.WebLogicCertPathProviderRuntimeImpl$JDKCertPathBuilder.engineBuild(WebLogicCertPathProviderRuntimeImpl.java:669)
    at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:194)
    at com.bea.common.security.internal.legacy.service.CertPathBuilderImpl$CertPathBuilderProviderImpl.build(CertPathBuilderImpl.java:67)
    at com.bea.common.security.internal.service.CertPathBuilderServiceImpl.build(CertPathBuilderServiceImpl.java:86)
    at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
            Truncated. see log file for complete stacktrace
    >
    <15/01/2008 10:15:24 AM NZDT> <Error> <ALSB Security> <BEA-387022> <An error ocurred during web service security inbound request processing [error-code: Fault,
    message-id: 3917705281899426819-4368b1eb.117762cff6e.-7fd8, proxy: DexServiceX509-Stub/Proxy Services/DexServiceX509-ProxyService, operation: null]
    --- Error message:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><soapenv:Fault xmlns:wsse="http://docs.oasis-open.or
    g/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"><faultcode>wsse:InvalidSecurityToken</faultcode><faultstring>Security token failed to validate. weblo
    gic.xml.crypto.wss.SecurityTokenValidateResult@3c5347b[status: false][msg [
      Version: V1
      Subject: CN=x509, OU=x509, O=x509, L=Wellington, ST=Wellington, C=NZ
      Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
      Key:  Sun RSA public key, 1024 bits
      modulus: 13052787793731294943682394984664645854838424340012907077330623....
      The 'System Error Handler' from 'Invocation Trace' in ALSB test console is something like
    [pre]     
    $fault:
    <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
         <con:errorCode>BEA-386201</con:errorCode>
         <con:reason>
              A web service security fault
              occurred[{http://schemas.xmlsoap.org/soap/envelope/}Server][Failed
              to get token for tokenType:
              http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3]
         </con:reason>
         <con:details>
              <err:WebServiceSecurityFault
                   xmlns:err="http://www.bea.com/wli/sb/errors">
                   <err:faultcode
                        xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
                        soapenv:Server
                   </err:faultcode>
                   <err:faultstring>
                        Failed to get token for tokenType:
                        http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3
                   </err:faultstring>
              </err:WebServiceSecurityFault>
         </con:details>
         <con:location>
              <con:path>response-pipeline</con:path>
         </con:location>
    </con:fault>
    So is this a feature not supported in ALSB 2.6 yet or am I missing something dead simple?
    Thanks in advance
    Sam

    Instead of specifying policies for input and output separately you could place the policy reference only once in the operation element. Maybe will this solve your problem...
    http://e-docs.bea.com/alsb/docs26/security/ws_policy.html#wp1061166

  • Using XSLT to link XML and ABAP data

    Hi Experts,
    I am using XSLT to deal with XML and ABAP data.
    I using the following statement to convert a Internal Table to XML String:
    CALL TRANSFORMATION id SOURCE  root = lt_sflight RESULT XML l_xml_string.
    And I get the XML String:
    <?xml version="1.0" encoding="utf-16" ?>
    <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    <asx:values>
    <ROOT>
    <SFLIGHT>
    </SFLIGHT>
    <SFLIGHT>
    </SFLIGHT>
    </ROOT>
    </asx:values>
    </asx:abap>
    But What I expected is:
    <?xml version="1.0" encoding="utf-16" ?>
    <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    <asx:values>
    <ROOT>
    <DATA>
    </DATA>
    <DATA>
    </DATA>
    </ROOT>
    </asx:values>
    </asx:abap>
    Could you tell me how to get my dream format using XSLT?
    Best Regards,
    Guo Guo Qing
    Edited by: guoqing guo on Jun 11, 2008 9:58 AM

    Hi Experts,
    I am using XSLT to deal with XML and ABAP data.
    I using the following statement to convert a Internal Table to XML String:
    CALL TRANSFORMATION id SOURCE  root = lt_sflight RESULT XML l_xml_string.
    And I get the XML String:
    <?xml version="1.0" encoding="utf-16" ?>
    <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    <asx:values>
    <ROOT>
    <SFLIGHT>
    </SFLIGHT>
    <SFLIGHT>
    </SFLIGHT>
    </ROOT>
    </asx:values>
    </asx:abap>
    But What I expected is:
    <?xml version="1.0" encoding="utf-16" ?>
    <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    <asx:values>
    <ROOT>
    <DATA>
    </DATA>
    <DATA>
    </DATA>
    </ROOT>
    </asx:values>
    </asx:abap>
    Could you tell me how to get my dream format using XSLT?
    Best Regards,
    Guo Guo Qing
    Edited by: guoqing guo on Jun 11, 2008 9:58 AM

  • Data source for Deposit Advice (XML) and Live CheckWrite (XML) reports

    Hello All,
    We need to customize the Deposit Advice (XML) and Live Check Write(XML) reports to accomodate a few business requirements. We already have customizations for these reports in non-XML versions. For Ex: USPAYPST.rdf for Deposit Advice report. As these non-XML RDF reports are going to be unsupported by Oracle soon, we need to customize the XML versions of these report available in R12.1.3.
    As these reports are kicked off by the PYUGEN spawned program, therefore I need information on the data source for these reports as soon as possible.
    Looking forward to your prompt help.
    Thanks,
    Rahul

    Now, I have anew problem here. I modified the USPAYPST.rdf report for Deposit Advice and then changed concurrent program output to XML from Text.
    I attached a RTF template to the concurrent program to have the output in XML.
    When I run Deposit Invoice Report from the SRS window, it finishes off normally and log file says the number of records processed but no output file is generated.
    I also tried looking into the XML generated through View XMl and there too no output file is generated.
    I am confused if the Deposit Advice program can only generate Text output. As PYUGEN is the executable for this report, I have no idea if XML file can even be generated.
    All pointers to this issue are welcome.
    Thanks,
    Rahul

Maybe you are looking for

  • Satellite Pro A200 - Where to get new recovery disk?

    On Thursday of last week ended up with the Blue page of death, tried to use the product recovery disk and found to my horror it has a large crack in it . Can anyone tell me were I can upload a new disk from? Have managed at cost to get the laptop up

  • Doubt Regarding Statistics Collection in 10g

    Hello, Me Jr Dba i have a doubt regarding statistics calculation in 10g.As we know that if we set the initilization parameter STATISTICS_LEVEL=Typical then AOS(Automatic Optimizer staistics) calculate the statistics for the tables, whose blocks are g

  • Date changes in editing

    When editing an image, Elements changes the dates to the current date but only on some images. Once a date is set I should like to lock it.  Is this possible and what am I doing that causes the date to change. I am using Elements 11.

  • HT1338 built in camera has stopped working, how can I update or reinstall the drivers

    Built in camera has stopped working, how can I reinstall the respective drivers?

  • Do Oracle Designer and Worklfow Builder "talk"?

    Is anyone aware of any form of integration between Oracle Designer and Workflow Builder? I am specifically curious about storing workflow processes in Designer Repository and whether or not Designer process flows can be used as a starting point for w