Deployment unsuccessful via UNIX box but Successful from windows

Hi,
I am able to deploy my ADF application on remote server by my ANT SCRIPT.
But when I am trying to deploy my application through UNIX box, Its successfully making EAR File but that EAR file is smaller(in term of size) , which I am getting from Windows deployment from similar script. It not adding bc4j.xcfg file of AM and adfm.xml file also in EAR. If I am deploying this same EAR file from script on unix then its successfully deploying and when I am going to my application its showing blank page insist of contains.
I am using same script for deployment on unix box also which I am using on Windows.
Can anyone suggest me where I am lacking or something which I need to take care on Unix.
Thanks in Advance
Ramit Mathur

Looks like your ant script is buggy...
If your ant script does not produce the same EAR (I only mean the content, not the size) there must be something wrong either with your installation on the UNIX box or your ant script.
If you know which files are missing thats the point to look at. As you wrote the script it should not be difficult to find the part of hte script which should copy the missing files into the resulting EAR file. May be you have a wrong path (windows like drive letters or '\' instead of '/') in your script.
Timo

Similar Messages

  • System.out  View Console via Unix box/ Command Line

    I am dumping messages to System.out. When I package it and run it as a service, I can drop this to an out file. When I just run the jar file from the windows command line or from a Unix box it runs silently. Is there a way to have the System.out dropped to a file in this scenario or better yet shown on screen?
    Once I run the jar file how do I kill it without killing the process?
    Thanks

    Fanbladeus02 wrote:
    "Killing a jar file..." I don't want to kill the Jar file itself, but I do want to stop it from running after I launch it.Then you mean you want to kill the process which is using the jar file.
    >
    Example from my unix prompt I do something like this:
    java -jar -classpath </home/user/jarprog/> /home/user/jarprog/JARPROG.jar jarprog.Main.java
    I don't see any output, it just drops to the next open prompt. This means the program has finished. It could have started another one which does the real work, but you have no control over it.
    I assume java is still running my jar file somewhere. (My first thought was) That is very unlikely unless the writers of the code have gone to great lengths to hide another running process from you. (But reading further this appears to be the case)
    How do I stop it? Find the process with "ps" and send it a kill signal.
    Once I start the program how do I interact with it to stop it?ctrl-C, but you cannot kill it after the prompt has returned because its not running any more. (it started another process and then bailed)
    Similiarly in Windows, I run it from the command line it drops to the next "c:\". I look in task manager and see java running. It appears your program starts another java process in the background.
    I look in the database that it is updating and the records are flying in. If I end the process, the records stop flying in (DUH). Again how do I interact with it to gracefully end the process?It appears that whoever wrote the program has gone to some lengths to prevent you from doing that. I would ask them.

  • Software Update via Unix command but get updates from my OS X server?

    I have a OS X server which I use to manage how software update runs on the clients. Currently when you run software update from the client it connects to the server and downloads what it needs which is much faster than downloading it via the internet each time.
    now, I would like to run a unix command via ARD that would run software update against the local server. Does anyone know the correct syntax for this? Running softwareupdate -l -a does not work. Thanks

    I'm also in the process of getting my Xserve setup as an internal software update server. I haven't gotten to the point of testing this yet, but I was under the impression that once the clients were managed, any software update command would force the clients to retrieve their updates from your internal server as specified in the MCX settings.
    I have a OS X server which I use to manage how software update runs on the clients. Currently when you run software update from the client it connects to the server and downloads what it needs which is much faster than downloading it via the internet each time.
    When you say that currently when you run software update from he client it connects to the server and downloads updates, are you referring to running the graphical Software Update tool?

  • Why are Java SASLFactories missing when called via PL/SQL but not from JRE?

    Hi
    This may be quite a technical point about SASL and JCE Providers etc OR it may just be a question about how Oracle PL/SQL interfaces with Java.
    The background is that I am trying to get a Java opensource library to run in Oracle DB - this is for specialized communication from Database to other servers.
    The library uses a SASL mechanism to authenticate with the server and this (appears) to rely on JCE Providers installed and provided by the JRE.
    I have some Java code working which uses the library - this runs OK in NetBeans/Windows environment and also using Linux/Oracle JRE directly such as:
      +# $ORACLE_HOME/jdk/bin/java -classpath "./MyMain.jar:./OtherSupport.jar" package.TestClient+
    However it refuses to work (throws a NullPointerException) when called from PL/SQL.
      +FUNCTION send_a_message (iHost IN VARCHAR2,+
         iPort IN NUMBER,
        +iLogin IN VARCHAR2,+
        +iPasswd IN VARCHAR2,+
         iRecipient IN VARCHAR2,
         iMessage IN VARCHAR2) RETURN NUMBER
       AS LANGUAGE JAVA
       NAME package.TestClient.sendATextMessage(java.lang.String, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String) return int';
    In the Java code this is:
       public static int sendATextMessage(String iHost,
         int iPort,
         String iLogin,
         String iPasswd
         String iRecipient,
         String iMessage)
    I've tracked the issue down to there being no SaslClientFactories (via Sasl.getSaslClientFactories()) showing when called from PL/SQL whereas 3 are available when run from within Java directly. This via:
       Enumeration<SaslClientFactory> facts = Sasl.getSaslClientFactories();
       System.out.println("Found Sasl Factories [" & (facts != null)  & "] size[" & Collections.list(facts).size() & "]");
    So, is there some aspect of Java initialisation that I'm missing when calling from PL/SQL (which means SASL factories aren't getting loaded into JRE) or is there something different in SASL setup?
    Any pointers appreciated.
    Thanks
    Dave

    Ok, after a bit of reading and general hacking about I have got this working.
    What I hadn't initially understood/remembered is that for a Stored Procedure the JVM installed on file system with Oracle isn't actually used - java code is loaded into the database and hence a different set of base functions are available. The following is a good explanation of this http://docs.oracle.com/cd/B14117_01/java.101/b12021/appover.htm#BGBIBDAJ
    So "out of the box" the Oracle Database appears to come loaded with only two of the Sun security providers i.e. no com.sum.security.SASL
    >
    OBJECT_NAME             OBJECT_TYPE     STATUS   TIMESTAMP
    com/sun/security/auth/NTSid  JAVA CLASS    VALID   2013-02-14:14:08:57
    com/sun/security/jgss/GSSUtil    JAVA CLASS    VALID   2013-02-14:14:08:57
    >
    This is from:
    >
    SELECT
      object_name,
      object_type,
      status,
      timestamp
    FROM
      user_objects
    WHERE
      (object_name NOT LIKE 'SYS_%' AND
       object_name NOT LIKE 'CREATE$%' AND
       object_name NOT LIKE 'JAVA$%' AND
       object_name NOT LIKE 'LOADLOB%') AND
       object_type LIKE 'JAVA %' AND
       object_name LIKE 'com/sun/security%'
    ORDER BY
      object_type,
      object_name;
    >
    My solution (which may well be a work-around) is the following:
    1) Downloaded JDK Source and extracted "com.sun.security.sasl" java code to my project
    2) Added following code to my Stored Procedure ()
    >
    Enumeration<SaslClientFactory> saslFacts = Sasl.getSaslClientFactories();
    if (!saslFacts.hasMoreElements()) {
      System.out.println("Sasl Provider not pre-loaded");
      int added = Security.addProvider(new com.sun.security.sasl.Provider());
      if (added == -1) {
        System.out.println("Sasl Provider could not be loaded");
        System.exit(added);
      else {
        System.out.println("Sasl Provider added");
    >
    3) Built my JAR file with the sasl package embedded (note: could only find Java 6 code, so had to comment out some GSS lines - but wasn't intending to use these)
    4) Loaded JAR to oracle via "loadjava".
    5) Add permissions (only found this out after a couple of failed runs)
    >
    call dbms_java.grant_permission('XMPP', 'SYS:java.security.SecurityPermission', 'putProviderProperty.SunSASL', '' );
    call dbms_java.grant_permission('XMPP', 'SYS:java.security.SecurityPermission', 'insertProvider.SunSASL', '' );
    >
    6) Run gives the following:
    >
    Sasl Provider not pre-loaded
    Sasl Provider added
    ...etc...
    >
    It works!. I confess I'm not sure of the implications of this for multiple calls/performance and if it will need to be added for each stored procedure call - may post back.
    For completeness I should point out that after my load the Security providers look like this:
    >
    OBJECT_NAME             OBJECT_TYPE     STATUS   TIMESTAMP
    com/sun/security/auth/NTSid    JAVA CLASS    INVALID  2013-02-15:09:11:36
    com/sun/security/jgss/GSSUtil    JAVA CLASS    INVALID  2013-02-15:09:11:37
    com/sun/security/sasl/Provider    JAVA CLASS    VALID    2013-02-15:10:03:21
    >
    i.e. the original couple are "INVALID" !
    Dave
    Edited by: 946763 on Feb 26, 2013 2:35 AM

  • Can't send via gmail @ work, but fine from home

    I have no trouble sending gmail mail via the Mail app at home, but mail will not send at work. I am guessing that the port number could be an issue, but this is not editable as far as I can tell, and even if it was I wouldn't know what port to change it to.
    Any ideas? My current work-around is to use the gmail web page at work to manage emails.

    Your assumption is correct. Your company must be blocking the ports to prevent you from sending outgoing emails, but I'd guess you have no trouble receiving emails at all, and you use proxy script on your web browser? I have same situation at work myself.
    My work around? Use my verizon wifi.

  • Applet runs via JCOP shell, but not from CardReader

    Hi,
    I'm completely new to JavaCard, JCOP and Eclipse, so maybe this is a stupid question. But I just need the answer.
    I created a simple javacard applet just to get known to all this new stuff. Now I am able to debug my applet in the Eclipse environment debugger and run it in my test hardware. When I run it (on the OMNIKEY ICCD test hardware), I'm able to send commands to the card and I get back the expected responses.
    In the JCOP Shell, I only need to select the applet (/select |<application name>) and after that send a command (send 8002000009, in my case read 9 bytes starting at location 0x00). In the Shell, I correctly get back the expected data.
    When I disconnect the USB cable for communication between Shell and development hardware and put this hardware into a CardReader, the ATR is detected, just as seen in the Shell. But then, whatever commands I send, I get responses I can't explain. Below some example.
    To be clear, I did nothing but running the applet in the IDE and after that disconnected the cable. Is there some special step/command needed between a run from the Eclipse environment and run "in the real world"??
    Can anyone give me a clue for this??
    First case, Send five zero bytes after ATR
    ATR
    Received: ['0x3b', '0xfa', '0x13', '0x0', '0x0', '0x81', '0x31', '0xfe', '0x45', '0x4a', '0x43', '0x4f', '0x50', '0x34', '0x31', '0x56', '0x32', '0x32', '0x31', '0x96'] (length = 20)
    * Found header
    * TC1 = 0x81
    J C O P 4 1 V 2 2 1
    Send <0000000000>
    Received: ['0x0', '0x0', '0x0', '0x0', '0x0', '0x0', '0x0', '0x2', '0x6e', '0x0', '0x6c'] (length = 11)
    Send <00a40000023f00>
    Received: ['0x0', '0xa4', '0x0', '0x0', '0x2', '0x3f', '0x0', '0x0', '0x92', '0x0', '0x92'] (length = 11)
    Send <0a404000a546573744170706c65740>
    Received: ['0x0', '0xa4', '0x4', '0x0', '0xa', '0x54', '0x65', '0x73', '0x74', '0x41', '0x70', '0x70', '0x6c', '0x65', '0x74', '0x0', '0x0', '0x92', '0x0', '0x92'] (length = 20)
    Send <8002000005>
    Received: ['0x80', '0x2', '0x0', '0x0', '0x5'] (length = 5)
    Second case, without the five zero bytes send after ATR
    ATR
    Received: ['0x3b', '0xfa', '0x13', '0x0', '0x0', '0x81', '0x31', '0xfe', '0x45', '0x4a', '0x43', '0x4f', '0x50', '0x34', '0x31', '0x56', '0x32', '0x32', '0x31', '0x96'] (length = 20)
    * Found header
    * TC1 = 0x81
    J C O P 4 1 V 2 2 1
    Send <00a40000023f00>
    Received: ['0x0', '0xa4', '0x0', '0x0', '0x2', '0x3f', '0x0', '0x0', '0x82', '0x0', '0x82'] (length = 11)
    Send <0a404000a546573744170706c65740>
    Received: ['0x0', '0xa4', '0x4', '0x0', '0xa', '0x54', '0x65', '0x73', '0x74', '0x41', '0x70', '0x70', '0x6c', '0x65', '0x74', '0x0', '0x0', '0x82', '0x0', '0x82'] (length = 20)
    Send <8002000005>
    Received: ['0x80', '0x2', '0x0', '0x0', '0x5'] (length = 5)
    ErikT

    ErikT wrote:Lexdabear,
    Yes, I program the SmartMX using the USB connecter and the put the card hardware into a COMMON(!) card reader. This simply converts serial data from a PC serial port to data to the card. In our application, the controller that's communicating with the card has no 7816 interface, so we have to do that in software. To see what to do on the 7816 port, we use the PC serial port and the card reader hardware.
    At this moment, it seems it has something to do with the software implementation of the 7816 protocol. The applet is not relevant, yet, because it's not even entered.
    Thanx,
    ErikTAh, OK. Your controller does not have the ISO7816 protocol implemented. So you have a lots of work in front of you. Check out ISO7816-4, T=1 .. I assume you have an error in the block structure (e.g. NAD, EDC ..).

  • HP Officejet 4500 G510n-z Wireless connection prints from Windows Vista but not from Windows 7

    HP Officejet 4500 G510n-z printer appears to be connected to my Dell Notebook running Windows 7 on the HP Solution Center page but does not print.Documents just get stuck in the que. It was printing then it wasn't then it was then it wasn't. The printer works when I print from an older notebook running Vista. The last time this happened, I uninstalled and reinstalled HP software and that didn't seem to help. Then, for some inexplicable reason, printing started working. Now it has stopped working again.I can scan from the Windows 7 Notebook but no printing. I've tried all of the troubleshooting tools I could find without success. Thanks for trying to help.
    This question was solved.
    View Solution.

    Hello-
    It could be caused by a couple things :
    1. Firewall on PC or in router.
    2. wireless interference (ie microwave, cordless phone base @ 2.4 Ghz)
    3. distance from router
    4. corrupt print driver.
    Turn off any firewalls you have and move anything that can cause interference away from router.
    If none of the above resolves issue, I'll have you install another print driver.
    Click on start.
    Go to Devices and Printers.
    Click on Add a Printer.
    Add a Local printer. Create a new Port and choose "Standard TCP/IP port.
    Hit Next.
    Type in 192.168.1.12 in the Hostname or IP address box. (uncheck "Query the printer" box)
    Hit next.
    When the Printer List opens up, click on windows update. ( this will take a few mins)
    After the box shows up, Pick HP (not Hewlett Packard) on the Left and pick "Deskjet 990c" on the Right.
    Click next, set as default, and finish.
    Try to print using the Deskjet 990c.
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input !
    Thank You,
    Donald

  • Officejet A909a prints from mac but when from windows "out of paper" message appears.

    I have an older 8500 which has been very loyal to me and I have looking after it well, which is now pushing 4000 pages.  However i went to print a file from my Windows 7 PC yesterday which is connected via usb, and it wouldnt print saying it was out of paper (which it wasn't) about half full . So i tried again no luck. UN-installed then reinstalled the printer still noting. went to my work laptop (windows 7) which is connected wirelessly through the network, same again "no paper" message appears. i thought this is strange turned it off back on still nothing even after disconnecting it from the mains for a few minutes, nothing the same message still appears. 
    However, my son has a mac book pro and he just printed his coursework off the printer effortlessly through my network. so i know the printer is fine especially as i have now printed self test pages off through the printer itself.
    I have no idea what to do now, as i have tried uninstalling then installing, printing via usb and network. and when i say "out of paper" i mean the printer receives the print command from my computer as it tries to feed paper a few times but cant pick it up also i have tried with various paper levels in the printer (full, half, about 20 pages, 1 single page)
    Please help.

    Hello @Dangerous97,
    I understand that when printing from your 2 Windows 7 computers you receive an 'out of paper' message after your HP Officejet Pro 8500 All-in-One Printer struggles and fails to pick up paper. However, you are able to print from a Mac computer. This is very unusual behaviour!  I would like to assist you today with resolving this issue. Also, thank you for including that you are able to print self-test pages from the printer with no issues as well.
    Generally, 'out of paper' messages are caused by a hardware issue with the printer itself. Because you are able to print standalone to your printer and from a Mac, there may be an issue with the documents that you're trying to print from your Windows 7 computer or a programming issue with your printer.
    With that being said, to start I would like you to click here to download and install the latest programming Firmware Update on your printer. Once the website opens select the Download button on the top left. Once the download is complete, please follow any onscreen instructions to send the update to your printer.
    Once the Firmware has been successfully updated, please test printing again.
    Please respond to this post with the result of the Firmware Update. Good luck!
    X-23
    I work on behalf of HP
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    Click the "Kudos, Thumbs Up" on the right to say "Thanks" for helping!

  • Can print from HP printer assistant but not from windows

    I ran the basic driver setup for my wireless printer.  Everything looked OK.  I then tried to print a test page from the control panel printer properties page.  The document was shown as printing but nothing printed.  I also had the same results when trying to print a Word document.
    I then ran the HP Printer Assistant and successfully printed a Printer Status Report and a Wireless Network Test Results report.  Both showed everything was OK.
    The printer is on a wireless network with a dynamic IP of 192.168.0.4
    The printer works fine on 2 Windows 7 computers.

    Hello @JimTW and welcome to the HP Forums!
    I would like to help get you printing on that Windows 8.1 computer
    I'd recommend first that you run the HP Print and Scan Doctor. Does it find any problems? If so, please follow whatever suggestions it makes for you. Are you able to print the test page from the tool?
    If that doesn't work, are you able to put the printer's IP address into an Internet Browser (Internet Explorer, Firefox or Chrome) and get the printer's information page?
    If you're still unable to print from Word or the Control Panel Printer Properties, please let me know which model HP printer you have and I'll have a further look into things.
    Hope to hear from you soon,
    Happy Holidays!
    Please click “Accept as Solution ” if you feel my post resolved your issue, as it will help others find the solution faster
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    **MissTeriLynn**
    I work on behalf of HP

  • Airport Express streams Airplay from iMac but not from Windows 7 PC

    I have a wireless network set up using a Linksys WRT45G2 v1 router. There is one iMac running Snow Leopard, one laptop running 32 bit Windows 7 Ultimate and one desktop running 64 bit Windows 7 Ultimate. The router is set to WPA2 Personal TKIP+AES security. The Airport Express is set to WPA2 Personal. Its wireless mode is "join a wireless network." It is running firmware version 6.3. The iMac and the laptop are running iTunes 9 and the desktop is running iTunes 10.
    Up until recently I was able to stream music from the iMac and the desktop but not the laptop to remote speakers using airtunes via the airport express. Then the video processor in my desktop PC failed and in the course of diagnostic testing I had to reinstall the OS. After replacing the video card and reinstalling the OS, I tried to reconnect Airport Express to iTunes on the desktop PC but Airport Utility could not find the Airport Express. I returned the Airport Express to factory settings and tried again. The PC still did not recognize the Airport Express. I couldn't use the PC to reconfigure the Airport Express, but the iMac did see it so I reconfigured the Airport Express using the iMac. Now I can stream music using Airport Express from the iMac ONLY.
    When I use the Airport Utility to scan on the desktop or the laptop PCs it does not see the Airport Express. I can, however, see the Airport Express and read its configuration using Airport Utility on both PCs by using "configure other..." under the File tab (i.e. by typing in the IP number and password for the Airport Express.) Even though I can read the configuration and save it, iTunes does not recognize any remote speakers and I cannot stream music from either PC.
    I have tried turning off ALL wireless security as well as all firewalls. I also tried both iTunes 9 and iTunes 10 on the desktop. Nothing makes any difference.
    Before I could at least stream from desktop even though I had never been able to get the laptop to stream.
    Can anyone suggest a way to get Airtunes (Airplay) to work from my PCs?

    I have had the same issue. Airplay working with all devices apart from one windows 7 (the actual media server) and have spent over a week trying to resolve it.
    This worked for me.
    Turn off windows firewall and in my instance macafee. Be warned while macafee says that it's off there are services running all the time.
    You will need to open macafee settings and turn off access protection first
    Then search services from start bar
    Open services and filter by manufacturer
    Stoop all macafee services
    Right click the start bar
    Open task manager
    Stop all macafee processes
    Try your airport utility you should now see your express
    If you can you will see your icon in iTunes
    This pores that it's likely to be a macafee issues. Of course you do not want to leave the firewall off so I installed macafee and installed a fresh copy turning both the windows and macafee firewall on with no resultant issues
    Hope this helps

  • I can stream from ios to new airport express but not from windows 7 or powermac G5

    I have new airport express and older apple tv on my network.  Both are connected and found by all devices - Windows 7 laptop, Powermac G5 and all ios devices.  I can stream music via airplay to both airport express and apple tv from ios devices (one at a time of course).  I can stream from itunes to Apple TV but cannot connect to the airport express!  It shows up and I get the dredded error: An error occured while trying to connect...
    I tried some of the many ipv6 suggestions that I've seen here but nothing is working. 
    Anyone have the setup?  Is this an airport express setup issue?  Please help!!!

    OK, I'm tipping my hat to Apple's (new) online experts. Great job.
    They might be able to solve YOUR problem, too. Find them at:
    http://www.apple.com/support/expert/

  • Downloads show in downloads window, but disappear from window as soon as finished downloading.

    I start a download (say, CCleaner from filehippo.com). The firefox "downloads window" opens and the file appears, downloads, virus scans, but then it just disappears. I'm left with an empty "downloads window". The downloaded file is in my downloads folder and I have to run it from there.
    It never did this before and changing settings in OPTIONS or disabling ADD-ONS has no effect.

    See:
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history" > "Remember download history"
    Also check the Clear Recent History (and CCleaner) settings if you use it.
    *Tools > Options > Privacy : History: [X] Clear history when Firefox closes > Settings
    *https://support.mozilla.com/kb/Clear+Recent+History

  • Unable to print email content or from web but ok from windows viewer.

    I have been using my Deskjet F4272 for at least one year with Windows 7 Pro 64 bit operating system.
    Now I cannot print the contents of emails or web or scan anything. The only way I can print is to carry out a screen grab using the snipping tool  and open the item in Windows viewer and print from there with no problem.
    I have 3 Windows Pc's and the problem exists on all of them. They are running with latest updates.
    Recently I have bought AVG anti virus which is installed on these PC's. I have downloaded the HP diagnostics tool which tells me all is OK ! I have downloaded the full install software (210Meg) and this tells me all is running OK !!!
    Now I don't know how to proceed other than to chuck the printer away and go to another supplier !
    Any ideas anyone ?
    Regards. Chrisy

    I don't know if this will help you, but I have an hp deskjet 2512 and a dell computer.  I could always print emails and then today it would not print the content of the email, only the heading.  I have been searching on here for a solution, but have found nothing.  Just for the heck of it, I tried to print another email and after clicking on print I clicked on "pages" , where you can indicate what page you want printed and it worked!  It printed the entire email.  Go figure.

  • I want to download apps via creative cloud but the Apps window is giving me a "Download  Error" page

    I uninstalled creative cloud, re-installed it, checked if my IOS is up to date and no updates were required, tried many times to "Reload Applications" in the Apps window, however nothing worked! the error persists.

    I have the same problem, Sorry, cannot help.........

  • Reading a file which is on different unix box

    Hi,
    Our project has a requirement to send a file as an attachment in the email to a user. Our application is deployed as an ear in a WAS server (which is a unix box). The interface that actually sends the email is deployed on another unix box. Our application creates a file and saves it on the application unix box. now the email sending interface needs to access this file which is deployed on the application unix box and send it as an attachment.
    Can the email sending interface access the file on the application unix box if i send it the path; is it possible since the interface and the attachment file are deployed on diff unix boxes?
    Now one can access the application using the url of the form -
    http://<box name>:<port>/<context root>/<servelet path>Now suppose while creating the file, i give the input path as
    http://<box name>:<port>/<file name>,where will the file be created and if i send this path to the email interface, will it be able to access this file?
    Any inputs will be highly appreciated.

    You would be better off using an nfs partition. All flavors of unix come with NFS capabilities, so simply let your application "box" share a directory where it writes the files, and let the email "box" mount the directory in order to read the files.

Maybe you are looking for

  • Using US-bought AppleCare in Europe

    Last year I bought my MBA in the country where I live, in Slovakia, from an Apple Premium Reseller. Apple does not sell AppleCare in Slovakia, so for now I'm only covered by the one year limited warranty and of course the 2-year EU consumer protectio

  • Archival process not running on physical stand by

    for physical stand by database we dont have archival process not running. but both primary and stand by database are in sync. though log_archive_max_processes is set 2. any help appriciated.

  • Part of Excel file not converting

    I am batch creating Excel files to PDF using Adobe Acrobat Pro (9).  My settings are such that all tabs convert, but I have "parts" of one of the worksheet tabs that do not fully create.  In my Excel settings I am repeating columns A-D on each page a

  • Want to delete out.log files

    Log files having a file name of {servername}-out n.log (where n is a numeric identifying separate log files) accumulate in great numbers in the folder, \JRun4\logs\. Some log files appear to expand beyond their typical 200kb size into the hundreds of

  • "Download over Cellular?" Notification when setting alarm!

    I have a 4S with 6.1.3 and I just started getting this message a couple days ago.  No clue why, I don't think I have changed anything, I am using the same song I have always used for my alarm. Any thoughts? Apple? Hellooooooooo?  I've seen two or thr