Unrecognized or unlisted error

I try to use finite buffer counting in a Borland C++ Builder application; for each point in a loop, I set the counter operation(single buffer event counting) and after finishing the counting the counter is reset. However, after a number of points the application crashes with the message 'Unrecognized or unlisted error'. This is followed by a computer crash. Sometimes this happens without any error message. Apparently it seems to occur randomly, without any dependence on the number of times the counting operation is repeated.
I checked for eventual conflicts in the resources tab from the device manager, but there isn't any. Everything seems to be normal.
The OS is Windows 2000, on a Pentium 4 computer, and I use Borland C++ Builder 5.
I would appreciate any help on this issue.

Hello;
I don;t think this problem is related to any resource conflict but to the way the code was written. I don't know exactly how you programmed the board, but it seems like you are changing the counter parameters, for each point your buffered acquisition acquires. That can't work properly since the buffered acquisition is hardware timed and the counter reconfiguration is Software timed. That means you will acquire way more points than your code is able to reconfigure the counter. I believe that's why the error seems to be randon. You will need to find another strategy to program the device and accomplish what your application requires.
Regards
Filipe A.
Applications Engineer
National Instruments

Similar Messages

  • Unrecognized Windows Sockets Error: 0: JVM_Bind

    I'm not entirely sure if I compacted this well enough, but after class declaration and method calling, it is essentially what my program does.
    Server server = new Server(); // Creates a ServerSocket and binds it to a port.
    Client client = new Client(server.getSocketAddress());
    public Client(SocketAddress bind)
         try
              socket = new Socket();
              socket.bind(bind); // Problem here
              recieve = new Scanner(socket.getInputStream());
              send = new Formatter(socket.getOutputStream());
         catch (IOException e)
              e.printStackTrace();
    }Running the above code produces the following exception.
    java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind
         at java.net.PlainSocketImpl.socketBind(Native Method)
         at java.net.PlainSocketImpl.bind(Unknown Source)
         at java.net.Socket.bind(Unknown Source)
         at GameObjects.PlayArea$Client.<init>(PlayArea.java:318)
         at GameObjects.PlayArea.<init>(PlayArea.java:48)
         at MenuStates.GamePlayState.initializePlayArea(GamePlayState.java:90)
         at MenuStates.CreateGameState.mouseClicked(CreateGameState.java:106)
         at Manager.GameManager.mouseClicked(GameManager.java:428)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Window.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)I don't even know what this exception is, and I can't find anything that will really tell me what is going on. Can anyone tell me what is happening here?
    I know that this question isn't directly related to Game Development, but I am using it in a game program, and I posted this question in the Network forum, and they flooded my topic with useless messages, and the only person who actually answered my question was extremely vague about it, even after I asked him to clarify. I am hoping that the good people of this forum will be more helpful.

    In some cases, the server socket used to need more time to be available. If you run several test, you need time to reuse the same port (for Windows 7). I could try the following code:
    Server server = new Server(); // Creates a ServerSocket and binds it to a port.
    Thread.sleep(500); // Waiting for server to be available
    Client client = new Client(server.getSocketAddress());
    public Client(SocketAddress bind)
         try
              socket = new Socket();
              socket.bind(bind); // Problem here
              recieve = new Scanner(socket.getInputStream());
              send = new Formatter(socket.getOutputStream());
              Thread.sleep(500); // Time to execute the sme port in another test.
         catch (IOException e)
              e.printStackTrace();
    }

  • Unrecognized Windows Sockets error: 10106: create

    Am getting the following error when I use tcp-mon to sniff the HTTP traffic. Same when I use SOAP-UI.
    I'm using windows 7 and using "jdk1.6.0_13". Any help on this pls .
    java.net.SocketException: Unrecognized Windows Sockets error: 10106: create
    at java.net.Socket.createImpl(Socket.java:388)
    at java.net.Socket.<init>(Socket.java:362)
    at java.net.Socket.<init>(Socket.java:180)
    at org.apache.ws.commons.tcpmon.SocketWaiter.halt(SocketWaiter.java:98)
    at org.apache.ws.commons.tcpmon.Listener.stop(Listener.java:543)
    at org.apache.ws.commons.tcpmon.SocketWaiter.run(SocketWaiter.java:87)

    Winsock error 10106. 8 seconds in Google. Looks like something wrong with your operating system installation.

  • Unrecognized Windows Sockets error...

    Hello everybody!
    I am encountering the following problem, when I try to run a program which wants to access the internet. I pasted an extract from the source code here, which I think includes the critical lines:
    import java.net.*;
    import java.io.*;
    class FindLinks {
    public static Vector findLinks (String address) throws Exception {
    URL u = new URL(address);
    InputStream ins = u.openStream();
    InputStreamReader isr = new InputStreamReader(ins);
    BufferedReader webPage = new BufferedReader(isr);
    When I run the complete program, I get the following message:
    Exception in thread "main" java.net.SocketException: Unrecognized Windows Sockets error: 10106: create
    at java.net.Socket.createImpl(Socket.java:313)
    at java.net.Socket.connect(Socket.java:424)
    at java.net.Socket.connect(Socket.java:376)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:386)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:602)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:303)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:264)
    at sun.net.www.http.HttpClient.New(HttpClient.java:336)
    at sun.net.www.http.HttpClient.New(HttpClient.java:317)
    at sun.net.www.http.HttpClient.New(HttpClient.java:312)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect HttpURLConnection.java:481)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:472)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:574)
    at java.net.URL.openStream(URL.java:960)
    at FindLinks.findLinks(FindLinks.java:10)
    at FindLinks.main(FindLinks.java:47)
    I am using the new Java SDK 1.41 on a Windows XP machine. Does anyone has an idea what might be causing this problem?
    Kind regards
    Linus

    I know, but you triple posted

  • Chatter email 502 5.5.1 Unrecognized command Sending Error

    I have a Treo 680 (Rogers) that I have been successfully using Chatter email with for about 6 months (multiple email accounts).  No changes have been made in configuration however today when I try to send email messages I'm receiving a 502 5.5.1 Unrecognized command Sending Error message and can not send email messages on any accounts.  I can still receive however.   Any suggestions?
    Post relates to: Treo 680 (Rogers)

    Hi Paul,
    May you please guide me thru the SMTP configuration.
    By the way, I tried to implement the APEX_MAIL and it's delivering the mails internally but not externally. When I check the Mail log all mails appear but when I check my yahoo account there's no mail delivered but in the internal mail there's mail delivered.
    Here's my application level On Demand process code (On Demand: Run this application process when requested by a page process)DECLARE    l_id number;    l_index number;    l_vc_arr2    APEX_APPLICATION_GLOBAL.VC_ARR2;
    BEGIN  l_id := APEX_MAIL.SEND(p_to => :P19_EMAIL,            
    p_from => :P19_FROM,             
    p_subj => :P19_SUBJECT,             
    p_body => :P19_BODY); 
    l_vc_arr2 := APEX_UTIL.STRING_TO_TABLE(:P92_IMAGE); 
    FOR i_index IN 1..l_vc_arr2.count LOOP    
    FOR c1 in  (select filename, photo, mimetype from employee_tb
          where emp_id = l_vc_arr2(i_index))
    loop  APEX_MAIL.ADD_ATTACHMENT( p_mail_id    => l_id,                               
    p_attachment => c1.photo,                               
    p_filename   => c1.filename,                               
    p_mime_type  => c1.mimetype);   
    END LOOP c1; 
    END LOOP i_index; 
    COMMIT;END;
    -- push the e-mail queue for immediate delivery:
    begin
    wwv_flow_mail.push_queue(
       P_SMTP_HOSTNAME => 'mail host',
       P_SMTP_PORTNO => '#'
    end;Kind regards
    Mel

  • Unrecognized database format error when trying to access addin to Acrobat reader?

    I get an "Unrecognized database format" error when trying to access addin to Acrobat reader so I can use Pro to edit a pdf document?  What do I do so that teh ACCESS program aI am generating PDF's from uses Pro and not Reader?
    Thanks,
    Dan

    Adobe Reader and Acrobat Professional are 2 different products. Reader is for free and limited as to what it can do an support.
    Add-ins can only use features supported by Reader.
    You need Acrobat to edit PDF forms. Acrobat no longer supports access to SQL databases through Acrobat JavaScript.
    If you have an add-in and Acrobat can use it for filling a PDF form from Access, you need to talk to the developer to see if it can work with Reader.

  • Pacman throws "unrecognized archive format" error for .xz packages

    Hi,
    I am recently getting the following error while installing packages which are in .xz format only.
    for e.g.
    sudo pacman -S pacman  //works fine. as it is packaged in a .gz format
    sudo pacman -S xterm     // error while reading pakage /var/cache/pacman/pkg/xterm-261-1-i686.pkg.tar.xz  -- unrecognized archive format: Invalid or incomplete multibyte or wide character.
    I tried using the -U switch to install it -- I got the following little different message:
    $ sudo pacman -U /var/cache/pacman/pkg/xterm-261-1-i686.pkg.tar.xz
    error: error while reading pakage /var/cache/pacman/pkg/xterm-261-1-i686.pkg.tar.xz: unrecognized archive format: Invalid or incomplete multibyte or wide character.
    error: '/var/cache/pacman/pkg/xterm-261-1-i686.pkg.tar.xz': libarchive error
    I have libarchive-2.8.4-1 on my system ( I have reinstalled it. )
    [more info]
    I used ltrace to see what is happening, here is the trace around the point where I am getting the error:
    alpm_trans_commit(,,, <unfinished ...>
        printf("checking package integrity...\n")
        fflush(...)
        dcgettext(0, 0x805x690, 5, ...) = 0x8058690  ---- AFAIK, this one gets local specific string
        fprintf(..., "error: ")
        vfprintf(..., "error while reading package %s:"...)
    <... alpm_trans_commit(,,,) resumed> )
    alpm_strerrorlast(...)
    dcgettext()
    dcgettext()
    fprintf(... "error")
    Last edited by prasadr (2010-09-22 18:40:31)

    t@n6re ~]# ldd /usr/bin/pacman
            linux-vdso.so.1 =>  (0x00007fffc9bff000)
            libalpm.so.5 => /usr/lib/libalpm.so.5 (0x00007f4c44445000)
            libc.so.6 => /lib/libc.so.6 (0x00007f4c440e9000)
            libfetch.so => /usr/lib/libfetch.so (0x00007f4c43ed9000)
            libarchive.so.2 => /usr/lib/libarchive.so.2 (0x00007f4c43c96000)
            /lib/ld-linux-x86-64.so.2 (0x00007f4c44668000)
            libssl.so.1.0.0 => /usr/lib/libssl.so.1.0.0 (0x00007f4c43a3a000)
            libcrypto.so.1.0.0 => /usr/lib/libcrypto.so.1.0.0 (0x00007f4c4367e000)
            libacl.so.1 => /lib/libacl.so.1 (0x00007f4c43477000)
            libattr.so.1 => /lib/libattr.so.1 (0x00007f4c43273000)
            libexpat.so.1 => /usr/lib/libexpat.so.1 (0x00007f4c4304b000)
            liblzma.so.0 => /usr/lib/liblzma.so.0 (0x00007f4c42e29000)
            libbz2.so.1.0 => /lib/libbz2.so.1.0 (0x00007f4c42c19000)
            libz.so.1 => /usr/lib/libz.so.1 (0x00007f4c42a01000)
            libdl.so.2 => /lib/libdl.so.2 (0x00007f4c427fd000)
            libpthread.so.0 => /lib/libpthread.so.0 (0x00007f4c425e0000)
    [root@n6re ~]#

  • WebService Unrecognized binding style error

    I am trying to access a webservice method throught action
    Script. I just need to call a method " RequestSomeMethod"and send 2
    parameters. But am getting following error :
    RPC Fault faultString="Unrecognized binding style 'null'.
    Only 'document' and 'rpc' styles are supported."
    faultCode="EncodingError" faultDetail="null"
    I am not expecting anything back from the webservice. I just
    need to call the method so that it takes some action.
    Can please somebody help me with this and tell me why am I
    getting this error and how to get rid of it?
    Attacjed is the code I am using:
    <?xml version="1.0"?>
    <mx:Button xmlns:mx="
    http://www.adobe.com/2006/mxml"
    click="useWebService()" width="80%" >
    <mx:Script>
    <![CDATA[
    import mx.rpc.soap.LoadEvent;
    import mx.controls.Alert;
    import mx.rpc.http.HTTPService;
    import mx.rpc.soap.WebService;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    private var ws:WebService;
    private var para1:Number;
    private var para2:int;
    override public function set data(value:Object):void
    para1=1;
    setStyle("color", "red");
    enabled=false;
    label ="Do not click";
    para2=0
    public function useWebService():void {
    ws = new WebService();
    ws.addEventListener("fault", faultHandler);
    ws.addEventListener(LoadEvent.LOAD,wsLoaded);
    ws.addEventListener(ResultEvent.RESULT, result_listener);
    ws.wsdl= "someurl?wsdl";
    ws.loadWSDL();
    private function wsLoaded(loadEvent:Event):void{
    ws.RequestSomeMethod(para1, para2);
    public function echoResultHandler(event:ResultEvent):void {
    Alert.show("WSDL returned");
    public function faultHandler(event:FaultEvent):void {
    trace(event.fault);
    public function result_listener(event:ResultEvent):void {
    ]]>
    </mx:Script>
    </mx:Button>

    In the wsdl file that I am accessing, some of the tags it has
    are as below. It does not have style property in soap binding tag,
    but is in operation tag. Is that OK? or does flex expect it to be
    in soap binding tag and hence give me this error?:
    - <wsdl:binding name="abc" type="tns:IJK">
    <wsp:PolicyReference URI="#XYZ" />
    <soap12:binding transport="
    http://schemas.xmlsoap.org/soap/http"
    />
    - <wsdl:operation name="RequestDetails">
    <soap12:operation soapAction="
    http://tempuri/RequestDetails"
    style="document" />
    - <wsdl:input>
    <soap12:body use="literal" />
    </wsdl:input>
    - <wsdl:output>
    <soap12:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>

  • Unlisted error on voice over fr router

    I am getting the following log messages daily on 2 routers running voice over frame (not quite the right group I know...) - I cannot find any references anywhere on the Cisco website.
    Does anyone know what they mean & what is causing them ?
    Thanks for any replys........
    *Mar 6 07:40:03.133: convert_redirect_ocn_IE: illegal ieID passedencode_redirect_ocn_IE: invalid ieID! (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ...
    *Mar 6 08:07:27.366: convert_redirect_ocn_IE: illegal ieID passedencode_redirect_ocn_IE: invalid ieID! (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ...
    *Mar 6 08:17:04.613: convert_redirect_ocn_IE: illegal ieID passedencode_redirect_ocn_IE: invalid ieID! (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ...
    *Mar 6 08:40:46.535: convert_redirect_ocn_IE: illegal ieID passedencode_redirect_ocn_IE: invalid ieID! (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ...
    *Mar 6 09:10:26.846: convert_redirect_ocn_IE: illegal ieID passedencode_redirect_ocn_IE: invalid ieID!
    *Mar 6 09:13:43.037: convert_redirect_ocn_IE: illegal ieID passedencode_redirect_ocn_IE: invalid ieID! (ours: 1, peer's:6) Call should continue ... (ours: 1, peer's:6) Call should continue ...
    *Mar 6 09:18:20.175: convert_redirect_ocn_IE: illegal ieID passedencode_redirect_ocn_IE: invalid ieID! (ours: 1, peer's:6) Call should continue ...
    *Mar 6 09:32:30.279: convert_redirect_ocn_IE: illegal ieID passedencode_redirect_ocn_IE: invalid ieID!

    Thanks for that !!
    And apologies again for posting in the wrong group (I read it as "voice over IP"!!)

  • Error 10013 when using GPCTR_Control with ND_RESET

    I am using two 6602 cards and a MIO E6035 in an PXI system. I program the counter and the MIO for bufferd operation and start the measurement. This works good.
    Then I stop the actual measurement with DAQ_Clear for the MIO and GPCTR_Control with ND_RESET for each used counter on the 6602.
    After a while I want so start a new measurement and do the same init again. The second time I often (not allways !!) get an error code 10013 (-10013 badErrorCodeError: The driver returned an unrecognized or unlisted error code) when I call ND_RESET.
    Whe I get it once, I get it allways. WShen I stop my program and restart it, then the programming of the counters works aggain.
    What can I do? Is there a command, so that I can init the
    counter card completly?
    I am using NI Daq 6.9.1.
    Thanks
    Stephan

    Hi,
    I have the similar problem with 3 6602 board and 1 6220.
    Do you know how to reset the boards ? My application does acquier continusly without restarting.
    Thank's

  • Unlisted/Unsolved error code CE-30391-6

    Since some few days ago I keep getting the error ce-30391-6 everytime I use anything related with PSN (this includes ps store, ps+ games and of course, logging at PSN itself on the PS4) however I have no trouble accessing PSN from other devices.I have however no problem with the other features including playing other games or accessing apps. Already tried:->log-off/log-in, can not log into PSN again->Initialize PS4 through safe mode, trouble persists->Power-cycle the wifi + ps4 This is an unlisted error code Does anybody got any solution for this?

    Has anybody come up with a solution for this error code?It is incredibly poor that even when searching the Playstation website, 0 results are returned when searching for the error code. My Playstation unit has been displaying this error code for weeks now. If there is no solution to this error code, I'll simply be selling/returning my PS4 and purchasing an Xbox One. This is beyond a joke now.

  • Error starting weblogic Admin server

    Hi All,
    I am not very familiar with Fusion and weblogic but here is my situation:
    Background: I am trying to install Fusion Middleware so I can integrate Oracle Transport Management with E-Business Suite (as per note Integrating Oracle E-Business Suite Release 12 with Oracle BPEL in Oracle SOA Suite 11g (Doc ID 1321776.1))
    I just installed the following on Oracle Enterprise  Linux 64bits
    - SOA Suite 11.1.1.7.0
    - Weblogic Server 10.3.6
    -JDK 1.7.0_25
    -Jdev 11.1.1.7.0
    When starting the weblogic Admin server using "DOMAIN_HOME/startWebLogic.sh' I get an error:
    Starting weblogic with Java version:
    Unrecognized option -jrockit
    Error: Could not create the Java virtual machine
    I found a few thread with similar issue (for different versions of SOA suite)  where it got fixed by changing some parameters in the cmd file but I am not sure they apply to my case.
    Is the jdk version compatible? (I can start JDeveloper ok) , if not which one is the appropriate version. If i need to change it, can you provide details of how to do it? (I am not expert on SOA/Jdev  )
    Can you please help me here ?
    Thanks in advance!

    Well, I tested it
    java -version and it shows :
    1.7.0_25
    Java HotSpot 64 bit Server VM
    --> So I guess the problem is I don't seem to have the jrockit.
    I donwloaded it (Rel 28.7) and installed it. During installation it says "for JDK 1.6.0_45"
    Anyway. I let it install anyway and I modified the PATH to point to the Jrockit bin directory. Then run java -version and it now shows JDK 1.6.0_45 and jvm as rockit
    Now I tried to start the weblogic server and I get the same error. it still uses the JDK 1.7
    So.. again.. is this supported with JDK 7 ?
    How can I fix it now that I installed everything using the JDK 7?
    Thanks

  • If I copy the "lcds" folder, Tomcat starts with socket errors

    In the documentation it is said that when you create a new server-side application, you can start by copying the 'webapps/lcds' folder. I did that but then, Tomcat starts with some socket errors:
    [LCDS]SocketServer 'my-rtmp-SocketServer' failed to pre-validate desired socket settings for BindSocketAddress: 0.0.0.0:2038
    java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind
    [LCDS]SocketServer 'my-rtmp-SocketServer' failed to start.
    flex.messaging.LocalizedException: SocketServer 'my-rtmp-SocketServer' cannot bind to accept client connections on port '2038' because another process has already bound the port. Please ensure that multiple endpoints across all applications  are not configured to use this same port.
    Am I doing something wrong?
    Thanks,
    Borek

    What is happening is that you are getting a port conflict for the socket-based NIO and RTMP endpoints used in the channel definitions in the services-config.xml file of your new web app. The issue is that you have endpoints bound to the same port  in the LCDS web and in your new web app.
    You can deal with this one of two ways:
    Option 1: In that services-config.xml file, search on "RTMP" and "NIO" to find the channel definitions and change the port numbers to something slightly different than the ones used in the LCDS web app.
    Options 2: Move the LCDS web app out of the picture so it doesn't get loaded, and just use a template for future web apps. If you aren't using it for any of your development, there is really no reason you have to load it.
    I'll add a note about this to the documentation that talks about using the LCDS web app as a template.

  • Error when trying to display a report

    Hi,
    when trying to display a report in Forms 11g 11.1.1.4 the window do not shows anything, the weblogic 10.3.4 is installed on Windows Server 2008 R2
    The logs i saw are these, what could be the reason of the error, what should i do to fix it ??
    rwserver_diagnostic.log
    [2012-11-13T06:10:13.861-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.server] [tid: 15] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    [2012-11-13T06:10:13.861-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.server] [tid: 15] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    rwservlet_diagnostic.log
    [2012-11-13T06:10:10.272-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 11] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,1:29117] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    [2012-11-13T06:10:10.288-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 11] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,1:29117] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    [2012-11-13T06:10:13.689-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 11] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,1:29117] [APP: reports#11.1.1.2.0] RWClient:startInProcessServer  start inprocess server rep_wls_reports_srvweblogic_asinst_1
    [2012-11-13T06:10:14.656-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 15] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    [2012-11-13T06:10:14.656-08:00] [WLS_REPORTS] [WARNING] [] [oracle.reports.servlet] [tid: 15] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] [APP: reports#11.1.1.2.0] Multicast:init  java.net.SocketException: Unrecognized Windows Sockets error: 0: no Inet4Address associated with interface
    WLS_REPORTS-diagnostic.log
    [2012-11-09T13:44:41.421-08:00] [WLS_REPORTS] [NOTIFICATION] [] [oracle.reports.adminlogconfig] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <WLS Kernel>] [ecid: 0000Jfb8SNZ4YrWFLziOOA1GbN_0000002,0] [APP: reports#11.1.1.2.0] LogConfig.load: logging.xml
    [2012-11-13T06:10:14.032-08:00] [WLS_REPORTS] [NOTIFICATION] [] [oracle.security.oes.util.logging.Log4jConfigurator] [tid: Thread-36] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] Could not find log4j configuration for MicroSM.
    [2012-11-13T06:10:14.235-08:00] [WLS_REPORTS] [NOTIFICATION] [JPS-03258] [oracle.jps.authorization.provider] [tid: Thread-36] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] Initializing UserUtils; mbean: com.bea.security.providers.authorization.asi.ASIAuthorizationProviderMBeanImpl@f6467a1e([ASI Authorization Provider]), instance: null
    [2012-11-13T06:10:14.235-08:00] [WLS_REPORTS] [NOTIFICATION] [JPS-03258] [oracle.jps.authorization.provider] [tid: Thread-36] [userId: weblogic] [ecid: 8d029db4c88cfa6e:72f4635e:13ab3dc02b9:-8000-000000000000ccd7,0] Initializing UserUtils; using directory: RootOrg!AdminDir, anonymous user: anonymousRegards
    Carlos

    This is not really the correct forum to be posting Reports issues. However, if I were to guess, your issue is likely related to the known issues related to installing FMw11R1 on machines which had IPv6 enabled. In most cases, disabling IPv6 would correct the problem, however some issues were not resolved even after disabling IPv6 post-install. I would recommend patching to WLS 10.3.6 and FMw 11.1.1.6 as these versions include fixes for all of those issues as far as I recall.
    Consider referring to this MyOracleSupport document if you have access:
    Steps to Maintain Oracle Fusion Middleware 11g Release 1 (11.1.1) (Doc ID 1073776.1)

  • Error installing OBIEE 11g on Linux 64 bits - Configuration Assistant fails

    Hello,
    I am trying to install OBISE1 on Oracle Linux 5 - 64 bits.
    I've followed these steps:
    1) Install Oracle DB
    2) Install jdk Linux 64 bits (jdk1.7.0)
    3) Install WebLogic
    4) Install RCU
    5) Install OBI 11g (Software only installation)
    Until here, all is correct.
    6) Configuration assistant failed:
    [2011-09-12T12:04:58.844+02:00] [as] [ERROR] [] [oracle.as.provisioning]
    [tid: 14] [ecid: 0000J9Soq_rFGBWFLz6UOA1ERSJh000005,0]
    [2011-09-12T12:04:58.845+02:00] [as] [ERROR] [] [oracle.as.provisioning]
    [tid: 14] [ecid: 0000J9Soq_rFGBWFLz6UOA1ERSJh000005,0] [[
    oracle.as.provisioning.util.ConfigException:
    Error while starting the domain.
    Cause:
    Starting the Admin_Server timed out.
    Action:
    See logs for more details.
    at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
    at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3149)
    at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3039)
    at oracle.as.provisioning.engine.WorkFlowExecutor._startAdminServer(WorkFlowExecutor.java:1645)
    at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:635)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.install.bi.biconfig.standard.StandardWorkFlowExecutor.executeHelper(StandardWorkFlowExecutor.java:31)
    at oracle.as.install.bi.biconfig.standard.DomainProvisioningTask.doExecute(DomainProvisioningTask.java:48)
    at oracle.as.install.bi.biconfig.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:70)
    at oracle.as.install.bi.biconfig.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
    at oracle.as.install.bi.biconfig.BIConfigMain.doExecute(BIConfigMain.java:112)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
    at java.lang.Thread.run(Thread.java:662)
    [2011-09-12T12:04:58.846+02:00] [as] [ERROR] [] [oracle.as.provisioning]
    [tid: 14] [ecid: 0000J9Soq_rFGBWFLz6UOA1ERSJh000005,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
    at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.install.bi.biconfig.standard.StandardWorkFlowExecutor.executeHelper(StandardWorkFlowExecutor.java:31)
    at oracle.as.install.bi.biconfig.standard.DomainProvisioningTask.doExecute(DomainProvisioningTask.java:48)
    at oracle.as.install.bi.biconfig.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:70)
    at oracle.as.install.bi.biconfig.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
    at oracle.as.install.bi.biconfig.BIConfigMain.doExecute(BIConfigMain.java:112)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
    at java.lang.Thread.run(Thread.java:662)
    I have fount posts with a similar problem, but is over Windows.
    I appreciate any ide/suggestion.
    Thank you in advance.
    Regards,

    I have seen that WebLogic is shut down, so I am trying to start up, but I can't:
    starting weblogic with Java version:
    Unrecognized option: -jrockit
    Error: Could not create the Java Virtual Machine.
    Error: A fatal exception has occurred. Program will exit.
    Starting WLS with line:
    /usr/java/jdk1.7.0/bin/java -jrockit -Xms512m -Xmx512m
    -Dweblogic.Name=AdminServer
    -Djava.security.policy=/root/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.policy
    -Dweblogic.ProductionModeEnabled=true -da
    -Dplatform.home=/root/Oracle/Middleware/wlserver_10.3
    -Dwls.home=/root/Oracle/Middleware/wlserver_10.3/server
    -Dweblogic.home=/root/Oracle/Middleware/wlserver_10.3/server
    -Dweblogic.management.discover=true -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/root/Oracle/Middleware/patch_wls1035/profiles/default/sysext_manifest_classpath:/root/Oracle/Middleware/patch_ocp360/profiles/default/sysext_manifest_classpath
    weblogic.Server
    Unrecognized option: -jrockit
    Error: Could not create the Java Virtual Machine.
    Error: A fatal exception has occurred. Program will exit.
    I have modified /etc/profile, including JAVA_HOME and PATH with the java PATH. And it is ok, because if I executed java -version I can see the new jdk:
    java version "1.7.0"
    Java(TM) SE Runtime Environment (build 1.7.0-b147)
    Java HotSpot(TM) 64-Bit Server VM (build 21.0-b17, mixed mode)
    Any idea¿?

Maybe you are looking for

  • HP Laserjet 1200 printer occasional​ly won't collate

    I'm supporting a machine (XP SP3) running Word 2007.  Attached to this machine via parallel interface is a HP Laserjet 1200 printer. The user says occasionally that it will not collate output, no matter what she tries.  The problem just goes away on

  • How do i purchase pages free for iphone if i've got it on the ipad

    I have pages and keynote on my ipad. I understand that these can now be put on my iphone free of charge as they are on my ipad. When I go to the App store it asks me to buy at the usual price. How do I get them free?

  • USB file copy very slow

    Hi everyone, I hope that someone can help me with thisproblem: I was copying some files of 370 MB to a 4GB Kingston USB key and It took around 45 or 50 minutes to copy it and when I try to eject the key it give me an error. I tried again and it was t

  • How to point out high CPU Utilization in sql server 2008

    Hi, I am using sql server 2008 , where in i have 10 instances in the physical box of all sql server 2008 versions. I can see , the CPU (12 CPUS) that is allocated to the physical box is consuming around 90% of utilization, I need your help to point o

  • Need a list of oracle templates related to Items

    As a requirement i need to import items through a template. So i need to know the list of templates available to import(process) item import and where can i found them. Can any body please give me the list or suggest where can i get those templates..