Bootstrap to localhost/127.0.0.1:7001 failed.

I'm getting this error when I try to call a bean from a servlet:
javax.naming.CommunicationException - Root exception is java.net.ConnectException: t3://localhost:7001: Bootstrap to localhost/127.0.0.1:7001 failed. It is likely that the remote side declared peer gone on this JVM
I'm running Weblogic 10.3, Tomcat and the browser all on the same host. It is suggested to check the hosts file and it seems correct to me. Is this related to a routing issue? Am I supposed to manually configure any DNS rules within Weblogic Administration Console? I couldn't find any DNS settings there.
Thanks,
Jim
Edited by: Jim Twensky on May 21, 2009 11:10 AM

Hi Jim,
Did you resolve this issue? Because I have almost the sane issue!
thx
Pouyan

Similar Messages

  • Certificate chain received from localhost 127.0.0.1 failed hostname verification check.

    Hello friends. The dns name of our server recently changed. Since that time,
    nothing except the administration node will start up. Server logs reveal the
    following information:
    Certificate chain received from localhost - 127.0.0.1 failed hostname verification
    check. Certificate contained COTHUBT but check expected localhost>
    There is one trusted certificate that was added to the cacerts keystore. Does
    it need to be removed and re added? Any other insight would be appreciated.

    "brain" <[email protected]> wrote:
    Try this if you're running version 8
    In the admin node gui.
    Click on machines
    Click on the NodeManager tab for the machine that you are interested in.
    Change hostname in listen address.
    Bounce the app server
    >
    Hello friends. The dns name of our server recently changed. Since that
    time,
    nothing except the administration node will start up. Server logs reveal
    the
    following information:
    Certificate chain received from localhost - 127.0.0.1 failed hostname
    verification
    check. Certificate contained COTHUBT but check expected localhost>
    There is one trusted certificate that was added to the cacerts keystore.
    Does
    it need to be removed and re added? Any other insight would be appreciated.

  • XA & JMS javax.transaction.SystemException: SubCoordinator 'b00+127.0.0.1:7001+b+' not available

    Hi, I'm doing a "proof of concept" on XA transaction spanning two servers.
              In order to get it as simple as possible I have configured two servers and
              deployed the same MDB on both. I'm also only using JMS resources to simplify
              the test.
              The goal is to send a message to two different JMS servers (each deployed in
              a Weblogic server) both coordinated by an XA UserTransaction started in the
              client.
              The deployed MDB of each server just listens to a topic and prints out the
              received TextMessage.
              The configuration is as follows:
              * Server 1
              Domain name: a
              Server name: a00
              config.xml (extract):
              <JMSServer Name="a.a00.JMSServer" PagingStore="a.a00.JMSFileStore"
              Store="a.a00.JMSFileStore" Targets="a00">
              <JMSTopic JNDIName="xajms.test.Topic" Name="XA JMS Proof of Concept"
              StoreEnabled="true"/>
              </JMSServer>
              <JMSFileStore Directory="config/a/a00.jmsfilestore"
              Name="a.a00.JMSFileStore"/>
              <JMSConnectionFactory JNDIName="a.a00.JMSConnectionFactory"
              Name="a.a00.JMS Connection Factory" Targets="a00"
              UserTransactionsEnabled="true" XAConnectionFactoryEnabled="true"/>
              * Server 2
              Domain name: b
              Server name: b00
              config.xml (extract):
              <JMSServer Name="b.b00.JMSServer" PagingStore="b.b00.JMSFileStore"
              Store="b.b00.JMSFileStore" Targets="b00">
              <JMSTopic JNDIName="xajms.test.Topic" Name="XA JMS Proof of Concept"
              StoreEnabled="true"/>
              </JMSServer>
              <JMSFileStore Directory="config/b/b00.jmsfilestore"
              Name="b.b00.JMSFileStore"/>
              <JMSConnectionFactory JNDIName="b.b00.JMSConnectionFactory"
              Name="b.b00.JMS Connection Factory" Targets="b00"
              UserTransactionsEnabled="true" XAConnectionFactoryEnabled="true"/>
              and here is an extract of client code:
              068 UserTransaction utx;
              069
              070 InitialContext ctx1,ctx2;
              071
              072 System.out.println("Retrieving initial context for server 1");
              073 ctx1 = (InitialContext) getInitialContext(SERVER_1,PORT_1);
              074
              075 System.out.println("Retrieving initial context for server 2");
              076 ctx2 = (InitialContext) getInitialContext(SERVER_2,PORT_2);
              077
              078 utx = (UserTransaction)
              ctx1.lookup("javax.transaction.UserTransaction");
              079 utx.setTransactionTimeout(30);
              080
              081 System.out.println("Begining transaction");
              082 utx.begin();
              083
              084 System.out.println("Sending message to server 1");
              085 ref.send(ctx1, JMS_FACTORY_1, args[0]);
              086
              087 System.out.println("Sending message to server 2");
              088 ref.send(ctx2, JMS_FACTORY_2, args[0]);
              089
              090 System.out.println("Ending transaction...");
              091 if (args[1].equals("commit"))
              092 utx.commit();
              093 else
              094 utx.rollback();
              end the result of executing it from a third machine:
              CASE I:
              Retrieving initial context for server 1
              Retrieving initial context for server 2
              Begining transaction
              Sending message to server 1
              Sending message to server 2
              Ending transaction...
              javax.transaction.SystemException: SubCoordinator 'b00+127.0.0.1:7001+b+'
              not available
              Start server side stack trace:
              javax.transaction.SystemException: SubCoordinator 'b00+127.0.0.1:7001+b+'
              not available
              at
              weblogic.transaction.internal.TransactionImpl.abort(TransactionImpl.java:965
              at
              weblogic.transaction.internal.ServerSCInfo.startPrepare(ServerSCInfo.java:20
              0)
              at
              weblogic.transaction.internal.ServerTransactionImpl.globalPrepare(ServerTran
              sactionImpl.java:1619)
              at
              weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTra
              nsactionImpl.java:217)
              at
              weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransaction
              Impl.java:189)
              at
              weblogic.transaction.internal.CoordinatorImpl.commit(CoordinatorImpl.java:68
              at
              weblogic.transaction.internal.CoordinatorImpl_WLSkel.invoke(Unknown Source)
              at
              weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:360)
              at
              weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:329)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:2
              2)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:140)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:121)
              End server side stack trace
              <<no stack trace available>>
              --------------- nested within: ------------------
              weblogic.transaction.RollbackException: SubCoordinator
              'b00+127.0.0.1:7001+b+' not available
              Start server side stack trace:
              javax.transaction.SystemException: SubCoordinator 'b00+127.0.0.1:7001+b+'
              not available
              at
              weblogic.transaction.internal.TransactionImpl.abort(TransactionImpl.java:965
              at
              weblogic.transaction.internal.ServerSCInfo.startPrepare(ServerSCInfo.java:20
              0)
              at
              weblogic.transaction.internal.ServerTransactionImpl.globalPrepare(ServerTran
              sactionImpl.java:1619)
              at
              weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTra
              nsactionImpl.java:217)
              at
              weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransaction
              Impl.java:189)
              at
              weblogic.transaction.internal.CoordinatorImpl.commit(CoordinatorImpl.java:68
              at
              weblogic.transaction.internal.CoordinatorImpl_WLSkel.invoke(Unknown Source)
              at
              weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:360)
              at
              weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:329)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:2
              2)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:140)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:121)
              --------------- nested within: ------------------
              weblogic.transaction.RollbackException: SubCoordinator
              'b00+127.0.0.1:7001+b+' not available - with nested exception:
              [javax.transaction.SystemException: SubCoordinator 'b00+127.0.0.1:7001+b+'
              not available]
              at
              weblogic.transaction.internal.TransactionImpl.throwRollbackException(Transac
              tionImpl.java:1524)
              at
              weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTra
              nsactionImpl.java:265)
              at
              weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransaction
              Impl.java:189)
              at
              weblogic.transaction.internal.CoordinatorImpl.commit(CoordinatorImpl.java:68
              at
              weblogic.transaction.internal.CoordinatorImpl_WLSkel.invoke(Unknown Source)
              at
              weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:360)
              at
              weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:329)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:2
              2)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:140)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:121)
              End server side stack trace
              - with nested exception:
              [javax.transaction.SystemException: SubCoordinator 'b00+127.0.0.1:7001+b+'
              not available
              Start server side stack trace:
              javax.transaction.SystemException: SubCoordinator 'b00+127.0.0.1:7001+b+'
              not available
                      at
              weblogic.transaction.internal.TransactionImpl.abort(TransactionImpl.java:965
                      at
              weblogic.transaction.internal.ServerSCInfo.startPrepare(ServerSCInfo.java:20
              0)
                      at
              weblogic.transaction.internal.ServerTransactionImpl.globalPrepare(ServerTran
              sactionImpl.java:1619)
                      at
              weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTra
              nsactionImpl.java:217)
                      at
              weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransaction
              Impl.java:189)
                      at
              weblogic.transaction.internal.CoordinatorImpl.commit(CoordinatorImpl.java:68
                      at
              weblogic.transaction.internal.CoordinatorImpl_WLSkel.invoke(Unknown Source)
                      at
              weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:360)
                      at
              weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:329)
                      at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:2
              2)
                      at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:140)
                      at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:121)
              End  server side stack trace
              at
              weblogic.rmi.internal.BasicOutboundRequest.sendReceive(BasicOutboundRequest.
              java:85)
              at
              weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:136)
              at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
              at $Proxy3.commit(Unknown Source)
              at
              weblogic.transaction.internal.TransactionImpl.commit(TransactionImpl.java:29
              4)
              at
              weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              erImpl.java:247)
              at
              weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              erImpl.java:240)
              at xajms.client.Send2BothTopics.main(Send2BothTopics.java:110)
              real 1m6.530s
              user 0m1.380s
              sys 0m0.050s
              If I swap message sending order the output changes to:
              CASE II:
              Retrieving initial context for server 1
              Retrieving initial context for server 2
              Begining transaction
              Sending message to server 2
              Sending message to server 1
              Ending transaction...
              weblogic.transaction.internal.TimedOutException: Timed out
              tx=0:8c9a9deee02fe21e after 30 seconds
              Start server side stack trace:
              weblogic.transaction.internal.TimedOutException: Timed out
              tx=0:8c9a9deee02fe21e after 30 seconds
              at
              weblogic.transaction.internal.ServerTransactionImpl.wakeUp(ServerTransaction
              Impl.java:1228)
              at
              weblogic.transaction.internal.ServerTransactionManagerImpl.processTimedOutTr
              ansactions(ServerTransactionManagerImpl.java:488)
              at
              weblogic.transaction.internal.TransactionManagerImpl.wakeUp(TransactionManag
              erImpl.java:1629)
              at
              weblogic.transaction.internal.ServerTransactionManagerImpl.wakeUp(ServerTran
              sactionManagerImpl.java:451)
              at
              weblogic.transaction.internal.TransactionManagerImpl$1.run(TransactionManage
              rImpl.java:1595)
              at java.lang.Thread.run(Thread.java:479)
              End server side stack trace
              <<no stack trace available>>
              --------------- nested within: ------------------
              weblogic.transaction.RollbackException: Timed out tx=0:8c9a9deee02fe21e
              after 30 seconds
              Start server side stack trace:
              weblogic.transaction.internal.TimedOutException: Timed out
              tx=0:8c9a9deee02fe21e after 30 seconds
              at
              weblogic.transaction.internal.ServerTransactionImpl.wakeUp(ServerTransaction
              Impl.java:1228)
              at
              weblogic.transaction.internal.ServerTransactionManagerImpl.processTimedOutTr
              ansactions(ServerTransactionManagerImpl.java:488)
              at
              weblogic.transaction.internal.TransactionManagerImpl.wakeUp(TransactionManag
              erImpl.java:1629)
              at
              weblogic.transaction.internal.ServerTransactionManagerImpl.wakeUp(ServerTran
              sactionManagerImpl.java:451)
              at
              weblogic.transaction.internal.TransactionManagerImpl$1.run(TransactionManage
              rImpl.java:1595)
              at java.lang.Thread.run(Thread.java:479)
              --------------- nested within: ------------------
              weblogic.transaction.RollbackException: Timed out tx=0:8c9a9deee02fe21e
              after 30 seconds - with nested exception:
              [weblogic.transaction.internal.TimedOutException: Timed out
              tx=0:8c9a9deee02fe21e after 30 seconds]
              at
              weblogic.transaction.internal.TransactionImpl.throwRollbackException(Transac
              tionImpl.java:1524)
              at
              weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTra
              nsactionImpl.java:265)
              at
              weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransaction
              Impl.java:189)
              at
              weblogic.transaction.internal.CoordinatorImpl.commit(CoordinatorImpl.java:68
              at
              weblogic.transaction.internal.CoordinatorImpl_WLSkel.invoke(Unknown Source)
              at
              weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:360)
              at
              weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:329)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:2
              2)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:140)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:121)
              End server side stack trace
              - with nested exception:
              [weblogic.transaction.internal.TimedOutException: Timed out
              tx=0:8c9a9deee02fe21e after 30 seconds
              Start server side stack trace:
              weblogic.transaction.internal.TimedOutException: Timed out
              tx=0:8c9a9deee02fe21e after 30 seconds
                      at
              weblogic.transaction.internal.ServerTransactionImpl.wakeUp(ServerTransaction
              Impl.java:1228)
                      at
              weblogic.transaction.internal.ServerTransactionManagerImpl.processTimedOutTr
              ansactions(ServerTransactionManagerImpl.java:488)
                      at
              weblogic.transaction.internal.TransactionManagerImpl.wakeUp(TransactionManag
              erImpl.java:1629)
                      at
              weblogic.transaction.internal.ServerTransactionManagerImpl.wakeUp(ServerTran
              sactionManagerImpl.java:451)
                      at
              weblogic.transaction.internal.TransactionManagerImpl$1.run(TransactionManage
              rImpl.java:1595)
                      at java.lang.Thread.run(Thread.java:479)
              End  server side stack trace
              at
              weblogic.rmi.internal.BasicOutboundRequest.sendReceive(BasicOutboundRequest.
              java:85)
              at
              weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:136)
              at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
              at $Proxy3.commit(Unknown Source)
              at
              weblogic.transaction.internal.TransactionImpl.commit(TransactionImpl.java:29
              4)
              at
              weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              erImpl.java:247)
              at
              weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              erImpl.java:240)
              at xajms.client.Send2BothTopics.main(Send2BothTopics.java:110)
              real 1m32.231s
              user 0m1.390s
              sys 0m0.030s
              not to be said that I have "some" questions about it:
              1. Why it doesn't work?
              2. Why order of message sending brings two different results?
              3. In CASE I:
              What is the meaning of the exception "javax.transaction.SystemException:
              SubCoordinator 'b00+127.0.0.1:7001+b+' not available"
              Why is it using the loopback (127.0.0.1) ip? Is that code being runned
              inside the server with the SERVER_2 (192.168.1.3) ip?
              4. In case II:
              How is that the message of the exception is
              "weblogic.transaction.internal.TimedOutException: Timed out
              tx=0:8c9a9deee02fe21e after 30 seconds" when it's clear the program took
              more than one and a half minutes to execute?
              Most of the time is spent after printing the "Ending transaction..." line.
              The first part of the program is executed in a few seconds (about 2 or 3 it
              depends of the time to get initial context against both servers)
              I'm really puzzled with this. I don't know what to think about it. Is this
              so weird nobody have tried something like this?
              I have done some other test for which the results are:
              a) Commenting lines related to UserTransaction (82,91-94)
              It works OK. Both servers receive the message.
              b) Commenting lines 85 or 88 (related to sending messages to each server)
              It works OK. Both servers receive the message. I pressume there is no
              "real" XA transaction as there is only one resource involved on it.
              c) In CASE I launching the client with "rollback" as second parameter I
              neither get any exception nor messages are delivered which would be OK
              d) In CASE II launching the client with "rollback" as second parameter I get
              a "javax.transaction.SystemException: Timeout during rollback processing"
              and messages are not delivered.
              Any idea?. I really need this to work in order to free our server for heavy
              asyncronous loads and deploy new stuff on it.
              PS.
              I attach both servers config.xml files and both MDB and client full code. If
              you are going to test it you must add a new user and group to weblogic
              default file realm:
              New user: subscriber
              New group: xajms
              of course you must add the new user to the new group in order to make it
              work.
              Here are the lines extracted from server's domain "fileRealm.properties"
              file reflecting the new user and group (defined on ejb-jar.xml and
              weblogic-ejb-jar.xml files on the "role" section):
              group.xajms=subscriber
              user.subscriber=0x6b9a704bebc709dd083edd61ed000236eb23987f
              The client receives two parameters. The first one is a string to be sent as
              message body, the second one is either "commit" or "rollback" just to test
              XA transaction doing it's work as expected.
              Thanks in advance.
              Regards.
              Ignacio.
              [xajmspoc.zip]
              

    do you connect to 10g database inside onBusinessEvent using Non-XA/XA connection??. I guess it could be bcoz of Non-XA connection (or) XA Without Global Transaction support, and this connection is listed with the transaction manager and it is trying to commit it after onMessage.
    For Global Transactions options, go to your weblogic console and check the following path.
    (Datasource -> Advanced Options -> Global Transactions -> Honor Global Transactions should be true)
    Let me know if you need any help
    Rao Kotha.

  • ICMP Host Unreachable from gateway localhost (127.0.0.1)

    I had a functional zone. But we had an outage and for some reason one of my zones is unreachable. Looks like the problem is that the default route has changed. How can I add a default route to a zone?
    Thanks
    Manish
    --- global zone ---
    -bash-3.00# zoneadm list -iv
    ID NAME STATUS PATH BRAND IP
    0 global running / native shared
    2 www running /export/zones/www native shared
    4 java running /export/zones/java native shared
    --- zone java ---
    -bash-3.00# ping 131.247.16.130
    ICMP Host Unreachable from gateway localhost (127.0.0.1)
    for icmp from localhost (127.0.0.1) to 131.247.16.130
    ICMP Host Unreachable from gateway localhost (127.0.0.1)
    for icmp from localhost (127.0.0.1) to 131.247.16.130
    ICMP Host Unreachable from gateway localhost (127.0.0.1)
    for icmp from localhost (127.0.0.1) to 131.247.16.130
    -bash-3.00# ifconfig -a
    lo0:1: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    bge0:3: flags=4001000842<BROADCAST,RUNNING,MULTICAST,IPv4,DUPLICATE> mtu 1500 index 2
    inet 131.247.16.149 netmask ffffff80 broadcast 131.247.16.255
    -bash-3.00# netstat -rn
    Routing Table: IPv4
    Destination Gateway Flags Ref Use Interface
    127.0.0.1 127.0.0.1 UH 4 61 lo0:1
    -bash-3.00# route add default 131.247.16.254
    add net default: gateway 131.247.16.254: insufficient privileges
    --- zone www ---
    -bash-3.00# netstat -rn
    Routing Table: IPv4
    Destination Gateway Flags Ref Use Interface
    default 131.247.16.254 UG 1 47
    131.247.16.128 131.247.16.131 U 1 13 bge0:2
    224.0.0.0 131.247.16.131 U 1 0 bge0:2
    127.0.0.1 127.0.0.1 UH 4 108 lo0:2

    ifconfig -a will show when you have a duplicated IP address.
    It appears along with the text values for the interface flags ie
    host-u010|global$ ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index
    1
    inet 127.0.0.1 netmask ff000000
    bge0: flags=9040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER> m
    tu 1500 index 2
    inet 10.236.93.156 netmask ffffffc0 broadcast 192.168.93.191
    groupname data
    host-u010|global$
    You would see DUPLICATE or DUPLICATED in that field, and the flags would be different. Sorry, I don't have a duplicate IP situation going on right now, but my memory says it looked something like this:
    host-u010|global$ ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index
    1
    inet 127.0.0.1 netmask ff000000
    bge0: flags=9040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,DUPLICATE> m
    tu 1500 index 2
    inet 10.236.93.156 netmask ffffffc0 broadcast 192.168.93.191
    groupname data
    host-u010|global$
    Cheers,

  • May 17 12:07:23 localhost configd[112]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50) May 17 12:07:23 localhost configd[112]: DHCP en1: INIT transmit failed May 17 12:07:26 localhost LCA[309]: Bookmark failed to issue extension for i

    BELOW IS A COPY OF THE ERRORS IN MY INSTALL LOG FROM MY MACBOOK PRO! CAN ANYONE GIVE ME A CLUE TO WHAT I SHOULD DO? I CANNOT REINSTALL LION FOR ANYTHING. I'VE TRIED REINSTALLING THROUGH DU BY USING COMMAND+R, A DISK I CREATED WITH AN IMAGE OF INSTALLESD FILE ON THERE, AND OTHER SUCH THINGS AS RESETTING THE PRAM. BUT STILL NO LUCK. ALL THE COMPONETS DOWLOAD AND EVERYTHING BUT THEN WHEN IT RESETS AND JUST DISPLAYS A NO ENTRY SIGN AGAIN. THIS PROBLEM BEGINNED WITH ME TRYING TO REINSTALL LION TWO WEEKS IN A ROW. THE FIRST TIME WAS A SUCCESS AND THE SECOND TIME WAS A FAIL. I'M VERY NEW TO APPLE AND I PAID $750.00 FOR THIS MBP FROM A FORMER FRIEND AND HE SWORE IT WASN'T STOLEN. HE SAID HE JUST WANT TO SWITCH TO THE MAC WITH JUST THE MONITER. NOW I'M WONDER IF THIS IS APPLE'S WAY OF SAYING THIS LAPTOP IS IN FACT STOLEN BY THE NO ENTRY SIGN.
    May 17 12:07:23 localhost configd[112]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    May 17 12:07:23 localhost configd[112]: DHCP en1: INIT transmit failed
    May 17 12:07:26 localhost LCA[309]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4000): No such file or directory
    May 17 12:07:26 localhost LCA[309]: Bookmark failed to issue extension for item  (depth=4000): No such file or directory
    May 17 12:07:26 localhost LCA[309]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4001): No such file or directory
    May 17 12:25:18 localhost OSIESpringboard[336]: Bookmark failed to issue extension for item  (depth=4000): No such file or directory
    May 17 12:25:18 localhost OSIESpringboard[336]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4001): No such file or directory
    May 17 12:25:20 localhost Unknown[310]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    May 17 12:25:20 localhost Unknown[310]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    May 17 12:25:20 localhost Unknown[310]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    May 17 12:25:20 localhost Unknown[310]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    May 17 12:27:12 localhost Unknown[310]: 2012-05-17 12:27 Disk Utility[341] (CarbonCore.framework) FSEventStreamStart: ERROR: FSEvents_connect() => Unknown service name (1102)
    May 17 12:27:12 localhost opendirectoryd[101]: 311.1 - unable to find authentication module 'ConfigurationProfiles'
    May 17 12:27:12 localhost opendirectoryd[101]: 311.1 - unable to find service discovery callback for module 'PlistFile'
    May 17 12:27:12 localhost opendirectoryd[101]: 311.2, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    May 17 12:27:12 localhost opendirectoryd[101]: 311.2, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    May 17 12:27:12 localhost opendirectoryd[101]: 311.3, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    May 17 12:27:12 localhost opendirectoryd[101]: 311.4, Node: /Local/Default, Module: PlistFile - client is using an old record type 'dsRecTypeNative:config/SharePoints' should be using kODRecordTypeSharePoints
    May 17 12:27:12 localhost opendirectoryd[101]: 311.4, Node: /Local/Default, Module: PlistFile - client is using an old record type 'dsRecTypeNative:config/SharePoints' should be using kODRecordTypeSharePoints
    May 17 12:27:12 localhost opendirectoryd[101]: Module: PlistFile - ___index_record_block_invoke_1: sqlite3_prepare_v2: 21
    May 17 12:27:12 localhost opendirectoryd[101]: Module: PlistFile - ___index_record_block_invoke_1: sqlite3_prepare_v2: 21

    BELOW IS A COPY OF THE ERRORS IN MY INSTALL LOG FROM MY MACBOOK PRO! CAN ANYONE GIVE ME A CLUE TO WHAT I SHOULD DO? I CANNOT REINSTALL LION FOR ANYTHING. I'VE TRIED REINSTALLING THROUGH DU BY USING COMMAND+R, A DISK I CREATED WITH AN IMAGE OF INSTALLESD FILE ON THERE, AND OTHER SUCH THINGS AS RESETTING THE PRAM. BUT STILL NO LUCK. ALL THE COMPONETS DOWLOAD AND EVERYTHING BUT THEN WHEN IT RESETS AND JUST DISPLAYS A NO ENTRY SIGN AGAIN. THIS PROBLEM BEGINNED WITH ME TRYING TO REINSTALL LION TWO WEEKS IN A ROW. THE FIRST TIME WAS A SUCCESS AND THE SECOND TIME WAS A FAIL. I'M VERY NEW TO APPLE AND I PAID $750.00 FOR THIS MBP FROM A FORMER FRIEND AND HE SWORE IT WASN'T STOLEN. HE SAID HE JUST WANT TO SWITCH TO THE MAC WITH JUST THE MONITER. NOW I'M WONDER IF THIS IS APPLE'S WAY OF SAYING THIS LAPTOP IS IN FACT STOLEN BY THE NO ENTRY SIGN.
    May 17 12:07:23 localhost configd[112]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    May 17 12:07:23 localhost configd[112]: DHCP en1: INIT transmit failed
    May 17 12:07:26 localhost LCA[309]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4000): No such file or directory
    May 17 12:07:26 localhost LCA[309]: Bookmark failed to issue extension for item  (depth=4000): No such file or directory
    May 17 12:07:26 localhost LCA[309]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4001): No such file or directory
    May 17 12:25:18 localhost OSIESpringboard[336]: Bookmark failed to issue extension for item  (depth=4000): No such file or directory
    May 17 12:25:18 localhost OSIESpringboard[336]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4001): No such file or directory
    May 17 12:25:20 localhost Unknown[310]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    May 17 12:25:20 localhost Unknown[310]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    May 17 12:25:20 localhost Unknown[310]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    May 17 12:25:20 localhost Unknown[310]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    May 17 12:27:12 localhost Unknown[310]: 2012-05-17 12:27 Disk Utility[341] (CarbonCore.framework) FSEventStreamStart: ERROR: FSEvents_connect() => Unknown service name (1102)
    May 17 12:27:12 localhost opendirectoryd[101]: 311.1 - unable to find authentication module 'ConfigurationProfiles'
    May 17 12:27:12 localhost opendirectoryd[101]: 311.1 - unable to find service discovery callback for module 'PlistFile'
    May 17 12:27:12 localhost opendirectoryd[101]: 311.2, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    May 17 12:27:12 localhost opendirectoryd[101]: 311.2, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    May 17 12:27:12 localhost opendirectoryd[101]: 311.3, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    May 17 12:27:12 localhost opendirectoryd[101]: 311.4, Node: /Local/Default, Module: PlistFile - client is using an old record type 'dsRecTypeNative:config/SharePoints' should be using kODRecordTypeSharePoints
    May 17 12:27:12 localhost opendirectoryd[101]: 311.4, Node: /Local/Default, Module: PlistFile - client is using an old record type 'dsRecTypeNative:config/SharePoints' should be using kODRecordTypeSharePoints
    May 17 12:27:12 localhost opendirectoryd[101]: Module: PlistFile - ___index_record_block_invoke_1: sqlite3_prepare_v2: 21
    May 17 12:27:12 localhost opendirectoryd[101]: Module: PlistFile - ___index_record_block_invoke_1: sqlite3_prepare_v2: 21

  • Localhost / 127.0.0.1 generates 404 Not Found

    When I start the Apache server through System Preferences -> sharing and then point my browser to localhost or 127.0.0.1 I get a
    "Not Found
    The requested URL / was not found on this server.
    Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/1.3.33 Server at XXXXXXXXXXXXXXXXXXXXX Port 80"
    Might I have misconfigured something? It feels like a root should always "be found"
    Any help much apreciated!

    >Might I have misconfigured something? It feels like a root should always "be found"
    Only if you've added an index.html file in your document root directory. If you don't have one then apache will throw an error.
    In any case, check the error log /var/log/httpd/error_log which should give more info as to what's wrong.

  • Localhost 127.0.0.1(oracle database express edition)

    hi all,
    i finished installing the oracle database express edition,checked the "launch the database homepage" , i still could not load the database homepage,the message i keep getting is "internet explorer cannot display the page" and i tried it on firefox i got the same message. the two browsers have the url :http://127.0.0.1:8080/apex.
    kindly help me out with this.

    please check the IP address .. looks like you IP is wrong
    --Girish                                                                                                                                                                                           

  • Wldeploy dosent work as expected in 11.1.2 as it works in 11.1.1.1.5

    I have the exactly same problem as described in this thread Error running Weblogic.Deployer in medrec tutorial (wl9.1)
    But my old jdev version (11.1.1.1.5) where things works fine and I am migrating to new jdev version (11.1.2) during wldeploy
    C:\Oracle\Middleware1112\jdeveloper\jdev\bin>
    C:\Oracle\Middleware1112\jdk160_24\bin\javaw.exe -client -Dosgi.clean=true -XX:MaxPermSize=256M -Xbootclasspath/p:../lib/lwawt.jar -Xbootclasspath/p:../lib/apt-expose.jar -Dsun.awt.keepWorkingSetOnMinimize=true -XX:+HeapDumpOnOutOfMemoryError -Doracle.jdeveloper.webservice.showAllOwsmPolicyTypes=false -Doracle.jdeveloper.webservice.hidePropertyOverride=false -Dsun.awt.disablegrab=true -Xbootclasspath/p:../../rdbms/jlib/ojdi.jar -Dide.patches.dir=jdev/lib/patches -Dnetbeans.home=../../netbeans/platform/ -Dnetbeans.logger.console=true -Dexcluded.modules=org.eclipse.osgi -Dide.cluster.dirs=../../netbeans/netbinox/:../../netbeans/bridge/:../../ -Xmx800M -Xms128M -Xverify:none -Doracle.ide.extension.HooksProcessingMode=LAZY -Dorg.eclipse.equinox.simpleconfigurator.configUrl=file:bundles.info -Dosgi.bundles=file:../ide/lib/oracle.ide.osgi.jar@3:start -Dosgi.bundles.defaultStartLevel=1 -Dosgi.configuration.cascaded=false -Dosgi.noShutdown=true -Dorg.osgi.framework.bootdelegation=* -Dosgi.parentClassloader=app -Xbootclasspath/p:../../rdbms/jlib/ojdi.jar -Dosgi.classloader.singleThreadLoads=true -Dosgi.bundlefile.limit=2000 -Xbootclasspath/a:../../../oracle_common/modules/oracle.nlsrtl_11.1.0/orai18n-collation.jar -Xbootclasspath/a:../../../oracle_common/modules/oracle.nlsrtl_11.1.0/orai18n-mapping.jar -Xbootclasspath/a:../../../oracle_common/modules/oracle.nlsrtl_11.1.0/orai18n-servlet.jar -Xbootclasspath/a:../../../oracle_common/modules/oracle.nlsrtl_11.1.0/orai18n-utility.jar -Xbootclasspath/a:../../../oracle_common/modules/oracle.nlsrtl_11.1.0/orai18n.jar -Xbootclasspath/a:../../../oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar -Djavax.xml.parsers.DocumentBuilderFactory=oracle.xml.jaxp.JXDocumentBuilderFactory -Djavax.xml.parsers.SAXParserFactory=oracle.xml.jaxp.JXSAXParserFactory -Dorg.xml.sax.driver=oracle.xml.parser.v2.SAXParser -Dide.feedback-server=ide.us.oracle.com -Xbootclasspath/a:../../ide/lib/xml-factory.jar -Djavax.xml.transform.TransformerFactory=oracle.ide.xml.SwitchableTransformerFactory -Dsun.java2d.noddraw=true -Dide.conf=C:\Oracle\Middleware1112\jdeveloper\jdev\bin\jdev.conf -Dide.startingcwd=C:\Oracle\Middleware1112\jdeveloper\jdev\bin "-Dide.user.dir=C:\Documents and Settings\pakrish.APPLICATIONS\Application Data\JDeveloper\system11.1.2.0.38.60.17\o.jdeveloper.extensiondt.core\EDTplatform-dt_jdev-UserAndPrefDir" -Dedt.hot.classes=D:\tmp\jdev1112\SAIExtn_1App\TestAntInvoke\classes -Dedt.hot.manifest=D:\tmp\jdev1112\SAIExtn_1App\TestAntInvoke\src\META-INF\extension.xml -Dedt.hot.deploydir=jdev/extensions/ -Dedt.extension.id=yourcompany.testantinvoke -agentlib:jdwp=transport=dt_socket,server=y,address=1589 -Dcom.sun.xml.bind.v2.bytecode.ClassTailor.noOptimize=true -classpath C:\Oracle\Middleware1112\jdeveloper\ide\lib\ide-boot.jar;C:\Oracle\Middleware1112\jdeveloper\netbeans\platform\lib\boot.jar;C:\Oracle\Middleware1112\jdeveloper\netbeans\platform\lib\org-openide-util.jar;C:\Oracle\Middleware1112\jdeveloper\netbeans\platform\lib\org-openide-util-lookup.jar;C:\Oracle\Middleware1112\jdeveloper\netbeans\platform\lib\org-openide-modules.jar;C:\Oracle\Middleware1112\jdeveloper\ide\lib\fcpboot.jar -Djavax.net.ssl.trustStore=C:\DOCUME~1\PAKRIS~1.APP\LOCALS~1\Temp\trustStore5123141337500065063.jks -Dhttp.proxyHost=www-proxy.us.oracle.com -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=localhost|localhost.localdomain|127.0.0.1|::1|10.177.10.174| -Dhttps.proxyHost=www-proxy.us.oracle.com -Dhttps.proxyPort=80 -Xbootclasspath/a:C:\Oracle\Middleware1112\jdk160_24\lib\tools.jar;C:\Oracle\Middleware1112\jdk160_24\lib\dt.jar oracle.ide.osgi.boot.JDeveloper
    Listening for transport dt_socket at address: 1589
    Debugger connected to local process.
    Source breakpoint: InvokeAnt.java:35
    Source breakpoint: InvokeAnt.java:63
    Warning: Reference lib.path has not been set at runtime, but was found during
    build file parsing, attempting to resolve. Future versions of Ant may support
    referencing ids defined in non-executed targets.
    deploy:
    weblogic.Deployer -debug -nostage -verbose -upload -noexit -name globalweather -source C:\JDeveloper\mywork\SFE\outbound\globalweather\1.0.0.0.0\deploy\globalweather.ear -targets DefaultServer -adminurl t3://localhost:7101 -user weblogic -password ******** -deploy
    weblogic.Deployer invoked with options: -debug -nostage -verbose -upload -noexit -name globalweather -source C:\JDeveloper\mywork\SFE\outbound\globalweather\1.0.0.0.0\deploy\globalweather.ear -targets DefaultServer -adminurl t3://localhost:7101 -user weblogic -deploy
    [WebLogicDeploymentManagerImpl.<init>():115] : Constructing DeploymentManager for J2EE version V1_4 deployments
    [WebLogicDeploymentManagerImpl.getNewConnection():158] : Connecting to admin server at localhost:7101, as user weblogic
    [ServerConnectionImpl.getEnvironment():286] : setting environment
    [ServerConnectionImpl.getEnvironment():289] : getting context using t3://localhost:7101
    [ServerConnectionImpl.getMBeanServer():237] : Connecting to MBeanServer at service:jmx:t3://localhost:7101/jndi/weblogic.management.mbeanservers.domainruntime
    java.io.IOException
         at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:196)
         at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:84)
         at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:338)
         at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:247)
         at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.getMBeanServer(ServerConnectionImpl.java:238)
    weblogic.deploy.api.tools.deployer.DeployerException: Unable to connect to 't3://localhost:7101': Bootstrap to localhost/127.0.0.1:7101 failed. It is likely that the remote side declared peer gone on this JVM. Ensure the url represents a running admin server and that the credentials are correct. If using http protocol, tunneling must be enabled on the admin server.

    Retrieving Information about WebLogic Server:
    Run
    1. <WLHOME>/server/bin/setWLSEnv
    2. java weblogic.Admin -adminurl t3://127.0.0.1:7001 -username weblogic -password weblogic1 PING 3 100
    In case of exception smth like "Caused By: java.net.UnknownHostException: localhost"
    add mappings of IP address to host name
    127.0.0.1 localhost
    For windows:
    C:\Windows\System32\drivers\etc\hosts
    Edited by: user6372268 on Dec 20, 2012 1:53 AM

  • Fail to instantiate InitialContext

    The WebLogic server throws error I tried to instantiate InitialContext. I'm using
    WebLogic 6.1 trial version under Windows 2000 Server.
    Please help.
    Thanks,
    Huale
    -- code--
    Properties prop = new Properties();
    prop.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    prop.put(Context.PROVIDER_URL, "t3://localhost:7001");
    InitialContext ic = new InitialContext(prop);
    error in client--
    javax.naming.CommunicationException [Root exception is java.net.ConnectException:
    t3://localhost:7001: Bootstrap to: 'localhost/127.0.0.1:7001' over: 't3' got an
    error or timed out]
    error in server--
    <Error> <NT Performance Pack> <failure in process
    Sockets() - GetData: 'weblogic.socket.GetData@393cf8 - fd: '2064', numBytes: '12
    25''
    java.util.EmptyStackException
    at weblogic.utils.collections.Stack.pop(Stack.java:72)
    at weblogic.rjvm.InboundMsgAbbrev.getAbbrev(InboundMsgAbbrev.java:85)
    at weblogic.rjvm.MsgAbbrevInputStream.readImmutable(MsgAbbrevInputStream
    .java:172)
    at weblogic.rjvm.MsgAbbrevInputStream.readClassDescriptor(MsgAbbrevInput
    Stream.java:186)
    at weblogic.common.internal.ChunkedObjectInputStream$NestedObjectInputSt
    ream.readClassDescriptor(ChunkedObjectInputStream.java:300)
    at java.io.ObjectInputStream.inputClassDescriptor(ObjectInputStream.java
    :906)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:366)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1186)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at weblogic.common.internal.ChunkedObjectInputStream.readObject(ChunkedO
    bjectInputStream.java:110)
    at weblogic.common.internal.ChunkedObjectInputStream.readObject(ChunkedO
    bjectInputStream.java:123)
    at weblogic.rjvm.ConnectionManager.readPeerInfo(ConnectionManager.java:6
    83)
    at weblogic.rjvm.ConnectionManagerServer.handleIdentifyRequest(Connectio
    nManagerServer.java:255)
    at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:617)
    at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:454)
    at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:643)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:
    24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >

    The WebLogic server throws error I tried to instantiate InitialContext. I'm using
    WebLogic 6.1 trial version under Windows 2000 Server.
    Please help.
    Thanks,
    Huale
    -- code--
    Properties prop = new Properties();
    prop.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    prop.put(Context.PROVIDER_URL, "t3://localhost:7001");
    InitialContext ic = new InitialContext(prop);
    error in client--
    javax.naming.CommunicationException [Root exception is java.net.ConnectException:
    t3://localhost:7001: Bootstrap to: 'localhost/127.0.0.1:7001' over: 't3' got an
    error or timed out]
    error in server--
    <Error> <NT Performance Pack> <failure in process
    Sockets() - GetData: 'weblogic.socket.GetData@393cf8 - fd: '2064', numBytes: '12
    25''
    java.util.EmptyStackException
    at weblogic.utils.collections.Stack.pop(Stack.java:72)
    at weblogic.rjvm.InboundMsgAbbrev.getAbbrev(InboundMsgAbbrev.java:85)
    at weblogic.rjvm.MsgAbbrevInputStream.readImmutable(MsgAbbrevInputStream
    .java:172)
    at weblogic.rjvm.MsgAbbrevInputStream.readClassDescriptor(MsgAbbrevInput
    Stream.java:186)
    at weblogic.common.internal.ChunkedObjectInputStream$NestedObjectInputSt
    ream.readClassDescriptor(ChunkedObjectInputStream.java:300)
    at java.io.ObjectInputStream.inputClassDescriptor(ObjectInputStream.java
    :906)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:366)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1186)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at weblogic.common.internal.ChunkedObjectInputStream.readObject(ChunkedO
    bjectInputStream.java:110)
    at weblogic.common.internal.ChunkedObjectInputStream.readObject(ChunkedO
    bjectInputStream.java:123)
    at weblogic.rjvm.ConnectionManager.readPeerInfo(ConnectionManager.java:6
    83)
    at weblogic.rjvm.ConnectionManagerServer.handleIdentifyRequest(Connectio
    nManagerServer.java:255)
    at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:617)
    at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:454)
    at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:643)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:
    24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >

  • How to Serve HTML from a Proxy Service?

    I am trying to serve HTML from a proxy service.
    I set up a Messaging Service with request type = 'None' and response type = 'Text'; with Endpoint URL = '/OSB_Project/Proxy_Services/InfoPingerProxyService.html'.
    In my incoming request pipeline I set an html Transport Header action to define Content-Type = 'text/html'.
    In the response pipeline I replace the body with the html document contents...
    Trouble is, when I access the proxy (via a standard browser GET), I always produce an XML file with an <?xml...?> processing instruction:
    <?xml version="1.0" encoding="UTF-8"?>
    <html>
    Also: the browser always sees an XML response regardless, it seems.
    Any suggestions gratefully accepted.
    Cheers,
    Alph

    More on this.
    I made an "educated guess' that the path should be
    {code}./ctx:transport/ctx:response/tp:headers/http:Content-Type{code}
    But take a look at the following, you will see that the content type IS now text/html, but the XML processing instruction is still there...
    {code}
    :\BIN\wget-1.11.4-1-bin\bin>wget -d http://localhost:7001/Test_Project/ProxySe
    rvice1?q=1
    SYSTEM_WGETRC = c:/progra~1/wget/etc/wgetrc
    syswgetrc = C:\BIN\wget-1.11.4-1-bin/etc/wgetrc
    DEBUG output created by Wget 1.11.4 on Windows-MinGW.
    --2010-09-15 15:33:17-- http://localhost:7001/Test_Project/ProxyService1?q=1
    Resolving localhost... seconds 0.00, 127.0.0.1
    Caching localhost => 127.0.0.1
    Connecting to localhost|127.0.0.1|:7001... seconds 0.00, connected.
    Created socket 268.
    Releasing 0x0063a620 (new refcount 1).
    ---request begin---
    GET /Test_Project/ProxyService1?q=1 HTTP/1.0
    User-Agent: Wget/1.11.4
    Accept: */*
    Host: localhost:7001
    Connection: Keep-Alive
    ---request end---
    HTTP request sent, awaiting response...
    ---response begin---
    HTTP/1.1 200 OK
    Connection: Keep-Alive
    Date: Wed, 15 Sep 2010 05:33:17 GMT
    Content-Length: 61
    Content-Type: text/html; charset=utf-8
    X-Powered-By: Servlet/2.5 JSP/2.1
    ---response end---
    200 OK
    Registered socket 268 for persistent reuse.
    Length: 61 [text/html]
    Saving to: `ProxyService1@q=1'
    100%[=====================================> ] 61 --.-K/s in 0s
    2010-09-15 15:33:17 (1.23 MB/s) - `ProxyService1@q=1' saved [61/61]
    C:\BIN\wget-1.11.4-1-bin\bin>type "ProxyService1@q=1"
    <?xml version="1.0" encoding="UTF-8"?>
    <server>8088</server>
    C:\BIN\wget-1.11.4-1-bin\bin>
    {code}
    (I know that the actual CONTENT [ie "<server>8088</server"] is not really HTML at the moment...this is just intermediate testing content...)
    Back to the issue of how to get rid of that processing instruction...
    The proxy service is configured as a messaging service with request = none and response = text.
    Cheers,
    Alph

  • T3 connection problem, WL9.2.3 vs WL10.3.3

    Ok,
    So I've been running with T3 connections for years on WL9.2.3 without issue. Across single machines, clusters, etc.
    I've recently written a small app that uses T3 for it's JMS, and this was running fine on WL9.2.3 and even when I upgraded to WL10.3.3 it was working fine.
    Working fine, in the sense that the command line was using the weblogic 9.2.3 jars:
    java -Xms128m -Xmx256m -classpath .\lib\MyJar.jar;.\lib\ojdbc14_g-10.2.0.4.0.jar;.\lib\log4j-1.2.14.jar;.\lib\weblogic-9.0.jar;.\lib\webservices-9.0.jar mypath.myclass
    Now, I couldn't keep using those old 9.2.3 jars, so I decided to use the 10.3.3 ones... except, it requires me adding a whole pile of other jars:
    java -client -Xms128m -Xmx256m -classpath .\lib\MyJar.jar;.\lib\ojdbc14_g-10.2.0.4.0.jar;.\lib\log4j-1.2.14.jar;.\lib\weblogic-10.3.3.jar;.\lib\webservices-10.3.3.jar;.\lib\wljmsclient.jar;.\lib\wlthint3client.jar;.\lib\com.bea.core.weblogic.security.wls_1.0.0.0_6-0-3-0.jar;.\lib\com.bea.core.weblogic.security.identity_1.1.2.0.jar;.\lib\wls-api.jar mypath.myclass
    I now get a T3 error:
    javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://127.0.0.1:7003: Bootstrap to: localhost/127.0.0.1:7003' over: 't3' got an error or timed out]
    Note, that using the 9.2.3 jars with the same code, against the 10.3.3 server works. So what has changed between 9.2.3 and 10.3.3 to cause the T3 connection to no longer work?
    Thanks,
    -G

    Fixed it...
    For 10.3.3 you only need the wlthin3client.jar, not the full jars.
    java -client -Xms128m -Xmx256m -classpath .\lib\MyJar.jar;.\lib\ojdbc14_g-10.2.0.4.0.jar;.\lib\log4j-1.2.14.jar;.\lib\wlthint3client.jar mypath.myclass
    -G

  • Debug flex app loaded from remote server

    Hi,
    I'm developing a flex app which gets loaded from a remote
    server and it connects using amf to that server and gets some data.
    Now, I can't test from within the flex builder ide, as the URL will
    be empty. When I test using IE/Firefox pointing to the remote
    server URL where this debug.html is mounted, the swf asks for a
    host ip/name where a flash/flex debugger runs. When I give
    localhost/127.0.0.1, it fails and displays the dialog box again. Is
    there a way to connect the swf from remote server to connect to a
    debug console inside the FB2 ide?

    Well, I ran all commands shipped with FB2and found out that
    fdb does connect and allows to "continue". Still the in IDE
    developing experience and quick turn around isn't there. Is there a
    way to get the URL from which the swf was loaded from within the
    swf, so that if its a remote server, I can get data from it, else
    its in debug state, so I can get data from some hard coded
    host.

  • BootstrapError: connect to localhost:7001, but listenport is 7003

              Hi,
              I have configure WLS 5.1 to listen on Port 7003. Now, if I call in an Servlet
              the function java.beans.Bean.instantiate(getClass().getClassLoader(), de.foo.bar);
              the log say this:
              <ConMan> Bootstrap unable to get a t3 connection to localhost/127.0.0.1
              javax.naming.CommunicationException. Root exception is java.net.ConnectException:
              No server found at T3://localhost:7001 at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java,
              Compiled Code)
              I think the problem is the classloader.
              If I run the WLS under the port 7001 everything is ok.
              Any suggestion?
              Thanks in advance,
              Boris Huxhorn
              

              I have the same problem with Weblogic 6.1 !! I have my server listening to port
              80 but I still get this when hitting MyServlet : (I have no managed server I
              am just running the admin server)
              MyServlet.init: javax.naming.CommunicationException [Root exception is java.net.ConnectException:
              No server found at T3://localHost:7001]
              MyServlet.showSummaries: java.lang.NullPointerException
              Can anyone please help ? Thanks in advance !!
              "Boris Huxhorn" <[email protected]> wrote:
              >
              >Hi,
              >I have configure WLS 5.1 to listen on Port 7003. Now, if I call in an
              >Servlet
              >the function java.beans.Bean.instantiate(getClass().getClassLoader(),
              >de.foo.bar);
              >the log say this:
              ><ConMan> Bootstrap unable to get a t3 connection to localhost/127.0.0.1
              >javax.naming.CommunicationException. Root exception is java.net.ConnectException:
              >No server found at T3://localhost:7001 at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java,
              >Compiled Code)
              >I think the problem is the classloader.
              >If I run the WLS under the port 7001 everything is ok.
              >Any suggestion?
              >
              >Thanks in advance,
              >Boris Huxhorn
              

  • Cannot deploy to localhost:7001  / how to remove the IPV6 from Jdeveloper ?

    Hi,
    Who could help on a deployment issue?
    I have a Weblogic admin server running on http://localhost:7001 and have access to the admin console.
    I developed a test application and deployed it on the Integrated Weblogic server (port 7101) and is running.
    When I try to deploy on the managed admin server, the deployment is correct but it generates an IPV6 addresse
    ( http://[2001:0:4137:9e76:2cd9:2c5e:af7f:ae32]:7001/GoogleMapApp )
    that I cannot use, as I don't use such addresses on the development laptop.
    I want to get the addresses
    http://127.0.0.1:7001/GoogleMapApp
    or
    http://localhost:7001/GoogleMapApp
    Thanks
    [07:23:17 PM] ---- Deployment started. ----
    [07:23:17 PM] Target platform is (Weblogic 10.3).
    [07:23:18 PM] Retrieving existing application information
    [07:23:18 PM] Running dependency analysis...
    [07:23:18 PM] Building...
    [07:23:21 PM] Deploying 2 profiles...
    [07:23:21 PM] Wrote Web Application Module to C:\JDeveloper\mywork\GoogleMap\ViewController\deploy\GoogleMap_ViewController_webapp1.war
    [07:23:21 PM] Wrote Enterprise Application Module to C:\JDeveloper\mywork\GoogleMap\deploy\GoogleMap_application1.ear
    [07:23:22 PM] Redeploying Application...
    [07:23:28 PM] [Deployer:149192]Operation 'deploy' on application 'GoogleMap_application1' is in progress on 'AdminServer'
    [07:23:34 PM] [Deployer:149194]Operation 'deploy' on application 'GoogleMap_application1' has succeeded on 'AdminServer'
    [07:23:34 PM] Application Redeployed Successfully.
    [07:23:34 PM] The following URL context root(s) were defined and can be used as a starting point to test your application:
    [07:23:34 PM] http://[2001:0:4137:9e76:2cd9:2c5e:af7f:ae32]:7001/GoogleMapApp
    [07:23:34 PM] Elapsed time for deployment: 17 seconds
    [07:23:34 PM] ---- Deployment finished. ----
    ------------------

    HI,
    In your JDeveloper Init file please set the following JAVA_OPTION to disable IPv6
    -Djava.net.preferIPv4Stack=true"
    You can enable above option in the following file of JDeveloper: *"jdeveloper\jdev\bin\jdev.boot"*
    compiler.vmargs = -Xmx1024m   -Djava.net.preferIPv4Stack=trueThanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic/ (Middleware Magic Is Here)

  • Php localhost vs 127.0.0.1 vs file:/// behave differently

    I set up php to do web development on my MBP 10.5.8 following this guide http://foundationphp.com/tutorials/php_leopard.php and things are working... sort of. The issue I'm having is that when I load pages in Safari using localhost, 127.0.0.1, and directly from the harddrive using file:/// i get different results when php posts the changes to an xml file.
    here are the results
    edit localhost post results reload local host displays old results, file and 127.0.0.1 display new
    edit file post results reload no change to file, local host or 127.0.0.1
    edit 127.0.0.1 post results reload 127.. and localhost display new data, file does not.
    Sometime I have to reload 127 and the new data is not there, I load localhost and the new data is not there, but when I reload 127 again the new data is there.
    I only have one copy of the htm file and one copy of the xml file. This has to do with how the server is set up or operates somehow. I don't understand how the localhost path can keep loading the old data when then new data is in the xml file.
    localhost and 127.0.0.1 both resolve to the apache entry page when I put them in with not additional path information.
    Can anyone explain why this is happening, and how to resolve it.

    Yes. It runs fine on my unsupported G4 450 MP which I used to beta-test the cat. See these for installation work-arounds:
    http://www.macosxhints.com/article.php?story=20071214143723301
    http://www.tidbits.com/webx?14@@.3cb6ddd5/5 and
    http://forums.macrumors.com/showthread.php?t=371302

Maybe you are looking for

  • Standby database configuration

    I implemented standby database Steps: - Closed database Backup primary database Open primary database in mount stage Create standby control file shutdown the primary database mount the standby db recover it through archive logs But after this when i

  • Use smart card for 802.1x secured WiFi authentication

    Hi, is it possible to use a certificate stored on a USB Security Token for WiFi 802.1x authentication? I have setup a test environment with all required components (AD, Enterprise CA, NPS, WPA2-Enterprise capable WiFi Access Point, all required certi

  • Can I choose not to broadcast the name of my AirPort Express?

    I would like to know if I can keep the name of my AirPort Express from being broadcast to other computers. On my old Netgear router I could choose to not broadcast the name but, I don't seem to see the option in the AirPort Base Station Utility. Powe

  • App Store appears in a program to do UPDATE, but I never installed this program.

    App Store appears in a program to do UPDATE, but I never installed this program. I was wondering if there is a way to remove this program from my webpage Update Available. Program's name: Nyan Cat: Lost In Space.

  • How to make a screenshot of my menu?

    I would like to save my menu as a still image. To make a screenshot of my menu. I can't find the way to do it...