Seems taht XMLType.toObject() doesn't work well ...

Hello,
We are trying to convert XML file into XMLType object and then to our custom object type using registered XSD definition. So we doing this : clob with xml -> XMLObject -> our MMS_T object.
The problem we experienced with transfering values of "type" and "status" attributes to object values MMS_T.TYPE and MMS_T.STATUS. Note that types MMS_T and ERROR_T are automatically created during schema
(XSD) registration. See and try Listing 1.
The second Listing contains anonymous pl/sql block with our testcase, please run it after registering schema. The output You will get should look like this one :
Schema based
Well-formed
<?xml version="1.0" encoding="UTF-8"?>
<mms-provisioning xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xdb="http://xmlns.oracle.com/xdb"
type="subscription"
status="error">
<error code="1">Some error</error>
<serviceID>iDnes</ser
Type:,Status:,Error:1-Some error,ServiceID:iDnes,Method:SMS,MSISDN:+420602609903
The problem is visible on the last line, where "Type" and "Status" object attributes should have its values that should come from XML, but they haven't. Where we were wrong ?
Please help,
Thanks & Regards,
Radim.
Note
====
When we are trying to do xml.schemaValidate() in our example, it raises folowong errors :
ORA-31154: invalid XML document
ORA-19202: Error occurred in XML processing
LSX-00310: local element or attribute should be namespace qualified
ORA-06512: at "SYS.XMLTYPE", line 0
ORA-06512: at line 27
Listing 1
=========
declare
xsd clob:=
'<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xdb="http://xmlns.oracle.com/xdb"
elementFormDefault="qualified"
attributeFormDefault="unqualified"
xdb:mapStringToNCHAR="false"
xdb:mapUnboundedStringToLob="false"
xdb:storeVarrayAsTable="false"
>
     <xs:element name="mms-provisioning" xdb:SQLType="MMS_T">
          <xs:complexType>
               <xs:sequence>
                    <xs:element name="error" minOccurs="0" xdb:SQLName="ERROR" xdb:SQLType="ERROR_T">
                         <xs:complexType>
                              <xs:simpleContent>
                                   <xs:extension base="xs:string">
                                        <xs:attribute name="code" type="xs:decimal" use="required" xdb:SQLName="CODE" xdb:SQLType="NUMBER"/>
                                   </xs:extension>
                              </xs:simpleContent>
                         </xs:complexType>
                    </xs:element>
                    <xs:element name="serviceID" type="xs:string" xdb:SQLName="SERVICEID" xdb:SQLType="VARCHAR2"/>
                    <xs:element name="method" type="xs:string" xdb:SQLName="METHOD" xdb:SQLType="VARCHAR2"/>
                    <xs:element name="msisdn" type="xs:string" xdb:SQLName="MSISDN" xdb:SQLType="VARCHAR2"/>
               </xs:sequence>
               <xs:attribute name="type" type="type_t" use="required" xdb:SQLName="TYP" xdb:SQLType="VARCHAR2"/>
               <xs:attribute name="status" type="status_t" use="required" xdb:SQLName="STATUS" xdb:SQLType="VARCHAR2"/>
          </xs:complexType>
     </xs:element>
     <xs:simpleType name="status_t">
          <xs:restriction base="xs:string">
               <xs:maxLength value="30"/>
               <xs:enumeration value="new"/>
               <xs:enumeration value="pending"/>
               <xs:enumeration value="subscribed"/>
               <xs:enumeration value="error"/>
          </xs:restriction>
     </xs:simpleType>
     <xs:simpleType name="type_t">
          <xs:restriction base="xs:string">
          <xs:maxLength value="30"/>
          <xs:enumeration value="subscription"/>
          <xs:enumeration value="unsubscription"/>
          </xs:restriction>
     </xs:simpleType>
</xs:schema>';
begin
dbms_XMLSchema.RegisterSchema (
SchemaURL => 'http://www.eurotel.cz/xsd/mms-provisioning.xsd',
SchemaDoc => xsd
end;
Listing 2
=========
declare
o mms_t;
doc clob :=
'<?xml version="1.0" encoding="UTF-8"?>
<mms-provisioning type="subscription" status="error">
     <error code="1">Some error</error>
     <serviceID>iDnes</serviceID>
     <method>SMS</method>
     <msisdn>+420602608696</msisdn>
</mms-provisioning>';
xml XMLType;
begin
xml := XMLType.createXML(XMLData => doc,schema => 'http://www.eurotel.cz/xsd/mms-provisioning.xsd');
if xml.isSchemaBased() = 1 then
dbms_output.put_line('Schema based');
else
dbms_output.put_line('Non-Schema based');
end if;
if xml.isFragment() = 1 then
dbms_output.put_line('Fragment');
else
dbms_output.put_line('Well-formed');
end if;
--Crashes with errors
--xml.schemaValidate();
dbms_output.put_line(substr(xml.getstringval(),1,255));
xml.toObject(o,schema => 'http://www.eurotel.cz/xsd/mms-provisioning.xsd', element => 'mms-provisioning');
dbms_output.put_line(
'Type:'||o.typ||
',Status:'||o.status||
',Error:'||o.error.code||'-'||o.error.sys_xdbbody$||
',ServiceID:'||o.serviceid||
',Method:'||o.method||
',MSISDN:'||o.msisdn);
end;
/

Hello,
We are trying to convert XML file into XMLType object and then to our custom object type using registered XSD definition. So we doing this : clob with xml -> XMLObject -> our MMS_T object.
The problem we experienced with transfering values of "type" and "status" attributes to object values MMS_T.TYPE and MMS_T.STATUS. Note that types MMS_T and ERROR_T are automatically created during schema
(XSD) registration. See and try Listing 1.
The second Listing contains anonymous pl/sql block with our testcase, please run it after registering schema. The output You will get should look like this one :
Schema based
Well-formed
<?xml version="1.0" encoding="UTF-8"?>
<mms-provisioning xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xdb="http://xmlns.oracle.com/xdb"
type="subscription"
status="error">
<error code="1">Some error</error>
<serviceID>iDnes</ser
Type:,Status:,Error:1-Some error,ServiceID:iDnes,Method:SMS,MSISDN:+420602609903
The problem is visible on the last line, where "Type" and "Status" object attributes should have its values that should come from XML, but they haven't. Where we were wrong ?
Please help,
Thanks & Regards,
Radim.
Note
====
When we are trying to do xml.schemaValidate() in our example, it raises folowong errors :
ORA-31154: invalid XML document
ORA-19202: Error occurred in XML processing
LSX-00310: local element or attribute should be namespace qualified
ORA-06512: at "SYS.XMLTYPE", line 0
ORA-06512: at line 27
Listing 1
=========
declare
xsd clob:=
'<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xdb="http://xmlns.oracle.com/xdb"
elementFormDefault="qualified"
attributeFormDefault="unqualified"
xdb:mapStringToNCHAR="false"
xdb:mapUnboundedStringToLob="false"
xdb:storeVarrayAsTable="false"
>
     <xs:element name="mms-provisioning" xdb:SQLType="MMS_T">
          <xs:complexType>
               <xs:sequence>
                    <xs:element name="error" minOccurs="0" xdb:SQLName="ERROR" xdb:SQLType="ERROR_T">
                         <xs:complexType>
                              <xs:simpleContent>
                                   <xs:extension base="xs:string">
                                        <xs:attribute name="code" type="xs:decimal" use="required" xdb:SQLName="CODE" xdb:SQLType="NUMBER"/>
                                   </xs:extension>
                              </xs:simpleContent>
                         </xs:complexType>
                    </xs:element>
                    <xs:element name="serviceID" type="xs:string" xdb:SQLName="SERVICEID" xdb:SQLType="VARCHAR2"/>
                    <xs:element name="method" type="xs:string" xdb:SQLName="METHOD" xdb:SQLType="VARCHAR2"/>
                    <xs:element name="msisdn" type="xs:string" xdb:SQLName="MSISDN" xdb:SQLType="VARCHAR2"/>
               </xs:sequence>
               <xs:attribute name="type" type="type_t" use="required" xdb:SQLName="TYP" xdb:SQLType="VARCHAR2"/>
               <xs:attribute name="status" type="status_t" use="required" xdb:SQLName="STATUS" xdb:SQLType="VARCHAR2"/>
          </xs:complexType>
     </xs:element>
     <xs:simpleType name="status_t">
          <xs:restriction base="xs:string">
               <xs:maxLength value="30"/>
               <xs:enumeration value="new"/>
               <xs:enumeration value="pending"/>
               <xs:enumeration value="subscribed"/>
               <xs:enumeration value="error"/>
          </xs:restriction>
     </xs:simpleType>
     <xs:simpleType name="type_t">
          <xs:restriction base="xs:string">
          <xs:maxLength value="30"/>
          <xs:enumeration value="subscription"/>
          <xs:enumeration value="unsubscription"/>
          </xs:restriction>
     </xs:simpleType>
</xs:schema>';
begin
dbms_XMLSchema.RegisterSchema (
SchemaURL => 'http://www.eurotel.cz/xsd/mms-provisioning.xsd',
SchemaDoc => xsd
end;
Listing 2
=========
declare
o mms_t;
doc clob :=
'<?xml version="1.0" encoding="UTF-8"?>
<mms-provisioning type="subscription" status="error">
     <error code="1">Some error</error>
     <serviceID>iDnes</serviceID>
     <method>SMS</method>
     <msisdn>+420602608696</msisdn>
</mms-provisioning>';
xml XMLType;
begin
xml := XMLType.createXML(XMLData => doc,schema => 'http://www.eurotel.cz/xsd/mms-provisioning.xsd');
if xml.isSchemaBased() = 1 then
dbms_output.put_line('Schema based');
else
dbms_output.put_line('Non-Schema based');
end if;
if xml.isFragment() = 1 then
dbms_output.put_line('Fragment');
else
dbms_output.put_line('Well-formed');
end if;
--Crashes with errors
--xml.schemaValidate();
dbms_output.put_line(substr(xml.getstringval(),1,255));
xml.toObject(o,schema => 'http://www.eurotel.cz/xsd/mms-provisioning.xsd', element => 'mms-provisioning');
dbms_output.put_line(
'Type:'||o.typ||
',Status:'||o.status||
',Error:'||o.error.code||'-'||o.error.sys_xdbbody$||
',ServiceID:'||o.serviceid||
',Method:'||o.method||
',MSISDN:'||o.msisdn);
end;
/

Similar Messages

  • I just downlouded the latest version of the Muse CC and it doesn't work well, it freezes all the time, in particular with the tools. Example the selection tool doesen't wor at all.

    I just downlouded the latest version of the Muse CC and it doesn't work well, it freezes all the time, in particular with the tools. Example the selection tool doesn't wor at all. Is there any solution for this problem?

    Hi!
    I restarted the computer, but the same issue happens again. When I move my mouse over some object or tool, it doesn’t come active at all (only some of the tools works) When I try to change “site properties”, I can’t choose tablet or phone mode or even I can’t select the checkboxes, only thing what I can do is change the numbers (high and width) . After all the main problem is that I can’t select some of the items or functions by mouse, but only by the keyboard.

  • Audio out port doesn't work well

    Hi, I have a Macbook Pro 13-inch, Early 2011. Since I bought it I always use my Mac whit headphones, but since a month it only works well the left headphone. I think that the problem it was my headphones but no, because I used it on my phone and workes well. So i come to the conclusion that the audio out port doesn't work well. What you think? And what you recommend to me to fix this problem?

    Probably still under warranty, but not for long. Take it to the Apple Store or AASP to have it checked ASAP.

  • Urgent - Upgraded Form doesn't works well with values saved by previous ver

    Hi all,
    Form i m working on has changed many times due to change in requirments.
    Everytime i do addition in old form, it doesn't works well be data saved by older versions.
    e.g.
    Current Version that i have upgraded fetchs the data well from database on query. But when i save it, clear or exit the form and then re-query that data, it doesn't show up instead meassage comes that query caused no records to be fetched.
    i checked at database level, data is there.
    and when i tried to call data from old form, it also refused to show it (data that was previously entered by itself but then saved by new form).
    what could be the problem and i can i resolve it.
    plz note that in all of this process, there are no database level changes, only form level changes.
    regards,
    yasir

    sounds like spaces are being padded at the end of the data
    check the length of the values you've changed in sqlplus and see if they are indeed right padded

  • Sun one server 6.0 doesn't work well with explorer

    We've sun one server 6.0 sp4 running in a sparc server as SSL server and too as common server on port 80. The most our clients , 95%, are explorer browser users.
    The server has known bugs with SSL3 , interoperatibility with MSIE problem 532427. The solutions suggested in the server documentation don't work. We tryed the solutions suggested many times and in few time we got complaints from clients, people get "this page can't be displayed". I had to set the server to work with SSL2 only , althought security's reports tell that this protocol is not safe.
    The second bug is concern the latencies loading pages with explorer. I apply the solution suggested, KeepAliveQueryMeanTime 1, it doesn't work well too. We don't feel the latencies on new machines or light browsers as avant , but we still feel these latencies with old machines or if the users uses modem. A lot of people still see very strong latencies.
    I feel the server wasn't tested enough with explorer browser , it has so many compatibility problems with this browser.I think for the most webmasters the perfect compatibility with explorer is very important.
    We payed for this server and it is worst than apache ,apache group fixed the SSL problem long time ago. Only one thing we need doesn't work well in apache then we contenue to use sun one server. But this diference is not enough to justify the use of this server if sun don't fix these problems. I'm talking about problems they exist more than 1 year, they were when i installed the server then i contenue to work with iplanet 4.1 and SSL2. I read the new version server characteristics, version 6.1 , i didn't find anything telling that these problems were fixed.
    Yair Lapin
    Hebrew University Webmaster

    Yair -
    Unfortunately this is a little vague. Can you tell us specifically what problem(s) you're having (unfortunately your current message does not go into adequate detail for us to understand the problems you see, or to make recommendations about how to remedy them).
    Thanks
    Joe

  • My Mail on my mac doesn't working well

    Why my Mail on my macbook pro doesn't working well, I couldn't see the content of my e-mail messages. how do I do? I tried to reinstall my Mail, and I couldn't fix it. Please help me

    These fixes have helped others, depending on the situation.
    Have an up-to-date Time Machine or other backup before attempting any major software updates or rebuilds.
    For more about backups:
    Time Machine Basics: http://support.apple.com/kb/ht1427
    Most commonly used backup methods: 
    https://discussions.apple.com/docs/DOC-3045
    Methodology to protect your data.  Backups vs. Archives.  Long-term data protection:
    https://discussions.apple.com/docs/DOC-6031
    Make sure your software is up to date.
    Apple > Software Update...
    A general repair to fix odd behaviors in Mail is  Mailbox > Rebuild.
    Try booting in Safe Mode.
              Boot and when you hear the bong hold down the Shift key.
              It will boot slowly.  Be patient.
              Login the the user account.
              Restart.
    Another fix:
    Shut down Mail.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Copy and paste the following
    ~/Library/Mail/V2/MailData/
    Click Go.
    Move all "Envelope" files to your desktop.
    Restart Mail and let it convert/reindex your mailboxes.
    If this worked, Trash the Envelope files file that are on your desktop,
    if not shut down Mail and put them back.
    Another fix:
    Shut down Mail.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Copy and paste the following:
    ~/Library/Containers/com.apple.mail/Data/Library/Caches/com.apple.mail/Cache.db
    Click Go.
    Move the Cache.db file to the Trash.
    Restart your Mac and try Mail.
    Another fix:
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Copy and paste the following
    ~/Library/Mail/V2/MailData/
    Click Go.
    Move all the Accounts.plist to your desktop.
    Restart Mail.
    If this worked, Trash the Accounts.plist file that is on your desktop,
    If not shut down Mail and put it back.
    You can try restoring mail from a Time Machine backup.
    Hold down the Option key and in the Finder Go > Library
    Enter Time Machine.
    Select a date and time from when Mail was working.
    Restore Mail.

  • TS3367 facetime doesn't work well after upgrading to ios8. I need to make a call several times to connect.

    Facetime doesn't work well after upgrading to ios8.
    When I make a facetime call, it doesn't sound some times on the other side.
    When it rings on the other side and is answered, it says (connecting), but it is still ringing on my side and never connected.
    After that, I disconnect and make a second call, it sometimes connects, but not everytime.
    I need to call several times to connect. It is really hard to connect through facetime after upgrading to ios8.
    I purchased three iPad so far because of this good feature (facetime).
    Please fix this issue as soon as possible.
    Thanks.

    Hi,
    There are two easy fixes to this.
    One, you can set up Family Sharing, in which you can have two different iCloud Accounts, yet still share the same apps, music, media etc.
    Two, go to Settings and turn-off "Handoff". This can be found under the General page.
    Hope this helps!

  • Gmail doesn't work well on my ipad, it gets hung all the time. Can you kindly help me?

    Gmail doesn't work well on my ipad, it gets hung all the time. Can you kindly help me?

    You probably want to start by updating your OS, if your information is correct and you are still running 5.1.1. You may also want to try the Gmail app. I find it works very well.

  • My home key doesn't work well, and my warranty has been expired. what can I do?

    my home key doesn't work well, and my warranty has been expired. I have to press very hard to light the screen.

    Try:
    http://snapguide.com/guides/calibrate-your-home-button/?utm_expid=69945963-15
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    -You can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it an an Apple store by:
    Apple Retail Store - Genius Bar
    or sent it in to Apple. See:
    Apple - Support - iPod - Service FAQ
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • X1 Voice Remote - Voice part doesn't work well

    So I just got the X1 Voice Remote yesterday (7/30/15). Beautiful remote btw. It comes with a setup guide which I followed word for word (that's important for people to understand, I literally did the setup instructions to the letter) .... the remote works great....except the voice command part of it, you know the whole main feature of the remote -- doesn't work with much reliability.  At initial setup voice commands worked perfectly for a good 20 minutes..... then it stopped working. In frustration I powered off my entire X1 cable box...waited a minute or two and powered it back on. The voice commands worked again until I went to bed. This morning before I went to work voice command worked (I only gave one command this morning). Tonight I'm trying it out again...voice command is not working again.  During this whole time it should be noted -- ALL other aspects of the remote works perfectly....plus it controls my tv on/off and volume perfectly as well as that for my receiver. The only thing that seems sketchy is the voice feature.....To be honest the voice command is more a gimmick feature to me than anything...but it does annoy me that its not working. I mean the thing is BRAND NEW.

    I must admit, it has been quite a while since I have tried voice command on my XR11. I tried saying channel names vs. channel numbers and it worked just fine. With most channels but not all.
    However, it occured to me the mic in the XR11 could be responding to background noise including the TVs (or audio systems) own volume level.
    Maybe you could pay attention to the sound levels in the background and see what happens...
    Anon1573450 wrote:
    It is supposed to be that smart.  And I even saw it work in the store.  The rep said "Watch ESPN" and it changed the channel to espn, without explicitly telling it the channel number.  Comcast even has this type of feature listed for the remote.   What boggles me is the it does kinda work sometimes, it just goes to the wrong channel.  
     

  • Mail search doesn't work well after changing mail file to another drive

    Hi, I need some help making the search in mail work for Mountain Lion. After I changed the mail folder to a new drive, SSD, creating an alias, everything works fine for mail except the search. When I search most of the times I get back emails that I received before doing the change.
    I already tried at rebuilding the mailboxes, and also I erased the Envelop index files, and they rebuilt themselves, and still the search is not working properly for the emails I have received since I changed the mail files to the new drive.
    Other than that the mail program is working well and as I work a lot with search I am experiencing a loss of productivity.
    I wouldn't like to revert it to the old drive, as the new drive is SSD and goes much faster for the big size of my mail fines.
    Thank you for your help !
    Javier

    Apple doesn’t routinely monitor the discussions. These are mostly user to user discussions.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • Am I Understanding Correctly That iPhoto Doesn't Work Well With Others?

    After reading all the previous posts and topics on iPhoto vs. LR2 and such with RAW/NEF file formats, they simply don't work well with each other, right?
    Basically, what I am trying to understand like a lot of others is that the way they read/write file info is dramatically different.
    I just started using LR2 in the trial period and maybe I'm just not used to it yet but I still like using iPhoto for organizing my library of photos; it seems a lot easier with the folders and albums and such.
    I also started using Nikon's RAW format NEF and working with them in iPhoto is a loser it seems.
    Other than the obvious increase and control and options availabe for editing in LR, is iPhoto all that bad with working with NEF or RAW files? What is the downside to it?
    Thanks for reading.
    John

    The problem is that Lightroom and iPhoto are essentially the type of application.
    They are both Photo Managers, they both want to own and control the pics, to be your central “go to” app for whenever you want to get a photo. Obviously only one can be the primary application.
    Lightroom - a rather more expensive application - is a professional app, aimed at the Pro Photographer. It’s a rather more powerful app in pretty much every way. For a point of comparison, Lightroom is closer to Apple’s Aperture rather than iPhoto.
    On top of that, earlier versions of Lightroom had a bug in the way that it wrote metadata to the file and iPhoto was unable to import these files - tho’ I believe that’s been fixed since.
    As to the RAW/NEF issue, There’s no point dealing in filetypes. Each model of camer produces a different RAW file, so what you need to tell us is the Model of Nikon you use. For instance iPhoto imports the NEFs from my D40 with no problems.
    As to “working well with others” iPhoto integrates with just abou every app on your mac, make the pics available in every ‘Open...’ dialogue in the OS, with Mail app and an any image editor you care to mention.
    Regards
    TD

  • IWork(Keynote, pages and numbers) doesn't work well about the issue of copy & paste problem

    I think so, too. the Keynote 6.5 is not working well on Yosemite (Mac OS X 10.10.1).
    In my case, I can't copy & paste from some program(particularly analysis program in my case) to Keynote.
    So, when I check coping & pasting the graph or image and so on to Powerpoint and other programs (one of Office is such word and 3rd programs), It works well. However It doesn't work at Keynote, page and numbers.
    Also, I tried to do the following process to solve this issue
    ======
    Something is wrong with your installation of Keynote
    Try this repair for Keynote, ensure you complete all the tasks and in the order shown:
    1  delete all the iWork applications if you have them, not just Keynote by using AppDelete.
    2  restart the Mac;   Apple menu > restart
    3  immediately after the start chime,  press the shift key until you see the Apple symbol.
             let it fully boot up,  it will take longer as the OS is repairing the drive
    4  when fully booted, go to Applications > Utilities > Disc Utility; click on the boot drive  then First Aid tab and      click  repair disc permissions
    5  when complete, restart the Mac normally
    6  install Keynote from the Mac App Store
    ====
    It doesn't work! Anything doesn't change.
    In conclusion, I didn't solve this yet!
    Plz, solve this problem or fix it!.

    This is a double posting, please only post in one discussion at a time.
    Keynote 6.5 is stable and reliable under Yosemite for most users.
    As with all new operating systems and applications, a small number of users find a few problems.
    Copy and pasting text from and into Keynote from all the applications I have, work perfectly: the applications include; Safari, Mail, Word, PowerPoint, excel, Pages, Numbers, iMovie, Photoshop, InDesign, Illustrator.
    If you want to place graphics into Keynote, use one of the following methods:
    Insert > Coose
    click the media button on an image placehoder
    click the media button on the tool bar
    drag and drop from a Finder window
    Copy and pasting images into Keynote is not supported

  • Ipad 2 updraded to ios 6.0.1 and doesn't work well

    I have recently upgraded my ipad2 to ios 6.0.1 and my safari browsers doesn't wprk well now. can i downgrade it to previous one?

    Downgrading iOS is not supported.
    Try clearing Safari's cache : Settings > Safari > Clear Cookies And Data and also Clear History
    If that doesn't work then try closing Safari via the taskbar and see if it works better when re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it (you could also close your the other apps that are on the taskbar), and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Surface Pro 3 Pen / stylus doesn't work well in Illustrator, works fine in Photoshop

    Good day,
    I've had CC on a Surface Pro 3 for two months now and I've been trying to troubleshoot the erratic behavior of using the Surface Pen in Illustrator. I've checked the batteries (there's multiple batteries in the pen), making sure they're installed correctly. I've gone into the Win 8.1 settings and checked the pen to be sure it's operating properly. It works well in all other apps; draws well in Photoshop, Fresh Paint, One Note, etc.
    When using the brush tool with the pen in Illustrator, I'm only able to draw every other line. Sometimes it's once every third or fourth line. I need to tremendously slow down in order for Illustrator to recognize I'd like to draw, and even then, I'm not guaranteed that a line will draw. This issue isn't isolated to the brush tool. Nearly any action with the pen on the canvas haphazardly occurs (selections, join tool, etc.). It's beyond frustrating!
    Is anyone else experiencing poor Surface Pen performance in Illustrator?  If no, I suppose I have a hardware issue, but it's suspiciously an app problem, seeing how the pen works great throughout the rest of my apps.
    Thanks for reading,
    Brent

    Hi All,
    Thanks to Monika Gause for the whole day extended support. Illustrator team really appreciate this.
    Monika removed (un-installed) the N-trig Wintab x64 application/driver from the system and the issue got re-solved.
    We would love to hear from all the people who are facing this issue that what happens when they follow the above step.
    With Best Regards,
    Raghuveer

Maybe you are looking for

  • Publish/Subscribe

    hi, i want to try out publish/subscribe, but i dono where to start with and how to go abt. can anyone advise me like the softwares and tools i can use, what do i study for that would be very much useful. thanks in advance !

  • HT4061 i dropped my iphone and display is broken how to fix it?

    In my country here is no place to fix my iphone what should i do

  • LANDED COST NEEDED DURING INVOICE

    Hi      while doing STO from plant to plant in same company code after doing VL10B and VL02N while doing invoice JI1S  Mat assessable  value is picking from ji1d, here i want landed cost. that is the po in condition .here how can get the landed cost

  • Need opinions       Jbutton, JLabel, or JToggleButton?

    I want to have an image in a JPanel and have that image change between true and false. IE when true show one image and when false show another. I've had moderate success using a Jlabel but I have read that changing a Jlabels image dynamically isn't d

  • Internal Build Error

    Hi, I am getting the following unhelpful error message when I try to run my project. I tried copying the src and bin files to another computer and got the same response. I have seen some posts that I should start a new project and rebuild file by fil