Please help me, I'd need to create XForms binding-exception with XHTML page

Hello,
is anyone here who could help me?
I've spent plenty of hours by searching the correct and suitable way for creating a binding exception in XForms, but I did not succeed...
My situation is: I've got an XHTML page with XForms and XML (input) file, which describes this page. Whenewer I change the input data in the XML file (for example if there are tags <person> and ....</person> if I change it to <peson1> and ...</person1>) after saving the changes and refreshing the page, the XForms are changed (for example some text fields are missing or they've got white background instead red one, which there was before et cetera). {I hope it is clear till now.....}
My task is: to create a xforms-binding-expression event, which will display an error message (for example: FILE HAVE BEEN CHANGED, CAN NOT DISPLAY THE PAGE PROPERLY) to the user.
i've found some stuff, how to create such message, but i need to know the exact order of commands to make it work, where to insert them, the structure etc, so I can comprehend your advices...
The XHTML file contains of several blocks - bind, model, submission, instance etc - and I do not actually know, where to insert such lines (with message)...I think I should make some bindings with the page loading, but I've got no idea how to get it done, however there are very few sites with such stuff on the internet. I hope this task is no big deal for you gyus, THANK YOU A LOT IN ADVANCE

Thanks a lot.
Yes. It works well now.
In it's documentation it says put orcl for SID but never thought to try default xe.
You're the man.
tnx

Similar Messages

  • Lease help me, I'd need to create XForms binding-exception with XHTML page

    Hello,
    is anyone here who could help me?
    I've spent plenty of hours by searching the correct and suitable way for creating a binding exception in XForms, but I did not succeed...
    My situation is: I've got an XHTML page with XForms and XML (input) file, which describes this page. Whenewer I change the input data in the XML file (for example if there are tags <person> and ....</person> if I change it to <peson1> and ...</person1>) after saving the changes and refreshing the page, the XForms are changed (for example some text fields are missing or they've got white background instead red one, which there was before et cetera). {I hope it is clear till now.....}
    My task is: to create a xforms-binding-expression event, which will display an error message (for example: FILE HAVE BEEN CHANGED, CAN NOT DISPLAY THE PAGE PROPERLY) to the user.
    i've found some stuff, how to create such message, but i need to know the exact order of commands to make it work, where to insert them, the structure etc, so I can comprehend your advices...
    The XHTML file contains of several blocks - bind, model, submission, instance etc - and I do not actually know, where to insert such lines (with message)...I think I should make some bindings with the page loading, but I've got no idea how to get it done, however there are very few sites with such stuff on the internet. I hope this task is no big deal for you gyus, THANK YOU A LOT IN ADVANCE

    Thank you very much. I am new to this, and but am not exactly sure how to run a script. Can it be run as a one-off using the editor or console like AppleScript and hitting the green arrow, or do I need to put this into a file and save it to the scripts folder first?
    Also, a related question: some of my scans are full page Letter already and I need to reduce them (scale them) so that they print with a margin because the pages need to be hole punched.
    Can you help me incorporate into this code something that says, if the trim box  > 8 x 10 then scale the page by x percent or by whatever allowable means Acrobat will do it? This way, those pages will be permanently scaled smaller. I cannot just print them scaled smaller, because then all the scans will be printed smaller, and I only need the largest ones reduced in size.
    Thanks so much.

  • I'm having a problem saving a pages document as another format, like a Word document or PDF file.  I've never had this problem in the past.  Please help me!  I need to have this fixed a.s.a.p.

    Hello everyone,
    I'm currently having a problem saving a Pages document as another format, such as a Word document or PDF file.  I've never had this problem before with Pages.  Please help me!  I need to have this completed a.s.a.p.
    Thanks,
    Amy

    To save as a PDF, you do that from Print
    To save as Wrod format, you export
    Allan

  • I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

    I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

    I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

  • I have the iPhone 4 and I put a vanilla gift card visa on there and i used all the money on there I can't update any of my apps till I get rid of the gift car and I don't want to put another card on there please help me I just need to have the option none

    I have the iPhone 4 and I put a vanilla gift card visa on there and i used all the money on there I can't update any of my apps till I get rid of the gift car and I don't want to put another card on there please help me I just need to have the option noneI have the iPhone 4 and I put a vanilla gift card visa on there and i used all the money on there I can't update any of my apps till I get rid of the gift car and I don't want to put another card on there please help me I just need to have the option none I've checked.

    Need to Resume download to complete the ongoing Process.
    Last Resort, put the iPhone in DFU mode (Google How to do that). Connect in iTunes. Follow on-screen prompts to Restore. All Data would be lost, if not backed up earlier.
    To save the photographs you may have to use third party software. Google is your friend.

  • Hello, I want to switch form a individual account to a team/business account? Can you please help me? I need this urgent Thank you!

    Hello, I want to switch form a individual account to a team/business account? Can you please help me? I need this urgent Thank you!

    Hi Koen,
    Please refer the following help article under "Purchasing Creative Cloud for Team".
    Creative Cloud Help | Creative Cloud for teams
    Hope this helps.
    Regards,
    Sumit Singh

  • Hi!  I cant conect The face time betwen my iPad ,iPod and iPhone, please help me,what i need for this issue?

    Hi!  I cant conect The face time betwen my iPad ,iPod and iPhone, please help me,what i need for this issue?

    What is it doing when you try to facetime? also if you are using the same apple Id/email on each device, it wont work.

  • Please help me to write a file from applet to server with a servlet.

    In an applet the client elaborates a string and stores it in the variable of the name "line"
    I would Like to write the string "line" in the file myfile.txt on the server.
    I am in an applet trying to make the URLconnection to a servlet.
    The part of the applet which calls the servlet is the following:
    private void writeToSer(String line)
    try
    URL u = new URL("http://192.168.1.103:8180/servlet/ScriviFileServletFor1?stringa="+line);
    HttpURLConnection urlConn = (HttpURLConnection)u.openConnection();
    catch(IOException ioe)
    JOptionPane.showMessageDialog(null,"IO Exception ","attenzione",JOptionPane.ERROR_MESSAGE );
    the code of the servlet is the following:
    import java.io.*;
    import java.io.File;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class ScriviFileServletFor1 extends HttpServlet {
    public void doGet (HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    //read the parameters
    String string = request.getParameter("stringa");
    try {
    File file = new File("/home/icurrado/myfile.txt");
    FileWriter out = new FileWriter(file);
    out.write(string);
    out.close();
    catch (Exception e) {
    e.printStackTrace();
    When I call the servlet from the bar of the URL with :
    http://localhost:8180/servlet/ScriviFileServletFor1?stringa=prova
    It works and writes the string "prova" in the file "/home/icurrado/myfile.txt".
    When I call the servlet from the applet it doesn't work and it doesn't write the string in the file.
    What is wrong or is missing ?
    Please help me.

    You dont need to go through the URL mechanism.
    From an Applet you can directly save the file on the server at destinated location.
    You can look for "Uploader Applet" in google.

  • HT2534 i need to create an apple id with out card

    i need to create an apple id with out card can u give any suggestions..............for me

    You can create an iTune and App Store account without credit card details
    1. Sign out of current Apple ID if you are sign-in to one (important)
    2. Go to App Store and select a free app
    3. Tap INSTALL APP
    4. Create New Apple ID
    5. Confirm Your Country
    6. Agree with Terms and Conditions
    7. Fill in your Apple ID and Password (you must create a new Apple ID; don't use your old Apple ID)
    8. Create and answer your secret question
    9. Select NONE for Payment Method
    10. Fill in Billing Address
    11. Submit application for new Apple ID
    12. Wait for verification email
    13. When email arrive, verify your account
    14. Start downloading your free apps

  • TS1559 please help me...my iphone 4s has a problem with wi-fi settings grayed out or dim

    please help me...my iphone 4s has a problem with wi-fi settings grayed out or dim

    http://support.apple.com/kb/TS1559

  • How to create xforms binding-excaption of xml file in the xhtml source?

    Hello,
    is anyone here who could help me?
    I've spent plenty of hours by searching the correct and suitable way for creating a binding exception in XForms, but I did not succeed...
    My situation is: I've got an XHTML page with XForms and XML (input) file, which describes this page. Whenewer I change the input data in the XML file (for example there are tags <person> and ....</person> if I change it to <peson1> and ...</person1>) after saving the changes and refreshing the page, the XForms will be changed (for example some text fields are missing or they've got white background instead red one, which there was before et cetera). {I hope it is clear till now.....}
    My task is: to create a xforms-binding-expression event, which will display an error message (for example: FILE HAVE BEEN CHANGED, CAN NOT DISPLAY THE PAGE PROPERLY) to the user.
    i've found some stuff, how to create such message, but i need to know the exact order of commands to make it work, where to insert them, the structure etc, so I can comprehend your advices...
    The XHTML file contains of several blocks - bind, model, submission, instance etc - and I do not actually know, where to insert such lines (with message)...I think I should make some bindings with the page loading, but I've got no idea how to get it done, however there are very few sites with such stuff on the internet. I hope this task is no big deal for you gyus, THANK YOU A LOT IN ADVANCE

    Hello,
    is anyone here who could help me?
    I've spent plenty of hours by searching the correct and suitable way for creating a binding exception in XForms, but I did not succeed...
    My situation is: I've got an XHTML page with XForms and XML (input) file, which describes this page. Whenewer I change the input data in the XML file (for example there are tags <person> and ....</person> if I change it to <peson1> and ...</person1>) after saving the changes and refreshing the page, the XForms will be changed (for example some text fields are missing or they've got white background instead red one, which there was before et cetera). {I hope it is clear till now.....}
    My task is: to create a xforms-binding-expression event, which will display an error message (for example: FILE HAVE BEEN CHANGED, CAN NOT DISPLAY THE PAGE PROPERLY) to the user.
    i've found some stuff, how to create such message, but i need to know the exact order of commands to make it work, where to insert them, the structure etc, so I can comprehend your advices...
    The XHTML file contains of several blocks - bind, model, submission, instance etc - and I do not actually know, where to insert such lines (with message)...I think I should make some bindings with the page loading, but I've got no idea how to get it done, however there are very few sites with such stuff on the internet. I hope this task is no big deal for you gyus, THANK YOU A LOT IN ADVANCE

  • Is it possible to create a tagged pdf with apple pages?

    Not sure if possible and any tutorials would be appreciated.

    > Is it possible to create a tagged PDF with Apple Pages?
    Short answer: No, Apple chose at the introduction of Mac OS X to support only Adobe PDF 1.3 and those parts of Adobe PDF 1.4 that include device-independent transparency, but not those parts of Adobe PDF 1.4 that include Adobe XMP for XML markup of the page description program.
    Long answer: Adobe PostScript is a page description programming language, unlike Xerox Interpress which is a page and document description programming language. In other words, Adobe PostScript is a streaming or sequential rendering model that cannot simulate the behaviour of a bound book where the user can turn from any one page to any other page arbitrarily. Adobe introduced Acrobat Distiller in 1993 in order to convert Adobe PostScript page description programs into Adobe PDF page and document description programs that share the same fundamental functionality as Xerox Interpress.
    Conversion from Adobe PostScript to Adobe PDF buys one nothing but page-independent processing. Specifications published by Adobe in 1993 state how the SFNT Spline Font file format used by Apple and Microsoft for Unicode imaging has to be re-encoded into PostScript font program dictionary format (PostScript so-called simple fonts with less than 256 glyphs and PostScript so-called complex fonts (CID fonts) which are simple fonts tiled into a single superfont). All that is left is the glyph identifiers, and per Unicode Specification version 1.0 the glyph identifiers are private and font-dependent, so no character information can be inferred.
    ISO 19005:2005 PDF/A is a superset of ISO 15930:2002 PDF/X-3. The problem with ISO 15930:2002 PDF/X-3 is the same as above, that is, Adobe PostScript cannot encode the file format of the International Color Consortium, which has to be re-encoded to PostScript CSA Color Space Arrays and PostScript CRD Color Rendering Dictionaries. It is possible to encode the ICC file format directly in PDF 1.3 and higher, as specified in ISO 15930 and ISO 19005, but because PDF encodes only the glyph identifiers that are the output of the SFNT file format, and not the UCS Universal Character Set input and the settings for the feature selectors in the font file, ISO 19005:2005 has come under criticism for failing to support search in complex scripts.
    ISO 19005:2011 is supposed to address the shortcomings by saving the UCS input into the PDF itself, but in this case it is impossible to use Adobe PostScript and Adobe Acrobat Distiller as intermediates to Adobe PDF. So in order to drive ISO 19005:2011 Adobe would have to ditch Adobe Acrobat. I am not sure if there is software that implements ISO 19005:2011, but I noted that the Apple iBook Store does not accept PDF at all. Personally, I struggle to think of how to explain to endusers the overwhelming number of Adobe ISO PDF formats (there is PDF/E, PDF/UA and whatever else), and the overwhelming number of Adobe ISO PDF versions of these formats (there is ISO 19005:2005, ISO 19005:2011, ISO 15930 all the way back to 1999/2000 in God knows how many versions at this point).
    Best wishes,
    Henrik Holmegaard
    would-be technical writer

  • Please help...I need to urgently make a minor change in  my website...

    I have no experience of CS5 and need to make a change in my website.  My webman usually makes these changes but is not available.  I have a website and I need to change the PayPal coding but do not even know where to begin, sorry.  I have downloaded all of the files and have managed to set up a remote server to the site with CS5, but that is all.  I know from experience this would take about 30 seconds to do and I have been trying for over 7 hours.  Please help.  I can call anywhere in the world for this help.  I need to send out a email today that is crucial to our company but need to make these changes first.  So to be clear I need to replace one PayPal button on my website.  The website was originally created in CS5.  I have CS5 Please would someone take the time to help me.  Thank you.  Regards, Morgan

    Hi James,
    Is it possible to call you to explain what you mean?  I am in London.
    Thanks for your time.
    Morgan
    (m) +44 (0) 7794 592 706
    (o) +44 (0) 208 144 7451
    (e) [email protected]   
    www.tigriss.com
    The information in this Internet email (and any attachments) is
    confidential, may be legally privileged and is intended solely for the
    Addressee(s) named above.  If you are not the intended recipient, or the
    employee or agent responsible for delivering it to the intended recipient,
    then any dissemination or copying of this email (and any attachments) is
    prohibited and may be unlawful. If you received this e-mail in error, please
    immediately notify us by email or telephone, then delete the message.  Thank
    you.

  • PLEASE HELP...I need an idea

    I need to create a form from where the user select which items (from 3 different tables) he would like to put on a mailing label. I need to store this information on a table which format (i.e. columns) need to be yet defined according to the way to imnplement this. Then a report will read this table and just dump the information in the mailing labels.
    Does anyone have an idea how to do it? It will be greatly appreciated.
    I created a form with checkboxes and according to the checkboxes checked I'm creating dynamic SQL statement. But I have problems in executing it when using the EXEC_SQL package. Also another problem I'm finding in how to insert in the table.
    Please help if you have any good ideas.
    Thanks a lot in advance
    regards,
    Marija

    Here's what I think.
    I see no way you may have a report based on a "table that is to be defined". When you design a report you definitely must have all the database tables it uses, or it simply won't compile.
    I figure you should have your form pass that data as report parameters.
    Or, if there's a lot of data that is hard to be passed as report parameters, for great flexibility, you may use some tables with the following structures:
    create table ma_reports_mstr (
    id number(10) not null,
    title varchar2(100) not null,
    run_date date not null,
    user_name varchar2(100) not null,
    alter table ma_reports_mstr
    add constraint pk_ma_reports primary key(id);
    create table ma_reports_det (
    mstr_id number(10) not null,
    code_fldname varchar2(15) not null,
    value varchar2(500));
    alter table ma_reports_det
    add constraint fk_ma_reports_det
    foreign key(mstr_id) references ma_reports_mstr(id);
    Your form will write data to these two tables.
    The id in the ma_reports_mstr will be generated using a sequence and will be passed as a parameter to the report/reports you will call from your form.
    You may delete the data in these 2 tables after having run the report, or you may keep them as an activity log.
    Hope this will help.

  • PLEASE HELP: iTunes Lib. crashed, need playlists back!

    My iPod broke last week, so it got a new hard drive, and will be back tommorrow. Today, my iTunes library totally crashed.. I still have the library files and all that say (damaged) and the temp files, the xml, ets.. I can reimport my songs, I don't care, I just REALLY need my playlists back.. Please help...
    iTunes 7.0.2

    A damaged library cannot be repaired.
    If you still have the files in your 'Previous iTunes Libraries' folder and don't mind to loose the changes you've made since upgrading from iTunes 6 to iTunes 7, there might be a way to restore as much as possible.
    Locate the most recent file in the 'Previous iTunes Libraries' folder.
    My most recent file in there is 'iTunes Library 2006-09-12' (the day I upgraded to iTunes 7).
    Create a copy of that file, rename it to 'iTunes Library' and put it at /Users/Username/Music/iTunes, replacing the existing one.
    Then run iTunes. It should recognize the iTunes 6 format of the file and start determining 'gapless playback information' again.
    After a while you should have your library back.
    All changes you made after upgrading to iTunes 7 are lost of course, but song files you added are still there.
    If your songs files are at the default location (/Users/Username/Music/iTunes) and the 'iTunes Music folder location' (Preferences>Advanced>General) is also set to that location, drag and drop the 'iTunes Music' folder on the library window in iTunes.
    This will add the songs you added since upgrading to iTunes 7, to the library.
    I've done a test of this a few weeks ago and it worked flawless except for Podcasts. Many Podcast entries in the library were duplicated.
    No big deal if you don't have them or maybe a few, but a real annoyance if you have many of them.
    Hope this helps.
    M
    17' iMac 800 MHz, 768 MB RAM, 200 GB HD, DL burner   Mac OS X (10.4.8)   iTunes 7.0.2

Maybe you are looking for

  • Content Rendered from UCM after updation returns old data

    Hi The requirement that i have in place is as below: 1. Portal application should have an option to display content from UCM(Content here is just the metadata like title, description, etc of the content) 2. The application should also have options fo

  • PL/SQL + XML with Excel report format?

    Dear all, I am a new beginner in XML Publisher. For the EBS11i, I can use PL/SQL with http scripts to generate excel report format. The following code will include in store procedure: > begin owa_util.mime_header(ccontent_type => 'application/vnd.ms-

  • Filter data in reports

    I would like to filter data in my report as below A column >>> revenue value if percentage = "100" B column >>> revenue value if percentage <>"100" How can I do this? Anyone can help me? Thank you very much.

  • Saving illustrator CS5 files in Mac OSX Lion makes the app to crash

    Hello! I have serious troubles with illustrator since i've installed Lion. All my files are stored in a networked Western Digital USB disk connected to the Airport Extreme via USB port. When a file is open in illustrator and try to save ir after a fe

  • Can't shuffle mp4 music videos

    I ripped a video dvd of mine into 20 seperate mp4 files with Handbrake. I then added them to iTunes. Each plays fine but they stop at the end of the song. I'd like to get them to shuffle to the next song. Any hints?