XML file is not being displayed in browser? Why?

Hi all!
I have a secnario file->XI->J2EE appl.
I am using  File sender adapter and HTTP Receiver adapter.
I placed XML file in D:\somedir of my machine, it is picking up well by XI, <b>all i want to know is how XI sends this XML file to my J2EE Appl.</b>Because my servlet should display the same XML file in browser. I deployed my J2EE appl on weblogic application server9.0 I am getting 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 'http://localhost:7001/Invoke/DisplayRes'.
These are settings that i have given in my Receiver HTTP adapter:
Aadapter Type: HTTP
                   Receiver
Transport Protocol:  HTTP1.0
Message Protocol:    XI payload in HTTP body
Adapter Engine:      Integration Server
Addressing Type:     URL address
Target host:         localhost
Service Number:      7001(Port number of Weblogic appl server--where my J2EE appl is deployed).
Path     :  /Invoke/DisplayRes/(Context path of J2EE appl)
Authentication Type:Use Logon Data for SAP System
Content Type: text/xml
Username:   xiappluser
password:   xx
XML code:   UTF-8
This is my Servlet code:
public class DisplayRes extends HttpServlet {
     public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
     doPost(request,response);
     public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
     BufferedReader brin =new BufferedReader(new InputStreamReader(request.getInputStream()));
     String inputLine;
     StringBuffer sBuf = new StringBuffer();
     PrintWriter out = response.getWriter();
     response.setContentType("text/xml");
     while ((inputLine = brin.readLine()) != null)
         sBuf.append(inputLine);
           out.println(sBuf.toString());
          brin.close();
         out.flush();
Where i went wrong please help me,
NOTE: I want to know how XI sends XML file to my J2EE appl. I suppose my servlet receives it in request object.If so can i use like:
response.setContentType("text/xml");
  String xmlFile = request.getParameter("myXMLFile");
  PrintWriter out = response.getWriter();
  out.write(xmlFile);
  out.flush();
  out.close();
Please help me!
Thanks a lot!

Hi Datta,
You seem to have big problem with this scneario as you have raised this question couple of times , in couple of topics / threads. I will try to make a few things about this clear.
1. XI when sends data to a J2EE application , in your case a servlet, I believe you must be using a HTTP adapter to post the data to it. Whenever XI will post a XML data to a HTTP resource , it will post it as the request body and that is why the code in one of my previous post reads,
BufferedReader brin =new BufferedReader(new InputStreamReader(request.getInputStream()));
String inputLine;
StringBuffer sBuf = new StringBuffer();
PrintWriter out = response.getWriter();
response.setContentType("text/xml");
while ((inputLine = brin.readLine()) != null)
sBuf.append(inputLine);
out.println(sBuf.toString());
brin.close();
out.flush();
If you 've noticed, the statement
request.getInputStream()
retrieves the body of the request as binary data using a ServletInputStream.
So your answer to your question is
<b>XI transferes data to a servlet as a part of HTTP request body</b>, if you use a HTTP adapter.
2. By J2EE application , if you mean a server java proxy, then the method whose name matches with that of the Inbound Message interface recieves a parameter , from which you can retrieve the parameters passed by XI. Just check the getters of that object.
Hope this clears your basic doubts!!!
Rgds,
Amol

Similar Messages

  • How to retrieve xml file from BLOB and display on browser with css/xslt

    Hi All,
    I am new to xml. I am storing my xml file into BLOB in database. Now in my jsp page I want to retrieve this xml file from BLOB and display in HTML/CSS/XSLT form...
    Pl. guide me.. any docs..?? Logic...??
    Thanks in Advance.
    Sandeep Oza

    Hello Sandeep!
    I'm not familiar with jsp but logic should be as follows:
    -in jsp page instantiate XML parser
    -load specified BLOB into parser
    Now you may traverse the XML tree or you might load XSL file and use transform method to transform XML according to XSL file.
    I have an example where I'm selecting XML straight from relational database and then transform it using XSL into appropriate HTML output, but it's written in PSP.
    You can try http://www.w3schools.com/default.asp for basics on XML, CSS, XSL. It's easy to follow with good examples.
    Regards!
    miki

  • Log states some files are not being transferred...why?

    I've been uploading for months with no problems but all of a
    sudden the pages that I'm uploading shows the connection and shows
    the log but when I actually check the page no change has been made.
    Any ideas?

    I've been uploading for months with no problems but all of a
    sudden the pages that I'm uploading shows the connection and shows
    the log but when I actually check the page no change has been made.
    Any ideas?

  • PDF files not being displayed correctly, instead I get a blank screen with some sort of small pinned icon in the centre.  It was working fine until today HELP!

    PDF files not being displayed correctly, instead I get a blank screen with some sort of small pinned icon in the centre.  It was working fine until today HELP!

    What is your operating system?  Reader version?  Are these local or online PDFs?  If online, in what browser?
    Can you post a screenshot: https://forums.adobe.com/thread/1070933

  • [svn] 1978: Bug: vendors. properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly .

    Revision: 1978
    Author: [email protected]
    Date: 2008-06-06 08:05:34 -0700 (Fri, 06 Jun 2008)
    Log Message:
    Bug: vendors.properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly.
    QA: Yes - we need automated tests to make sure that errors.properties and vendors.properties in BlazeDS/LCDS are loaded properly.
    Doc: No
    Modified Paths:
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/util/PropertyStringResource Loader.java
    blazeds/branches/3.0.x/modules/opt/src/jrun/flex/messaging/security/JRunLoginCommand.java
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    I have a lot of grief with this version of Windows Media Player.
    It is very buggy and frustrating to use.
    I have my Music library on a QNAP NAS, which is as reliable as they come.
    System notifications make it not save changes.  It also does not do a good job of interpreting albums and artists from folders.  Changes to track names are not saved, nor are tracks moved to other albums, renamed albums, changes to genre, artist
    or date.  It separates and merges albums/tracks without sense or reason.  Some changes I've made up to 4 times, then closed WMP and re-started my machine to check if it has/hasn't saved the changes.  Often it has not.
    This is the first time I've used WMP in this capacity, and I do not recommend it.
    New service pack please.

  • HTML file is not being shown properly in the JEditorPane

    Hi,
    I am using JEditorPane to display an HTML file from the local disk. This HTML file contains the html tables. Now when this file is getting displayed in the JEditorPane, one top row grid is not being displayed in the editor pane. content of the row is there...but the column grid is missing. All other rows and columns are being shown but the first row-column grid which contains the heading for column.
    Also when I m printing the content of this JEditorPane using Java Print API then no grid is being printed on the paper. content is coming properly but no table grids. when i have taken the print out of the original html file from the browser then table grids are being printed out properly.
    Please do help me out in showing the HTML file in the JEditorPane properly and printing the same.
    Many Thanks,
    gshankar

    Hi,
    JEditorPane renders HTML with many limitations.
    You can use JDIC for the same. refer: jdic.dev.java.net
    But JDIC does not work on windows 98.
    Anand

  • Check boxes are not being displayed in any list applets

    Issue: The check boxes are not being displayed in any list applets in the system. A check box can be marked in the system, but as soon as the user clicks anywhere outside of the box the check box 'visibly' disappears. If you hover the mouse over the check box it displays a 'Y'. However, check boxes are working fine for the form applet, the issue is only with the list applet.
    I verified the checkboxes work fine in the thick client and in production. However, it is the testing environment, which belongs to client, that is showing the above behavior. I think there is some setting that is missing for them. But I am unable to figure it. I would really appreciate if someone could help !!
    Thanks in advance

    One way that you could make it work (just tried it out again) is to use the windings font
    and use the checkboxes from there. However, you need to register the font with xml publisher. In the template builder for Word, you can put a configuration file under:
    C:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\config
    (depnding on your installation). The file should have the name xdo.cfg or xdoconfig.xml.
    There is an example file: xdo example.cfg that you rename and change accoringly.
    The font is there setup for windows 2000 as an example. Select the correct font
    path - for my XP it is:
    <font family="Wingdings" style="normal" weight="normal">
    <truetype path="C:\WINDOWS\fonts\wingding.ttf" />
    </font>
    Then you can put the symbols into your RTF template and it will be rendered.
    At least it worked for me - with 5.6.2. (Availbable on Wednesday or Thursday), but
    I am pretty sure I tried it before with 5.5.
    Didn't have the 5.5 manual with me - so I have to check what that says again..
    Hope it helps,
    Klaus

  • Crystal Reports 2010 SP1 on IIS 7.0 - Report is not being displayed

    Hi,
    Finally, the keycode assembly, BusinessObjects.Licensing.KeycodeDecoder.dll error is gone, after I installed Crystal Runtime 2010 SP1. Also, I tested Crystal Report 2010 SP1 on my Windows 32 application and I can tell that I do not have this error anymore and report is being displayed properly.
    But Crystal Report is not being displayed on ASP.NET page on MS Server 2008 standard edition SP2 with IIS 7.0. Database resides on iSeries remote machine.
    The MS Server 2008 is virtual machine.
    OS system has:
    Crystal Report Basic Runtime for Visual Studio 2008
    SAP Crystal Reports Runtime engine for .NET Framework 4 (32-bit)
    Simply the report is not being displayed at all. No errors are being recorded in the Event Viewer.
    Nothing happens; excerpt the page is Loadingu2026 and Waiting for u2018website nameu2019 in the left lower corner of Firefox web browser.
    Here is the code behind aspx page with a command button - very simple:
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    protected void Button1_Click(object sender, EventArgs e)
    ReportDocument crReportDocument;
    Database crDatabase;
    Tables crTables;
    // CrystalDecisions.CrystalReports.Engine.Table crTable;
    TableLogOnInfo crTableLogOnInfo;
    ConnectionInfo crConnectionInfo;
    crConnectionInfo = new ConnectionInfo();
    //Set server name
    crConnectionInfo.ServerName = this._strServerName;
    //set database name
    crConnectionInfo.DatabaseName = this._strDatabaseName;
    crConnectionInfo.UserID = this._strUserID;
    crConnectionInfo.Password = this._strUserPassword;
    //Set integrated security
    crConnectionInfo.IntegratedSecurity = false;
    crReportDocument = new ReportDocument();
    crReportDocument.Load(Server.MapPath("~/crystal-reports/TransformerLoad/TransLoadMonthlyMax.rpt"));
    crDatabase = crReportDocument.Database;
    //Set all tables from current report file
    crTables = crReportDocument.Database.Tables;
    //crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
    //Apply schema name to the table's location
    foreach (CrystalDecisions.CrystalReports.Engine.Table _crTable in crTables)
    crTableLogOnInfo = _crTable.LogOnInfo;
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
    _crTable.ApplyLogOnInfo(crTableLogOnInfo);
    //Check if database table name starts
    if (_crTable.Location.StartsWith("XFMRSMAX", StringComparison.CurrentCulture) ||
    _crTable.Location.StartsWith("XFMRSMIN", StringComparison.CurrentCulture))
    //_crTable.Location = this._strSchemaName + "." + _crTable.Location.Remove(8) + Convert.ToInt32(Request.QueryString\"ReportYear\");
    _crTable.Location = "XFMRSMAX09";
    else
    _crTable.Location = _crTable.Location;
    this.CrystalReportViewer1.ReportSource = crReportDocument;
    This code runs on my development machine Win XP SP3
    OS system has:
    Crystal Report Basic Runtime for Visual Studio 2008
    SAP Crystal Reports Runtime engine for .NET Framework 4 (32-bit)
    This code also runs on another development server - Windows XP SP3 (IIS 5.1)
    OS system has:
    Crystal Report Basic Runtime for Visual Studio 2008
    SAP Crystal Reports Runtime engine for .NET Framework 4 (32-bit)
    ispnet_client folder has IUSR user and this user has read permissions to this folder. I even tried to change the permissions to Read & Execute.
    I am developing my reports using Crystal Reports 2008 SP2.
    Any help would be greatly appreciated.
    Serghei

    Hi Ludek,
    Thank you for your response.
    I checked the web.config file, all http handlers are there. I think the handlers are required to render the images on crystal report viewer but in my case the report viewer is not being rendered.
    I have to questions:
    1. What exact folders should be under aspnet_client\system_web?
    In my case I have structure like this
    aspnet_client\system_web\2_0_50727\crystalreportviewers13
    aspnet_client\system_web\4_0_30319\crystalreportviewers13
    Should I have folders something like this
    aspnet_client\system_web\2_0_50727\crystalreportviewers13_1
    aspnet_client\system_web\4_0_30319\crystalreportviewers13_1
    after I installed Crystal Reports 2010 SP1
    Also, in C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET 4.0\Common\Crystal Reports 2011\ there is no folder named as crystalreportviewers13 but instead crystalreportviewers
    a.     Should I copy all files from this folder to aspnet_client\system_web\2_0_50727\crystalreportviewers13, or
    b.     Should I copy all files from this folder to aspnet_client\system_web\2_0_50727\crystalreportviewers13 and rename this folder to
    crystalreportviewers
    2. Can you explain how to get a data report?
    This is the quote from your previous answer
    I'd be interested to see this simplified to a saved data report - no DB logon code - as a test...  
    Thank you Serghei

  • Images and .properties(bunldes) files are not being found from my JSPs

    Hi,
    I have created .ear file by using ANT Application. And deployed into Oracle9iAS(OC4J). Here problem is that images and .properties(internationalization bundles)files are not found from JSPs.
    Here is my directory structure.
    public_html--->locale -->BusinessEntity -->businessentity_en_US.properties
    --->enterprise -->images -->knowldege.jpg
    --->BusinessEntity-->BEAdd.jsp
    in my jsp bundle(.properties)file is accessed like this:-
    <i18n:bundle baseName="/locale/-->BusinessEntity/businessentity" id="businessentity" locale="<%= locale %>" />
    in my jsp images accessed like this:-
    src="/enterprise/images/knowldege.jpg".
    In my working environment, without creating .ear file, images and .properties files are being found my JSPs. But if i create .ear file and after deploy, images and .properties files are not being found my JSPs.
    please let me know where i might did wrong
    thanks in advance
    srinivas

    Hi i am again. Here is my configuration files(server.xml and default-web-site.xml)
    server.xml :-
    <?xml version="1.0"?>
    <!DOCTYPE application-server PUBLIC "-//Evermind//DTD Orion Application-server//EN" "http://xmlns.oracle.com/ias/dtds/application-server.dtd">
    <application-server application-directory="../applications"
    deployment-directory="../application-deployments"
    >
         <library path="../tools.jar" />
         <rmi-config path="./rmi.xml" />
         <jms-config path="./jms.xml" />
         <log>
              <file path="../log/server.log" />
         </log>
         <transaction-config timeout="30000" />
         <global-application name="default" path="application.xml" />
         <application name="nalluri" path="../applications/trainiumear.ear" auto-start="true" />
         <global-web-app-config path="global-web-application.xml" />
         <web-site path="./default-web-site.xml" />
         <cluster id="-1640090707" />
    </application-server>
    default-web-site.xml:-
    <?xml version="1.0"?>
    <!DOCTYPE web-site PUBLIC "Orion Web-site" "http://xmlns.oracle.com/ias/dtds/web-site.dtd">
    <web-site port="8888" display-name="Default Oracle9iAS Containers for J2EE Web Site">
         <default-web-app application="nalluri" name="Commonwar" />
         <access-log path="../log/default-web-access.log" />
    </web-site>
    thanks in advance
    wating for reply
    srinivas

  • Coulmn values is not being displayed in obiee 11g

    Hi All,
    Below is the sample xml generated from data structure.
    +<!--Generated by Oracle BI Publisher 11.1.1.6.0-->+
    +<DATA_DS>+
    +<G_1>+
    +<LOCATION_NAME>ABCD</LOCATION_NAME>+
    +<PRODUCT_ID>1012331403</PRODUCT_ID>+
    +<PRODUCT_SUBID>101233140302</PRODUCT_SUBID>+
    +<PRODUCT_NAME>ABCD1</PRODUCT_NAME>+
    +<REVENUE>3924973.97</REVENUE>+
    +</G_1>+
    +<G_1>+
    +<LOCATION_NAME>ABCD</LOCATION_NAME>+
    +<PRODUCT_ID>1012331401</PRODUCT_ID>+
    +<PRODUCT_SUBID>101233140104</PRODUCT_SUBID>+
    +<PRODUCT_NAME>ABCD2</PRODUCT_NAME>+
    +<REVENUE>688244.58</REVENUE>+
    +</G_1>+
    +<G_1><LOCATION_NAME>EFGH</LOCATION_NAME>+
    +<PRODUCT_ID>1011165401</PRODUCT_ID>+
    +<PRODUCT_SUBID>101116540101</PRODUCT_SUBID>+
    +<PRODUCT_NAME>EFGH1</PRODUCT_NAME>+
    +<REVENUE>3763099.99</REVENUE>+
    +</G_1>+
    +</DATA_DS>+
    We were unable to see the REVENUE column values in the report. We were able to see the values while creating layout, but unable to see the values in report. Report is not having any filters or parameters. This is build on two tables. Revenue in one table and details in another table.
    Thanks.

    Hi,
    Just noticed that, able to see column values in HTML, pdf views but unable to see in interactive view.
    While creating the layout checked in Interactive view, at that time able to get column values, but in the report column values are not being displayed in interactive view.
    But in HTML, list option , Repeating Section is not working, so have to see in interactive view only.
    I can say, in Interactive vew Aggregate functions are not working properly. We need tro use Repeating Section and List option in report. so we need interactive view only.
    Any ideas..
    Thanks.

  • After installation of latest Bridge and Photoshop version (2014.2.2) *.CR2 files will not be displayed correctly, neither in preview nor in Camera Raw dialog.

    After installation of latest Bridge and Photoshop version (2014.2.2) *.CR2 files will not be displayed correctly anymore, neither in preview nor in Camera Raw dialogue.
    Some pictures have white squares with blue and red diagonal stripes that cover almost the complete picture.
    When opening those files I have the same problem in Camera Raw dailogue and even in Photoshop eventually.
    I tried to open the same same pictures on another computer with the same version of Bridge and Photoshop but the problem remains the same.
    It seems like the files itselves are still ok, because if you open an explorer window the previews of the pictures are all ok. And the pictures' sizes remain the same.
    I tried to clear the cache in both programs but it didn't help.
    Has anyone an idea????

    First see if a reboot of your PC helps.  If not,
    Resets may be in order:
    Photoshop: Press and hold Control - Shift - Alt immediately upon cold-starting Photoshop.  If you get the keys down quickly enough - and you have to be VERY quick - it will prompt you to confirm deletion of your established preferences, which will lead to them all being set to defaults.
    Bridge:  Start Adobe Bridge and immediately press Ctrl+Alt+Shift (Windows) or Command+Option+Shift (Mac OS) until the Reset Settings dialog box appears. Select all three options--Reset Preferences, Reset Standard Workspaces, and Purge Entire Thumbnail Cache--and then click OK.
    Outdated graphics drivers can also cause display problems. Go to your GPU maker's website and be sure you have the latest drivers for your card model.

  • " File does not being with %pdf"

    Sir
    I have download a file from website. I use windows7 os. But there is a problem that a massege display " File does not being with %pdf". this problem is same in other browsers like- mozela firefox, google chrome etc. I use adobe reader 11. Please tell me its solution in detail.

    Originally posted by: bryant.harris.irisfinancial.com
    Upgrade to 2.1.0. The font stuff is fixed in 2.1.0
    Bryant
    "Brian Kallay" <[email protected]> wrote in message
    news:ege41t$9qp$[email protected]..
    > Hi,
    >
    > I am running BIRT 2.0.0 and pdf generation which works properly on windows
    > is not working correctly on linux (Red Hat Enterprise Linux ES release
    > 3). I am able to generate pdf's from charts but textual reports display
    > varying results from completely blank to "File does not begin with
    > '%PDF-'" errors depending on the report being used.
    >
    > I did find the following on a BIRT 2.0.1 project plan page, however I was
    > not able to find anything corresponding in bugzilla:
    >
    > "BIRT Runtime can not find font for PDF generation on Linux. PDF document
    > is missing text content although it displays images and outlines of
    > tables."
    >
    > This seems to describe the behavior I am seeing in many cases, however
    > with very simple reports the pdf contains the header row with the first
    > column header displayed so fonts are not failing completely.
    >
    > I am going to try upgrading to the newest BIRT version but I am hoping
    > that someone can confirm this is in fact a bug and not a configuration
    > issue that has a workaround for 2.0.0.
    >
    > Thanks,
    > Brian

  • This XML file does not appear to have any style information...

    hello,
    i am a new oracle spatial developer and also i am new in XML. i want to see the demos in oracle 10g enterprise edition. i imported the necessary dump files and i created the necessary user defined as mvdemo/mvdemo. when i want to see the demos in mapviewer, i come accross this error:
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
         <oms_error>
    Message:[XMLHelper] xml eşleme isteği incelenirken hata.
    Fri Feb 25 01:37:39 EET 2005
    Severity: 0
    Description:
    Message:[XMLHelper] xml eşleme isteğinde geçersiz geometri.
    Fri Feb 25 01:37:39 EET 2005
    Severity: 0
    Description:
    Message:GML Geometry type Point not suppoted.
    Description:
         at oracle.sdovis.JSDOGeometry.fromNodeToGeometry(JSDOGeometry.java:3185)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.parseGeoFeature(XMLHelper4Mapper.java:712)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:223)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:167)
         at oracle.lbs.mapserver.oms.getMapRequest(oms.java:678)
         at oracle.lbs.mapserver.oms.doPost(oms.java:314)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    </oms_error>
    for now, i dont know what to do.. if someone recommend any useful idea, i would be greatful.
    best regards..

    hello,
    thank you for your reply..
    i made some changes and i dont see the errors that i mentioned above any more. but still some problems..
    firstly, i decided to change the settings in the mapViewerConfig.xml file in order to add a new datasource. i copied it and that is the reason why you see the '!' in my explanation. the new situation in the mapViewerConfig.xml file like this:
    <map_data_source name="mvdemo"
    jdbc_host="c-0y5wp0jvd2bf8"
    jdbc_sid="orcl"
    jdbc_port="1521"
    jdbc_user="mvdemo"
    jdbc_password="nzKVD/KFZYkGc0uF7EL7/vPibuAPpQ9j"
    jdbc_mode="thin"
    number_of_mappers="3"
    />
    "c-0y5wp0jvd2bf8" is my computer name. jdbc password was encrypted when i started the mapviewer. this is the new screen of the mapviewer after starting:
    05/03/01 17:49:58 INFO [oracle.lbs.mapserver.oms] oms root path: C:\mapviewer10
    12_qs\mv1012qs\oc4j\j2ee\home\applications\mapviewer\web\
    05/03/01 17:49:58 Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)
    initialized
    05/03/01 17:49:58 INFO [oracle.lbs.mapserver.core.MapperConfig] using default co
    nfig file: C:\mapviewer1012_qs\mv1012qs\oc4j\j2ee\home\applications\mapviewer\we
    b\WEB-INF\conf\mapViewerConfig.xml
    05/03/01 17:49:58 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL map
    maker instances.
    05/03/01 17:50:17 INFO [oracle.sdovis.CacheMgr2] Spatial Data Cache opened. Regi
    on=SDOVIS_DATA.
    05/03/01 17:50:17 INFO [oracle.sdovis.CacheMgr2] max_cache_size=32 MB.
    05/03/01 17:50:17 INFO [oracle.sdovis.CacheMgr2] sub region sdovis_subreg_mvdemo
    _jdbc:oracle:thin:@c-0y5wp0jvd2bf8:1521:orcl created in cache.
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper ins
    tance to the pool [data src=mvdemo]
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper ins
    tance to the pool [data src=mvdemo]
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper ins
    tance to the pool [data src=mvdemo]
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperConfig] Map Recycling th
    read started.
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.oms] *** Oracle MapViewer started.
    when i open the page ( http://localhost:8888/mapviewer/ ) and press the submit button of the "sample map request" section to see the result of the demo, i come accross this error:
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
         <oms_error>
    Message:[XMLHelper] xml eşleme isteği incelenirken hata.
    Tue Mar 01 17:53:51 EET 2005
    Severity: 0
    Description:
    Message:[XMLHelper] xml eşleme isteğinde geçersiz geometri.
    Tue Mar 01 17:53:51 EET 2005
    Severity: 0
    Description:
    Message:GML Geometry type Point not suppoted.
    Description:
         at oracle.sdovis.JSDOGeometry.fromNodeToGeometry(JSDOGeometry.java:3185)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.parseGeoFeature(XMLHelper4Mapper.java:712)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:223)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:167)
         at oracle.lbs.mapserver.oms.getMapRequest(oms.java:678)
         at oracle.lbs.mapserver.oms.doPost(oms.java:314)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    </oms_error>
    in addition, i use firefox as my default browser. however, i tried it in the iexplorer also but gave the same error again.
    i look forward to taking a response. thank you very much for your care again.
    regards

  • QT files are not being played at the right height on laptop - why?

    Hello eveyone,
    The QT files imported in my MacBook pro are HQ but are being played 1280 x 405 (for the length of the screen, but not at the right height). I can't even play view them with the Actual file feature. The Movie Inspector tells me the clipes were shot normal (1920x1080) yet I can't se them properly.
    I tried on a different MacBook pro and I have the same problem.
    Does anybody know why? What should I do?
    Thanks!

    Actually, there is no problem with the original files.
    Since I do not know how you came to this conclusion or if it is correct, my first thought is, "Show me the proof." I.e., post a captured image of the "Inspector" window for the player you are currently using. This will tell me which QT player you are using, whether the display is controlled by scaled dimension or aspect ratio settings, whether the file was encoded anamorphically or non-anamorphically, and whether the encoded aspect ratio matches the current display aspect ratio. It won't tell me the true aspect ratio of the video but a look at people and objects in a single video frame will normally disclose whether or not the display aspect is reasonably close or not.
    If I import them in say Final Cut Pro, I can see them properly...so it's only the Quick Time on our laptops that display the clips wrong.
    This isn't really helpful since FCP has settings that allow the user to both change and scale display dimensions and aspect ratios. QT 7 Pro will allow you re-scale the aspect ratio of a display but not alter its encoded aspect ratio while QT X will allow you to resize the display scale but only in reference to its encoded aspect ratio. Neither will allow you to display a file at dimensions greater than your current video card settings (i.e., where actual dimensions are greater than screen display resolutions for the encoded aspect ratio). In a similar manner, "fit" and "fill" option availability will also depend on the device/player and available screen resolutions/aspect ratiios which you have yet to indicate for either platform previously mentioned.
    The full length of the screen, but not the full height... Do you have any advide on how to get the settings done? I looked into the QT settings and coulnd't find the right button/panel...
    As previously stated, the first step is to determine if the files are being displayed correctly—i.e., at their correct aspect ratio for the allowable display space available for the current screen resolution available on the platforms being used for viewing. For instance, are you viewing in the full screen mode, or with menu bar being displayed and/or with the dock in or out of active display. These settings plus the video card screen resolulution will determine the maximum number of viewing pixels available fort the display height. Once the scale height is set by the QT player, then QT app will scale the display width to what it believes is correct display setting. If the aspect of the display is correct for the scaled height and width, then the file is being displayed correctly at the maximum display height available and there is nothing wrong and nothing to be corrected either in the file or the media player other than your desire to play a file at dimenensions larger than available for your display. (I.e., this is equivlent to saying you want to display a 52 inch diagonal picture on 32 inch HDTV—"it ain't gonna happen."
    On the other hand, if the aspect ratio is incorrect for the maximum display height available for the app, system, and platform being used for viewing, then all of the other things I mentioned come into effect with regard to correcting the embedded display settings within the file.
    Example: If i take an anamorphically encoded 1440x1080 (1920x1080) file and display it on my monitor set to a resolution of 2560x1440, then I can display the file at its "actual" display size (1920x1080) or even scale it to 2560x1440 (Full Screen Display mode) but if I reset my monitor to a  4:3 aspect resolution of 1600x1200, then I cannot play the file at its actual 1920x1080 display resolution since its width is limited to 1600 pixels and when the 16:9 aspect ratio is applied to the 1600 pixel display width, the display height is limited to 900 pixels in a "Fit to screen mode."
    If your source file was recorded at 1920x1080, then the file's aspect ratio is 16:9 (1.78:1). However, your 1280x405 screen size implies that either the file is now being displayed in the "Fit" mode with a changed aspect ratio of 3.16:1 (1280x405) or that you are viewing the file in the "Fill" mode which chops off the top and bottom of your 1280x720 (1.78:1) display. (I.e., the "Fit" mode will scale the display at its current aspect to fit within the available display area and yet allow you see the entire display area as a "scaled view at the correct aspect while the "Fill" mode scales the video to fill your entire screen even if this means losing the top/bottom or left/right portions of the display area when the monitor resolution aspect ratio and video display ratio are not the same.)
    Therefore, if your file is correctly formatted as you claim, use the "Command-F" QT shortcut to view the file at its largest available dimensions at the correct aspect ratio on any platform and using either the QT X or QT 7 player. (Don't forget to set the QT 7 "Full Screen" preference.)

  • JavaScript files are not being updated while updating managed solution over Dynamics CRM Online

    Hi Support,
    While I am updating a managed solution over Dynamics CRM 2013 Online, JavaScript files are not being updated and is showing the source as of the last version of the managed solution. 
    I tried the same versions of solution on my CRM 2013 on-premise install (test organization) and it updated successfully.
    This is a bit urgent issue. Please suggest how to resolve this.
    Online version of the CRM is
    Microsoft Dynamics® CRM Online Spring '14
    (6.1.1.1855) (DB 6.1.1.1847)
    blog: <a href="http://technologynotesforyou.wordpress.com">http://technologynotesforyou.wordpress.com</a> | skype: ali.net.pk

    Our technical team managed to find the immediate cause for the problem, and a solution.
    According to them there was a corruption on a speciffic OLAP file. By deleting it, they allowed it to be recreated on the next application processing. The file in question was found in \Microsoft SQL Server\MSSQL.2\OLAP\Data\UGF.0.db\<APPLICATION>.38.cub.xml
    Where <APPLICATION> is the name of the problematic cube.
    After that everything is working.

Maybe you are looking for