JWS failure with iFS 1.1.9 linux

Hi everybody,
Since my update from ifs 1.1.5 linux to
ifs 1.1.9 linux,I have noticed that jws hasn't been working anymore!
The content of JWS.log is the following one:
libserver.so: cannot open shared object file:No such file or directory (libserver.so)
After searching for libserver.so I discovered that files named libserver.so could only be found in two oracle home subdirectories:
./ifs1.1/jws/lib/solaris/sparc/
and
./ifs1.1/jws/native/solaris/sparc/
Here is the configuration on which iFS is running:
Pentium II 400 Mhz
RAM 384 Mo
OS: Linux Suse 7.0
The Oracle database is on another machine:
Celeron 500 Mhz/512 Mo RAM/Windows NT Server.
Have you already experienced a similar problem with iFS 1.1.9 linux ?
Could someone give an explanation to me ?
Many thanks in advance.
Jean-Claude
null

I always get that same error in jws, and ifsstart sometimes cannot start jws. Have you tried to start jws by the web interface http://server:1717/ ?

Similar Messages

  • Performance problems with jdk 1.5 on Linux plattform

    Performance problems with jdk 1.5 on Linux plattform
    (not tested on Windows, might be the same)
    After refactoring using the new features from java 1.5 I lost
    performance significantly:
    public Vector<unit> units;
    The new code:
    for (unit u: units) u.accumulate();
    runs more than 30% slower than the old code:
    for (int i = 0; i < units.size(); i++) units.elementAt(i).accumulate();
    I expected the opposite.
    Is there any information available that helps?

    Here's the complete benchmark code I used:package test;
    import java.text.NumberFormat;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.Vector;
    public class IterationPerformanceTest {
         private int m_size;
         public IterationPerformanceTest(int size) {
              m_size = size;
         public long getArrayForLoopDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testArray[index]);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayForEachDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testArray) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForLoopDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForEachDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListIteratorDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForLoopDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForEachDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListIteratorDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForLoopDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testVector.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForEachDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testVector) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorIteratorDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testVector.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
          * @param args
         public static void main(String[] args) {
              IterationPerformanceTest test = new IterationPerformanceTest(1000000);
              System.out.println("\n\nRESULTS:");
              long arrayForLoop = test.getArrayForLoopDuration();
              long arrayForEach = test.getArrayForEachDuration();
              long arrayListForLoop = test.getArrayListForLoopDuration();
              long arrayListForEach = test.getArrayListForEachDuration();
              long arrayListIterator = test.getArrayListIteratorDuration();
    //          long linkedListForLoop = test.getLinkedListForLoopDuration();
              long linkedListForEach = test.getLinkedListForEachDuration();
              long linkedListIterator = test.getLinkedListIteratorDuration();
              long vectorForLoop = test.getVectorForLoopDuration();
              long vectorForEach = test.getVectorForEachDuration();
              long vectorIterator = test.getVectorIteratorDuration();
              System.out.println("Array      for-loop: " + getPercentage(arrayForLoop, arrayForLoop) + "% ("+getDuration(arrayForLoop)+" sec)");
              System.out.println("Array      for-each: " + getPercentage(arrayForLoop, arrayForEach) + "% ("+getDuration(arrayForEach)+" sec)");
              System.out.println("ArrayList  for-loop: " + getPercentage(arrayForLoop, arrayListForLoop) + "% ("+getDuration(arrayListForLoop)+" sec)");
              System.out.println("ArrayList  for-each: " + getPercentage(arrayForLoop, arrayListForEach) + "% ("+getDuration(arrayListForEach)+" sec)");
              System.out.println("ArrayList  iterator: " + getPercentage(arrayForLoop, arrayListIterator) + "% ("+getDuration(arrayListIterator)+" sec)");
    //          System.out.println("LinkedList for-loop: " + getPercentage(arrayForLoop, linkedListForLoop) + "% ("+getDuration(linkedListForLoop)+" sec)");
              System.out.println("LinkedList for-each: " + getPercentage(arrayForLoop, linkedListForEach) + "% ("+getDuration(linkedListForEach)+" sec)");
              System.out.println("LinkedList iterator: " + getPercentage(arrayForLoop, linkedListIterator) + "% ("+getDuration(linkedListIterator)+" sec)");
              System.out.println("Vector     for-loop: " + getPercentage(arrayForLoop, vectorForLoop) + "% ("+getDuration(vectorForLoop)+" sec)");
              System.out.println("Vector     for-each: " + getPercentage(arrayForLoop, vectorForEach) + "% ("+getDuration(vectorForEach)+" sec)");
              System.out.println("Vector     iterator: " + getPercentage(arrayForLoop, vectorIterator) + "% ("+getDuration(vectorIterator)+" sec)");
         private static NumberFormat percentageFormat = NumberFormat.getInstance();
         static {
              percentageFormat.setMinimumIntegerDigits(3);
              percentageFormat.setMaximumIntegerDigits(3);
              percentageFormat.setMinimumFractionDigits(2);
              percentageFormat.setMaximumFractionDigits(2);
         private static String getPercentage(long base, long value) {
              double result = (double) value / (double) base;
              return percentageFormat.format(result * 100.0);
         private static NumberFormat durationFormat = NumberFormat.getInstance();
         static {
              durationFormat.setMinimumIntegerDigits(1);
              durationFormat.setMaximumIntegerDigits(1);
              durationFormat.setMinimumFractionDigits(4);
              durationFormat.setMaximumFractionDigits(4);
         private static String getDuration(long nanos) {
              double result = (double)nanos / (double)1000000000;
              return durationFormat.format(result);
    }

  • Ipod sync issue with rhythmbox or banshee in linux - not able to view new songs in ipod

    Ipod nano with version 1.0.2 PC with serial number DCYLLQWTF0GP with model MD477HN, cant be sync with rhythmbox or banshee in linux. I am not able to see new list of songs in ipod

    My contact number is - 9999504380 (Delhi,India)

  • HP LaserJet M1212nf MFP Printer - Communication Failure with the scanner

    Dear all,
    May I kindly ask if there are any known resolutions in terms of a scanning issue with the HP LaserJet M1212nf MFP Printer?
    When it starts scanning the printer only scans the up to the 3rd or 4th page, it stops in the middle of the sheet and produces an error message stating the following: Communication Failure with the scanner.
    Are there any steps that may be followed in order to resolve the incident?
    Many thanks in advance.
    Best regards,
    Ryan

    Hi @Ryan_HP ,
    I see that you are experiencing a communication error during scanning of multiple pages. I would like to help, but I will need some more information to provide you with the correct steps to resolve this issue.
    If you are using Windows, download and run the Print and Scan Doctor. It will diagnose the issue and might automatically resolve it. Find and fix common printer problems using HP diagnostic tools for Windows?
    Temporarily turn off any Antivirus Software, just to rule out any interference.
    Try scanning again.
    What operating system are you using?
    How to Find the Windows Edition and Version on Your Computer.
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    How is the printer connected? (USB/Ethernet)
    What were the results when you ran the Print and Scan Doctor? (did it print or scan, any error messages)
    What scanning software are you using?
    Have a wonderful day!
    Thank You.
    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!
    Gemini02
    I work on behalf of HP

  • PlayReady failure with specific OS version of Windows 8.1 Update

    Hello,
    I'm observing a failure in my app during Smooth Streaming video playback using PlayReady DRM. The app is a WinJS Universal App solution for Windows Store and Windows Phone, using the latest updates for Visual Studio 2013, Update 4.
    So far, the failure is limited to one specific version of the Windows 8.1 Update. I have two identical devices, both retail versions of the phone, that demonstrate this issue. Note, these same phones that fail with PlayReady can successfully
    stream unprotected Smooth Streaming content.
    My other five Windows Phone devices, with different OS version numbers, do not demonstrate the failure with the identical app installed. Therefore, I suspect the OS version may be the cause.
    Failure description:
    When I attempt to stream PlayReady protected Smooth Streaming video, the player initializes the media player and the MediaProtectionManager, but then displays the error state (The video failed to play. Try again.) immediately, and the following message is
    displayed in Visual Studio:
    MEDIA12899: AUDIO/VIDEO: Unknown MIME type.
    --- Message: MEDIA_ERR_SRC_NOT_SUPPORTED (0x887A0004)
    Summary of tested OS versions:
    Windows Phone 8.1 Update
    8.10.14141.167, untested
    8.10.14147.180, untested
    8.10.14157.200, untested
    8.10.14176.243, NOKIA Lumia 830, fails to stream, tested with two devices
    8.10.14192.280, untested
    8.10.14203.206, HTC HTC6995LVW, streams successfully
    8.10.14219.341, NOKIA Lumia 920, streams successfully
    8.10.14226.359, BLU WIN HD W510u, streams successfully
    Windows Phone 8.1
    8.10.12359.845, untested
    8.10.12382.878, untested
    8.10.12393.890, NOKIA Lumia 920, streams successfully
    8.10.12397.895, untested
    8.10.12400.899, NOKIA Lumia 530, streams successfully
    Note, one of OS versions I've tested fails to stream the PlayReady protected Smooth Streaming content, and five other OS versions I've tested successfully stream the same video content.
    Is this a known issue with a specific version(s) of Windows Phone 8.1?
    Regards,
    Andrew

    Hello,
    0x887A0004 equates to DXGI_ERROR_UNSUPPORTED. This error is usually generated when you are trying to use Direct3D features that are not supported. Different devices support different D3D features since they contain different video hardware. It is possible
    that a hardware feature that is required by the license is not supported in the hardware / driver of the device. I would recommend that you check the license and make sure that it does not contain any hardware specific requirements such as HDCP.
    In other words try playing content with the least restrictive license and see if it works for you.
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • Can't get windows 8.1 with dual boot for fedora (linux) . system is UEFI .

    Can't get  windows 8.1 with  dual boot for fedora (linux) . system is UEFI .

    Hi,
    Any update here?
    We may seek help at Fedora forum as Milos suggested, if convenient we could share the related thread link here for reference.
    In addition, please also check the information in the similar thread:
    Dual Boot Windows 8 and Linux?
    Best regards
    Michael Shao
    TechNet Community Support

  • Failure with EWS via WWSAPI (native code)

    Failure with EWS via WWSAPI (native code)
    I'm trying to make a request against Exchange(*) EWS
    using WWSAPI (native code).
    Exchange replies with the error:
     "Cannot process the message because the content type 
     'application/soap+xml; charset=utf-8; 
      action="http://schemas.microsoft.com/exchange/services/2006/messages/ResolveNames"'
      was not the expected type 'text/xml; charset=utf-8'."
    It seems the SOAP envelope is ill-formed.
    If I manually create the envelope (without WWSAPI) EWS gives no error.
    Is WWSAPI supported for EWS?
    I can provide all the code for testing.
    Thanks & regards
    josue
    On WebServices tracing I see the following events:
    Sending message - bin  (id: 1): 
    3C 73 3A 45 6E 76 65 6C 6F 70 65 20 78 6D 6C 6E 73
    3A 73 3D 22 68 74 74 70 3A 2F 2F 77 77 77 2E 77 33
    2E 6F 72 67 2F 32 30 30 33 2F 30 35 2F 73 6F 61 70
    2D 65 6E 76 65 6C 6F 70 65 22 3E 3C 73 3A 48 65 61
    64 65 72 3E 3C 52 65 71 75 65 73 74 53 65 72 76 65
    72 56 65 72 73 69 6F 6E 20 56 65 72 73 69 6F 6E 3D
    22 45 78 63 68 61 6E 67 65 32 30 31 30 5F 53 50 31
    22 20 78 6D 6C 6E 73 3D 22 68 74 74 70 3A 2F 2F 73
    63 68 65 6D 61 73 2E 6D 69 63 72 6F 73 6F 66 74 2E
    63 6F 6D 2F 65 78 63 68 61 6E 67 65 2F 73 65 72 76
    69 63 65 73 2F 32 30 30 36 2F 74 79 70 65 73 22 2F
    3E 3C 2F 73 3A 48 65 61 64 65 72 3E 3C 73 3A 42 6F
    64 79 3E 3C 52 65 73 6F 6C 76 65 4E 61 6D 65 73 20
    52 65 74 75 72 6E 46 75 6C 6C 43 6F 6E 74 61 63 74
    44 61 74 61 3D 22 74 72 75 65 22 20 43 6F 6E 74 61
    63 74 44 61 74 61 53 68 61 70 65 3D 22 49 64 4F 6E
    6C 79 22 20 78 6D 6C 6E 73 3D 22 68 74 74 70 3A 2F
    2F 73 63 68 65 6D 61 73 2E 6D 69 63 72 6F 73 6F 66
    74 2E 63 6F 6D 2F 65 78 63 68 61 6E 67 65 2F 73 65
    72 76 69 63 65 73 2F 32 30 30 36 2F 6D 65 73 73 61
    67 65 73 22 3E 3C 55 6E 72 65 73 6F 6C 76 65 64 45
    6E 74 72 79 3E 43 6C 65 62 65 72 3C 2F 55 6E 72 65
    73 6F 6C 76 65 64 45 6E 74 72 79 3E 3C 2F 52 65 73
    6F 6C 76 65 4E 61 6D 65 73 3E 3C 2F 73 3A 42 6F 64
    79 3E 3C 2F 73 3A 45 6E 76 65 6C 6F 70 65 3E 
    Sending message        (id: 1): 
    <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope">
      <s:Header>
        <RequestServerVersion Version="Exchange2010_SP1" xmlns="http://schemas.microsoft.com/exchange/services/2006/types"/>
      </s:Header>
      <s:Body>
        <ResolveNames ReturnFullContactData="true" ContactDataShape="IdOnly" xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
          <UnresolvedEntry>Cleber</UnresolvedEntry>
        </ResolveNames>
      </s:Body>
    </s:Envelope>
    Error occurred: 0x803D0000 - The input data was not in the expected format or did not have the expected value.
    Error occurred: 0x0 - The format of the HTTP request was not supported by the server.
    Error occurred: 0x0 - The server returned HTTP status code '415 (0x19F)' with text
    'Cannot process the message because the content type 'application/soap+xml;
    charset=utf-8; action="http://schemas.microsoft.com/exchange/services/2006/messages/ResolveNames"'
    was not the expecte
    Error occurred: 0x0 - There was an error communicating with the endpoint at 'https://gpe-exc2k10/EWS/Exchange.asmx'.
    WsCall API failed by 0x803D0000
    (*) Microsoft Exchange 2010 SP3 with Update Rollup 7

    Thank you for the tip. I was using SOAP 1.2. After changing to SOAP 1.1 it worked fine.
    WS_ENVELOPE_VERSION soapVersion = WS_ENVELOPE_VERSION_SOAP_1_1;
    Thanks and regards,
    Josue

  • Failure with mpeg2 dvd

    I'm rendering the same sequence of about an hour to different formats mostly hd 1080p h.264 and pal to mpeg2 dvd so encore wont work hard to convert.
    last days I cant get the mpeg 2 dvd to render, I keep getting errors/failure.if I render just mpeg2 it renders perferct.
    so until I could ditch the DVD for good I realy need the AME queue with mpeg2 dvd for my workflow.
    I hav'nt checked it but I'm sure it will export mpeg2 dvd directly from PP

    the settings are done in PP
    by the way if I switch to mercury engine softwere only it renderes but very
    very slow
    2014-05-19 22:52 GMT+03:00 SAFEHARBOR11 <[email protected]>:
        failure with mpeg2 dvd  created by SAFEHARBOR11<https://forums.adobe.com/people/SAFEHARBOR11>in *Adobe
    Media Encoder (AME)* - View the full discussion<https://forums.adobe.com/message/6392014#6392014>

  • Web Services with IFS

    Hi,
    i am trying to make XML/SOAP based Web services work with iFS
    Let me give u the exact details of the what i am trying to achieve.
    I have a stateless session bean method which i am exposing as a webservice.
    This method invokes the IFS API.
    I do something like this :
    // inside the webservice method
    callingIFS( );
    =====================================================
    public void callingIFS() {
    LibraryService service = LibraryService.startService("IfsDefault", "ifssys");
    CleartextCredential cred = new CleartextCredential("system","system");
    ====================================================
    When it comes to the LibraryService it fails to start the service.
    ======================================================
    oracle.ifs.common.IfsException: IFS-20102: Unable to start service (IfsDefault)
    oracle.ifs.common.IfsException: IFS-20010: Unable to get service configuration properties (IfsDefault)
    =========================================================
    It is unable to locate the properties file.
    Could someone tell me what the problem could be
    Thanks in advance
    Arvind

    The problem is that your webservice JVM cannot locate the LibraryService properties file named "IfsDefault.properties" which comes with the iFS software installation. This means that either the CLASSPATH used by your webservice JVM does not include the location of the properties file or the file is not in the location specified in the CLASSPATH. It depends on how you have configured your environment.
    Note that in later versions of iFS, the LibraryService properties are stored in the database, and you no longer need to have the properties file location specified in the database.

  • Issue with shared folders in oracle linux 6.4

    Hi.
    After installing oracle linux 6.4 in vmware (9 and 10) shared folders still not visible in guest os.
    i see such issue first time. before this i have installed red hat 6.3 and centOS 6.5. via vmware and everything was ok with shared folders.
    but in Linux Oracle i can not see them neither in mnt nor media.
    so is there an issue in oracle 6.4. release? was it fixed in 6.5?
    p.s. i have instlalled vmware tools but problem with shared folders still persists.
    screenshots from my laptop
    RGhost — файлообменник
    RGhost — файлообменник
    RGhost — файлообменник
    RGhost — файлообменник

    e9af1f61-cf4a-46b2-880b-989b0761844e wrote:
    i have moved this messages by mistake https://forums.oracle.com/thread/2613503 to another branch.
    could you return it back, please?
    Moderator reply:
    Nope.
    That is not one of the capabilities of moderator or site administrator functions in the software the runs the site.
    You are stuck with two pieces in this discussion.
    All I'\m able to do is lock that branched piece (which I've done).
    You need to be a bit more careful on what you might choose to click upon.

  • Is this possible with iFS?

    I have aw web site to do for a customer and I am pretty sure iFS fits the bill, but not totally sure. My customer is a mechanical drafting firm that needs to have a versioning system to track changes made to CAD drawings. I would like to use iFS to create their web site also and use iFS to "serve" up the web site as I would a regular file system arranging the navigation of the site and the storage of the documents in an organized manner. Can I create JSP pages to display all the CAD drawing in a directory and navigate through the files system in a web site format that I create using JSP's and servlets?
    Thanks in advance,
    Evad

    According to the documentation supplied by Oracle I feel that using iFS for keeping different versions of the CAD documents will work. I assume that you should be able to direct someone to a directory and have them view a web page rather that just the contents of the directory. I am not 100% sure of this though? Has anyone tried with iFS? If they have I would really like to know, this seems like it could be very interesting way to use this product.

  • 9iAS - OC4J Integration with iFS

    Hi,
    Can someone please let me know the correlation (or lack of it) between 9iAS and iFS?
    Do the two work together and to what extent (ie nothing other than jsps, servlets, ejb's developed in 9iAS can make calls to iFS?
    I heard that OC4J (Server licensed and packaged with 9iAS) does not work with iFS? And is not expected to until the "next release". But iFS is part of even the standard server edition:
    Oracle HTTP Server, Portal, OC4J, iFS, SDK etc...
    Please help!
    Susan

    Hi Mason,
    Thanks, for your post.
    No. We are not trying to create EJB's that call the file system.
    What we are doing, is creating a Content Management System. Standard UI interface that allows users to read, edit and approve documents for internal publication. (hence iFS).
    The same GUI (Browser/JSP/Beans) will also be required to connect to external applications for alternate functionality (hence the EJB need). We were just trying to figure out which container to use/install.
    We have now been told (by an Oracle Rep) that OC4J is not compliant with iFS so we should use JServ until it is. (Mid October)
    Not sure what the correlation is. Getting a bit confused about what IS a part of 9iAS and what is external. (Seems to me if they are packaged together, they would all work together)
    * We see references (Oracle PDF's) to the SDK, but then cannot find it?
    * Why is JDev not executable on Solaris?
    * We cannot get the most basic sample files (CMS) to run under 9iAS?
    * What other source code control is there besides iFS (isn't it easier to keep your .java .class files on the File System (as opposed to in the database?) Or are theses just stored and symbolically linked to by the Repository?
    I could go on, but help with these questions would be GREATLY appreciated.
    Cheers,
    Susan
    null

  • Java.io.IOException: Connection failure with 500

    Hi
    When i am trying to establish connection from applet to servlet using URLConnection..
    It is giving me java.io.ioexception Connection failure with 500.
    Can anybody let me know why and how to solve this.
    Thanks&Regards,
    Subba

    Error code 500 is "Internal Server Error." Unfortunately this could be loads of things. :-(
    What servlet / web-server are you using?
    Some general pointers.....
    - Check your web-server access log and see if the request is received. (I'd expect so as you're getting a 500 error)
    - Check your servlet log & see if it is init-ing correctly.
    - I always write a simple doGet() method in my servlets so that I can check whether the servlet is alive or not...
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    PrintWriter out = new PrintWriter (response.getOutputStream());
    out.println("<html>");
    out.println("<head><title>ObjectServlet</title></head>");
    out.println("<body>doGet() called: "+new java.util.Date());
    out.println("</body></html>");
    out.close();
    Logger.log(this, "doGet", Logger.TRACE, Logger.TRACE_OUT);
    Then repost if you're still stuck.

  • Please HELP!!! URGENT!!! Connection failure with 407 ALL my DUKE $$$$$$$$$

    Hi,
    problem:
    ========
    I have to give a demo of this program next week, I am trying to solve this F***ing problem since last week and can not figure it out....
    I am running my program and tomcat on Computer#1 and trying to run that program from computer#2 and getting
    java.io.IOException: Connection failure with 407...
    Brief Intro:
    ============
    I am hard coding my computer1 ip address.
    If i run my program in the computer#1 i works fine...
    But i am trying to run the program from computer#2 and getting the following error.
    There is nothing wrong with the null pointer....I am definitely sure about this....
    I can access the Servlet directly from the computer#2 by just using a browser.
    for example my Computer#1's IP is 10.121.121.21.
    i can access the tomcat by http:10.121.121.21:8080 from computer#2
    I think the problem is with the security (java.io.IOException: Connection failure with 407)...
    Also i know that 407 means proxy server, but we do have proxy server but i am not going through
    the proxy server...
    Solution:
    =========
    If anyone who can solve this i am going to give them all the duke $$$$$...
    Thanks in advance....
    Error:
    =========================
    java.io.IOException: Connection failure with 407
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at scanstation.LoginScreen.displayLogInInformation(LoginScreen.java:220)
    at scanstation.LoginScreen.jButton1_actionPerformed(LoginScreen.java:151)
    at scanstation.LoginScreen.passwordTextfield_actionPerformed(LoginScreen.java:255)
    at scanstation.LoginScreen$4.actionPerformed(LoginScreen.java:123)
    at javax.swing.JTextField.fireActionPerformed(Unknown Source)
    at javax.swing.JTextField.postActionEvent(Unknown Source)
    at javax.swing.JTextField$NotifyAction.actionPerformed(Unknown Source)
    at javax.swing.SwingUtilities.notifyAction(Unknown Source)
    at javax.swing.JComponent.processKeyBinding(Unknown Source)
    at javax.swing.JComponent.processKeyBindings(Unknown Source)
    at javax.swing.JComponent.processKeyEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processKeyEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)

    Hy,
    this code is similar to 401 (Unauthorized), but indicates that the client must first authenticate itself with the proxy.
    This HTTP code is documented in the RFC 2616 and RFC 2617.
    http://www.ietf.org/rfc/rfc2616.txt
    http://www.ietf.org/rfc/rfc2617.txt

  • Java.io.IOException: Connection failure with 400

    at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)
    This occurrs when using getInputStream()
    The URL can be cut and pasted into the browser and it works fine, but when the code executes and only using the plugin it gives this error.
    Any ideas??

    One of my customers is getting :
    java.io.IOException: Connection failure with 400
         at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)
    ...too, on this snippet of code:
    java.io.InputStream aInputStream=aURLConnection.getInputStream();
    Anybody find a cause or solution for this? I believe my customer is using JRun.
    Thanks in advance.

Maybe you are looking for

  • Screen Share, Audio Chat and Video Chat not working

    Hey everyone. I recently started having issues with using some of the iChat protocols over AIM with a friend of mine. I can send IMs and files perfectly, but I can't get Audio Chat, Video Chat or even Screen Sharing (both ways) to work. After a while

  • 3D camera constraints

    Hi all, A bit of maths... I have a virtual camera (due to portability of code etc. I cannot use the standard 3D transformations from Flash...) which moves through a space. Size (and position) of the objects are calculated by the pretty standard: scal

  • EDM Report to generate profile values (synthetic profile)

    Hi profis! I want to create a report to generate synthetc profile values in IS-U/EDM. Can you suggest a function modul or an object type and accordingly method/methods? thanks a lot! regards Reiner

  • Error getting property 'lovFieldValue' from bean of type LovItemBean

    Hi Team, We are currently using a form with one LOVform. I added a new LOVform. Now I'm getting this Error: 500 Internal Server Error javax.faces.el.EvaluationException: javax.faces.el.EvaluationException: Error getting property 'lovFieldValue' from

  • Is it better to use AbstractTableModel or DefaultTableModel...?

    Is it better to use AbstractTableModel or DefaultTableModel when subclassing your jtable model? I ask this because while the java tutorial seems to point to the former I've read some people to recommend using the defaulttablemodel. What is the genera