Jboss with mvc/uix gives errors

I made a jheadstart application. This works perfectly with ias , now i want to try it on jboss , i followed the howto.
jboss tries to load the mvc servicefile
<?xml version='1.0' encoding='windows-1252'?>
<service name="startService" class="oracle.cle.process.Service"
initial="HOMEPAGE">
<seedinfo name="debugMarlinPage" value="true"/>
<globalinfo name="groupAccessDataObject"/>
<!--
Process Group: HomePage
Description: HomePage pagina
-->
<processgroup name="HOMEPAGE" class="oracle.cle.process.DisplayGroup"
initial="DisplayHomePage" end="true">
<process name="DisplayHomePage"
class="oracle.jheadstart.process.CreateUIXPage" end="true">
<argument type="String" value="/uix/HomePage.uix"/>
</process>
</processgroup>
</service>
error
2003-06-17 15:04:48,057 ERROR [STDERR] null
2003-06-17 15:04:48,057 ERROR [STDERR] oracle.cle.exception.CLEException
2003-06-17 15:04:48,057 ERROR [STDERR]      at oracle.cle.util.xml.XMLUtil.saxParse(XMLUtil.java:114)
2003-06-17 15:04:48,057 ERROR [STDERR]      at oracle.cle.process.Service.loadFromXML(Service.java:360)
2003-06-17 15:04:48,057 ERROR [STDERR]      at oracle.cle.process.Service.<init>(Service.java:225)
2003-06-17 15:04:48,057 ERROR [STDERR]      at oracle.cle.process.Service.<init>(Service.java:178)
2003-06-17 15:04:48,057 ERROR [STDERR] Failed Loading Service from XML file...
2003-06-17 15:04:48,057 ERROR [STDERR] Service could not be instantiated...
2003-06-17 15:04:48,057 ERROR [STDERR] Check your service definition (XML) file: startService.xml
it there something missing

I'm guessing that these errors:
2003-06-17 15:22:46,120 INFO [org.jboss.web.localhost.Engine] UIX could not find the filesystem location of the stylesheet cache. Usually, this indicates that
you are running in an environment that does not support the automatic discovery of writable directories; if so, you'll need to configure UIX to give it an explicit
filesystem path and URL.
2003-06-17 15:22:46,120 ERROR [org.jboss.web.localhost.Engine]
oracle.cabo.share.config.DirectoryUnavailableException: contextPath is null
are caused by the fact that jboss doesn't explode the
uix install zip. uix needs access to the local file
system to store images and style sheets. try unzipping
the zip file and make uix is configured properly to
use that directory. see the uix developers guide
in jdev help for configuration issues

Similar Messages

  • Discover Plus works with internal IP, Gives error with External IP

    Oracle 9i Discoverer plus works with internal IP but when I try to access using the external IP it gives error while trying to load workbook wizard.
    Error : Unable to Connect to Discoverer Application contact Administrator

    Hi Sree
    Well a virtual host will certainly help working with a firewall its may mode of operation is to allow a different IP and / or DNS URL to work.
    Are you sure the virtual host you added is the correct one as per what you want to do? I ask because you may have one in there for a different reason.
    As I mentioned earlier though, whilst I am happy to contribute and try to help I am by no means an expert in doing what you are trying to do. I've always thought that changing a name like this would involve a re-install of the server which is something I believe you are trying to avoid. Personally I don't recall seeing a situation like yours work without re-installing which is why I encouraged you to speak with Support.
    Best wishes
    Michael

  • Jaas ( web.xml) login with uix gives error

    I configured a jaas login (web.xml) with my jheadstart project like the jsp example ( Secure BC4J Applications with Oracle9i VPD and Oracle 9iAS JAAS ) this works fine, I get a login box and after i log in, the oc4j server gives a error.
    Error in CreateMarlinUIXPage.createUITree: no protocol: /uix/HomePage.uix
    what can this be, the jsp example works fine

    here is my web.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <display-name>sicma</display-name>
    <description>sicma helpdesk applicatie</description>
    <servlet>
    <servlet-name>sicmaController</servlet-name>
    <servlet-class>oracle.jheadstart.process.controller.JhsHttpServletController</servlet-class>
    <init-param>
    <param-name>cle-service-descriptor</param-name>
    <param-value>sicmaService.xml</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>sicmaController</servlet-name>
    <url-pattern>/Startsicma</url-pattern>
    </servlet-mapping>
    <servlet>
    <servlet-name>startController</servlet-name>
    <servlet-class>oracle.jheadstart.process.controller.JhsHttpServletController</servlet-class>
    <init-param>
    <param-name>cle-service-descriptor</param-name>
    <param-value>startService.xml</param-value>
    </init-param>
    <security-role-ref>
    <role-name>administrator</role-name>
    <role-link>administrators</role-link>
    </security-role-ref>
    </servlet>
    <servlet-mapping>
    <servlet-name>startController</servlet-name>
    <url-pattern>/Start</url-pattern>
    </servlet-mapping>
    <resource-ref>
    <res-ref-name>jaas</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Application</res-auth>
    </resource-ref>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>jaas</web-resource-name>
    <url-pattern>/</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>administrators</role-name>
    </auth-constraint>
    <user-data-constraint>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>jazn.com</realm-name>
    </login-config>
    <security-role>
    <role-name>administrators</role-name>
    </security-role>
    </web-app>

  • Sqlplus exit with bind variable gives error

    Hi,
    I want to return the ID-value from an insert-statement back to the OS, but I can't catch it properly in a variable to exit that variabel. here's the script:
    variable logid NUMBER;
    select id_seq.nextval into :logid from dual;
    -- insert into Tab_A .....
    ---values :logid..... -> nothing to do with the problem
    exit :logid;
    I get this:
    SP2-0670: Internal number conversion failed
    To make a minimum test, I do:
    variable logid NUMBER;
    select 5 into :logid from dual;
    exit :logid;
    but I still get that error !
    what am I doing worng here ?
    it is a number isn't it ?
    why do i get a conversion-error than ?
    how do I fill and return a variable correctly ?
    thanks for any help, Lao De

    Your problem is with your select statement. SELECT...INTO is PL/SQL, not SQL, and can not be used to set a variable. Alternatives:
    $ sqlplus scott/tiger
    SQL*Plus: Release 9.2.0.3.0 - Production on Fri Dec 9 13:52:19 2005
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Connected to:
    Oracle9i Release 9.2.0.3.0 - Production
    JServer Release 9.2.0.3.0 - Production
    SQL> variable logid number
    SQL> exec :logid := 5
    PL/SQL procedure successfully completed.
    SQL> exit :logid
    Disconnected from Oracle9i Release 9.2.0.3.0 - Production
    JServer Release 9.2.0.3.0 - Production
    $ echo $?
    5
    $ sqlplus scott/tiger
    SQL*Plus: Release 9.2.0.3.0 - Production on Fri Dec 9 13:53:39 2005
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Connected to:
    Oracle9i Release 9.2.0.3.0 - Production
    JServer Release 9.2.0.3.0 - Production
    SQL> variable logid number
    SQL> begin
      2  select 6 into :logid from dual;
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> exit :logid
    Disconnected from Oracle9i Release 9.2.0.3.0 - Production
    JServer Release 9.2.0.3.0 - Production
    $ echo $?
    6Note that, on a unix platform, your return value must be a positive integer <= 255.

  • I have Windows XP and can't sync my Ipod Touch with itunes. Gives error 13019. I did all the recommendations recommended, including unchecking the sync and resyncing all the music, but it came up again. No voice memos or videos checked.  Help!  Please!

    Again, I went through the "fixes" recommended, but none of them have worked.  Please help!  I can't get any of my new music that I just bought onto my Ipod!  It fails at the last second with that 13019 error code even after removing all the music and re-syncing.  Thanks.

    Thank you, but I did that. I de-selected and then re-selected but because the 13019 still won't allow the sync, all it did was completely delete everything on my Ipod!  I now have no songs on my Ipod when at least before, I had all my songs but the new 12 songs!  I'm freaking! 

  • Compiling with javac command gives error msg

    HI,
    I'm working on a linux based system and I need java for programming projects but when i want to compile a project, I get the error:
    1. WARNING in Og05_08.java
    (at line 8)
            public class Og05_08 extends Applet implements ActionListener
                         ^^^^^^^
    The serializable class Og05_08 does not declare a static final serialVersionUID field of type long
    1 problem (1 warning)I think it has something to do with the compiler and not with the programming.

    It's a warning, not an error. From the API:
    The serialization runtime associates with each serializable class a version number, called a serialVersionUID, which is used during deserialization to verify that the sender and receiver of a serialized object have loaded classes for that object that are compatible with respect to serialization. If the receiver has loaded a class for the object that has a different serialVersionUID than that of the corresponding sender's class, then deserialization will result in an InvalidClassException. A serializable class can declare its own serialVersionUID explicitly by declaring a field named "serialVersionUID" that must be static, final, and of type long:
    ANY-ACCESS-MODIFIER static final long serialVersionUID = 42L;
    If a serializable class does not explicitly declare a serialVersionUID, then the serialization runtime will calculate a default serialVersionUID value for that class based on various aspects of the class, as described in the Java(TM) Object Serialization Specification. However, it is strongly recommended that all serializable classes explicitly declare serialVersionUID values, since the default serialVersionUID computation is highly sensitive to class details that may vary depending on compiler implementations, and can thus result in unexpected InvalidClassExceptions during deserialization. Therefore, to guarantee a consistent serialVersionUID value across different java compiler implementations, a serializable class must declare an explicit serialVersionUID value. It is also strongly advised that explicit serialVersionUID declarations use the private modifier where possible, since such declarations apply only to the immediately declaring class--serialVersionUID fields are not useful as inherited members.
    ~

  • Installer built with Application Builder gives error "Cannot install, higher version already installed"

    I am having an issue with an installer which I created with the Application Builder. I have a project that I have successfully deployed. Subsequently I created another project (and vi) which is based on a copy of the originals, both with new file names. In the renamed project file, I changed all file names, paths, and all resources, to reflect the new names. I also changed the installer’s destination and install folders, of course. I reset the executable’s version number (in the Build Specification properties) to 1.0 (the original was 1.3). I then successfully built an executable and the application installer. However, when I run the installer (setup.exe), it gives a dialog (after the license screen) that it “Cannot install” because a “higher version already installed”.
    I’ve done exactly the same thing with other vi’s and projects of mine, and never had this issue. The installer correctly installs the newly created (and renamed) version where it is told to in the project file. Also, I’ve never had a problem deploying (installing) on my development PC either.
    I have carefully checked and rechecked to make sure there is no reference to the original executable or paths. What could be causing this behavior? I want to keep the two projects completely separate, so simply changing the version to higher than 1.3 is not an acceptable solution.
    Thanks to anyone in advance for any help and suggestions.
    Ed

    Yes, LV 8.5 does NOT give me control over the GUID. In the project file there are three such strings:
    "App_applicationGUID"
    "App_INI_aliasGUID"
    "App_INI_GUID"
    They all have different numbers and none of them match the GUID or PackageGUID in setup.ini. I don't know if they are related or not, but usually it's not a good idea to mess with (manually edit) files like these (project, ini, etc.) unless you know what you are doing. (For example, I do edit the setup.ini file to change some of the [Dialogs] parameters, but that is based on direction from NI support.)
    Anyway, like I said, I've made copies of projects before and never ran into this problem. At least I have a solution, however laborious, in creating a new project file from scratch.
    Let me know if anyone has more thoughts on this.
    Ed

  • Using expdp in database with database vault gives error-39165

    Hi,
    Please help me with the below mentioned scenario.
    I have oracle database 10.2.0.2 and DATABASE VAULT installed on top
    of it.
    I am trying to export one table DM05 beleonging to DIP schema and
    dump it as expdip.dmp. I issue the following command for this.
    But it stops with the error mentioned below.
    expdp dip/oracle directory expdp_dir tables="DIP".\"DM05\" dumpfile=expdip.dmp
    ORA-39165: Schema DIP was not found.
    ORA-39166: Object DM05 was not found.
    ORA-31655: no data or metadata objects selected for job
    Job "DIP"."SYS_EXPORT_TABLE_01" completed with 3 error(s) at 07:02:28
    Thanks and Regards,
    Dipesh

    hi
    Oracle Error : ORA-39166: Object string was not found.
    Cause: If exporting or importing over the network, either the user specified an object name that was not found in the source database or else the user lacked the proper EXP_FULL_DATABASE or IMP_FULL_DATABASE role that would allow them to access the object another in another schema. For importing from files, the user specified an object name not found in the dump file set.
    Action: Retry the operation using the correct object name.
    Hope this helps
    CHeers

  • Teststand deployment with LabView VI gives error code 1035

    Using Teststand 3.0 deployment tool. My test sequence uses LabView 7.0 VIs. When I build, error code 1035 is output after several minutes along with the message :-
    Error Code:1035
    Could not process LabVIEW VIs. Fix any broken VIs before rebuilding. Labview error:
    Invoke Node in Teststand - Diost Chg and Save VIs-> TestSTand - Dist Build LLB Image ->TestStand - Build VI
    Distribution.vi->TestSTand - Build VI Distribution AX Wrapper.vi-> TestStand - Build VI DIstribution AX Wrapper.vi.ProxyCaller
    ++++++++++++++++++++++++
    I tried a LabVIEW mass compile of my VI directory and it reported no errors.
    I have tried this website for an explaination of this error but there appears to be nothing. System is Windows N
    T4 SP6.

    Jon, you mentioned this problem got solved in TestStand 3.1. Right we are using TS 3.0 and have that problem caused by LabView's own locked VI's (not to mention LabView VIs with the "/" character in the filename, i had to save those under a different name) . Is there any documention about this problem being fixed in 3.1? This would help me explain the need for the upgrade to the powers that be.
    Thanks,
    Fernando Marquez
    Project Engineer
    CSI
    Jon Bowers wrote:
    There can be a problem in Teststand 3 when deploying with the "Lock vi Diagrams" option checked when your sequence contains vi's that already have locked diagrams. Un-checking this option or removing the vi's which have locked diagrams should allow you to build successfully. This has been fixed in Teststand 3.1.
    Jon Bowers
    Applications Engineer
    NIUK

  • SourceGear Vault with LabVIEW 2009 gives error

    Hi,
    I try to evaluate SourceGear Vault for version control in LabVIEW 2009.
    At their website they say that Vault is compatible with Microsoft SCC interface, but as soon as I select  "SourceGear Vault Classic Client" as provider in LabVIEW I get the error "Error -2924 occurred at prefPage_Source Control.vi".
    Does anyone successfully use Vault with LabVIEW?
    Any ideas of things I might need to do to get i to work?

    The text of the error is "An error occurred while opening a source control project or accessing a file.
    The specified path is invalid." Some providers are expecting certain values in parameter calls based on assumptions on how they will be used by various IDEs (mainly Visual Studio). It is possible that valid information passed by LabVIEW to SourceGear's provider does not match what they expect. This would require testing on both LabVIEW's and SourceGear's side to determine what is going on. It would probably be a good idea to start with SourceGear's support to see if they can identify what is invalid.
    George M
    National Instruments

  • SharePoint associating content type with Reusable workflow gives error

    System.NullReferenceException: Object reference not set to an instance of an object.  
    at ASP._layouts_addwrkfl_aspx.__Render__control2(HtmlTextWriter __w, Control parameterContainer) in c:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\AddWrkfl.aspx:line 157   
    at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
    at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
    at System.Web.UI.HtmlControls.HtmlHead.RenderChildren(HtmlTextWriter writer)   
    at System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer)   
    at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
    at System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer)   
    at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
    at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)   
    at Microsoft.SharePoint.WebControls.UnsecuredLayoutsPageBase.RenderChildren(HtmlTextWriter writer)   
    at System.Web.UI.Page.Render(HtmlTextWriter writer)   
    at Microsoft.SharePoint.WebControls.UnsecuredLayoutsPageBase.Render(HtmlTextWriter writer)   
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Guneet Kalra

    Hi Guneet,
    Thanks for your post.
    I am trying to involve someone familiar with this topic to further look at this issue.
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • Query with SQL-SP gives error, if not used for few days

    Hi All,
    I have observed that if we do not use some of queries (which usage SQL SPs) for few days, then it stops working.
    But when we go in SQL and execute the SP, the query in SAP starts working, without making any change either in query or the SQL-SP.
    Can anybody throw light on this ? I guess it has some connection with SQL-SP behaviour.
    Thanking you in advance ,
    Samir Gandhi
    Edited by: Rui Pereira on May 1, 2009 1:28 PM

    Hi Gordon,
    Please note the function of the SP is to bring selected data from tables, for example to bring Purchase details (I have copy pasted the SP at bottom of this message).
    These are not SP_notif...
    These SPs are called from the SBO query.
    Once we execute the SP in SQL, then it starts working with SBO also.
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    GO
    ALTER Procedure [dbo].[pGetPurchaseRegister]
         @StartDate datetime,
         @EndDate  datetime
    as
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[tmpPurchaseReg1]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
         drop table tmpPurchaseReg1
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[tmpPurchaseReg2]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
         drop table tmpPurchaseReg2
    SELECT T1.LineNum,T0.DocNum AS 'Document Number', T0.DocDate AS 'Posting Date', T0.CardCode AS 'Vendor Code',
           T0.CardName AS 'Vendor Name', T0.NumAtCard as 'Vendor Ref. No', T0.VatSum AS 'Total Tax', T0.DocTotal AS 'Document Total' ,
           T1.AcctCode AS 'Account Code',T1.LineTotal AS 'Basic Amount', T1.ItemCode AS 'Item No.', T1.Dscription AS 'Item/Service Description',
           T2.SuppCatNum, T1.INMPrice AS 'Item Cost', T1.Quantity AS 'Quantity',T3.ItmsGrpNam AS'ItemGroup'
    into tmpPurchaseReg1
    FROM  [dbo].[OPCH] T0
          INNER  JOIN [dbo].[PCH1] T1  ON  T1.DocEntry = T0.DocEntry
          INNER  JOIN [dbo].[OITM] T2  ON  T1.ItemCode = T2.ItemCode
          INNER  JOIN [dbo].[OITB] T3  ON  T2.ItmsGrpCod = T3.ItmsGrpCod
          --WHERE T0.DocDate >= CONVERT(DATETIME, [%0], 112)   AND  T0.DocDate <= CONVERT(DATETIME, [%1], 112)  
         WHERE T0.DocDate >=@StartDate  AND  T0.DocDate <=@EndDate
    ORDER BY T0.DocNum
    select  * into tmpPurchaseReg2 from tmpPurchaseReg1
    declare @Total int
    declare @TmpCardCode varchar(200)
    declare @DocNum int
    declare  PurchseRegister_Cursor cursor LOCAL for
         select  [Document Number] from tmpPurchaseReg1 group by [Document Number] having count([Document Number]) > 1 order by [Document Number]
    open PurchseRegister_Cursor
                            fetch next from PurchseRegister_Cursor into @DocNum
                            while @@fetch_status = 0
                            begin
                                        begin
                                drop table tmpPurchaseRegTemp
                                 select top 1 * into tmpPurchaseRegTemp from tmpPurchaseReg2 where [Document Number] = @DocNum 
                             select @TmpCardCode =[LineNum]  from tmpPurchaseRegTemp     
                             update tmpPurchaseReg2 set [Vendor Name] = '',[Total Tax] = 0,[Document Total] = 0
                                                   where  [Document Number] = @DocNum  and [LineNum] <> @TmpCardCode
                                        end
                                       fetch next from PurchseRegister_Cursor into @DocNum   
                            end
    close PurchseRegister_Cursor
    deallocate PurchseRegister_Cursor
    BR
    Samir Gandhi

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • When i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th

    when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ?
    if you can help me thank's
    [email address removed by host]

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • HT201210 When I Restore My iPhone with itunes gives error -1 will end of the Installing  firmware

    When I Restore My iPhone with itunes gives error -1 will end of the Installing  firmware
    what is the problem ?

    Error -1 generally indicates a catastrophic hardware failure. 
    You'll need to bring your phone to Apple for evaluation

Maybe you are looking for