Serious Unmarshalling Problem

I have been having a serious problem implementing an RPC web service which needs
to return
arrays of Java Beans nested three layers deep. In order to simplify the problem,
I constructed these
simple Java Beans (abbreviated here):
Class A
B[] bArray;
Class B
C[] cArray;
Class C
String value;
Then I wrote a client similar to this:
C c = new C();
c.setValue("Dave");
C[] cArray = new C[2];
cArray[0] = c;
cArray[1] = c;
B b = new B();
b.setCArray(c);
B[] bArray = new B[2];
bArray[0] = b;
bArray[1] = b;
A a = new A();
a.setBArray(b);
C c1 = service.getC(c):
B b1 = service.getB(b);
A a1 = service.getA(a);
In my web service, I have three methods:
C getC(C);
B getB(B);
A getA(A);
All these do is return the objects they are sent.
When getC is called, it works fine. In the verbose mode, you can see that the
XML sent
and received is the same. getB also works fine.
But getA does not work. The response is abbreviated and contains nulls. It appears
that
the data is not being unmarshalled/unserialized correctly on the server side.
This is a serious problem that has my project in jeopardy. Please advise,
Dave Mrozek

please use spaces instead of tabs :
why did you convert a date, which is formatted in your DD-MON-RR - format, back to date with the format DD-MM-RR ?
try this: I reformatted it, so that you can better read it :
  CURSOR cur_first IS
  SELECT a.item_code,
         b.item_description,
         a.lot_no,
         d.name model,
         c.vendname,
         date_of_purchase,
         warrenty_upto,
         quentaty,
         rate,
         pc_type,
         decode (warrenty_flag_yn, 'W', TO_DATE (warrenty_upto,       'DD-MON-RR'),
                                   'A', TO_DATE ('31-MAR-' || v_year, 'DD-MON-RR'),
                                   'X', TO_DATE ('31-MAR-' || v_year, 'DD-MON-RR')
                ) AS amc_date
    FROM pc_item_procurement_history a,
         pc_item_master b,
         pc_vendor_master c,
         pc_model_master d
   WHERE ...and I think you have a problem in the where clause. Are you sure, that the string warrenty_upto has the format DD-MM-RR. Or has it the format DD-MON-RR ?
(TO_DATE(a.warrenty_upto,'DD-MM-RR')

Similar Messages

  • Serious performance problems on iWeb site

    Can anyone help me find the problem with peterlance.com? It looks like author Peter Lance uses iWeb to update his web site. He redesigned it recently (and did not use iWeb for the old design). Anyway, it has serious performance problems on Internet Explorer, which I was hoping you guys could help pinpoint? Is there something simple I can tell him to try to fix the problem? He is launching a new book on Tuesday so he will be getting a lot of traffic, but for now the response time is not very good. Any suggestions?
    In particular, each new page seems to hang for about ten seconds and freeze using Internet Explorer 6. Any fixes?
    I mean, fixes other than: "Don't use Internet Explorer!"
    http://www.peterlance.com/Peter%20Lance/Home/Home.html
    name="Generator" content="iWeb 1.1.2"

    Welcome to the discussions, TopDog08.
    There are several plain .jpg's and that's good, but you need to convert every .png on the page (or as many .png's as you can) to a .jpg. For example,
    http://www.peterlance.com/Peter%20Lance/Home/Homefiles/shapeimage46.png
    Convert that to a jpg, then replace the graphic and text on the iWeb page with this converted jpg (some have has success using Downsize http://www.stuntsoftware.com/Downsize/)
    The ones you won't be able to do anything about are the ones that are a part of the blog, but that will be only 5 images instead of the many you have now.
    This image
    http://www.peterlance.com/Peter%20Lance/Home/Homefiles/shapeimage50.png
    Is covering part of your menu which is why it appears that only the top half is sensitive to rolling over. You'll have to adjust your layout to account for this.
    Another area to look at, there are white boxed png's surrounding the amazon book covers at the top.
    http://www.peterlance.com/Peter%20Lance/Home/Homefiles/imageEffectsAboveAli%20Mug%20TPI%20jpg.png
    Another set of .png's you'll have to get rid of. How did those get put on the page?
    What you see happening with IE is a java script running to fix IE's problem with png's. The fewer .png's you have, the less of a problem with IE you have.

  • Serious performance problems after updating from 10.5.6 to 10.5.7

    I've got a Macbook Pro C2D 15" (late 2006). After updating the system from 10.5.6 to 10.5.7 and quicktime to 7.6.2, I experience serious performance problems which I have never seen before:
    -From time to time, kernel_task has peaks in activity monitor (consumes a lot of CPU). In that moment, the mouse hangs for a short moment and audio playback is distorted/has drop outs.
    -Recording audio consumes a lot of CPU (independent of the audio application).
    -Video playback consumes a lot of CPU, regardless if I use VLC or the quicktime player.
    Any idea what could be done? Thanks in advance.

    After a few days of using CoolBook I report that my 1st generation MacBook Air is now reliable and never overheating, regardless of environment conditions.
    I must point out that I do believe that it really is something new in 10.5.7 that is causing this problem as my environmental conditions have not changed and even Summer in Dublin still sees temperatures no more than 72F/22C. I am now in Madrid, where the environment is quite different, and I am still having no problem with kernel_task spinning.
    I plan on reporting my problem to Apple anyway and being aggressive about the issue as MacLovinRanga did in this thread (http://discussions.apple.com/thread.jspa?messageID=9647353#9647353). Perhaps many/all of those of us having this problem will obtain new MacBook Airs.
    Joe Kiniry

  • Serious performance problems

    Hi
    I am having some very serious performance problems witgh java web start. I have a swing client that transmits XML/HTTP to and from a server, parses it, etc... I am finding that the XML/HTTP data request
    is a factor of 10 to 100X slower, at least, using Java Web Start than without.
    Any suggestions would be helpful
    Thanks
    Charles

    Charles,
    I've also observed some overhead when running an application deployed with JAWS compared to running the application from the jar, or in my dev environment.
    After searching these forums a bit, I found this buried nugget of info: Try System.setSecurityManager(null) if you are requesting <all-permissions/> already.
    Before the workaround, my application was taking 194 seconds for a single analysis run. After this workaround was applied, the same analysis run took only 82 seconds.
    So as you can see, there is considerable overhead associated with performing operations through the layers of security (my guess). My particular application does a lot of disk I/O (which is probably something the security manager watches closely).
    I stress the 'workaround' aspect of this because I haven't fully investigated the ramifications of using it, but eventually this might turn into a bug submission (because if I'm already requesting all-permissions, why do I still need to do setSecurityManager(null)?).
    At any rate, hope this helps!
    -jw

  • ***Serious iPod Problems***

    My brother is havign some serious iPod problems. A while ago the battery died after having it for about 2 years. He just had the battery replaced, it will atleast bootup now, but it wont get passed the Apple logo. I can get it to boot into Disk Mode, then reset it, but it still wont get passed the Apple logo. Does anyone have any idea what's happened to it?
    Thanks in advance!
    Matt

    Hi Jeff, thanks for the response, i have been able to do that a bunch of times today, i've even opened up the Disk utility and erased and then done it, no such luck, it just wont get passed the apple screen

  • Serious System Problems. Pictures and Documents folders are opening iPhoto when clicked. iPhoto Library gone.

    I have been speaking to Old Toad for the majority of today trying to fix my iPhoto Library as its become corrupt and I cannot get my photos/videos back into iPhoto. After many many suggestions I seem to have created some serious system problems.
    PLEASE READ ALL OF THIS THREAD...
    https://discussions.apple.com/message/21742033#21742033
    If anybody can be of assisatance that would be a great help.
    I am a mac dummie, recently transfered so foolproof guidance will be helpfull!
    (Unfortunatly.. and now I know the importance, I haven't used time-machine and my mac isn't backed up. If i restore to factory settings I will loose the 600+ photos and videos I had in my iPhoto Library.... which dissapeared, which is the whole reason why I created the first thread)
    Thank you!!

    Linc:
    It appeared to me that somehow the OP's Picture folder was converted into an iPhoto Library as his screenshot of the PIctures folder looked like the inside of a library.
    This statement by the OP make me think it might be more than just an iPhoto issue (the bold text):
    I am unable to drag the Picture folder to the desktop, It wont move, and iPhoto (which is still empty) just opens.
    Some how the same is happening with Documents,
    OT

  • Serious display problem. Please help!

    I'm having a serious display problem all of a sudden. It is not application specific. Various different applications are pixelating, especially wherever I move my cursor and click the mouse. When I grab the entire application with the cursor and move it, the image duplicates into hundreds of images all over my screen. If I shake it around awhile, eventually it goes back to normal. What is going on??!!
    Here's some background info: I'm on a 2009 Mac Pro. I still use the old fashioned tube monitors with mini display port to VGA converters, but I've never had a problem up until now. Just before the problem started happening, I tried to open up some .jpg files in Quicktime Pro 7. 
    I would greatly appreciate any ideas of what the problem could be and how to fix it.

    Welcome to Apple Discussions!
    Might you have moved the Home folder or its contents, or renamed it? If you think that's what happened, this article may help:
    http://docs.info.apple.com/article.html?artnum=107854

  • Sir since update of ios 8.1.2 i got serious battery problem on 3g 4.30 hrs my battery gets low and sometimes serious net probelms please give an update for this issue its not alone me my friends too getting many problem lcommonly battery problem

    sir since update of ios 8.1.2 i got serious battery problem on 3g 4.30 hrs my battery gets low and sometimes serious net probelms please give an update for this issue its not alone me my friends too getting many problem commonly battery problem please can this be resolved
    its not related to any hardware because last year april i got replacement new phone from apple and i maintained it well...!

    Probably apps running in the background are causing this, sometimes Mail get's stuck connecting to the mail server, or some social media app like Facebook can also be a reason for prolonged background activity.
    Try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again. You will not lose any data by resetting, but it can cure some glitches.
    If this does not help, setting it up as new device would be the next step:
    How to erase your iOS device and then set it up as a new device or restore it from backups
    Also take a look at these tips to prolong the battery life again:
    http://www.overthought.org/blog/2014/the-ultimate-guide-to-solving-ios-battery-d rain

  • Serious Network Problem

    During NI Inermediate II course,
     My computer showed a serious network problem.
    There is no problem to open a webpage using the Internet Explorer.
    In LV8, I can't use Remote Panel connetion.
    Using a cross lan cable, I tried but failed to connect to another computer directly.
    In UTP lessons, My computer can't receive a multicasting signal.
    Would you please consider my computer?
    Thank you in advanced.
    Port scan result after LV launching.
    =====================
    Proto  Local Address          Foreign Address        State
     TCP    lsjun-notebook:http    lsjun-notebook:0       LISTENING
     TCP    lsjun-notebook:epmap   lsjun-notebook:0       LISTENING
     TCP    lsjun-notebook:microsoft-ds  lsjun-notebook:0       LISTENING
     TCP    lsjun-notebook:1111    lsjun-notebook:0       LISTENING
     TCP    lsjun-notebook:3363    lsjun-notebook:0       LISTENING
     TCP    lsjun-notebook:3580    lsjun-notebook:0       LISTENING
     TCP    lsjun-notebook:6060    lsjun-notebook:0       LISTENING
     TCP    lsjun-notebook:1029    lsjun-notebook:0       LISTENING
     TCP    lsjun-notebook:1112    localhost:3580         TIME_WAIT
     TCP    lsjun-notebook:3580    localhost:kpop         TIME_WAIT
     TCP    lsjun-notebook:3580    localhost:1110         TIME_WAIT
     TCP    lsjun-notebook:3580    localhost:1113         TIME_WAIT
     TCP    lsjun-notebook:3580    localhost:1114         TIME_WAIT
     TCP    lsjun-notebook:3580    localhost:1115         TIME_WAIT
     TCP    lsjun-notebook:3580    localhost:1116         TIME_WAIT
     TCP    lsjun-notebook:3580    localhost:1117         TIME_WAIT
     TCP    lsjun-notebook:3580    localhost:1118         TIME_WAIT
     TCP    lsjun-notebook:netbios-ssn  lsjun-notebook:0       LISTENING
     TCP    lsjun-notebook:1107    203.254.160.68:30114   ESTABLISHED
     TCP    lsjun-notebook:1108    203.254.160.68:http    TIME_WAIT
     TCP    lsjun-notebook:1119    210.98.20.45:netbios-ssn  TIME_WAIT
     UDP    lsjun-notebook:microsoft-ds  *:*
     UDP    lsjun-notebook:isakmp  *:*
     UDP    lsjun-notebook:1031    *:*
     UDP    lsjun-notebook:2343    *:*
     UDP    lsjun-notebook:4500    *:*
     UDP    lsjun-notebook:5000    *:*
     UDP    lsjun-notebook:5001    *:*
     UDP    lsjun-notebook:5002    *:*
     UDP    lsjun-notebook:5003    *:*
     UDP    lsjun-notebook:6000    *:*
     UDP    lsjun-notebook:6001    *:*
     UDP    lsjun-notebook:6002    *:*
     UDP    lsjun-notebook:6003    *:*
     UDP    lsjun-notebook:6004    *:*
     UDP    lsjun-notebook:6005    *:*
     UDP    lsjun-notebook:6006    *:*
     UDP    lsjun-notebook:58431   *:*
     UDP    lsjun-notebook:58432   *:*
     UDP    lsjun-notebook:ntp     *:*
     UDP    lsjun-notebook:1900    *:*
     UDP    lsjun-notebook:ntp     *:*
     UDP    lsjun-notebook:netbios-ns  *:*
     UDP    lsjun-notebook:netbios-dgm  *:*
     UDP    lsjun-notebook:1900    *:*

    Hello labmaster,
    It sounds to me like your system is capable of connecting to the internet, but that it is unable to do much beyond this. It appears that these applications that you are trying to build in LabVIEW are exposing some of the networking limitations that exist on your machine. Unfortunately I do not know what to make of the port scan that you have provided. There can be many causes of networking issues that you would want to troubleshoot with your IT department or network card manufacturer. What I can do is to provide you with a list of ports used by National Instruments software. You will want to be sure that no packets are being blocked on these ports. Also keep in mind that when using TCP or UDP communication, you can specify the ports which you are using. Also, as a starting point, you may want to disable any antivirus software or firewalls that might hinder communication. I hope that this will at least get you started in figuring out some of these networking difficulties. Thanks,
    Mike D.

  • Serious date problem

    I am using Form 6i.
    I am getting serious date problem.
    The MM/DD/RRRR is converted to DD/MM/RRRR and the result is false record.
    How to avoid this serious problem. I am very shocked to find this error after few hours of brainstorming session.
    I am using following query to create cursor
    [htm]     CURSOR cur_first IS SELECT      a.item_code,
         b.item_description,
         a.lot_no,
         d.name model,
         c.vendname,
         date_of_purchase,
         warrenty_upto,
         quentaty,
         rate,
         pc_type,
         TO_DATE(decode(warrenty_flag_yn,
                        'W', TO_DATE(warrenty_upto),
                        'A', TO_DATE('31-MAR-'||v_year),
                        'X', TO_DATE('31-MAR-'||v_year)),'DD-MM-RR') AS amc_date
         FROM      pc_item_procurement_history a,
                        pc_item_master b,
                        pc_vendor_master c,
                        pc_model_master d
         WHERE a.item_code= b.item_code
         AND a.modelcode=d.modelcode
         AND a.vendcode=c.vendcode
         AND (b.item_description LIKE '%'||:blk_main.item_name||'%' OR :blk_main.item_name IS NULL)
         AND (TO_DATE(a.warrenty_upto,'DD-MM-RR') <= :blk_main.to_date OR :blk_main.to_date IS NULL)
         AND warrenty_flag_yn='W'
         ORDER BY b.item_description;
    /pre][html]
    Thanks and regards,
    Vikas                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I've just noticed something in the where clause that makes all this a lot easier.
         CURSOR cur_first IS SELECT      a.item_code,
         b.item_description,
         a.lot_no,
         d.name model,
         c.vendname,
         date_of_purchase,
         warrenty_upto,
         quentaty,
         rate,
         pc_type,
         warrenty_upto AS amc_date
         FROM      pc_item_procurement_history a,
                        pc_item_master b,
                        pc_vendor_master c,
                        pc_model_master d
         WHERE a.item_code= b.item_code
         AND a.modelcode=d.modelcode
         AND a.vendcode=c.vendcode
         AND (b.item_description LIKE '%'||:blk_main.item_name||'%' OR :blk_main.item_name IS NULL)
         AND (a.warrenty_upto <= :blk_main.to_date OR :blk_main.to_date IS NULL)
         AND warrenty_flag_yn='W'
         ORDER BY b.item_description;BUT...
    Is Warrenty_upto really a date column? You say it is "stored as m/d/yyyy" but a date is not stored with a format in oracle - it's just a date and the format is applied when you retrieve the data.
    In sql*plus if you Describe the table you can see the column type. If you select the data you only ever get a string.
    I'm assuming :blk_main.to_date is a date.

  • Blackberry HUB "Show Read Filed Emails" ON AND OFF button SERIOUS Gmail PROBLEM NEED BUG FIX ASAP!

    Its been for years (starting from 10OS Version 10.2 ) I couldn't see filed/labeled emails in my Z30/Z10 Blackberry HUB of my Gmail account, but I just downloaded Blackberry Blend and it started to show all my filed/labeled emails, but I still cant see them in my Blackberry HUB! Maybe you can tell me how to make Read Filed Emails visible in Blackberry HUB too?
    Blackberry HUB >> Settings >> Display and Actions:
    Show Read Filed Emails is ON
    Show Sent Emails is ON
    Both are turned on, but I still cant see them like on Blackberry Blend.. On search field then I type specific email from filed/label from my Gmail account I immediately finds it, but then I go back to Blackberry HUB all I can see just emails from inbox and single sent emails and YES "SYNC ALL EMAIL FOLDERS" IS SET TO ON AND "SYNC TIMEFRAME" IS SET TO FOREVER (''Sync All Email Folders'' is set ON and ''Sync Timeframe'' is set FOREVER).
    Here is picture of email settings:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338662d1425451994-read-filed-messages...
    I want to see all emails in devices Blackberry HUB like in Blackberry Blend desktop! What should I do to make it happen?
    I find out that then I click on the Blackberry HUB > Settings > Display and Actions: "Show Read Filed Emails" to ON or OFF again and again, view in Blackberry Blend immediately changes in order I did ON or OFF, that's pretty amazing, but Blackberry HUB DOESN'T RESPOND AT ALL! View is the same doesn't matter if I change it ON or OFF.
    View in Blackberry Blend starts to look the same like in phones Blackberry HUB then I click "Show Read Filed Emails" OFF, it looks like Blackberry HUB doesn't respond to ''Show Read Filed Emails'' ON and OFF button at all, ITS ALWAYS OFF! What should I do next??
    I'm using Blackberry Z30, but I have Z10 too and it also doesn't work and it looks like this "Show Read Filed Emails" not working button bug is on all 10 OS devices except Blackberry Blend desktop version which works perfectly confirms it.
    I'm using Gmail and I have latest Blackberry 10 OS version OFFICIAL 10.3.1.1565
    Here is a picture how it looks then ''Show Read Filed Emails'' ON and OFF:
    (first is OFF, second is ON)
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338513d1425416890-read-filed-messages...
    As you can see then ''Show Read Filed Emails'' is ON, Blackberry Blend changes and I can see all my emails (and there are a lot of unread ones! (sorry I blurred some of my emails for privacy)), but in my devices Blackberry HUB there is no changes and its displaying the same thing like ''Show Read Filed Emails'' was OFF. I miss a lot of emails and its really annoying and I think you understand why.. Blackberry Blend desktop version is a savior today, but THIS IS NOT A SOLUTION!
    Any FIX suggestions ASAP?
    UPDATE:
    I tried a lot of times to delete and sign in again and again, but it looks like only Blackberry Blend respond to every setting changes! Blackberry HUB doesn't respond AT ALL! Devices Blackberry HUB only show INBOX and SENT MESSAGES all the time, but if "Display Style" in Blackberry HUB is set to "Conversation" SENT MESSAGES disappear from devices Blackberry HUB too (in Blackberry Blend is everything FINE!) if they are part of CONVERSATION FILED/LABELS EMAILS!!
    All issues I been searching all this years and everyone was blaming Gmail, but it looks like ALL THIS YEARS THIS WAS Blackberry HUB "Show Read Filed Emails" ON and OFF button BUG/PROBLEM which doesn't work on devices Blackberry HUB and today Blackberry Blend desktop version CONFIRMS IT!!
    Yes Yahoo accounts FILED/LABELS EMAILS with devices Blackberry HUB works FINE, but Gmail - NOT and NEED FIX ASAP!

    Newest edits in here:
    http://forums.crackberry.com/general-blackberry-discussion-f2/please-send-very-important-10os-device...
    100% FIX SOLUTION GUARANTEE for Gmail archived/labeled Emails not showing problem!
    How to fix it? FIX "Show Read Filed Emails" button to respond to ON and OFF devices Blackberry HUB for Gmail accounts - NOW IT IS ALWAYS OFF if you press ON or OFF!
     "Show Read Filed Emails" button ON and OFF for Gmail account works on Blackberry Blend desktop version!
    Error/Bug: Blackberry HUB do not show Gmail labeled emails
    Main problem: Blackberry HUB "Show Read Filed Emails" button doesn't respond to ON AND OFF and is always OFF fo Gmail account.
    Main problem: ALL Blackberry 10OS devices Blackberry HUB"Show Read Filed Emails" button ON AND OFF doesnt respond with Gmail accounts!
    Works with: Blackberry Blend desktop version responds to "Show Read Filed Emails" button ON AND OFF with Gmail accounts! (pressing "Show Read Filed Emails" button ON and OFF again and again, view in Blackberry Blend immediately changes in order you press ON or OFF, but Blackberry HUB is always on OFF)
    "Show Read Filed Emails" button doesn't work with: Gmail accounts
    Status: NOT FIXED!
    OS version: Blackberry 10 OS version OFFICIAL 10.3.1.1565
    PROBLEM FOUND!
    I created new Gmail account send 5 test emails and made first 2 test emails labeled and made step by step set up on my Blackberry 10OS device to confirm this ''Show Read Filed Emails'' button BUG/PROBLEM/ERROR:
    1. I signed in with my Blackberry 10OS device like this:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338846d1425503380t-gmail-archived-lab...
    2. When I set on Gmail account settings "Sync Timeframe" is set to FOREVER and "Sync All Emails Folders" is set to ON
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338847d1425503392t-gmail-archived-lab...
    3. And at last I go to devices Blackberry HUB and see this:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338856d1425505143t-gmail-archived-lab...
    As you can see it doesn't matter if "Show Read Filed Emails" button is set to ON or OFF, Blackberry HUB doesnt respond at all, but Blackberry Blend view changes at same second then I press.
    CONCLUSION: "Show Read Filed Emails" button ON and OFF BUG/PROBLEM/ERROR for Gmail accounts is confirmed and it STILL NOT FIXED!
    Please spread the word to people who have all the power to influence and accelerate processes to FIX this VERY SERIOUS ISSUE or please tell me there could I send this FIX SOLUTION to to get fastest respond and get it FIXED ASAP. THANK YOU!
    STILL NO FIX!

  • Need to solve serious security problem with Oracle Reports URL

    As mentioned repeatedly on this forum, Oracle Reports allows serious security breaches that allow users to see reports that they did not generate -- it's easy to guess a legal URL by changing the getjobid parameter.
    I've reviewed the JavaDocs to part of the rwrun.jar file and reviewed some of the example report plugins. This shows promise in helping to solve this security problem but critical pieces are missing.
    1) The javadocs are accurate for only 10g (9.0.4) but not correct for 10g (10.1.2+), which we are currently using. I need access to the updated version of this javadoc.
    2) Even with the updated version of the JavaDoc, I haven't found a class from which to inherit that would give me the opportunity to generate random jobid values, which then would effectively prevent users from guessing other jobid values, and thereby gaining access to other's reports (which in our cases, may contain sensitive information.
    3) We have found that we can send the parameter=value of EXPIRATION=1 which helps protect such information, but this requires that every program which invokes a report be modified to add this parameter. It would be far better for the report server to be configured to use a java class we write that inherits from some rwrun.jar class that would by default, add the EXPIRATION=1 parameter.

    Hi,
    Thanks for our replies. I will ask to an administrator about this security problem, now I know it depends of a security parameter.
    But I would know if it could be possible to hide the technical name of the query in the url. It could improve the security level of our reports in a first time in this way.
    Thanks a lot,
    JW.

  • Unmarshalling problem with special characters (Trademark, French

    I'm using a DefaultHandler class to create a StringBuffer which contains a single (though very complex) element from an XML file. I am unmarshalling this StringBuffer object to a JAXBContext like this:
    u.unmarshal( new StreamSource( new StringReader( sb.toString() ) )
    My special characters are going way out of whack (please read (TM) as the Trademark symbol)
    T-Force(TM) Ring(TM) Bonded iron construction for durability and longer life
    becomes
    T-Force���Ring ��� Bonded iron construction for durability and longer life
    Before I put anything else into the StringBuffer I put this in:
    sb.append("<?xml version=\"1.0\" encoding=\"iso-8859-15\"?>");
    But I've tried:
    sb.append("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
    and
    sb.append("<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>");
    with different, but wrong, results.
    It's true that I'm viewing these results on a web page, so it's possible that the problem is occurring on the back end once I persist the data, but it looks like my database is set for UTF-8 (that's what I put for this new installation of Oracle 9i R2).
    Is there something basic I am missing. Like, perhaps, I need to do some sort of XML entity coding?
    Thank you very much for any help you can offer.

    Actually I had forgotten one additional thing. I have
    tried testing one thing at a time, and I have sent the
    special characters to the log file with logger.debug
    statements (log4j). The characters are screwed up in
    the log files, which is what makes me think I need to
    do some sort of entity encoding. (?)I don't think that log4j provides any way to declare the encoding it uses for your files. My guess is that it's using the default encoding for your system, which could be a problem for things like the trademark character. So log4j really gives you just another thing to test, rather than acting as a testing tool.
    I was thinking of a more low-level test, where you take your trademark character, which is 2022 or some such number (check the Unicode charts) and you write it to the database and read it back. Do you get the same character back? That sort of testing.

  • SERIOUS IPOD PROBLEM! SCREEN! :(

    My iPod has worked fine so far. 5G, 30GB iPod White. Until today the screen has froze. It has lines that appear on your laptop if you pushed it on the back. Colored lines stretched accross the screen. I tried to reset, but it is the actual screen that has problems. I'm going to try to let it run out of battery power. PLEASE HELP!
    It seems to have a type of glare, without the sun, of course. I need serious help, should i just send it to Apple? it has a one year warranty!

    I'd like to know if you resolved this problem or not. My daughters iPod just started having this exact problem. The iPod freezes and the screen is full of colored lines.
    You can do a reset and the iPod returns to normal only to freeze again later. This morning alone it's frozen 4 times within about 3 hours.
    Any HELP is appreciated.
    5G iPod 30g   Other OS  

  • JAXB unmarshalling problem

    Hi
    I have a problem with unmarshalling.
    when my XML document is valide ,there is no probem but when the document is not valid(for exemple i put a String value in an element of type xs:decimal) i get a strange result:I thought that i will get a java.lang.NumberFormatException when i set the java attribute mapped with that element or i get the error value but this attribute get null as value and there is no NumberFormatException.

    riadhhwajdii wrote:
    Is there any way to modify this default behavior for jaxb to make it show the error value or get a java exceptionyes, see [this post|http://forums.sun.com/thread.jspa?messageID=11031834#11031834]
    Edited by: jtahlborn on Aug 8, 2010 10:01 AM

Maybe you are looking for

  • ODBC Filemaker Connection

    I have created a 32 bit system DSN to my filemaker database with connection success.  When i log into the Coldfusion admin and try and set a database... I name it and select ODBC socket... when it does to the next screen the ODBC DSN drop down is emp

  • [Boot Camp] Can't send a Ctrl-Alt-Del during first boot!

    Hello, I just Installed WIndows Server on iMac using Boot Camp. It requires that once the password is set (per Group Policy on Windows Server PCs), I'll have to login by pressing Ctrl-Alt-Del (this is my first time login) and i'm unable to figure out

  • White generater black text Custom

    Hi, I wanted to make a not moving text on the white phone. I used Generater -- Whites. and I wanted Custom Text (which was also white by default) which doesn't move. But I couldn't find where to change the text color. So I had to use another text (Fa

  • Business Application Log how to suppress 'Number' of messages column

    Dear SDN Members, how is it possible to suppress the 'Number' column in a BAL output where the number of messages is printed? Thanks and kind regards, Cedrik

  • Safari stalls frequently on 10.10.2

    Safari stalls extremely frequently on my MacBook Air running 10.10.2. It beachballs very often (every ~30-40 seconds, on average), while I'm scrolling a page, typing text into a textbox, etc. The stalls last for ~3-4 seconds. This happens across all