"Run Report" form error befor running XML report

I created XML report (Concurret Programs with Output Format XML), created XML file as Data definition and RTF template, and will Output in Excel. When open Run Request and choose XML report, before Parametr form is opened, get 2 error:
FRM-41084: Error getting Group Cell
FRM-41072: Cannot create Group req_layout
Help me, where is Problem?
Edited by: Sega99 on 2010.26.1 02:41

hi
Please post u r thread in report forum. thanks.
Sarah

Similar Messages

  • Run XML Publisher Report  via URL (like Oracle Reports)

    Hi All,
    Is it possible to run xml-publisher report via URL?
    In Oracle Reports works this fine:
    http://test:7777/reports/rwservlet?server=test_bihome1&report=test1.rdf&userid=test/testv@db&desformat=pdf&destype=cache
    We need this for public reports without user login.
    Thanks
    Thomas

    Thomas,
    I was waiting to get home before Tim replied... He got the better of me this time :-)
    You say you want to let your users run reports using XMLP just by clicking on an URL same way you do with reports and without having to login. If I got the question right and assuming that:
    1.Your company is not overly concerned on who runs what reports
    2.Who sees what data
    3.Your XMLP installation is on your intranet and firewalled from the outside
    What you can do is:
    On the main page of your XMLP Enterprise installation you should see a folder called "Guest". Any report you create under this folder is run as user "guest" which means you don't have to authenticate yourself as you would normally do.
    I have tested this on my home server and this is what I've done:
    1.Logged in as admin or any other user you've created with admin privileges created a report under the "Guest" folder.
    2.Copied the URL, on my server it is "http://samba.private.net:15101/xmlpserver/Guest/People/People.xdo"
    4.Logged off as admin and pasted the URL to a new browser window
    5.Hit return and Voila, my report runs without the need to login to XMLP.
    Hope this helps. Let us know how you got on.
    Cheers,
    Joao
    PS: If you want to see the report for yourself here's the URL from the outside: http://medeiros.homelinux.net:15101/xmlpserver/Guest/People/People.xdo
    I'll keep the link alive for a couple of days.

  • Customer Statement Report in ebs 12 - bursting error prior to xml complete

    Hello There,
    We are using the standard non-modified (as far as i am aware) Statement Generation Program from the AR Print Documents/Statements menu in EBS 12.
    When the report runs for just a few statements it completes through to bursting with no issues.. However when we run the end of month statements (620 pages of them) the xml bursting appears to start before the xml has completed. The bursting program is called from the after report trigger as per Oracles specifications.
    It errors with the following:
    null output =/u01/oracle/PROD/inst/apps/PROD/logs/appl/conc/out/o1025630.out
    File /u01/oracle/PROD/inst/apps/PROD/logs/appl/conc/out/o1025627.out is not accessable from node/machine
    The error is quite correct as the xml file is still being written at the point the bursting starts. The statement generation concurrent job takes 7 mins to complete and the bursting concurrent job kicks off 2 mins after the statement generation has started about 5 minutes too early!!
    Has anyone else had this issue? Any help would be appreciated..
    Cheers
    Lisa

    interseting question??
    why I should not be able to convert a seeded form if I want??
    In this case I think it makes sense: in our site we use this report quite offten and users want the ability to search and filter the results on the fly instead of running the report over and over again.
    I am not trying to replace the seeded report but simply provide added functionality to our users.

  • Trying to download icloud control panel - only getting so far.  Got message: The installer encountered errors before iCloud Control Panel 2.1.2 could be configured.  Your system has not been modified.  To retry these operations at ltr time, pls run again.

    First time on here... so not sure if doing correctly.
    I'm tryng to download icloud control panel to my PC (have Windows 7 - so should be ok).  I only get so far - 2 times I've tried it.  Keep getting message:
    The installer encountered errors before iCloud Control Panel 2.1.2 could be configured.
    Your system has not been modified. To retry these operations at a later time, please run the installer again.
    huh?

    As I mentioned before you need to start the iTunes installation, then do NOT allow it to complete. In other words go all the way to the point that the installer extract the installation files, then STOP right there.
    Now look for the temp folder and the files I mentioned in my initial posting. If you don't find the temp folder it may be because you have "Do not show hidden files and folder" selected under "View Tab" in the "Folder Options". You may need to unselec it. If you don't know about hidden files and folders in Windows XP take a look here: http://txpress.blogspot.com/2007/05/show-hidden-filesfolders-in-windows.html
    Another possibility is that you may have a different path for your temp folders. To find out where you temp folders are located please do the following:
    - Right click on "my computer"
    - Select the "Advanced" tab
    - Click on "Environment Variables"
    Then look for the path for both variables "TEMP" and "TMP" take note of the path and check them out.
    Or you may just go to a DOS Prompt and type the following commands:
    1 - %temp% and hit enter
    2 - %tmp% and hit enter
    to both of these commands you will get a reply such as:
    'c:\temp' is not recognized as an internal or external command, operable program or bath files.
    So by looking at the reply you can see that my temp folder is c:\temp
    The above is the temp folder on my machine which I've customized to my own use. Your machine may be different.
    I suggest you check for the iTunes temp folder inside both your temp folders locations "TEMP" and "TMP" as they may be in different locations.
    IMPORTANT NOTE: If you allow the iTunes installation to complete you will NOT SEE the iTunes temp folder and files because it will be deleted as soon as iTunes processes the installation.
    Hope it helps.

  • Difference between AFTER PARAMETER FORM and BEFORE REPORT in Reports 6i

    Hi Aii,
    What is the difference between AFTER PARAMETER FORM and BEFORE REPORT in Reports 6i.
    Thanks in Advance,
    Balu

    Hi Balu.,
    As per my findings the After Parameter is fired after the Parameters are given to the report and Before Report fires when the queries are parsed and data is fetched.
    Regards.,
    Vijay G

  • Syntax errors before running power shell

    Is there a way that we get compile time errors before actually running the script in powershel
    SQL Server is kind enough to provide us Parse option in SSMS to get the errors before actually running the code
    MLC

    Nothing built-in to PowerShell can do this. If you want something simple, you could use the PSParser to look for anything that might be wrong with the syntax, but wouldn't do anything advanced like check for invalid commands.
    $script = (Get-Content test.ps1)
    $errors = [System.Management.Automation.PSParseError[]] @()
    $tokens = [Management.Automation.PsParser]::Tokenize($script, [ref] $errors)
    #Show errors found
    $Errors
    For something more advanced you would need to roll your own script checker using this or if running V3 and above, the AST methods. You could also look at using something like
    ScriptCop.
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • SOMEBODY AWNSER PLEASE....(HOW TO EXECUTE/RUN XML FILES IN WLS6?)

    Hi all,
    Please help me out on my XML question as my Cocoon is no longer working.
    The question is titled HOW TO EXECUTE/RUN XML FILES IN WLS6.
    Thanks in advance.
    snodx

    look at the samples bea\wlserver6.0sp1\samples\examples\xml
    ~
    Namaste - I bow to the divine in you
    ~
    Filip Hanik
    Software Architect
    [email protected]
    www.filip.net
    "snodx" <[email protected]> wrote in message
    news:3b4e83dd$[email protected]..
    >
    Hi all,
    Please help me out on my XML question as my Cocoon is no longerworking.
    >
    The question is titled HOW TO EXECUTE/RUN XML FILES IN WLS6.
    Thanks in advance.
    snodx

  • Get errors of a xml validation from xsd file

    hi everyone,
    i created a xml validation from a XSD file as follow:
    public String validate(String xml) {
            String saida = "";
            InputStream xsd = XmlValidator.class.getResourceAsStream("shiporder.xsd");       
            try {
                DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
                docBuilderFactory.setNamespaceAware(true);
                DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
                ByteArrayInputStream is = new ByteArrayInputStream(xml.getBytes());
                Document doc = docBuilder.parse(is);
                SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
                Source schemaFile = new StreamSource(xsd);
                Schema newSchema = (Schema) factory.newSchema(schemaFile);
                Validator validator = newSchema.newValidator();
                validator.validate(new DOMSource(doc));           
                saida = "SUCESSO";
            } catch (DOMException ex) {           
                ex.printStackTrace();
                saida =  "DOM";
            } catch (SAXException ex) {           
                saida = ex.getMessage();
            } catch (IOException ex) {           
                ex.printStackTrace();
                saida =  "IO";
            } catch (ParserConfigurationException ex) {           
                ex.printStackTrace();
                saida = "PARSER_CONFIGURATION";
            return saida;
        }this code works perfectly, but i must change one thing.
    When is found a error on a xml structure, one exception is threw, and then the method is finalized. However i need to show up all errors on one shot.
    Because right now when i run and it find a error, the method throw an exception an stop, so i have to adjust, then execute again and adjust another repeatedly until everything is right, so i have to change that.
    Anyone could help me?
    thanks in advance

    That's the rule for XML validation. As soon as the parser finds an error, it must report it and stop.
    If you are having a lot of trouble creating an XML document which conforms to a schema, perhaps you should invest in one of those XML editors which supports validation as you enter the document.

  • Error in Grid XML: Active connection and valid HsGetValue PoV

    Hello everyone
    I am struggling using the Smart View fucntions to access an HFM application and retrieving data using the HsGetValue function. I have the following to automatically create a connection:
    Sub CreateConn()
    '!***Adhoc Analysis - Financial Management***!
    'requires smartview.bas located in the \SmartView\bin directory (included in module hyperion) and HsAddin.dll
    'HFM application
    Set ws = ThisWorkbook.Sheets("aSheet")
    MyUsername = "aUsername"
    MyPassword = "aPassword"
    MyAppHFMQMR = "anApp"
    'Activate adhoc sheet (required for Hyp-functions)
    ws.Activate
    'Check connection
    Dim bIsConnection As Boolean
    bIsConnection = HypConnectionExists(MyAppHFMQMR & "New")
    If bIsConnection = True Then: X = HypRemoveConnection(MyAppHFMQMR & "New")
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Create connection
    X = HypCreateConnection(ws, MyUsername, MyPassword, HYP_FINANCIAL_MANAGEMENT, _
    "http://epmhfm-dev/hfmofficeprovider/hfmofficeprovider.aspx", "DevCluster", _
    MyAppHFMQMR, MyAppHFMQMR, MyAppHFMQMR & "New", "Analytic Provider Services")
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Establish pre-defined connection
    X = HypConnect(ws, MyUsername, MyPassword, MyAppHFMQMR & "New")
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Disable suppress #Missing
    X = HypSetSheetOption(ws, 6, False)
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Preserve formulae
    X = HypSetOption(HSV_PRESERVE_FORMULA_COMMENT, True, ws)
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Missing data shows as numeric zero
    X = HypSetSheetOption(Null, 13, "#NumericZero")
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    End Sub
    This code works fine by itself. I have a second code snippet that builds the HsGetValue function and copies it to the worksheet. Both are embedded in a larger project. Everything works fine if I only run the two modules (the one creating the connection and the second building the functions). If I run some code beforehand, however, I get the 'Error in Grid XML' error and all retrieved data is shown as 0. Incidentally, the connection is still established and the HsGetValue() functions are assembled as they were before including a valid (and identical) PoV.
    I understand that it is difficult to establish from this what the rpoblem might be. I need some help to hone in on the error since Smart View is giving me nothing to work with. To say the least, errors are not handled gracefully in Smart View. I suspect something gets stuck in the cache that prevents the retrieve sheet from updating appropriately.
    Any pointers are appreciated ff anyone else has come across a similar problem using Smart View functions.
    Thanks
    Florian

    I guess when you say that Test 1 does not work you are sure that connection is getting established, though I can see that connection errors are being handled but you should be sure that connection creation and connect code is working and that can be done by debugging the code- in vba editor using 'F8'.
    also check the below code is working or not by debugging again
    bIsConnection = HypConnectionExists(MyAppHFMQMR & "New")
    If bIsConnection = True Then: X = HypRemoveConnection(MyAppHFMQMR & "New")
    Use X<>0 instead of X<0 and see if you get any exception/error. X should be 0 if your code is working.
    Also once done with above test cases can you replace the connection name as something like anAppConn by hardcoding it into your create connection function and then try again..
    If you go to Smart View and Click over sheet info then you can find if the sheet consists of saved connection or not...You can delete it as needed.
    As you say that if you manually create a connection then the code works then there should be a problem with your connection code it seems...
    Thanks

  • JavaScript error in menus.xml

    I'm working with DW 8, and some template files created in DW
    MX2004.Has anyone experienced the following error when closing old
    template files?
    While executing DWMenu_File_Close command in menus.xml, the
    following JavaScript error(s) occurred:
    Exception thrown in native function.
    I've gotten a similar error before, but it had to do with
    imbedding library items inside template pages. But, all of those
    had been created in DW MX2004. Any ideas?

    You can find anything you want on these forums or on the
    internet. The
    question is - is it credible. This one is not.
    What extensions do you have installed?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "safetypin" <[email protected]> wrote in
    message
    news:[email protected]...
    >I was looking around the forum a little, and I found
    someone talking about
    >how
    > it was related to the fact that there was javascript on
    the page. I opened
    > each
    > template file, removed the link to the javascript
    (nothing was embedded),
    > saved
    > it (it crashed), reopened dreamweaver and then when I
    opened the file, it
    > didn't crash anymore. So, I added the link to the
    javascript file back in
    > there, and it looks like everything is ok now. But, in
    case it happens
    > again,
    > this are the files that are giving me trouble:
    >
    >
    http://digitalevent.net/Templates/index.dwt
    >
    http://digitalevent.net/Templates/index2.dwt
    >
    http://digitalevent.net/Templates/index3.dwt
    >
    > &
    >
    >
    http://digitalevent.net/index.htm
    >
    http://digitalevent.net/index2.htm
    >
    http://digitalevent.net/index3.htm
    >
    > Those were the only three html files I tested for the
    error. The weird
    > thing
    > was, sometimes there was a noticable delay between
    closing a file and the
    > exception being thrown. Sometimes I was actually able to
    open two or three
    > files (I click pretty fast sometimes) before the
    exception would be
    > thrown. I
    > think this is why I thought I had discovered the problem
    before. I also
    > tried
    > to detaching the html files from the templates, but that
    didn't help.
    >
    > This is the second time I've run into the exception
    being thrown while
    > executing DWMenu_File_Close command in menus.xml. The
    first time, as I
    > mentioned before, it was related to Library items being
    embedded in a
    > template
    > (I think). I removed the Library item and it worked
    fine. Eventually I
    > think I
    > solved it by recreating the Library items entirely, by
    copying and pasting
    > each
    > line from a text file. Really strange, but I think the
    common element is
    > that
    > it has happened while dealing with a
    site/template/library item created in
    > DW
    > MX2004. Are there any known conflicts, or anything I can
    do to avoid this
    > in
    > the future?
    >

  • Forms ERROR - FRM-18107: Failed to load the DE context for the module

    I have recently installed Oracle 10g (10.2.0) which is up and running fine (WinXP).
    I then installed Developer Suite 10g (10.1.2.0.2).
    When I try to open Forms I get the following error;
    'FRM-18107: Falied to load the DE context for the module'
    I have;
    DRIVE:oracle/product/10.2.0/oradb
    DRIVE:oracle/product/10.2.0/devsuite
    Can anyone advise?
    Many thanks in advance.

    Hello All,
    I would like to know more about the FRM-18107 error. I have tried getting rid of the error by altering my windows environment variable ORACLE_HOME, and going through numerous websites. But still no luck. I am about to de-install Forms 10g rel2 using the OUI. But I plan on leaving oracle 10g database on the system. Hope this will not cause any conflict. Also do I need to do anything in the registry after de-installation of forms 10g.Or is there any order of installation, i.e Do i need to install forms 10g before oracle 10g database.
    PLs also let me know if i will need to download any pathch for this to be sorted. But I didn't think so because during installation i noticed a few patches were being put to place as part of forms 10g rel2. Does it still needs a patch for it to work and get rid of the FRM-18107 error? If so, what is the name of the patch and how do i apply the patch. Pls let me know. Any comment on this will be well appreciated and valuable.
    Thanks.
    Cheers
    Aj
    Edited by: user9925154 on 25-Feb-2010 14:50
    Edited by: user9925154 on 25-Feb-2010 14:52
    Edited by: user9925154 on 25-Feb-2010 15:08

  • Error in Preview - XML Publisher Admin page

    Hello-
    I am having this issue where all templates are getting the same error when previewing under (R) XML Publisher Administrator-> (T) Templates-> (B) Preview in EBS 11.5.10.2. I am getting the error below after clicking on the preview button (prompted the Open/Save button) then open PDF.
    Anybody who has experienced the same problem? The error is happening on all the templates but on preview only. I have cleared the temp directory but still the same error.
    ORACLE XML PUBLISHER
    VERSION: Oracle XML Publisher 5.6.3
    DATE CREATED: Wed Nov 11 11:52:26 EST 2009
    Page 1
    EXCEPTION: /usr/tmp/test2/xdorUSpHVpzd0111109_1152266761.fo (No such file or directory)
    Exception Detail
    java.io.FileNotFoundException: /usr/tmp/test2/xdorUSpHVpzd0111109_1152266761.fo (No such file or directory)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:135)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:118)
    at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
    at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
    at oracle.apps.xdo.oa.template.server.TemplatesAMImpl.processTemplate(TemplatesAMImpl.java:2130)
    at java.lang.reflect.Method.invoke(Native Method)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
    at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:749)
    at oracle.apps.xdo.oa.template.webui.TemplateGeneralCO.previewTemplate(TemplateGeneralCO.java:741)
    at oracle.apps.xdo.oa.template.webui.TemplateGeneralCO.processRequest(TemplateGeneralCO.java:158)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1133)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:937)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:904)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:937)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:904)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2318)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1717)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:502)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
    at _oa__html._OA._jspService(_OA.java:86)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
    at oracle.jsp.JspServlet.service(JspServlet.java:148)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:175)
    at _oa__html._OA._jspService(_OA.java:96)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
    at oracle.jsp.JspServlet.service(JspServlet.java:148)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:479)Thanks in advance.
    Munish

    Hi Rownald,
    I am stuck with the same error:
    Error one \ts01\u00\app\ts01\common\admin\out\xdoDtSCIn59Vq010510_0131541560.fo (The system cannot find the path specified)
    Our Application and database servers are the same and the path \ts01\u00\app\ts01\common\admin\out\ already exists and has all the permissions.
    I almost wasted 2 days for just this issue. Any help would be really great!!
    Thanks in advance.
    Kumar

  • Sample-simple.2.2.1 error in build.xml

    Hi all,
    First, I ask for excuses for my english, is that I am Spanish
    I have a error in build.xml when I try to ejecute "gen-all". The error is in "gen-component", "gen-beaninfo" and "gen-taglib". The exit prints:
    Command Line Options:
    -c {classname} CategoryDescriptors constants class
    -C {packagename} Package containing ConstantMethodBinding
    -d {directory} Destination directory for generators
    -e {classname} Add FQCN of class to exclude for generation
    -f {config URL} Parse configuration URL (repeatable)
    -h Display help information
    -i {classname} Add FQCN of class to include for generation
    -L {classname} Add FQCN to list of servlet listeners
    -m {markup} Default markup section [FORM]
    -nobundles Encode description and display strings into gen code, not in resource bundles
    -o {jarURL} Omit generation for classes in (design time) JAR
    -O Override component and property descriptions from renderer and attributes
    -p {prefix} Default taglib prefix
    -r {id} Default render kit identifier
    -t {filename} Filename to contain TLD
    -T {packagename} Package for generated tag classes
    -u {uri} Default taglib URI
    -v Generated output should be verbose
    -V {classname} Add FQCN to list of JSP validators
    -x Exclude all classes parsed so far
    -w Warn on missing config URLs, instead of error
    --baseBI {class} Base class for java.beans.BeanInfo classes
    --implBD {class} Implementation class for BeanDescriptors
    --implPD {class} Implementation class for PropertyDescriptors
    --cpBeanInfo     Generate component BeanInfo classes
    --cpBeanInfoBase Generate component BeanInfoBase classes
    --cpClass        Generate component classes
    --cpClassBase    Generate component base classes
    --tlClass         Generate tag library classes
    --tlClassBase     Generate tag library base classes
    --tlDescriptor    Generate tag library descriptor
    --dump           Dump contents of root configuration bean
    --help           Display help information
    Exception in thread "main" java.lang.IllegalArgumentException: and
    at com.sun.rave.jsfmeta.generators.Main.run(Main.java:521)
    at com.sun.rave.jsfmeta.generators.Main.main(Main.java:279)
    Java Result: 1
    What am I doing bad? Please help me!
    Thanks

    Hi ,
    I have an error like this below:
    [java] Exception in thread "main" java.lang.IllegalArgumentException: and
    [java] at com.sun.rave.jsfmeta.generators.Main.run(Main.java:521)
    [java] at com.sun.rave.jsfmeta.generators.Main.main(Main.java:279)
    BUILD FAILED
    if someone know solution plz post it here
    Thanks

  • Not well-formed error in firefox in implementing ajax--pls help

    hi techies,
    I'm trying to implement ajax in firefox and i'm getting not well-formed error in error console
    heres part of code
    var xmlHttp;
    function create(){
    if(window.ActiveXObject){
    xmlHttp=window.ActiveXObject("Microsoft.XMLHTTP");
    else if(window.XMLHttpRequest){
    xmlHttp=window.XMLHttpRequest();
    else{
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    function getEmployeeDetails(){
    frm = document.forms[0];
    empid = frm.elements["empid"].value;
    url="empdetails.jsp?empid=" + empid;
    xmlHttp.open("GET" ,url, true);
    xmlHttp.onreadystatechange=doUpdate;
    xmlHttp.send(null);
    function doUpdate(){
    if(xmlHttp.readyState==4 && xmlHttp.status == 200){
    var root = xmlHttp.responseXML.documentElement;
    ----so on
    jsp Page is
    <%@ page import="java.sql.*" contentType="text/xml" %>
    <%
    String empid=request.getParameter("empid");
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:vmouli","hr","hr");
    Statement st=con.createStatement();
    ResultSet rs=st.executeQuery("select first_name,salary from employees where employee_id=" + empid);
    if(rs.next()){
    out.println("<employee><name>");out.println(rs.getString(1));
    out.println("</name><salary>");out.println(rs.getString(2));
    out.println("</salary></employee>");
    else{
    out.println("<error>Employee ID not found</error>");
    rs.close();
    st.close();
    con.close();
    %>
    Firefox error console is saying not well-formed and is pointing to starting of my jsp page
    can anyone help plzzz

    As BalusC said - run the JSP producing the xml.
    Save that xml to a file - INCLUDING any white space - because thats what you actually get.
    Open that xml file in your browser - it should tell you at that point if your xml is well formed.
    AS BalusC said this is better done in a servlet - especially since you're just doing out.println.
    JSPs add extra whitespace and carriage returns. While that won't necessarily break XML, it can cause problems with the first few characters.

  • Error trying to open an Excel worksheet...getting Visual Basic MS Forms error

    Hi
    We have just upgraded a user from Office 2007 to 2013. However he is now unable to open an Excel spreadsheet and keeps getting Visual Basic errors
    MS Forms error. “Could not load an object because it is not available on this machine.”
    Acknowledge the error then..
    MS VBA error “Compile error Can’t find project or library”.
    On acknowledging and closing VB window the spreadsheet is available although VB is not running.
    VBA Project (Microsoft Forms 2.0 Object Library). However we still received the same errors.
    So we reinstalled Office 2013 to see if this would update the dll files. Alas the same error. Another user who works with VB said the FM20.dll files should be deleted and replaced with new ones. We acquired another FM20.dll file deleted the older one and
    replaced it in the folder. Rebooted but still the same error.
    He is using a 64bit Windows machine with Office 2013 click2run installed.
    We have spent 6 hours today trying to fix it with no luck.....Please can you help??
    Br
    Dan

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Excel, this issue is more related to the Office develop, please post your question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

Maybe you are looking for

  • How can I convert word labels to excel

    I have just purchased this Adobe ID program and paid for a years subscription. Can someone tell me how I can take Microsoft word 2010 labels already saved on my flash drive and convert them to an excel spreadsheet with headers such as: Name          

  • Hard drive is gone after Leopard install

    Guess that's what I get for being an early adopter......Install looked like it was going fine. I did the Archive and Install option and preserved user information. When the system finally came up, it had to user information retained and the OS was je

  • ITunes has stopped working - Windows 7 - Please help

    Problem signature:   Problem Event Name:          BEX   Application Name:          iTunes.exe   Application Version:          11.0.1.12   Application Timestamp:          50c8fc7e   Fault Module Name:          QuickTime.qts_unloaded   Fault Module Ver

  • HT4528 Problem with messages

    Since upgrading to the most current system - iO6, my messages have not worked right. Yesterday out of the blue, I couldn't reply or send a text to anyone that has an iPhone .. the keyboard was grayed out. Today the same thing, was working ok then whe

  • Diamond Plus and shutdown problem *resolved*

    I am just wondering if anyone else is experiencing this.  There is one other fellow on another forum that just built a system around this board that is experiencing a similar situation. I am running windows (32 bit) and using the original bios (no is