Seeking for API to deal with XML processing instructions

Hi all,
I have a requirement to list all the processing instructions inside a xml document.
E.g. For the document
<?xml version="1.0" encoding="utf-8"?>
<?AAA att1="att 1"?>
<?BBB?>
<?CCC?>
<body>
  <empty>True</empty>
</body>
I need to print out PIs AAA, BBB, CCC.
Two solutions i can find are:
1. to treat the doc as a string and do a pattern search for <?*?>.
2. use IF_IXML_DOCUMENT to traverse all the nodes and check their node types against IF_IXML_NODE=>CO_NODE_PI_PARSED and TYPE = IF_IXML_NODE=>CO_NODE_PI_UNPARSED.
However, I am wondering if there's any xml API to deal with XML PIs.
During my research on this, i got IF_IXML_DOCUMENT. It provides two creation APIs for XML PI: CREATE_PI_PARSED and CREATE_PI_UNPARSED. However, there is no corresponding getter API found.
Does anybody know if there is such one?
Thanks in advance.

Never do yourself down Richard.
Leave that to other people.
It's quite common for smart developers to think they're not as good as they are.
I coach a fair bit and it's a surprisingly common feeling.
And to repeat.
Never use anything ends .. provider.  They're for trivial demo apps.  Transform xml into objects and use them.  Write it back as xml.  Preferably, use a database.
You want to read a little mvvm theory first.
http://en.wikipedia.org/wiki/Model_View_ViewModel
Whatever you do, don't read Josh Smiths explanation.  I used to recommend it but it confuses the heck out newbies. Leave that until later.
Laurent Bugnion did a great presentation at mix10.  Unfortunately that doesn't seem to be working on the MS site, but I have a copy.  Download and watch:
http://1drv.ms/1IYxl3z
I'm writing an article at the moment which is aimed at beginners.
http://social.technet.microsoft.com/wiki/contents/articles/30564.wpf-uneventful-mvvm.aspx
The sample is just a collection of techniques really.
I have a sample which involves no real data but is intended to illustrate some aspects of how viewmodels "do stuff" and how you use datatemplates to generate UI.
I can't remember if I recommended it previously to you:
https://gallery.technet.microsoft.com/WPF-Dialler-simulator-d782db17
And I have working samples which are aimed at illustrating line of business architecture.  This is an incomplete step by step series but I  think more than enough to chew on once you've done the previous stuff.
http://social.technet.microsoft.com/wiki/contents/articles/28209.wpf-entity-framework-mvvm-walk-through-1.aspx
The write up for step2 is work in progress.
https://gallery.technet.microsoft.com/WPF-Entity-Framework-MVVM-78cdc204
Hope that helps.
Recent Technet articles: Property List Editing;
Dynamic XAML

Similar Messages

  • Updating a XML document with a processing instruction

    Greetings Guru's
    I have a fully functional XML database solution for our new system. The only thing left is for me to update a xml document in the database with a processing instruction to find the style sheet (JAXB strips it out when the XML must go back into the database).
    I can update complete nodes and node elements in the xml document using updateXML in a regular update statement, but I do not know how to add the following processing instruction to my documents.
    <?xml-stylesheet type="text/xsl" href="/RASWEB/JIT_REPORT.xslt"?>
    [pre]
    Thanks in advance
    Derrick                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    SQL> var xmltext varchar2(4000)
    SQL> --
    SQL> begin
      2    :xmlText := '<Hello>World</Hello>';
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> drop table t
      2  /
    drop table t
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> create table t of xmltype
      2  /
    Table created.
    SQL> set long 10000
    SQL> --
    SQL> insert into t values (xmltype(:xmltext))
      2  /
    1 row created.
    SQL> select *
      2    from t
      3  /
    SYS_NC_ROWINFO$
    <Hello>World</Hello>
    SQL> update t set object_value = updateXML
      2                              (
      3                                object_value,
      4                                '/',
      5                                xmlconcat
      6                                (
      7                                  xmlpi("xml-stylesheet",'type="text/xsl" href="/RASWEB/JIT_REPORT.xslt"'),
      8                                  object_value
      9                                )
    10                              )
    11  /
    1 row updated.
    SQL> select * from t
      2  /
    SYS_NC_ROWINFO$
    <?xml-stylesheet type="text/xsl" href="/RASWEB/JIT_REPORT.xslt"?>
    <Hello>World</Hello>
    SQL>

  • XmlDataProvider .... is gone completely in my Xaml file. Why? How many different ways to deal with xml data source through WPF

    I followed a procedure described in a book.
    1. insert "Inventory.xml" file to a project "WpfXmlDataBinding" .
    2. add the XML data source through the data panel of "blend for 2013", named it "InventoryXmlDataStore" and store it in the current document.
    3. dragged and droppped the nodes from the Data panel onto the artboard.
    Then I checked my Xaml file against the one provided by the book
    Xaml file by the book:
    <Window.Resources>
    <!-- This part is missing in my xaml file --><XmlDataProvider x:Key="InventoryDataSource"
    Source="\Inventory.xml"
    d:IsDataSource="True"/>
    <!-- This part is missing in my xaml file -->
    <DataTemplate x:Key="ProductTemplate">
    <StackPanel>
    <TextBlock Text="{Binding XPath=@ProductID}"/>
    <TextBlock Text="{Binding XPath=Cost}"/>
    <TextBlock Text="{Binding XPath=Description}"/>
    <CheckBox IsChecked="{Binding XPath=HotItem}"/>
    <TextBlock Text="{Binding XPath=Name}"/>
    </StackPanel>
    </DataTemplate>
    </Window.Resources>
    <Grid>
    <ListBox HorizontalAlignment="Left"
    ItemTemplate="{DynamicResource ProductTemplate}"
    ItemsSource="{Binding XPath=/Inventory/Product}"
    Margin="89,65,0,77" Width="200"/>
    </Grid>
    my Xaml file:
    <Window x:Class="WpfXmlDataBinding.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="922" Width="874">
    <Window.Resources>
    <DataTemplate x:Key="ProductTemplate">
    <StackPanel>
    <TextBlock Text="{Binding XPath=@ProductID}"/>
    <TextBlock Text="{Binding XPath=Cost}"/>
    <TextBlock Text="{Binding XPath=Description}"/>
    <CheckBox IsChecked="{Binding XPath=HotItem}"/>
    <TextBlock Text="{Binding XPath=Name}"/>
    </StackPanel>
    </DataTemplate>
    </Window.Resources>
    <Grid DataContext="{Binding Source={StaticResource InventoryXmlDataStore}}">
    <ListBox HorizontalAlignment="Left" Height="370"
    ItemTemplate="{DynamicResource ProductTemplate}"
    ItemsSource="{Binding XPath=/Inventory/Product}"
    Margin="65,55,0,0" VerticalAlignment="Top" Width="270"/>     
        </Grid>
    </Window>
    All looks quite the same except the <XmlDataProvider ....> part under <Window.Resources>, which is gone completely in my Xaml file.
    1, Why?
    2, How many different ways to deal with xml data source through WPF?
    Thanks, guys.
    (ps My "WpfXmlDataBinding" runs without problem through.)

    Never do yourself down Richard.
    Leave that to other people.
    It's quite common for smart developers to think they're not as good as they are.
    I coach a fair bit and it's a surprisingly common feeling.
    And to repeat.
    Never use anything ends .. provider.  They're for trivial demo apps.  Transform xml into objects and use them.  Write it back as xml.  Preferably, use a database.
    You want to read a little mvvm theory first.
    http://en.wikipedia.org/wiki/Model_View_ViewModel
    Whatever you do, don't read Josh Smiths explanation.  I used to recommend it but it confuses the heck out newbies. Leave that until later.
    Laurent Bugnion did a great presentation at mix10.  Unfortunately that doesn't seem to be working on the MS site, but I have a copy.  Download and watch:
    http://1drv.ms/1IYxl3z
    I'm writing an article at the moment which is aimed at beginners.
    http://social.technet.microsoft.com/wiki/contents/articles/30564.wpf-uneventful-mvvm.aspx
    The sample is just a collection of techniques really.
    I have a sample which involves no real data but is intended to illustrate some aspects of how viewmodels "do stuff" and how you use datatemplates to generate UI.
    I can't remember if I recommended it previously to you:
    https://gallery.technet.microsoft.com/WPF-Dialler-simulator-d782db17
    And I have working samples which are aimed at illustrating line of business architecture.  This is an incomplete step by step series but I  think more than enough to chew on once you've done the previous stuff.
    http://social.technet.microsoft.com/wiki/contents/articles/28209.wpf-entity-framework-mvvm-walk-through-1.aspx
    The write up for step2 is work in progress.
    https://gallery.technet.microsoft.com/WPF-Entity-Framework-MVVM-78cdc204
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • API that deals with domain

    We are trying to migrate C++ application to JAVA. I need to find out JAVA api that deals with domain, such as list of user(group) name under one domain, list of all domain controllers...
    Under C++ world, it would be NetUserEnum, NetServerEnum...
    thanks in advance

    Not sure if this is what you are looking for , but give it a look. ..
    http://java.sun.com/products/jndi/overview.html
    http://java.sun.com/products/jndi/tutorial/

  • XML parsing error: xml processing instruction not at start of external entity (error code 17)

    I created a form and recieve the filled in form by email from participants. It has always worked in the past. Recently when importing data into the master form (from filled in forms in xml files sent by applicants) I am getting this error message..."xml processing instruction not at start of external entity (error code 17), line 2, column 1...." pointing to the file of data (xml) I am trying to input.  If I pull up old data forms (from 2009) they work, but now I am getting this error.  I run Adobe Design Premium CS3 for Windows.  Can anyone tell me what to do to fix?

    I created a form and recieve the filled in form by email from participants. It has always worked in the past. Recently when importing data into the master form (from filled in forms in xml files sent by applicants) I am getting this error message..."xml processing instruction not at start of external entity (error code 17), line 2, column 1...." pointing to the file of data (xml) I am trying to input.  If I pull up old data forms (from 2009) they work, but now I am getting this error.  I run Adobe Design Premium CS3 for Windows.  Can anyone tell me what to do to fix?

  • Dealing with XML  as  database

    Hello members,
    My requirement is to deaI with xml totally as a database instead of taking any data base(like oracle etc..).I.e i have to deal with all the operations like update,delete, insert etc to the xml file from my java application.So that my application willl idependent from database.
    I am not finding any information regarding doing update and delete operations from a java application to XML file(the information i am getting is only how to read and write into the XML file ) and i am not able implement all these stufs to my project.
    If any body have any idea help me so that i can move further.
    Thanks
    Mahi

    If you have decided to go ahead with using XML as a d/b then JAXB will be an ideal place to start, at some point you will need to convert XML to java objects and vice versa, then search for the appropriate node in the xml and do delete or update option.
    If you are still pondering over - to use or not to use XML I suggets you to use simple flat files (thats what I do in my project; and it does work fine)
    I store incomming & outgoing SMS in flatfiles (serialized objects). processes like insertion/deletion/update are all done by keeping the file pointer position in memory and I traverse to the exact location (using io.randomAccessFile) of the file and change the record.
    You may try a similar approch in using XML where you may allocate same size for each child node in the XML and mapping each child to a File pointer position in memory and traverse to the exact child to delete/update/insert, so when you make an update - you will actually be writing to a file pointer position in the file and the XML child node will be re-written-over by a new XML data (similar to update in a d/b); when you delete a XML chile node, traverse to that File pointer position and remove it in the file, but that file pointer position remains open/active; where you can write your next record...

  • SAP Solution for Mini steel plant with DRI Process

    Dear all,
    I am a metallurgist who spent couple of years in steel and process Industry and then moved to IT Consulting as SAP consultant / business analyst mainly working in the area of solution designing.
    Here i will like to describe SAP solution for Mini steel plant with DRI proces.
    u201CManufacture Productsu201D Description
    The series of operations performed upon material to convert it from the raw material or a semifinished state to a state of further completion. This includes the establishment and maintenance of a CAPEX plan, the planning, scheduling and execution of production activities, the dispositioning of produced goods, the maintenance of production data, the monitoring of production performance and the implementation of engineering changes.
    u201CManufacture Productsu201D Objectives
    M-010
    Compile 3-year CAPEX Budget     Establish the overall manufacturing goals and metrics that the organization will use to measure performance and progress towards objectives. These goals should be consistent with overall organizational strategy/value propositions. Develop long-term goals for production capabilities and manufacturing. These goals should align with the overall goals and objectives of the organization.
    M-050
    Perform Long Range Production Planning     u201CBudgetingu201D. Long range planning of production quantities based on planned available capacities and known or estimated customer demands. This process may include planning for different capacity and/or demand scenarios. Approved capital expenditures from the 3-year CAPEX budget may influence the budget. Range and frequency for budgeting is yearly.
    M-060
    Perform Medium Range Production Planning     Medium range planning of production quantities based on planned available capacities and known or estimated customer demands. This process may include planning for different capacity and/or demand scenarios.  Range and frequency for planning is quarterly.
    M-070
    Perform Short Range Production Planning     Short term planning of production quantities based on capacities and demands as previously planned in the longer terms, actual customer demand and actual capacities. The result from short range production planning will run into the operational plan for the current and following days.  Range and frequency for planning is monthly.
    M-080
    Schedule Production     This sub-process enables detailed scheduling by resources over the planning horizon. Planned orders that fulfill demands (Stock Transfer Requisitions, Sales Forecasts and Customer Orders defined by due-dates and due-quantities) come from the short range plan. This results in a feasible schedule, optimizing utilization of the production resources. It is based on production process constraints as well as labor resources in order to minimize production costs and also taking into account constraining raw materials availability.
    M-090
    Execute MRP     The purpose of this sub-process is to generate a Materials Requirements Plan (MRP) for all materials, which are produced or purchased. The MRP process involves looking at current material inventory, planned inbound material deliveries, requirements, lead times and stock levels to generate a detailed plan for future material requirements. The materials requirements will be generated with respect to the three planning horizons, short-term, medium-term, and long term. If an over stock of raw materials occurs as a result of a planning change production and marketing personnel will be informed. This would allow for the cancellations of any unneeded shipments.
    M-100
    Perform Setup / Changeover     Perform set-up and changeover activities on production equipment as necessary, to prepare for the production of specific materials/grades. Set-up and changeover activities will enable the production equipment to perform operations on materials, as per the specifications called out on the production order. Ensure time is allocated for first off inspection requirements after changeover.
    M-110
    Execute Production     Insure that the production plan is met by converting raw materials and component supplies into finished and semi-finished products. Batch/lot documentation will be created for individual production orders to provide traceability throughout the process. Each step of the production process is continuously monitored to identify mechanical, quality, and productivity issues and suggest solutions when problems arise. Data collection for performance and financial reporting enables management to take immediate action on manufacturing processes as well as conduct historical analysis.
    M-120
    Perform Quality Management     Quality management refers to the entire supply chain process. Process activities are related to the evaluation and inspection of key characteristics of semi-finished and finished materials. These evaluations are recorded and acted on based on the results. Report/manage internal quality problems or issues. Install and manage quality control systems to insure product quality. For supplier or subcontractor based issues this data should be used as a performance measure during the vendor evaluation process.
    M-130
    Manage Product Disposition     This process ensures those semi-finished and finished products that do not meet quality requirements, are prevented from being used and distributed in good finished product to customer, or released for the next step of the production process. A semi finished product is any material that needs to have another operation on line before being shipped to the customer. Finished goods are defined as any material that can be shipped to a customer; in house produced finished goods, subcontracted materials and trading goods. The information required to make decisions regarding disposition comes from the Quality Management system of each production facility. The first step ensures that raw material and returnable goods are dealt with in another subprocess. The reason for the goods not meeting quality standards is recorded along with the results of any investigation to find the cause of the fault. Information is sent to all other parties who need to know: order fulfillment, inventory management and shipping. The process ensures that the most appropriate action is taken to either dispose of, or rework the goods. Disposal or rework may be either through the original materials supplier or subcontractor, or Mittal Steel Point Lisas.
    M-140
    Maintain Product Related Data     u201CMaterial Master Maintenanceu201D. The Sub-Process 'Maintain Product Related Data' is the list of activities that identify the steps and decision points related to the request for and performance of additions, changes, and deletions to the Material Master file or files. This sub-process begins when a need to create, change or delete a material is identified and ends when the request is either actioned or refused. The sub-process is intended to cover all material types, including finished goods, raw materials, bills of materials, equipment and service, POS, Sundry Items etc. In fact, any product which the company wishes to inventory or purchase. A number of key strategic decisions, including a clear definition of when we issue a new material, will affect this sub-process.
    M-150
    Maintain Production Related Data     u201CMaster Data Maintenanceu201D. This subprocess identifies the activities related to requesting changes or additions to production related master data. Once a need for master data maintenance is identified, a request is submitted for approval. Data defining production capacities and performance standards (e.g. line efficiencies, material yields, etc.) require Corporate level approval prior to maintenance. Other data that is more specific to internal planning functions are maintained at the plant level. Maintenance requests are returned to the originator whether the request is approved or not to improve communication throughout the system. This subprocess may be triggered by: annual operations budgeting process process/production equipment upgrade or replacement change in facility work schedule (i.e. planned hours or days) change in personnel required to operate process/production equipment new products, formulations, or packaging.
    M-160
    Operations Execution Reporting     Gather manufacturing information at various points in the production process. Prepare management reports both at the detailed level for plant management and summary level for senior operations management. Reports will be available on-demand and will include - volume, efficiencies (mechanical, line, and labor), yields, downtime, asset utilization, environmental, safety, quality, and financial data. A major goal of this sub-process is to define a consistent method of calculating operations metrics. Some plants will use line information systems and PCSs to collect information. Not all plants are equipped with these systems and the where they do exist, the level of sophistication varies.
    M-170
    Manage Process Reliability     Optimize capacity by reducing process downtime and ensuring compliance to quality expectations by the reduction of rejects. Install tracking systems to measure line time utilization, quality results, process settings. Conduct root cause analysis, and use the data to develop and implement improved operating procedures.

    Thank you for your prompt response. I'm assuming you are still proposing to use Sales order -> purchase order -> invoice verification -> Customer billing process flow. Is that correct?

  • XML Processing Instructions

    Hi,
    I have two questions about how the XML class in AS3 works.
    First, does the XML class care about the initial processing instruction when created from a string like this?:
    <?xml version="1.0" encoding="UTF-8" ?>
    <painting>
      <img src="madonna.jpg" alt='Foligno Madonna, by Raphael'/>
      <caption>This is Raphael's "Foligno" Madonna, painted in
        <date>1511</date>–<date>1512</date>.
      </caption>
    </painting>
    Second, how can I add that procession instruction to an XML object that I am working with so that toXMLString() returns a string that looks like the above XML? (So that it includes the processing instruction.)

    Hi!
    Normally you won't see processing instructions when working with AS3 and XML but you can change that using the following line of code:
    XML.ignoreProcessingInstructions = false;
    If you will, you can also see your comments by using the following:
    XML.ignoreComments = false;
    I think it's usual to use those lines inside your package body, even before your imports but I think you could have it anywhere else (even outside your package body I think).
    Hope it helps.
    edit: don't forget you can manage those items as a  XMLList too...

  • OSB Proxy Service - ignore XML processing instructions (PIs)

    Hello,
    I've got a proxy service in OSB that takes any XML, transforms it, and passes it through to a business service. i.e. it just has a simple routing node containing something like:
    Route to [ BusinessServiceDB ] invoking [ merge ]
    Replace [ node contents ] of [  undefined XPath  ] in [ body ] with [ XQuery Resource... ]
    This works fine until the XML contains a processing instruction other than the standard XML version one; <?XML...?>. So if the first line (or first line after the XML version, if present) contains a PI (e.g. <?some-app-specific-instruction?>), then the proxy service passes nothing through to the Business Service.
    Well, I guess it assumes that the <?some-app-specific-instruction?> is the entire node contents, and so effectively passes through nothing that matches in the XQuery code...
    Is there a setting or easy way to make OSB globally ignore PIs? Or will I have to do something with the Replace, e.g. define the XPath or variable bindings differently?
    Cheers...

    Thanks, I will do that...once I've found out what our support ID is.
    The problem is easily repeatable in less than five minutes - all you have to do is create an 'Any XML' JMS proxy service (with all settings as defauts), and just have an empty route node in the message flow.
    Then all you do is try the test console with something like "<blah>test</blah>" as the payload; on the results you will see the correct XML inside the soapenv body when you expand: receiving request > Initial Message Context > $body. Then repeat the test with"<?something?><blah>test</blah>", which will only pass through the soapenv:Body tag with no contents.
    I presume this is not expected behaviour? i.e. OSB isn't meant to try the processing instruction, then pass through the results of that? I can't imagine it would...
    Anyway, as I say, I will raise the support request...but if anyone that is on a version above 10.3.1 has time to quickly run this test and let me know the results, I'd be really grateful.

  • Looking for some advice dealing with Kernel Panics

    Hi there! I'm looking for some help regarding constant kernel panics I've been getting on my machine. It has been happening pretty regularly for the last month or so, occuring sometimes three times in one day and other times none. I've been looking to see what might cause the issue and have thus far come up emptyhanded. I can't think of anything I've modified recently that would be causing the issue. I performed a hardware test using AHT and no errors were found. I've included both the most recent report from the panic as well as the EtreCheck report. Any and all advice is appreciated!
    Thanks in advance!
    Anonymous UUID:       D680EEB6-4BD2-B93C-318E-D6D262CA3B53
    Mon Apr 28 17:28:08 2014
    panic(cpu 0 caller 0xffffff7f875b6fb0): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff811c014000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.35/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80f57cb140 : 0xffffff8005222fa9
    0xffffff80f57cb1c0 : 0xffffff7f875b6fb0
    0xffffff80f57cb290 : 0xffffff7f85c94eab
    0xffffff80f57cb350 : 0xffffff7f85d5e49a
    0xffffff80f57cb390 : 0xffffff7f85d5e50a
    0xffffff80f57cb400 : 0xffffff7f85fdd056
    0xffffff80f57cb530 : 0xffffff7f85d81b39
    0xffffff80f57cb550 : 0xffffff7f85c9b8fd
    0xffffff80f57cb600 : 0xffffff7f85c99408
    0xffffff80f57cb800 : 0xffffff7f85c9a386
    0xffffff80f57cb8e0 : 0xffffff7f86c0c9c2
    0xffffff80f57cb920 : 0xffffff7f86c1c37f
    0xffffff80f57cb940 : 0xffffff7f86c4a33b
    0xffffff80f57cb980 : 0xffffff7f86c4a39b
    0xffffff80f57cb9c0 : 0xffffff7f86c21e15
    0xffffff80f57cba10 : 0xffffff7f86bedb5e
    0xffffff80f57cbaa0 : 0xffffff7f86be9ae7
    0xffffff80f57cbad0 : 0xffffff7f86be7636
    0xffffff80f57cbb00 : 0xffffff80056cbe03
    0xffffff80f57cbb90 : 0xffffff80056cdcff
    0xffffff80f57cbbf0 : 0xffffff80056cb81f
    0xffffff80f57cbd40 : 0xffffff80052b6558
    0xffffff80f57cbe50 : 0xffffff8005226bf1
    0xffffff80f57cbe80 : 0xffffff80052139f5
    0xffffff80f57cbef0 : 0xffffff800521e043
    0xffffff80f57cbf70 : 0xffffff80052c976d
    0xffffff80f57cbfb0 : 0xffffff80052f3b46
          Kernel Extensions in backtrace:
             com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f85c45000->0xffffff7f85eadfff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f858bb000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[999E29DA-D513-3544-89D1-9885B728A098]@0xff ffff7f85c35000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85b28000
             com.apple.nvidia.classic.NVDANV50HalTesla(8.2.4)[B0E6AAA7-E970-3D81-8B43-145D56 A3A4AC]@0xffffff7f85eb8000->0xffffff7f86161fff
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f85c45000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f858bb000
             com.apple.driver.AppleMuxControl(3.4.35)[1BFF66C1-65E4-3BB3-9DEE-B61C3137019B]@ 0xffffff7f875a9000->0xffffff7f875bbfff
                dependency: com.apple.driver.AppleGraphicsControl(3.4.35)[09897896-ACBD-36B5-B1D4-0CCC4000E 3B3]@0xffffff7f875a1000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7f85bdd000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f858bb000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85b28000
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[E04639C5-D734-3AB3-A682-FE66694C66 53]@0xffffff7f875a4000
             com.apple.GeForceTesla(8.2.4)[B6C71E9A-E304-354B-80AD-C69C9032D367]@0xffffff7f8 6bcc000->0xffffff7f86c96fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f858bb000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[999E29DA-D513-3544-89D1-9885B728A098]@0xff ffff7f85c35000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85b28000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f85c45000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    13C64
    Kernel version:
    Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Kernel UUID: 9FEA8EDC-B629-3ED2-A1A3-6521A1885953
    Kernel slide:     0x0000000005000000
    Kernel text base: 0xffffff8005200000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 31531656545358
    last loaded kext at 27797939824574: com.apple.driver.AppleUSBCDC          4.2.1b5 (addr 0xffffff7f876b9000, size 20480)
    last unloaded kext at 27858255752654: com.apple.driver.AppleUSBCDC          4.2.1b5 (addr 0xffffff7f876b9000, size 16384)
    loaded kexts:
    com.splashtop.driver.SRXFrameBufferConnector          1.5
    com.avatron.AVExFramebuffer          1.7
    com.splashtop.driver.SRXDisplayCard          1.5
    com.Cycling74.driver.Soundflower          1.5.2
    com.avatron.AVExVideo          1.7
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.2.3f10
    com.apple.driver.AGPM          100.14.15
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleMikeyDriver          2.6.0f1
    com.apple.driver.AppleHDA          2.6.0f1
    com.apple.driver.AppleIntelHDGraphics          8.2.4
    com.apple.driver.AppleIntelHDGraphicsFB          8.2.4
    com.apple.GeForceTesla          8.2.4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.AppleMuxControl          3.4.35
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.SMCMotionSensor          3.0.4d1
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.driver.AppleIRController          325.7
    com.apple.driver.AppleUSBCardReader          3.4.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.iokit.SCSITaskUserClient          3.6.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.5.1
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleUSBHub          666.4.0
    com.apple.driver.AppleAHCIPort          3.0.0
    com.apple.iokit.AppleBCM5701Ethernet          3.8.1b2
    com.apple.driver.AppleUSBEHCI          660.4.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.1
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.AppleGraphicsDeviceControl          3.4.35
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOBluetoothFamily          4.2.3f10
    com.apple.driver.DspFuncLib          2.6.0f1
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.5fc2
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.iokit.IOFireWireIP          2.2.6
    com.apple.driver.AppleHDAController          2.6.0f1
    com.apple.iokit.IOHDAFamily          2.6.0f1
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleGraphicsControl          3.4.35
    com.apple.nvidia.classic.NVDANV50HalTesla          8.2.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.nvidia.classic.NVDAResmanTesla          8.2.4
    com.apple.iokit.IONDRVSupport          2.4.1
    com.apple.iokit.IOGraphicsFamily          2.4.1
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.7.0d10
    com.apple.driver.AppleSMC          3.1.8
    com.apple.driver.AppleUSBMultitouch          240.9
    com.apple.iokit.IOUSBHIDDriver          660.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.6
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.driver.CoreStorage          380
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.6
    com.apple.iokit.IO80211Family          630.35
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.iokit.IOUSBUserClient          660.4.2
    com.apple.iokit.IOEthernetAVBController          1.0.3b4
    com.apple.driver.mDNSOffloadUserClient          1.0.1b5
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOUSBFamily          675.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    com.apple.kec.pthread          1
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463531323634485A2D3147314431
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463531323634485A2D3147314431
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.3f10 13477, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: Hitachi HTS725050A9A362, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub
    USB Device: iPhone
    USB Device: Built-in iSight
    USB Device: IR Receiver
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Internal Memory Card Reader
    Thunderbolt Bus:
    EtreCheck:
    Hardware Information:
              MacBook Pro (15-inch, Mid 2010)
              MacBook Pro - model: MacBookPro6,2
              1 2.66 GHz Intel Core i7 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics - VRAM: 288 MB
              NVIDIA GeForce GT 330M - VRAM: 512 MB
    System Software:
              OS X 10.9.2 (13C64) - Uptime: 0 days 0:8:28
    Disk Information:
              Hitachi HTS725050A9A362 disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        disk0s2 (disk0s2) <not mounted>: 499.25 GB
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Inc. iPhone
              Apple Inc. Built-in iSight
              Apple Computer, Inc. IR Receiver
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Internal Memory Card Reader
    Thunderbolt Information:
    Configuration files:
              /etc/hosts - Count: 7
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [kext loaded] com.Cycling74.driver.Soundflower (1.5.2) Support
              [kext loaded] com.avatron.AVExFramebuffer (1.7 - SDK 10.8) Support
              [kext loaded] com.avatron.AVExVideo (1.7 - SDK 10.8) Support
              [kext loaded] com.splashtop.driver.SRXDisplayCard (1.5 - SDK 10.8) Support
              [kext loaded] com.splashtop.driver.SRXFrameBufferConnector (1.5 - SDK 10.8) Support
              [not loaded] foo.tap (1.0) Support
              [not loaded] foo.tun (1.0) Support
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.adobe.SwitchBoard.plist Support
              [loaded] com.barebones.authd.plist Support
              [loaded] com.barebones.textwrangler.plist Support
              [loaded] com.bitcasa.BitcasaUpdateCheck.plist Support
              [running] com.cleverfiles.cfbackd.plist Support
              [loaded] com.google.keystone.daemon.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [loaded] com.oracle.java.JavaUpdateHelper.plist Support
              [loaded] com.realvnc.vncserver.plist Support
              [failed] com.splashtop.streamer.SRServiceDaemon.plist Support
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.CS5ServiceManager.plist Support
              [running] com.amazon.sendtokindle.launcher.plist Support
              [failed] com.bitcasa.BitcasaUI.plist Support
              [loaded] com.google.keystone.agent.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
              [loaded] com.realvnc.vncserver.peruser.plist Support
              [not loaded] com.realvnc.vncserver.prelogin.plist Support
              [failed] com.splashtop.streamer.SRServiceAgent.plist Support
              [running] klpr-relay.plist Support
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.facebook.videochat.[redacted].plist Support
              [running] com.pando.PMB.plist Support
              [failed] com.ruudburger.couchpotatoserver.plist Support
              [failed] com.ruudburger.headphones.plist Support
              [loaded] com.valvesoftware.steamclean.plist Support
    User Login Items:
              runapp.command
              Dropbox
              Alfred 2
    Internet Plug-ins:
              o1dbrowserplugin: Version: 5.3.0.18358 Support
              Default Browser: Version: 537 - SDK 10.9
              SlingPlayer: Version: (null) Support
              net.juniper.DSSafariExtensions: Version: (null) Support
              AdobePDFViewerNPAPI: Version: 10.1.9 Support
              FlashPlayer-10.6: Version: 13.0.0.206 - SDK 10.6 Support
              Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.206 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0 - SDK 10.8
              CitrixICAClientPlugIn: Version: 11.4.3 - SDK 10.0 Support
              googletalkbrowserplugin: Version: 5.3.0.18358 Support
              AdobePDFViewer: Version: 10.1.9 Support
              PandoWebPlugin: Version: PandoWebPlugin 2.3.3.8 Support
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.2.1 - SDK 10.6 Support
              JavaAppletPlugin: Version: Java 7 Update 51 Check version
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              Move-Media-Player: Version: npmnqmp 071706000001 Support
    3rd Party Preference Panes:
              Flash Player  Support
              Java  Support
              Perian  Support
    Time Machine:
              Skip System Files: YES - System files not being backed up
              Auto backup: YES
              Volumes being backed up:
              Destinations:
                        MyBook [Local]
                        Total size: 2 
                        Total number of backups: 2
                        Oldest backup: 2012-08-22 09:59:19 +0000
                        Last backup: 2013-05-08 19:40:47 +0000
                        Size of backup disk: Excellent
                                  Backup size 2  > (Disk size 0 B X 3)
                        Time Machine Backups [Local] (Last used)
                        Total size: 0 B
                        Total number of backups: (null)
                        Size of backup disk: Excellent
                                  Backup size 0 B > (Disk size 0 B X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                 100%          Microsoft Word
                   3%          WindowServer
                   2%          mdworker
                   2%          Google Chrome
                   0%          fontd
    Top Processes by Memory:
              246 MB          iTunes
              180 MB          Google Chrome
              172 MB          WindowServer
              156 MB          com.apple.IconServicesAgent
              131 MB          Microsoft Word
    Virtual Memory Information:
              3.54 GB          Free RAM
              2.59 GB          Active RAM
              730 MB          Inactive RAM
              1.15 GB          Wired RAM
              475 MB          Page-ins
              0 B          Page-outs

    The likely culprit:
    The problem is likely due to the discreet GPU failing. Download gfxCardStatus 2.3 and use it to disable the GPU. This is a temporary workaround until you get your motherboard replaced.
    Possible other causes are the software that installed these:
    com.splashtop.driver.SRXFrameBufferConnector          1.5
    com.avatron.AVExFramebuffer          1.7
    com.splashtop.driver.SRXDisplayCard          1.5
    com.avatron.AVExVideo          1.7
    Now they may be causing panics because the try to use acceleration in the GPU which leads to the panics. You are unlucky to have a particular model that has a real problem with this.

  • Which path will be the perfect in MCSD for me to deal with SQL Server Stuff ?

    I intended to be a SQL Server developer and Administrator , but I planning to take MCSD before MCSA SQL Server 2012 , to help me to developing a full solutions to any database system , but I found MCSD certificate had more than one path 
    First Path
    MCSD: Windows Store Apps Using C# :
    Exam 70-483 
     - Manage program flow (25%)
     - Create and use types (24%)
     - Debug applications and implement security (25%)
     - Implement data access (26%)
    Exam 70-484
     - Design Windows Store apps (20-25%)
     - Develop Windows Store apps (15-20%)
     - Create the user interface (20-25%)
     - Program the user interaction (20-25%)
    Manage security and data (20-25%)
    Exam 70-485
     - Develop Windows Store apps (15–20%)
     - Discover and interact with devices (15–20%)
     - Program user interaction (15–20%)
     - Enhance the user interface (15–20%)
     - Manage data and security (15–20%)
     - Prepare for a solution deployment (15–20%)
    Second Path
    MCSD: Web Applications
    Exam 70-480
     - Implement and manipulate document structures and objects (24%)
     - Implement program flow (25%)
     - Access and secure data (26%)
     - Use CSS3 in applications (25%)
    Exam 70-486
     - Design the application architecture
     - Design the user experience
     - Develop the user experience
     - Troubleshoot and debug web applications
     - Design and implement security
    Exam 70-487
     - Accessing data (24%)
     - Querying and manipulating data by using the Entity Framework (20%)
     - Designing and implementing WCF Services (19%)
     - Creating and consuming Web API-based services (18%)
     - Deploying web applications and services (19%)
    The question now which path I must take before I delve into MCSA SQL Server 2012 will help me more in the database world and sharp my skills as a database developer and administrator in the future and  will help me to create or develope a full solutions
    to any database system in the future , and also this path will be related more to database world and more valuable in the job market
    In other words, Which path contain alot of work with databases and SQL stuff , will help me in SQL Server , Please Help
    Mohamed Ahmed Database Administrator & Developer

    Hi, MohamedDBA.
    I agree with Horizon_Net that the MCSD: Web Applications certification would be best for your certification goals. Especially since you are concerned with becoming certified in the future of database development technologies.
    Specifically, the 70-487 certification exam covers programming with WCF (for data access over the internet/intranet), Entity Framework (for data access anywhere), Web API (REST Services for data access over the internet/intranet), and Microsoft Azure
    (for hosting databases, applications, and much more in the cloud). Most likely, you will be managing SQL Server databases in the cloud in your future.
    I highly recommend that you swap 70-483 for 70-480, which will still count for the
    MCSD: Web Applications certification. The 70-483 C# programming exam will be really useful while studying the C# language, which is used by the 70-486 and 70-487 exams. As well, just by passing this one exam, you will earn the title
    Specialist: Programming in C# title. Here are the details (including the ability to swap the two exams, under
    Additional Options) for this MCSD title:
    http://www.microsoft.com/learning/en-us/mcsd-web-apps-certification.aspx
    I must warn you that the MCSA: SQL Server certification will require you to pass the 70-643 exam. It includes content on Microsoft Business Intelligence tools. Specifically, the 70-463 exam requires you to know SQL Server Integration Services
    (SSIS) and SQL Server Analysis Service (SSAS). Here are the details:
    http://www.microsoft.com/learning/en-us/exam-70-463.aspx
    Please know that the MCSA: SQL Server exams are based on SQL Server 2012 and will remain about SQL Server 2012. Only the four (MCSE) exams (two for each MCSE SQL Server title) are going to be updated to SQL Server 2014 in April 24th, 2014. Here are the details
    from Larry Kaye (Microsoft employee):
    http://borntolearn.mslearn.net/btl/b/weblog/archive/2014/03/10/certification-update-sql-server-2014.aspx
    Good luck!
    Best wishes, Davin Mickelson

  • Keychain services API and dealing with Keychains other than the default

    Hello,
    So I've been doing some C work with the Keychain services API. But I can't figure out how to set the Keychain for a function to something other than the default, which is set by passing NULL.
    For example,
    status = SecKeychainAddGenericPassword (
    *NULL, // default keychain*
    10, // length of service name
    "SurfWriter", // service name
    10, // length of account name
    "MyUserAcct", // account name
    passwordLength, // length of password
    password, // pointer to password data
    NULL // the item reference
    This function is defined here:
    http://developer.apple.com/documentation/Security/Reference/keychainservices/Ref erence/reference.html#//apple_ref/c/func/SecKeychainAddGenericPassword
    and the data type for the Keychain is here:
    http://developer.apple.com/documentation/Security/Reference/keychainservices/Ref erence/reference.html#//appleref/doc/cref/SecKeychainRef
    But neither helps me at all for being able to edit a keychain that isn't the default Keychain.
    I appreciate any help, thanks.
    Message was edited by: Smerky

    http://developer.apple.com/documentation/Security/Reference/keychainservices/Ref erence/reference.html#//apple_ref/c/func/SecKeychainOpen

  • Despite the solution given in the forum, I can't get .jpg listed in the filetype listing for how to deal with various filetypes.

    Whenever I click on a .jpg link, the picture opens in Firefox. I want to use a different program, but I can't change it because .jpg does not appear in the list of filetypes for which you can specify actions. I realize there is an answer in the Firefox forum, but I never get the option box that asks me what to do with the file, so I can't get to the "Do this for all such filetypes" checkbox. Help!

    JPEG images are viewed as normal browser content and do not generate an Open/Save/Cancel dialog unless the site sends a special header indicating that it should be treated as a download (disposition=attachment instead of inline).
    To ''save'' the image, your best built-in option is to right-click the image and use Save Image As, or if it's a link to an image, right-click the link and Save Link As.
    But to launch the image in a different program, I can't think of a built-in feature that can do this, so you probably need an add-on.
    For example, I see there are extensions to open an image in PhotoShop or Fireworks:
    * https://addons.mozilla.org/firefox/addon/open-with-photoshop/
    * https://addons.mozilla.org/firefox/addon/open-in-fireworks/
    If those programs are not relevant, hopefully there is a more general purpose extension on the site that fits your needs.

  • Cannot change the email address where Apple sends "help for resetting info dealing with security questions".  Won't allow change.

    I have forgotten the answer to one of two My Apple ID security questions.  Apple has supplied the solution to that problem online in Edit Your Apple ID.   I would be happy to follow those instructions, except......the only email address the Edit Your Apple ID page will allow me is one that has not been functional for over a year.  There are no options for changing that recovery email address since I only have two security questions, not three, as Apple specifies. Neither can I find an option for switching to the two-stage verification process---although I would rather not do this.  I recently edited my email addresses in My Apple ID on my Sony Vaio laptop in an effort to alleviate the problem, but it didn’t help. I use the Apple ID on an iPad (4th gen Wi-Fi + Cellular MM) and two iPhone 5 (IOS 8).  Does anyone have suggestions? Feel that I've read through all the fine print and cannot locate an answer.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (113199)

  • How is the deal with replacements process?

    you all know that iphone 5 came out of industies with defects can i go to any store and change my iphone 5 to iphone 5 c or 5s?info me about all the proces i want to know

    My wife and I each have iphine 5 and so do both my daughters and their husbands. That's 6 all together and non have been defective in any way.
    If your phone has a defect covered by the warranty it will be replaced with and identical model or repaired.
    If the phone is out of warranty or the problem is not covered by the warranty then you can arrange to pay a fee for an out of warranty replacement. Again, the phone will be replaced with an identical model.

Maybe you are looking for

  • Apps exist but can only find them thru Search

    I have an iPhone 4S with nearly 400 apps on it.  Until recently, those apps were arranged in 11 neat pages of icons and folders.  Then this happened: 1.  I updated to IOS 6.  All seemed well. 2.  Tired of opening folders for some apps, I decided to m

  • Purchase Requisition restriction at Material Type level

    Hi MM Guru's as per Client requirment we want to restrict the Purchase Requisition creation at Material type level (i.e system should raise the error messege when we try to create the PR against Finished Goods) is that possible if yes how can we rest

  • Difference in payment terms

    Hi thr, I am looking for a txn or a report which when executed gives the customer nos. that have different payment terms in company code data and sales data. Is there any such txn or is thr a way to acheive it? Thanks so much !!

  • CES/CEP in Intranet with single forest

    In which scenario CES/CEP are preferred over Certificate Request Wizard (or alternatives) for requesting certificates when in Intranet with single forest? I have read article http://social.technet.microsoft.com/wiki/contents/articles/7734.certificate

  • JSF1.2 and validation

    Hi, I am a newbie to JSF, but I noticed (based on the book I am going though) that validation and validation messages are much better handled in 1.2, in comparison to 1.1. For example, you now get:      Amount: Validation Error: Value is required. In