Modifying and reading the WSDL file

I�ve got some questions about modifying and reading the WSDL file:�
READING
I want to read the elements of a determinated type (for example, documentation) from an WSDL that is in an URI. How can I do it?
I�ve been trying with the api from IBM WSDL4J, but I wasnt able to create an Element from type "documentation" to search it (if that is the way...)
MODIFYING
How can I insert in an WSDL file a new element (for example documentation) in an exactly place?
Any help is grateful,
Thanks in advance
Gobellot

The problem is I want to insert documentation elements (and that is not done automatically by the jwsdp (unless i dont know how to do it, please tell me if there is a way) and I want to interpret too some things from the documentation elements so I have to read it separately because de wsdltojava doesnt do anything special for that.
thanks anyway
Gobellot

Similar Messages

  • Not able to read the wsdl file from server Premature EOF encounter

    Hi All,
    I am facing issue while accessing a web Service from server. Here is the clear view about it.
    I created a simple SyncBpel process in a composite and deployed in to the server and it is working fine. Later i created a new Asyn bpel process in a composite and in the external reference i dragged a web Service and imported the wsdl url from server of the SyncBpel and wired the Asynbpel process to webserive .
    Now here i am facing peculiar behavior which i am not able to trace it out.
    1) For the first time when i import the url of syncBpel from the server i am not facing any error and it is working fine as expected but when i close the Jdeveloper and open it i am not able to user the web Service and it is saying as "Not able to read the wsdl file from server Premature EOF encounter"
    2)When i close and open the Jdeveloper i can see the url of the wsdl which imported in webserver is changing from http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/bpelsync_client_ep?WSDL to http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/BPELsync.wsdl
    3)when I open and see the url http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/bpelsync_client_ep?WSDL I can see the soap address as *<soap:address location="http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel!1.0*soa_5cfb8416-c106-40a2-a53b-9054bbe04b9c/bpelsync_client_ep"/>*
    I don’t understand why the soap end contains “*soa_5cfb8416-c106-40a2-a53b-9054bbe04b9c” and this kind of url for soap address is coming to all the bpel process which I am deploying in the server.
    I checked the in Jdeveloper where webproxy is uncheck and the server is also up but still I am facing issue of reading the error.
    Can someone please help in resolving the issue.
    I am using SOA 11g 11.1.1.5 and Jdeveloper 11.1.1.5
    Many thanks.
    Tarak
    Edited by: user11896572 on Jan 17, 2012 5:22 PM

    Hi,
    Setting default from the jdeveloper -
    During composite deployment from Jdeveloper (wizard driven), you will be given an option to choose the version of the composite and there will also be an option for you to choose if the composite needs to be deployed as default.
    Setting default from the em console -
    After deploying a composite, login to the em console and click on the composite that you want to set as default, and you will find a tab - "Set as Default". please note that this tab will not be seen, if the composite is already set as default.
    Refer -
    http://docs.oracle.com/cd/E12839_01/integration.1111/e10226/soacompapp_mang.htm
    8.2 Managing the State of Deployed SOA Composite Applications
    Thanks

  • Cfspreadsheet and reading the xlsx files issue

    I am trying to process large excel files (65,000 rows) into the DB.  So I try to use the new cfspreadsheet tag to read in the files by 5000 rows at a time and then process the query into the tables.  The process is working fine when reading the (pre 2003 format "xls" files) but not when reading the new "xlsx" type of files.  The server is running out of memory trying to read those files for some reason.  Is this a known bug in ColdFusion 9.0??  Has anyone experiansed similar issues?
    Thanks

    if it's a POI issue (not likely, admittedly), of CF's
    usage thereof.
    If you check the POI archives, you should see a LOT of memory issues with large xlsx files. Usually related to how the file is processed. IIRC the standard way of loading a spreadsheet ie new XSSFWorkbook(name) just reads the whole file into memory in one shot. So with all the bloated xml and parsing going on it is very prone to OOM errors.
    For big files, they actually recommend using the event api instead, because of its lower footprint. I used it a couple months ago for a side project and it made a huge difference!  I did some basic profiling and the standard method (usermodel) was definitely more prone to big spikes in memory and oom errors. In contrast, memory usage with event api was far lower and more stable.
    Reason for bringing this all of this up ...? Well depending on how CF actually reads/loads spreadsheets internally, maybe the problem is a little bit of both .. ?  Just my $0.02
    -Leigh
    Message was edited by: -==cfSearching==-

  • JXRPC: reading the wsdl file

    Hi, this is probably a daft quetion so bare with me !
    Ive got a small jaxrpc DII client working which looks like this
    QName serviceName = new QName("http://www.xmethods.net/sd/CurrencyExchangeService.wsdl", "CurrencyExchangePort");
    ServiceFactory factory = ServiceFactory.newInstance();
    Service service = factory.createService(serviceName);
    Call call = service.createCall();
    QName operationName = new QName("urn:xmethods-CurrencyExchange","getRateRequest");
    call.setOperationName(operationName);
    call.addParameter("country1",XMLType.XSD_STRING,String.class,ParameterMode.IN);
    call.addParameter("country2",XMLType.XSD_STRING,String.class,ParameterMode.IN);
    call.setReturnType(XMLType.XSD_FLOAT);
    call.setProperty(Call.OPERATION_STYLE_PROPERTY,"rpc");
    Call.ENCODINGSTYLE_URI_PROPERTY,"http://schemas.xmlsoap.org/soap/encoding/");
    call.setTargetEndpointAddress("http://services.xmethods.net:80/soap");
    Object[] actualArgs ={"Spain","France"};
    Float rate = (Float) call.invoke(actualArgs);
    System.out.println("Rate = '"+rate+"'");
    .... which is fine and working ok.
    However, instead of having the input / output parameters hard coded in the client is it not possible to read the wsdl document and dynamically calculate what input / output parameters are required? and then prompt the user for them? (In the same way that quickTry by binding point works http://www.bindingpoint.com/quicktryv2.aspx )
    Hope someone can point me in the right direction. Many thanks

    Kathy,
    Thanks for your response! Im now having a different problem which Im positive is something really daft..
    This is the client code now using the method you suggested
    ServiceFactory factory = ServiceFactory.newInstance();
    Service service = factory.createService(new URL("http://www.xmethods.net/sd/2001/BNQuoteService.wsdl"), new QName("http://www.xmethods.net/sd/BNQuoteService.wsdl","BNQuoteService"));
    Call[] calls = service.getCalls(new QName("http://www.xmethods.net/sd/BNQuoteService.wsdl","BNQuotePort"));
    calls[0].setTargetEndpointAddress("http://services.xmethods.net:80/soap/servlet/rpcrouter");
    System.err.println("operation = " calls[0].getOperationName().getLocalPart() " ");
    System.err.println("is in/out required = " calls[0].isParameterAndReturnSpecRequired(calls[0].getOperationName()) " ");
    System.err.println("param type = "+calls[0].getParameterTypeByName("isbn").getLocalPart());
    System.err.println("target Endpoint = "+calls[0].getTargetEndpointAddress());
    Object[] actualArgs = {"`"};
    String sReturn = ""+ calls[0].invoke(actualArgs);
    System.out.println("result = "+sReturn+" ");
    the output Im getting sugests that the wsdl doc is being read successfully however it still falls over on the invoke() call.....
    operation = getPrice
    is in/out required = false
    param type = string
    target Endpoint = http://services.xmethods.net:80/soap/servlet/rpcrouter
    java.rmi.ServerException: service 'http://www.xmethods.net/sd/BNQuoteService.wsdl' unknown
         at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:372)
         at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:224)
         at com.sun.xml.rpc.client.dii.CallInvokerImpl.doInvoke(CallInvokerImpl.java:61)
         at com.sun.xml.rpc.client.dii.BasicCall.invoke(BasicCall.java:446)
         at com.isa.utils.JAXRPCUtils.test2(JAXRPCUtils.java:39)
         at com.isa.utils.JAXRPCUtils.main(JAXRPCUtils.java:258)
    any ideas ?

  • WSIL-Servlet cannot read existing WSDL-Files

    I've posted this question before in the adapters-forum, but the longer i think over it, i am sure that it belongs to this forum. So i'd like to apologize for cross-posting this one.
    I've installed SoaSuite 10.1.3.3 and OracleAdapters 10.1.3.1 with the SAP/mySAP-Adapter. I configured a jca-Connection to an existing SAP-Applicationserver. I was able to publish BAPI_COMPANYCODE_GETLIST as a webservice. Executing it using http://hostname/iwafjca/service.jsp also worked fine. I was also able to configure a BPEL-Process in jdeveloper with an invocation of the Service and deploy it to the SoaSuite-Applicationserver. I also was able to execute that process with the desired result.
    But since i restarted the SoaSuite the execution within the BPEL-Engine no longer works. The same is with the Service-Explorer inside jdeveloper: When i open the according Adapter-Services-Node and go down to <connection-name> > adapters > applications i only find "Exception: No services found". The iwafjca-URL still works. I've searched through some Logfiles and found the following Lines in $ORACLE_HOME/opmn/default_group~home~default_group~1.log:
    2007-12-10 14:52:22,098> <INFO> <collaxa> <ServerManager::loadProcesses> Done loading processes for all domains
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> IN X WSIL Registry the url /adapters/applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> string processing url /adapters/applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> the start key 0the end key 9
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> Delegating to the browser with key adapters with url /applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> IN X WSIL Registry the url /applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> string processing url /applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> the start key 0the end key 13
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> Delegating to the browser with key applications with url /BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> string processing url /BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> the start key 0the end key -1
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> Sub dir null
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> processURL BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> >>>>><<<<<<<< Fiel name BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> >>>>><<<<<<<< Trying to read the wsdl file stored at:null\BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    07/12/10 14:53:25 java.io.FileNotFoundException: null\BAPI_COMPANYCODE_GETLIST_invoke.wsdl (Das System kann den angegebenen Pfad nicht finden) (on english something like: System cannot find the Path specified)
    07/12/10 14:53:25      at java.io.FileInputStream.open(Native Method)
    Apparently the URL, which the WSIL-Servlet uses is null instead of something like http://servername/.../.
    Does anyone know about this error and can point me out what to do to 'persist' the WSDLs within the WSIL-Servlet?
    Thank you very much
    Magnus

    Did you try to redeploy all your projects. somehow some files from your project are missing. ( at this moment I haven't got an explanation for this ).

  • How to set input/output "use" attribute in the WSDL file of BPEL process?

    Hello,
    I have a BPEL process that I want to deploy it as an RPC web service. I want to access it from a Java module (via an automatic generated Java stub from the WSDL file exposed by the BPEL process).
    I wrote manually the corresponding WSDL file for my BPEL process, where I stipulated for the operations exposed by my process ( in <soap:binding> tag) the value of the attribute "style" to "rpc". Also, for each <input> and <output> of the operations (inside the <operation> tag), I set manually the attributes "use" to the values "encoded". Something like this:
    <operation name="getCustomers">
    <soap:operation style="rpc" soapAction="getCustomers"/>
    <input>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="Trial"/>
    </input>
    <output>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="Trial"/>
    </output>
    </operation>
    The issue is that, when the BPEL process is built and deployed, the WSDL file generated automatically by BPEL (based on the one manually writen) set the values of the "use" attributes to "literal". This is what is generated:
    <operation name="getCustomers">
    <soap:operation style="rpc" soapAction="getCustomers" />
    <input>
    <soap:body use="literal" namespace="http://acm.org/samples" />
    </input>
    <output>
    <soap:body use="literal" namespace="http://acm.org/samples" />
    </output>
    </operation>
    Is there any chance to keep the original values (written by hand) for the "use attributes?
    Many thanks in advance!
    Regards,
    Marinel

    I am not sure I understand your question. If you want all your BPEL service to be rpc still by default, you can change the templates: C:\eclipse\plugins\bpelz_0.9.XXX\templates.
    The BPEL PM engine support both style of invocation.
    I hope this helps. -Edwin

  • How to login to a remote (FTP??) server and read an XML file?

    Hello all,
    I would like some information on how to login to a remote server using a Java program.
    The server might be a ftp server, because the client will ftp a xml file to this server, and the java program needs to login to this server and read the xml file, then convert it into a general report with headings and data from the xml file.
    How can I quickly find the API information to login to a server and read an xml file?
    If anyone knows the packages off the top of their heads, that would save me some time surfing.
    If anyone can provide me some links, code examples, or information I'd greatly be thankful.
    sharla

    You can also just use plain java.net. It supports FTP. Example:URL u = new URL("ftp://user:passwd@server/path/to/file.xml");
    InputStream in = u.openStream();
    // do what you want ...

  • Writing the file using Write to SGL and reading the data using Read from SGL

    Hello Sir, I have a problem using the Write to SGL VI. When I am trying to write the captured data using DAQ board to a SGL file, I am unable to store the data as desired. There might be some problem with the VI which I am using to write the data to SGL file. I am not able to figure out the minor problem I am facing.  I am attaching a zip file which contains five files.
    1)      Acquire_Current_Binary_Exp.vi -> This is the VI which I used to store my data using Write to SGL file.
    2)      Retrive_BINARY_Data.vi -> This is the VI which I used to Read from SGL file and plot it
    3)      Binary_Capture -> This is the captured data using (1) which can be plotted using (2) and what I observed is the plot is different and also the time scare is not as expected.
    4)      Unexpected_Graph.png is the unexpected graph when I am using Write to SGL and Read from SGL to store and retrieve the data.
    5)      Expected_Graph.png -> This is the expected data format I supposed to get. I have obtained this plot when I have used write to LVM and read from LVM file to store and retrieve the data.
    I tried a lot modifying the sub VI’s but it doesn’t work for me. What I think is I am doing some mistake while I am writing the data to SGL and Reading the data from SGL. Also, I don’t know the reason why my graph is not like (5) rather I am getting something like its in (4). Its totally different. You can also observe the difference between the time scale of (4) and (5).
    Attachments:
    Krishna_Files.zip ‏552 KB

    The binary data file has no time axis information, it is pure y data. Only the LVM file contains information about t(0) and dt. Since you throw away this information before saving to the binary file, it cannot be retrieved.
    Did you try wiring a 2 as suggested?
    (see also http://forums.ni.com/ni/board/message?board.id=BreakPoint&message.id=925 )
    Message Edited by altenbach on 07-29-2005 11:35 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    Retrive_BINARY_DataMOD2.vi ‏1982 KB

  • Powershell script - how to read a registry hive and store the value in text file and then again read the text file to write the values back in registry

    Hi All,
    powershell script Method required to read a value from registry and then taking the backup of that values in some text file.
    For example the hive is
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\Path
    and under path i need to take back up  of values in some text file and then put some value in the registry after back is taken in text file.
    Also how to read the text file values so that we can again write to registry hive  back from the back up text file.
    Your help is much appreciated.
    Umeed4u

    I think you need to read this first:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/a0def745-4831-4de0-a040-63b63e7be7ae/posting-guidelines?forum=ITCG
    Don't retire TechNet! -
    (Don't give up yet - 12,830+ strong and growing)

  • How to read the and Write the PDF file give me the solution

    Hi all,
    How to read the and Write the PDF file give me the solution
    My coding is
    import java.io.File;
    import com.asprise.util.pdf.PDFImageWriter;
    import com.asprise.util.pdf.PDFReader;
    import java.io.*;
    import java.io.FileOutputStream;
    public class example {
    // public example() {
         public static void main(String a[])
              try
              PDFReader reader = new PDFReader(new File("C:\\AsprisePDF-DevGuide.pdf"));
                   reader.open(); // open the file.
                   int pages = reader.getNumberOfPages();
                   for(int i=0; i < pages; i++) {
                   String text = reader.extractTextFromPage(i);
                   System.out.println("Page " + i + ": " + text);
    // perform other operations on pages.
    PDFImageWriter writer = new PDFImageWriter(new FileOutputStream("c:\\new11.pdf"));
                   writer.open();
                   writer.addImage("C:\\sam.doc");
                   writer.close();
                   System.out.println("DONE.");
    reader.close();
              catch(Exception e){System.out.println("error:"+e);
              e.printStackTrace();
    I get the pdf content then it returns the string value but ther is no option to write the string to PDF, and we only add a image file to PDF,but i want to know how to wrote the string value to PDF file,
    Please give response immtly
    i am waiting for your reply.
    thanks,
    Suresh.G

    I have some question flow
    How library to use this code.
    I try runing but have not libary.
    Please send me it'library
    Thank you very much!

  • Hi... I would like to purchase a Tablet Sony Xperia Z 2 10.1 (the last one of the Z series) and I was told that Adobe does not support Sony anymore.... I need to be able to open and read Adobe PDF files and I would like to know if this tablet can still us

    Hi... I would like to purchase a Tablet Sony Xperia Z 2 10.1 (the last one of the Z series) and I was told that Adobe does not support Sony anymore.... I need to be able to open and read Adobe PDF files and I would like to know if this tablet can still use Flash Player...
    Is there anyo who can help me with this? I asked in the shop and I was told "yes of course" , but when I contacted Sony directly I was advised to check with Adobe as apparently in the recent months Adobe and Sony haven't been getting along anymore...

    You may be mixing up two entirely different Adobe products.
    1. Adobe Flash Player. Needed to view web pages designed with Flash. Not needed to view PDF files. Not available for Android (not just Sony).
    2. Adobe Reader. Reads PDF files. However, the Android can also read most PDF files without needing Adobe Reader.

  • I have the latest downloadable version of LR5.  It crashed while it was createing 1:1 previews during an import. After a Win7(64) restart, it shows a message that LR needs to quit because it can't read the preview files and it will try to fix it the next

    I have the latest downloadable version of LR5.  It crashed while it was createing 1:1 previews during an import. After a Win7(64) restart, it shows a message that LR needs to quit because it can't read the preview files and it will try to fix it the next time is launches.  I get the same message the next and every subsequent time it launches so I can't launch LR at all now.
    I get that the preview file got corrupted somehow.  Is there some way to fix this problem without building a new catalog?

    Use Windows Explorer to open the folder containing your catalog. You will see a folder with the extension .lrdata. You need to delete that folder and then start Lightroom again. Lightroom will generate a new previews folder.

  • How can I read the bootstrap files and extract the fragment-URLs and fragment-numbers in plain text?

    How can I read the bootstrap files of any HDS Live stream and extract the fragment-URLs and fragment-numbers in plain text?
    Could it be that it is some kind of compressed format in the bootstrap? Can I uncompress it wirh  f4fpackager.exe? Could not find any download for f4fpackager.exe. I would prefere less code to do so. Is there something in Java of JavaScript, that can extract the fragment-numbers?
    Thank you!

    Doesn't sound too hard to me. Your class User (the convention says to capitalize class names) will have an ArrayList or Vector in it to represent the queue, and a method to store a Packet object into the List. An array or ArrayList or Vector will hold the 10 user objects. You will find the right user object from packet.user_id and call the method.
    Please try to write some code yourself. You won't learn anything from having someone else write it for you. Look at sample code using ArrayList and Vector, there's plenty out there. Post in the forum again if your code turns out not to behave.

  • Hi im having huge problems trying to install flash for my mac 10.5 imac, iv gone through the internet and tried all of the solutions, everytime i try to install flash it says cant read the download file, or it just wont install, anybody plz help!

    hi im having huge problems trying to install flash for my mac 10.5 imac, iv gone through the internet and tried all of the solutions, everytime i try to install flash it says cant read the download file, or it just wont install, anybody plz help!
    iv unistalled flash, iv checked plug ins it just wont work,

    It would have been a great help to know precisely what Mac you have, so some of the following may not apply:
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version,10.3.183.23 or later, is for Intel Macs only running Tiger or Leopard, as Adobe no longer support the PPC platform. Version 11.4.402.265 or later is for Snow Leopard onwards.
    (If you are running Mavericks: After years of fighting malware and exploits facilitated through Adobe's Flash Player, the company is taking advantage of Apple's new App Sandbox feature to restrict malicious code from running outside of Safari in OS X Mavericks.)
    * Unhelpfully, if you want the last version for PPC (G4 or G5) Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. Flash Player 10.1.102.64 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications (including Safari) first before installing. You must also carry out a permission repair after installing anything from Adobe.
    After installing, reboot your Mac and relaunch Safari, then in Safari Preferences/Security enable ‘Allow Plugins’. If you are running 10.6.8 or later:
    When you have installed the latest version of Flash, relaunch Safari and test.
    If you're getting a "blocked plug-in" error, then in System Preferences… ▹ Flash Player ▹ Advanced
    click Check Now. Quit and relaunch your browser.
    You can also try these illustrated instructions from C F McBlob to perform a full "clean install", which will resolve the "Blocked Plug-in" message when trying to update via the GUI updater from Adobe.
    Use the FULL installer for 12.0.0.44:  Flash Player 12 (Mac OS X)
    And the instructons are here: Snow Leopard Clean Install.pdf
    (If you are running a PPC Mac with Flash Player 10.1.102.64 and are having problems with watching videos on FaceBook or other sites, try the following solution which fools the site into thinking that you are running the version 11.5.502.55:)
    Download this http://scriptogr.am/nordkril/post/adobe-flash-11.5-for-powerpc to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.

  • I just updated to Adobe Reader 11.0.07 on my Mac 10.6.8 and now the video files don't work.  How do I uninstall the update and return to the previous version?

    I just updated to Adobe Reader 11.0.07 on my Mac OS version 10.6.8 and now the video files don't work.  How do I uninstall the update and return to the previous version?

    I received a notice from Chris Campbell at Adobe that stated : "....we are aware that Macs created between 2006 and 2008 are currently running into problems using the latest release of Flash Player (version 13)."  My question is will the update of Adobe Reader 11.0.07 cause this problem with Flash Player 13 on my Mac?  Sometimes when I try to view streaming video I get sound but no video.
    >

Maybe you are looking for

  • MouseOver functionality in OBIEE 11g

    Hi, I have a requirement to have tool tip, when we keep mouse on columns in report/dashboard, can anyone help me to acheive this in obiee 11g. Thanks in advance, mahi.

  • Can I back up with Time Machine to a previously used hard drive?

    I've just replaced an old MacBook Pro with a new one and used Time Machine to get the new MBP set up.  All is well and it looks like my new computer is a mirror of the old (tested for a week now).  If I turn on Time Machine with the new MBP using the

  • 13" Macbook Display Problem/Solution

    Mid-summer, my Macbook's display bit the dust. I took it to the Apple Store in Providence, RI, and was told $280. I called Apple Care (which I do not have a subscription to), and was told $800 -- until I mentioned the previous quote from the store. A

  • Need to fix child's age in Apple ID

    I was setting up family sharing today and created an Apple ID for both of my children (ages 12 and 7).  I am certain that I set their birthdates correctly, but now that everything is finished my 12 year old is showing up under FAMILY MEMBERS as being

  • Performance of APD with source as 'Query with conditions'

    Hi, I have a question regarding the performance of an APD query with conditions when it is run in the background. I have an infocube with 80 million records.I have a query to find Top 15 (Condition In query) Customers per territory. With the help of