Installing 10.1.3.3 with IAS 10.1.3.1 LDAP

I am trying to install OBIEE Plus under the SOA suite app server 10.1.3.1. The app server is setup for LDAP authentication. The install fails with "Unsuccessful verification of username/password pair" . Has anyone tried this?

This did the trick! I restored the important values in odbc.ini and polite.ini. The install saves a copy of the old files (e.g. odbc.ini.bak.1) which helped me locate the old paths. Here were the changes needed in odbc.ini:
< Driver32=C:\Oracle\bpel10121\integration\orabpel\bin\olod2040.dll
Driver32=C:\Oracle\product\10.1.3.1\OracleAS_1\Mobile\Sdk\bin\olod2040.dll< DataDirectory=C:\Oracle\bpel10121\integration\orabpel\system\database\olite
DataDirectory=C:\Oracle\product\10.1.3.1\OracleAS_1\bpel\system\database\oliteHere are the changes in polite.ini:
< DataDirectory=C:\Oracle\bpel10121\integration\orabpel\system\database\olite
< MessageFile=C:\Oracle\bpel10121\integration\orabpel\bin\olite40.msb
< DB_CHAR_ENCODING=Native
DataDirectory=C:\Oracle\product\10.1.3.1\OracleAS_1\Mobile\Sdk\OLDB40
MessageFile=C:\Oracle\product\10.1.3.1\OracleAS_1\Mobile\Sdk\BIN\olite40.msb
DB_CHAR_ENCODING=UTF8

Similar Messages

  • Installing linux O.S. for working with IAS 10gR2 and DB11g

    Hi all.
    I have a Dell server with linux enterprise 5.5, but I want to re install all, reformat ,
    because I need to learn how to.
    how decide which O.S install if I will use it with IAS 10g and Database 11g ?
    best regards

    toga wrote:
    Hi all.
    I have a Dell server with linux enterprise 5.5, but I want to re install all, reformat ,
    because I need to learn how to.
    how decide which O.S install if I will use it with IAS 10g and Database 11g ?
    best regardsInstall the OS the product you have is certified for.
    Or install the product that is certified for the OS you have.

  • Install XML Publisher with iAS 10g

    Hello,
    Can we install/integrate XML Publisher with iAS 10g (10.1.2) and how can we integrate published reports with it.
    We don't have SSO,OID
    Regards

    When you say integrate, do you mean you want to install XMLP on top of it or you want to report data from it?
    Tim

  • ADF from JDeveloper 10.1.2 not compatible with iAS 9.0.1

    Hi,
    We developed an ADF Application with JDeveloper 10.1.2 and we use the ADF interMedia domains (e.g. oracle.ord.im.OrdDocDomain). The application runs fine in JDeveloper, but doesn't run on our iAS 9.0.4.1. We get the following exception:
    java.lang.NoClassDefFoundError: oracle/sql/DatumWithConnection
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:219)
    at oracle.jbo.common.java2.JDK2ClassLoader.loadClassForName(JDK2ClassLoader.java:38)
    at oracle.jbo.common.JBOClass.forName(JBOClass.java:161)
    at oracle.jbo.common.JBOClass.findDataClass(JBOClass.java:203)
    at oracle.jbo.server.AttributeDefImpl.initFromXML(AttributeDefImpl.java:2061)
    at oracle.jbo.server.AttributeDefImpl.loadFromXML(AttributeDefImpl.java:2013)
    at oracle.jbo.server.EntityDefImpl.loadAttribute(EntityDefImpl.java:2815)
    at oracle.jbo.server.EntityDefImpl.loadAttributes(EntityDefImpl.java:2779)
    at oracle.jbo.server.EntityDefImpl.loadFromXML(EntityDefImpl.java:2362)
    at oracle.jbo.server.EntityDefImpl.loadFromXML(EntityDefImpl.java:2106)
    at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:514)
    [...rest of stacktrace omitted ...]
    The problem is that the JDBC version of the iAS 9.0.4.1 is missing the class DatumWithConnection that is indirectly referenced by the interMedia classes supplied with JDeveloper 10.1.2.
    In detail, oracle.ord.im.OrdDoc uses oracle.sql.STRUCT. The inheritance hierarchy of STRUCT is different in the JDBC versions on iAS 9.0.4.1 (oracle.sql.Datum <- oracle.sql.STRUCT) and JDeveloper 10.1.2 (oracle.sql.Datum <- oracle.sql.DatumWithConnection <- oracle.sql.STRUCT). The class file of oracle.ord.im.OrdDoc (from 10.1.2. JDeveloper) was apparently compiled the new JDBC driver version since it contains a reference to oracle.sql.DatumWithConnection. And that class cannot be found if run on iAS 9.0.4.1 with its old JDBC version.
    I think this is a very serious problem, since it means that ADF from JDeveloper 10.1.2 is not compatible with iAS 9.0.4.1, in contradiction to the support matrix (http://www.oracle.com/technology/products/jdev/collateral/papers/10g/as_supportmatrix.html).
    Upgrading the JDBC Driver on the iAS seems to be the only clean solution for this problem (we also tried using old versions of the ordim.jar etc. but that always leads to other problems). But simply exchanging the JDBC jar-files on the server breaks the Enterprise Manager on our iAS installation.
    I have two questions:
    1) Is there a recommended workaround for the compatibility issue described above?
    2) Is there a documented and supported way to upgrade the JDBC driver of iAS 9.0.4.1? I searched OTN and MetaLink and haven't found anything about this.
    Kind Regards,
    Kay
    P.S. It is surprising that this problem is rarely mentioned in the OTN forums at all. The only relevant thread is on the JHeadstart Forum:
    JHeadstart Deployment Issue
    P.S.2
    More info on what we tested:
    We have thoroughly checked that the 10.1.2. ADF runtime was correctly deployed on our iAS 9.0.4.1. We installed a OC4J 9.0.4.0.0 standalone on the same linux machine as our iAS 9.0.4.1 and deployed our application on it, getting the same error (java.lang.NoClassDefFoundError: oracle/sql/DatumWithConnection) as on the iAS. Replacing the JDBC drivers of the OC4J standalone with the version that came with JDeveloper 10.1.2 solved the problem.

    I don't think that mixing classes from different jar file is a good idea. Nevertheless, we tested this approach already. Adding the DatumWithConnection.class from the 10.1.0.3.0 JDBC version to the jar file of the original JDBC version (of the iAS 9.0.4.1.0) caused a java.lang.VerifyError to appear.
    The DatumWithConnection class is not simply added in the newer JDBC version. It is inserted into the inheritance hierarchy of oracle.sql.STRUCT and oracle.sql.Datum. Simply providing the new class next to the old JDBC driver will not work.
    To give more information about what's wrong with updating the complete JDBC driver, I justed tested it again. To update the JDBC driver I stopped the server, changed the contents of jdbc/lib, started the server. I tried it with JDBC Version 9.2.0.5 as well as 10.1.0.3.0.
    In both cases, our own application works, i.e. no more NoClassDefFoundError caused by oracle.sql.DatumWithConnection.
    The Enterprise Manager shows strange behaviour, however. Some features work as usual but, for example, when I click on the "Applications" tab for our OC4J instance, we just get the following error shown in the browser:
    An error was encountered while loading page. Failed to initialize configuration management user session.. See base exception for details.
    Root Cause: TDU
    Resolution: See base exception for details.. TDU
    In one of the server logs I found the following stacktrace:
    java.lang.NoSuchFieldError: TDU
         at oracle.net.resolver.NavDescription.navigate(Unknown Source)
         at oracle.net.resolver.NavServiceAlias.navigate(Unknown Source)
         at oracle.net.resolver.AddrResolution.resolveAddrTree(Unknown Source)
         at oracle.net.resolver.AddrResolution.resolveAndExecute(Unknown Source)
         at oracle.net.ns.NSProtocol.establishConnection(Unknown Source)
         at oracle.net.ns.NSProtocol.connect(Unknown Source)
         at oracle.jdbc.ttc7.TTC7Protocol.connect(TTC7Protocol.java:1777)
         at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:215)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:365)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:547)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:347)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at oracle.context.isearch.admin.users.InstanceManager.getSchemaConnection(InstanceManager.java:688)
         at test.admin__status._jspService(_admin__status.java:112)
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:793)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    Kind Regards,
    Kay

  • What's the Portal bundled with ias 10.1.2.0.2 ? 10.1.2.0.1 or 10.1.2.0.2 ?

    My Holy Graal is to upgrade Portal 10.1.4...
    OUI claims I'm running
    <ul>
    <li>Oracle Application Server 10g 10.1.2.0.2 in one home (AS)</li>
    <li>Oracle Portal 10g 10.1.2.0.1 under that same home</li>
    </ul>
    (I installed the AS home only for the Portal and the install went like a breeze).
    However, when I display the [WEB] Enterprise manager home page it says :
    Version     : 10.1.2.0.2
    Installation Type :Portal and Wireless
    My install is :
    <ul>
    <li>One home with DBMS 10.1.2.0.1</li>
    <li>One home with MRCA 10.1.2.0.2</li>
    <li>One home wiith OIM 10.1.2.0.2</li>
    <li>One home with AS 10.1.2.0.2</li>
    </ul>
    I was going to go straight to the portal upgrade and decided to look up the exact Portal version number through OUI. I wish I hadn't !!!
    Can somebody confirm I do <b>NOT</b> need to apply 10.1.2.1 despite the
    <a style="color:#0000ff" href="http://www.oracle.com/technology/products/ias/portal/html/upg_1014_1012_intro.html#SupportedVersions">
    <span style="color:#0000ff">Warning</span></a> on the upgrade page. In other words that the Portal version bundled with ias 10.1.2.0.2 is 10.1.2.0.2 (and that OUI is wrong to claim otherwise).
    Thx in adv
    Alain Pannetier

    I've upgraded yesterday night and all went well !
    Except that the precheck detected that my repository db's aq_tm_processes was still unset.
    I must have changed the current value only at install time (now it's also in the spfile).
    <br>
    The good thing is that you can run the upgrade script a second time and that it detects the already successfully executed steps.
    So basically found the mrua its shrubbery ;-)
    A

  • JSP1.1 only with iAS/817??

    Am I reading this wrong or is OracleJSP1.1 implementation only available with iAS or 817
    Dissapointing you guys didnt release it here first on technet, been waiting for an upgrade to a JSP1.1 implementation for months whilst others said to give up and go for Jakarta and then when it comes its tied to new products
    Rob

    I've upgraded yesterday night and all went well !
    Except that the precheck detected that my repository db's aq_tm_processes was still unset.
    I must have changed the current value only at install time (now it's also in the spfile).
    <br>
    The good thing is that you can run the upgrade script a second time and that it detects the already successfully executed steps.
    So basically found the mrua its shrubbery ;-)
    A

  • How can i put two domains with IAS

    Hi!!
    I have IAS in Win NT and i publish www.mycompany.com published with it, but now i want to publish other domain www.myproduct.com in the same machine and i dont know how because in the http.conf servername parameter i only can put one server, if i install two networks cards and with two IP's can i do this? or is impossible?
    Could anyone help me?
    Regards.

    Hi!!!
    Thnaks for your help!!
    But if with these two domains i need to publish pages generated with the pl/sql toolkit how this works?
    If i publis /pls/myapp and /pls/myapp2 where i see this in this, in two domains? can i give permissions or something to only see myapp in domain1 and app2 in domain2?
    Thanks in advance.

  • Configuring Web Server (IWS 6.0) on separate machine with IAS 6.0 SP3 (test drive)

    Hi All,
    I want to install the application server (IAS 6.0 SP3) on a Unix (Solaris 8)
    server and web server (IWS 6.0) on another Windows NT server, in another
    words a webless installation.
    I have installed the IWS 6.0 on the NT machine and IAS 6.0 SP3 on the Unix
    server successfully, but am having problem on the NT machine because the NT
    version of the IAS 6.0 SP3 Evaluation doesn't allow installation of just the
    web connector, and so I installed the whole package and then tried to
    manually change the configuration so that hopefully it will marshall the
    requests to the IAS installed on the Unix server. I couldn't get it to work
    and it is giving an error that says
    GX Error (GX2GX)
    socket result code missing!!!
    Have anyone else come across this scenario? I will appreciate it if you
    could enlighten me on how it can be done. Thanks in advance.
    Christopher Lam

    Hi,
    You donot have any option to choose a perticular component with iAS testdrive on
    NT. So, you can not install only plugin at the webserver end.
    I think manual editing doen not help. Can you please let me know what
    modifications have you done clearly.
    Thanks,
    Rakesh,
    Developer-Support, iAS.
    "Christopher Lam (IseafoodXchange)" wrote:
    Hi All,
    I want to install the application server (IAS 6.0 SP3) on a Unix (Solaris 8)
    server and web server (IWS 6.0) on another Windows NT server, in another
    words a webless installation.
    I have installed the IWS 6.0 on the NT machine and IAS 6.0 SP3 on the Unix
    server successfully, but am having problem on the NT machine because the NT
    version of the IAS 6.0 SP3 Evaluation doesn't allow installation of just the
    web connector, and so I installed the whole package and then tried to
    manually change the configuration so that hopefully it will marshall the
    requests to the IAS installed on the Unix server. I couldn't get it to work
    and it is giving an error that says
    GX Error (GX2GX)
    socket result code missing!!!
    Have anyone else come across this scenario? I will appreciate it if you
    could enlighten me on how it can be done. Thanks in advance.
    Christopher Lam

  • SharePoint Foundation 2013 - Multi-tenant Install and OneDrive for Business with Yammer i

    Hello,
    After installing SP Foundation 2013 (SP1) with Partitioned service applications we have noticed that while clicking on the "yammer and oneDrive" link the below error message comes up:
    _admin/yammerconfiguration.aspx
    any ideas??
    http://technet.microsoft.com/en-us/library/dn659286%28v=office.15%29.aspx
    we have also noticed that MS mentioned "OneDrive for Business with Yammer integration doesn’t work for multi-tenancy or partitioned service applications for on-premises deployments"
    ja

    ULS
    Application error when access /_admin/cloudconfiguration.aspx, Error=Object reference not set to an instance of an object.   at Microsoft.SharePoint.WebControls.SPPinnedSiteTile.OnInit(EventArgs e)     at System.Web.UI.Control.InitRecursive(Control
    namingContainer)     at System.Web.UI.Control.InitRecursive(Control namingContainer)     at System.Web.UI.Control.InitRecursive(Control namingContainer)     at System.Web.UI.Control.InitRecursive(Control
    namingContainer)     at System.Web.UI.Control.InitRecursive(Control namingContainer)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    =====
    To me it seems SharePoint social networking features require the full SharePoint Server product AND are not available with the free SharePoint Foundation, If correct then why MS punching it here in Foundation without a friendly error message..
    ja

  • Unable to install SQL Server 2012 along with BIDS & VS 2012 on Windows 7

    Unable to install SQL Server 2012 along with BIDS & VS 2012 on Windows 7 professional.
    I get the below error
    Could not find vsjitdebugger.exe
    Blogs say anti-virus is stopping but I dont have one on the system.
    Note: I had used SQL 2008 on the system previously and has a refresh i have deleted all the software to speed up the system.
    Now i could not install both the software.
    Can I get some help regarding this?

    Hi Nandu,
    As your description, you come across an error(vsjitdebugger.exe cannot be found). Please confirm if the error occurs during the installation of SQL Server 2012.  If so, please help post SQL Server setup logs. By default, SQL Server setup log file locates
    in C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log.
    Base on my research, this error could be caused by that the previous uninstallation is improper and vsjitdebugger.exe file could be mistakenly deleted.
    To troubleshoot the issue, you could start your computer into Safe Mode and fix your problem with one of the following methods. For more information, please refer to the article:
    http://www.fixerrorkit.com/fix-error/fix-vsjitdebugger.exe-error.html.
    1. You could execute the sfc /scannow command following steps below.
    a. Press "Windows+R", type in cmd and then right click "Run as administrator"
    b. Type in sfc /scannow (There's a space between sfc and /scannow) into the dialog and hit Enter key and click ok.
    c. Wait until the System File Checker finishes the check.
    2. You could use a Windows repair installation, also known as a Startup Repair to repair your Windows system files.
    3. You could install the latest Windows updates to fix vsjitdebugger.exe error. Microsoft often releases new service packs and system patches to replace or update some DLL files of Windows system.
    4. You could use third-party tool such as Automatic Error Fix Tool to fix your vsjitdebugger.exe error. However, Microsoft cannot make any representations regarding the quality, safety, or suitability of any third-party software or information found there.
    In addition, if you are unable to install  Visual Studio, I suggest you post your question in Visual Studio Setup and Installation forum at
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vssetup  . It is appropriate and more experts will assist you.
    Regards,
    Michelle Li

  • Can't get adobe reader to install on my new laptop with windows 8

    I can't get adobe reader to install onto my new laptop with windows 8. Basically what happens is that I start the download from the adobe screen by clicking the yellow download button, then I click run (I've also tried save and run), then I allow the program to make changes to my hard drive, and then finally a blank grey box appears in the in the middle of the screen, titled "adobe reader installer". After this box appears nothing else happens. I've let it sit for at least 30 minutes and still nothing. I've also disabled my pop up blocker, and set the security settings to default as suggested in other posts. Unfortunately this is the only pdf program that works for the site we have to use to write contracts, so I need to get this figured out asap. Thanks in advance for any help and advice.

    Try installing from http://get.adobe.com/reader/enterprise

  • Hi I would be grateful if someone can help me, I have just bought a canon wireless printer, I only have an iPad so I can not install the cd that comes with the new printer yet it says it is compatible. How do I get it working I have a pay as you go 3G sim

    I do not use the Internet using wifi I use 3G mobile broadband and if I do need wifi it tells me I have to pay for it, but I can not work out how to install or connect my iPad with my new printer if there is not a cd slot or USB port. I only have an iPad no computer so how on earth do I use my printer with it if it I can't install the printer cd. I though I would be able to use Bluetooth and it would pick it up automatically but I am really confused now and don't know what to do please help.

    The iPad uses AirPrint technology to print to a printer. Check this Apple support page to see if your printer is listed as being AirPrint compatible.
    http://support.apple.com/kb/ht4356
    If your printer works with AirPrint you will need a Wi-Fi network in order to connect. That Wi-Fi network does not need to be connected to the Internet. As James Ward4 says, you'll need a Wi-Fi router to set up your network. Most routers require that a computer be used during the setup process. Perhaps you could use someone's computer to do the setup if you do not had one yourself. Once the router is set up you should be able to print.

  • I am trying to install a registered copy of Photoshop Lightroom that I never installed on my Apple iMac with software version 10.10.  I get the message "Adobe Lightroom 1.  Cannot be installed on this disk because a newer version of this software already

    I am trying to install a registered copy of Photoshop Lightroom that I never installed on my Apple iMac with software version 10.10.
    I get the message “Adobe Lightroom 1.  Cannot be installed on this disk because a newer version of this software already exists on this disk”
    If it is here – I cannot find it anywhere, and I don’t believe that I ever installed it.
    I have ordered the upgrade to Lightroom 5.0 and figured that I should install Lightroom 1.0 first.
    How can I solve this problem

    Actually when LR 5 starts for the first time after it is installed it will have a dialog to Buy, Try or Enter a serial number. You select Enter a serial number and enter the LR 5 serial number first and then because it is an upgrade serial number it will ask for the serial number of a Previous version. You then enter the LR 1 serial number.

  • I am unable to install extensions, they show up with "will be installed after you restart Firefox" even after I restart.

    Hi,
    I am unable to install extensions, they show up with "will be installed after you restart Firefox" even after I restart.
    The "Staged" folder is present and remains after a restart, but the extensions do not get installed. They show in the extensions page with the "will be installed after you restart Firefox" message and remain like this no matter how many times I restart.
    Any Idea's?
    Running Firefox 24.0 on Windows 8.1
    Many Thanks,
    BD
    P.S. Just tried to install the "troubleshooter" add-on before posting the question and I got an error saying it cannot install because it cannot modify the needed file. (I did it manually instead)

    It is possible that there is a problem with the file(s) that store the extensions registry.
    Delete the extensions.* files (e.g. extensions.sqlite, extensions.ini) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.org/kb/Profiles
    New files will be created when required.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.org/kb/Unable+to+install+add-ons
    If you see disabled or not compatible extensions in "Firefox/Tools > Add-ons > Extensions" then click the Tools button at the left end side of the Search Bar to check if there is a compatibility update available.
    If this hasn't helped then also delete the addons.sqlite file.

  • How do i sync apps to my iPhone 4S using itunes without losing aps already installed on the phone but with a different apple ID, and i dont have the apple ID??

    how do i sync apps to my iPhone 4S using itunes without losing aps already installed on the phone but with a different apple ID, and i dont have the apple ID??

    How have you managed to get apps on your phone that are tied to a different and unknown AppleID?
    If these apps were not purchased by you, having them is effectively software piracy and you should purchase them using your own AppleID if you want to keep hem.

Maybe you are looking for

  • ~/Desktop directory missing

    After system upgrade (total download size was approximately 450 MB) and rebooting computer, ~/Desktop directory missing, so there is no icons on Desktop. I can create ~/Desktop dir manually and I can copy files to ~/Desktop dir, but there is no diffe

  • Db Provider rights

    Hi, I have a group called 'my_group' with the 'PORTAL_DEVELOPER' role assigned to it. The 'my_group' group profile has the following privileges: Portal DB Provider Privileges --- All Portal DB Providers (CREATE) --- All Shared Components (CREATE) and

  • ITunes Audiobooks icon keeps disappearing

    I have successfully imported dozens of Audible Audiobooks to iTunes. But the Audiobooks icon/folder in the Library is not displayed when I launch iTunes. To make it reappear, I redownload a book from Audible, import it to iTunes using the Audible Dow

  • How to transfer pse 5 to new computer

    Hi, Sorry if my question is very basic, but I honestly don't have much of a clue about how to do this properly. I have PSE 5 and just went from one computer (XP) to Windows 7.  I put all my files on an external hard drive and the PSE is in a folder o

  • Reports6i in Linux

    Have anyone good experience trying to work with reports in a linux box? Im having two big problems with this platform: First, Im managing reports from Web (using cgi-bin) and the reports I call using HTMLCSS is too different from that I made with rep