Problem with IIS- WebLogic bridge

Hi!
We have configured the IIS-WebLogic bridge for WebLogic 6.0 (SP1), with IIS
4.0 on two separate machines. This works on URLs which directly refer to
pages lying on the same machine as WebLogic, but some links which refer to
WebLogic properties file and then determines the page to be displayed (e.g.
include files). These work when the exact URL (including the IP Address and
port no. of the WebLogic Server) is pasted in the browser address window,
but fail when the proxied hyperlink is clicked from another page, or the
proxied URL is pasted in the address window.
Can anyone help. This is slightly urgent.
thanks and regards,
Prajesh
Prajesh K. Verma
Eclaton eBDU India Pvt. Ltd.
Huis van Eclaton
25, Lavelle Road
Bangalore 560 001
Tel: +91 80 2996569
Email: [email protected]
http://www.eclaton.com

It looks like you have the sendRedirect() problem.
We will convert the relative uri into Absolute URL in the sendRedirect().
the logic looks something like:
if (url is an absolute url) { //i.e: http://host:port/dummy.jsp
response.setHeader("Location", url);
sendError("302");
} else if (url is an absolute uri) { //i.e: /dummy.jsp
//prepend protocol, host and port info
} else if (url is a relative uri) { //i.e: dummy.jsp
//cacluate the context path based on the current request
//i.e: you are request http://iis:7001/include/index.jsp
PathTrim=/weblogic is set in the iisproxy.ini
//so the Location header looks like:
//http://iis:7001/weblogic/include/dummy.jsp
As you can see you may need to specify the redirected uri
to fall into the rules of "proxy by path" or "proxy by mime type" if you want
the iis to proxy the request properly.
"Prajesh K. Verma" <[email protected]> wrote:
Hi!
We have configured the IIS-WebLogic bridge for WebLogic 6.0 (SP1), with
IIS
4.0 on two separate machines. This works on URLs which directly refer
to
pages lying on the same machine as WebLogic, but some links which refer
to
WebLogic properties file and then determines the page to be displayed
(e.g.
include files). These work when the exact URL (including the IP Address
and
port no. of the WebLogic Server) is pasted in the browser address window,
but fail when the proxied hyperlink is clicked from another page, or
the
proxied URL is pasted in the address window.
Can anyone help. This is slightly urgent.
thanks and regards,
Prajesh
Prajesh K. Verma
Eclaton eBDU India Pvt. Ltd.
Huis van Eclaton
25, Lavelle Road
Bangalore 560 001
Tel: +91 80 2996569
Email: [email protected]
http://www.eclaton.com

Similar Messages

  • Problem with the weblogic-maven-plugin

    I am in the process of converting from ant to maven, but I am having a problem with the weblogic-maven-plugin. Has anyone used this plugin successfully? Here is the error I am receiving even though I have a dependency on the xbean.jar in my pom, and it is in my local repo.
    java.lang.NoClassDefFoundError: com/bea/xml/XmlException
    at weblogic.application.descriptor.AbstractDescriptorLoader2.getDescript
    orManager(AbstractDescriptorLoader2.java:301)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.getDescript
    orBeanFromReader(AbstractDescriptorLoader2.java:749)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.createDescr
    iptorBean(AbstractDescriptorLoader2.java:376)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.loadDescrip
    torBeanWithoutPlan(AbstractDescriptorLoader2.java:720)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.loadDescrip
    torBean(AbstractDescriptorLoader2.java:729)
    at weblogic.servlet.internal.WebAppDescriptor.getWebAppBean(WebAppDescri
    ptor.java:134)
    at weblogic.servlet.jsp.JspcInvoker.parseDescriptors(JspcInvoker.java:27
    6)
    at weblogic.servlet.jsp.JspcInvoker.compile(JspcInvoker.java:187)
    at weblogic.application.compiler.AppcUtils.compileWAR(AppcUtils.java:353
    at weblogic.application.compiler.WARCompiler.compile(WARCompiler.java:78
    at weblogic.application.compiler.flow.AppCompilerFlow.compileInput(AppCo
    mpilerFlow.java:118)
    at weblogic.application.compiler.flow.AppCompilerFlow.compile(AppCompile
    rFlow.java:43)
    at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDri
    ver.java:69)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:26)
    at weblogic.application.compiler.FlowDriver.nextState(FlowDriver.java:36
    at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:26)
    at weblogic.application.compiler.Appc.runBody(Appc.java:163)
    at weblogic.utils.compiler.Tool.run(Tool.java:158)
    at weblogic.utils.compiler.Tool.run(Tool.java:115)
    at weblogic.application.compiler.Appc.main(Appc.java:174)
    at weblogic.appc.main(appc.java:14)
    at jrockit.reflect.InitialMethodInvoker.invoke(Ljava.lang.Object;[Ljava.
    lang.Object;)Ljava.lang.Object;(Unknown Source)
    at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;
    I)Ljava.lang.Object;(Unknown Source)
    at weblogic.ant.taskdefs.j2ee.CompilerTask.invokeMain(CompilerTask.java:
    290)
    at weblogic.ant.taskdefs.j2ee.Appc.privateExecute(Appc.java:250)
    at weblogic.ant.taskdefs.j2ee.Appc.execute(Appc.java:159)
    at org.codehaus.mojo.weblogic.AppcMojo.execute(AppcMojo.java:180)
    at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPlugi
    nManager.java:412)
    at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(Defa
    ultLifecycleExecutor.java:534)

    Here is what you need to get the maven-weblogic-plugin appc goal to work:
    <project>
    <build>
    <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>weblogic-maven-plugin</artifactId>
    <version>2.9.0-SNAPSHOT</version>
    <configuration>
    <inputArtifactPath>${basedir}/../../jar/broker.war</inputArtifactPath>
    <verbose>true</verbose>
    </configuration>
    <executions>
    <execution>
    <phase>package</phase>
    <goals>
    <goal>appc</goal>
    </goals>
    <inherited>false</inherited>
    <configuration>
    <verbose>false</verbose>
    <debug>false</debug>
    <projectPackaging>war</projectPackaging>
    </configuration>
    </execution>
    </executions>
    <dependencies>
    <dependency>
    <groupId>com.sun</groupId>
    <artifactId>tools</artifactId>
    <version>1.5.0</version>
    </dependency>
    <dependency>
    <groupId>weblogic</groupId>
    <artifactId>wlxbean</artifactId>
    <version>9.2</version>
    </dependency>
    <dependency>
    <groupId>weblogic</groupId>
    <artifactId>xbean</artifactId>
    <version>9.2</version>
    </dependency>
    <dependency>
    <groupId>weblogic</groupId>
    <artifactId>weblogic-container-binding</artifactId>
    <version>9.2</version>
    </dependency>
    <dependency>
    <groupId>weblogic</groupId>
    <artifactId>wlw-util</artifactId>
    <version>9.2</version>
    </dependency>
    <dependency>
    <groupId>weblogic</groupId>
    <artifactId>javelinx</artifactId>
    <version>9.2</version>
    </dependency>
    <dependency>
    <groupId>weblogic</groupId>
    <artifactId>wlw-langx</artifactId>
    <version>9.2</version>
    </dependency>
    <dependency>
    <groupId>weblogic</groupId>
    <artifactId>bcel</artifactId>
    <version>5.1</version>
    </dependency>
    </plugin>
    </build>
    <dependencies>
    <dependency>
    <groupId>weblogic</groupId>
    <artifactId>wlw-langx</artifactId>
    <version>9.2</version>
    </dependency>
    </dependencies>
    <project>
    You need to install/deploy all of the above dependencies manually into your repo.

  • Problems with IIS and Weblogic 6.0 Redirecting thru IIS

    Hi
    I have just installed Welblogic 6.0 and I am having problems with the configuration
    of the ISAPI Plugin.
    I created the iisproxy.ini file and then copied that into wlserver6.0/bin directory
    and copied the iisproxy.dll file into the inetpub/wwroot directory for iis to
    see
    Now when I type in my url, I get the default index.jsp page that bea supplied
    but when I try to go to the Admin tool, existing portals created or new portals
    added, I get the following error
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    Can any one help, here is my iisproxy.ini file
    below
    #This file contains initialization name/value pairs
    #for the IIS/weblogic plug-in
    WebLogicHost=localhost
    WebLogicPort=7501
    WlFowardPath=/weblogic
    SecureProxy=OFF
    PathTrim=/weblogic
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    Bola

    Seems 6.0 has more than a few proxy problems. We are running IPlanet and have
    had no success in running the 6.0 proxy.
    FYI. We have started using the 5.1 proxy in 6.0 successfully; you might give
    it a try. Not sure we want to put this in production in this condition however.
    Matt Raible wrote:
    Has anyone been successfully able to get the IIS Proxy working with WLS 6.0
    on Win2K? I've been trying for days, working with a support engineer at BEA
    and everything, but no luck.
    Thanks,
    Matt

  • Cache doesn't work with Apace-WebLogic bridge

    Hi.We noticed a problem with the download performance of our Java applet with Netscape. It's a tiny applet of 300K that takes only 2 seconds to load using IE, because it is already cached, and with Netscape it is always reloaded and the cache doesn't work.The applet is located on a WebLogic server, and we access it through an Apache server that redirects all requests to the WebLogic server. We noticed that when we access the WebLogic server directly, Netscape cache works fine. However when using the bridge, Netscape ignores the cache, while in IE the cache still works.The Apache server is installed on RedHat Linux 7.1. The bridge is a WebLogic module developed by BEA (the makers of WebLogic) that extends the Apache functionality and enables it to act as a proxy and leave the client (browser) totally unaware of the redirection. The requests are sent to the Apache server and the responses appear to be coming back from it as well.We need to understand why the cache doesn't work when using the bridge. Can you please tell us if you know of this problem or not, and if not -- point us in some direction to check for the problem.Thanks.

    You have to modify the password manually in OEM's target.xml.

  • Problems with IIS proxy to cluster

              We are using WebLogic 6.1 with two managed servers in a cluster. Our IIS server
              is running IIS 4 and is set up to proxy to the cluster by IP addresses. When
              one server goes down(as in a hardware failure or shut down), the other server's
              queue loads up with unprocessed requests causing our web application to "freeze".
              No errors are logged anywhere. The only way to free up the WL server (and stop
              the queue from growing) is to reboot both the application server (to clear the
              queu)AND the IIS web server(to stop the requests). Is there a known problem with
              the WL IIS plug-in DLL that could cause these errant requests? or.. Does this
              point to a specific error on our IIS server? or.. Is there a bad setting somewhere
              that can be changed to prevent this? Please Advise!
              

    Hello,
    From this it looks like you may be able to use PathPrepend to jimmy your URLs:
    PathPrepend : String that the plug-in prepends to the beginning of the original URL, after PathTrim is trimmed and before the request is forwarded to WebLogic Server.
    I would suggest it may be a good idea to have a seperate webserver for your production domain. In most places I have worked in every platform is configuered with its own resources e.g staging server has its own webserver and db. This affords the people that use those envrionments greater isolation.

  • Problem with SSL weblogic plug in and Apache

    We're using mod_wl_22.so with Apache, and after some problems with the mod failing on startup it is now working. We can access the weblogic SSL page fine directly on port 16101 with no warning, when we try via the proxy we get a failure of server Apache bride --------------------------------------------------------------------------------
    No backend server available for connection: timed out after 10 seconds or idempotent set to OFF. And in the wl_proxy.log there is a message that I think relates to the trustedcertfile in our http.conf file. We have a root certificate in pem format as the trustedcertfile.
    ================New Request: [GET /irm_desktop HTTP/1.1] =================
    Thu Jan 27 21:52:15 2011 <258812961651354> INFO: SSL is configured
    Thu Jan 27 21:52:15 2011 <258812961651354> INFO: SSL configured successfully
    Thu Jan 27 21:52:15 2011 <258812961651354> Using Uri /irm_desktop
    Thu Jan 27 21:52:15 2011 <258812961651354> After trimming path: '/irm_desktop'
    Thu Jan 27 21:52:15 2011 <258812961651354> The final request string is '/irm_desktop'
    Thu Jan 27 21:52:15 2011 <258812961651354> SEARCHING id=[sealedinfo-prod:16101] from current ID=[sealedinfo-prod:16101]
    Thu Jan 27 21:52:15 2011 <258812961651354> The two ids matched
    Thu Jan 27 21:52:15 2011 <258812961651354> @@@FOUND...id=[sealedinfo-prod:16101], server_name=[uat.sealedinfo.com], server_port=[443]
    Thu Jan 27 21:52:15 2011 <258812961651354> attempt #0 out of a max of 5
    Thu Jan 27 21:52:15 2011 <258812961651354> Trying a pooled connection for '10.10.10.10/16101/16101'
    Thu Jan 27 21:52:15 2011 <258812961651354> getPooledConn: No more connections in the pool for Host[10.10.10.10] Port[16101] SecurePort[16101]
    Thu Jan 27 21:52:15 2011 <258812961651354> general list: trying connect to '10.10.10.10'/16101/16101 at line 2658 for '/irm_desktop'
    Thu Jan 27 21:52:15 2011 <258812961651354> New SSL URL: match = 0 oid = 22
    Thu Jan 27 21:52:15 2011 <258812961651354> Connect returns -1, and error no set to 10035, msg 'Unknown error'
    Thu Jan 27 21:52:15 2011 <258812961651354> EINPROGRESS in connect() - selecting
    Thu Jan 27 21:52:15 2011 <258812961651354> Setting peerID for new SSL connection
    Thu Jan 27 21:52:15 2011 <258812961651354> 0a0a 0a0a e53e 0000 .....>..
    Thu Jan 27 21:52:15 2011 <258812961651354> Local Port of the socket is 63867
    Thu Jan 27 21:52:15 2011 <258812961651354> Remote Host 10.10.10.10 Remote Port 16101
    Thu Jan 27 21:52:15 2011 <258812961651354> general list: created a new connection to '10.10.10.10'/16101 for '/irm_desktop', Local port:63867
    Thu Jan 27 21:52:15 2011 <258812961648171> WARN: GetSessionCallback: No session match found
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: SSL certificate chain validation failed: 3015
    Thu Jan 27 21:52:16 2011 <258812961651354> trusted certs = 0
    Thu Jan 27 21:52:16 2011 <258812961651354> dumping cert chain
    Thu Jan 27 21:52:16 2011 <258812961651354> commonName is uat.sealedinfo.com
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: DeleteSessionCallback: No match found!!
    Thu Jan 27 21:52:16 2011 <258812961651354> ERROR: SSLWrite failed
    Thu Jan 27 21:52:16 2011 <258812961651354> SEND failed (ret=-1) at 793 of file ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> *******Exception type [WRITE_ERROR_TO_SERVER] raised at line 794 of ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> Marking 10.10.10.10:16101 as bad
    Thu Jan 27 21:52:16 2011 <258812961651354> got exception in sendRequest phase: WRITE_ERROR_TO_SERVER [os error=0,  line 794 of ../nsapi/URL.cpp]: at line 3094
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Closing SSL context
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Error after SSLClose, socket may already have been closed by peer
    Thu Jan 27 21:52:16 2011 <258812961651354> Failing over after WRITE_ERROR_TO_SERVER exception in sendRequest()
    Thu Jan 27 21:52:16 2011 <258812961651354> attempt #1 out of a max of 5
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: trying connect to '10.10.10.10'/16101/16101 at line 2658 for '/irm_desktop'
    Thu Jan 27 21:52:16 2011 <258812961651354> New SSL URL: match = 0 oid = 22
    Thu Jan 27 21:52:16 2011 <258812961651354> Connect returns -1, and error no set to 10035, msg 'Unknown error'
    Thu Jan 27 21:52:16 2011 <258812961651354> EINPROGRESS in connect() - selecting
    Thu Jan 27 21:52:16 2011 <258812961651354> Setting peerID for new SSL connection
    Thu Jan 27 21:52:16 2011 <258812961651354> 0a0a 0a0a e53e 0000 .....>..
    Thu Jan 27 21:52:16 2011 <258812961651354> Local Port of the socket is 63868
    Thu Jan 27 21:52:16 2011 <258812961651354> Remote Host 10.10.10.10 Remote Port 16101
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: created a new connection to '10.10.10.10'/16101 for '/irm_desktop', Local port:63868
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: GetSessionCallback: No session match found
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: SSL certificate chain validation failed: 3015
    Thu Jan 27 21:52:16 2011 <258812961651354> trusted certs = 0
    Thu Jan 27 21:52:16 2011 <258812961651354> dumping cert chain
    Thu Jan 27 21:52:16 2011 <258812961651354> commonName is uat.sealedinfo.com
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: DeleteSessionCallback: No match found!!
    Thu Jan 27 21:52:16 2011 <258812961651354> ERROR: SSLWrite failed
    Thu Jan 27 21:52:16 2011 <258812961651354> SEND failed (ret=-1) at 793 of file ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> *******Exception type [WRITE_ERROR_TO_SERVER] raised at line 794 of ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> Marking 10.10.10.10:16101 as bad
    Thu Jan 27 21:52:16 2011 <258812961651354> got exception in sendRequest phase: WRITE_ERROR_TO_SERVER [os error=0,  line 794 of ../nsapi/URL.cpp]: at line 3094
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Closing SSL context
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Error after SSLClose, socket may already have been closed by peer
    Thu Jan 27 21:52:16 2011 <258812961651354> Failing over after WRITE_ERROR_TO_SERVER exception in sendRequest()
    Thu Jan 27 21:52:16 2011 <258812961651354> attempt #2 out of a max of 5
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: trying connect to '10.10.10.10'/16101/16101 at line 2658 for '/irm_desktop'
    Thu Jan 27 21:52:16 2011 <258812961651354> New SSL URL: match = 0 oid = 22
    Thu Jan 27 21:52:16 2011 <258812961651354> Connect returns -1, and error no set to 10035, msg 'Unknown error'
    Thu Jan 27 21:52:16 2011 <258812961651354> EINPROGRESS in connect() - selecting
    Thu Jan 27 21:52:16 2011 <258812961651354> Setting peerID for new SSL connection
    Thu Jan 27 21:52:16 2011 <258812961651354> 0a0a 0a0a e53e 0000 .....>..
    Thu Jan 27 21:52:16 2011 <258812961651354> Local Port of the socket is 63869
    Thu Jan 27 21:52:16 2011 <258812961651354> Remote Host 10.10.10.10 Remote Port 16101
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: created a new connection to '10.10.10.10'/16101 for '/irm_desktop', Local port:63869
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: GetSessionCallback: No session match found
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: SSL certificate chain validation failed: 3015
    Thu Jan 27 21:52:16 2011 <258812961651354> trusted certs = 0
    Thu Jan 27 21:52:16 2011 <258812961651354> dumping cert chain
    Thu Jan 27 21:52:16 2011 <258812961651354> commonName is uat.sealedinfo.com
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: DeleteSessionCallback: No match found!!
    Thu Jan 27 21:52:16 2011 <258812961651354> ERROR: SSLWrite failed
    Thu Jan 27 21:52:16 2011 <258812961651354> SEND failed (ret=-1) at 793 of file ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> *******Exception type [WRITE_ERROR_TO_SERVER] raised at line 794 of ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> Marking 10.10.10.10:16101 as bad
    Thu Jan 27 21:52:16 2011 <258812961651354> got exception in sendRequest phase: WRITE_ERROR_TO_SERVER [os error=0,  line 794 of ../nsapi/URL.cpp]: at line 3094
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Closing SSL context
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Error after SSLClose, socket may already have been closed by peer
    Thu Jan 27 21:52:16 2011 <258812961651354> Failing over after WRITE_ERROR_TO_SERVER exception in sendRequest()
    Thu Jan 27 21:52:16 2011 <258812961651354> attempt #3 out of a max of 5
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: trying connect to '10.10.10.10'/16101/16101 at line 2658 for '/irm_desktop'
    Thu Jan 27 21:52:16 2011 <258812961651354> New SSL URL: match = 0 oid = 22
    Thu Jan 27 21:52:16 2011 <258812961651354> Connect returns -1, and error no set to 10035, msg 'Unknown error'
    Thu Jan 27 21:52:16 2011 <258812961651354> EINPROGRESS in connect() - selecting
    Thu Jan 27 21:52:16 2011 <258812961651354> Setting peerID for new SSL connection
    Thu Jan 27 21:52:16 2011 <258812961651354> 0a0a 0a0a e53e 0000 .....>..
    Thu Jan 27 21:52:16 2011 <258812961651354> Local Port of the socket is 63870
    Thu Jan 27 21:52:16 2011 <258812961651354> Remote Host 10.10.10.10 Remote Port 16101
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: created a new connection to '10.10.10.10'/16101 for '/irm_desktop', Local port:63870
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: GetSessionCallback: No session match found
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: SSL certificate chain validation failed: 3015
    Thu Jan 27 21:52:16 2011 <258812961651354> trusted certs = 0
    Thu Jan 27 21:52:16 2011 <258812961651354> dumping cert chain
    Thu Jan 27 21:52:16 2011 <258812961651354> commonName is uat.sealedinfo.com
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: DeleteSessionCallback: No match found!!
    Thu Jan 27 21:52:16 2011 <258812961651354> ERROR: SSLWrite failed
    Thu Jan 27 21:52:16 2011 <258812961651354> SEND failed (ret=-1) at 793 of file ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> *******Exception type [WRITE_ERROR_TO_SERVER] raised at line 794 of ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> Marking 10.10.10.10:16101 as bad
    Thu Jan 27 21:52:16 2011 <258812961651354> got exception in sendRequest phase: WRITE_ERROR_TO_SERVER [os error=0,  line 794 of ../nsapi/URL.cpp]: at line 3094
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Closing SSL context
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Error after SSLClose, socket may already have been closed by peer
    Thu Jan 27 21:52:16 2011 <258812961651354> Failing over after WRITE_ERROR_TO_SERVER exception in sendRequest()
    Thu Jan 27 21:52:16 2011 <258812961651354> attempt #4 out of a max of 5
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: trying connect to '10.10.10.10'/16101/16101 at line 2658 for '/irm_desktop'
    Thu Jan 27 21:52:16 2011 <258812961651354> New SSL URL: match = 0 oid = 22
    Thu Jan 27 21:52:16 2011 <258812961651354> Connect returns -1, and error no set to 10035, msg 'Unknown error'
    Thu Jan 27 21:52:16 2011 <258812961651354> EINPROGRESS in connect() - selecting
    Thu Jan 27 21:52:16 2011 <258812961651354> Setting peerID for new SSL connection
    Thu Jan 27 21:52:16 2011 <258812961651354> 0a0a 0a0a e53e 0000 .....>..
    Thu Jan 27 21:52:16 2011 <258812961651354> Local Port of the socket is 63871
    Thu Jan 27 21:52:16 2011 <258812961651354> Remote Host 10.10.10.10 Remote Port 16101
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: created a new connection to '10.10.10.10'/16101 for '/irm_desktop', Local port:63871
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: GetSessionCallback: No session match found
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: SSL certificate chain validation failed: 3015
    Thu Jan 27 21:52:16 2011 <258812961651354> trusted certs = 0
    Thu Jan 27 21:52:16 2011 <258812961651354> dumping cert chain
    Thu Jan 27 21:52:16 2011 <258812961651354> commonName is uat.sealedinfo.com
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: DeleteSessionCallback: No match found!!
    Thu Jan 27 21:52:16 2011 <258812961651354> ERROR: SSLWrite failed
    Thu Jan 27 21:52:16 2011 <258812961651354> SEND failed (ret=-1) at 793 of file ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> *******Exception type [WRITE_ERROR_TO_SERVER] raised at line 794 of ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> Marking 10.10.10.10:16101 as bad
    Thu Jan 27 21:52:16 2011 <258812961651354> got exception in sendRequest phase: WRITE_ERROR_TO_SERVER [os error=0,  line 794 of ../nsapi/URL.cpp]: at line 3094
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Closing SSL context
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Error after SSLClose, socket may already have been closed by peer
    Thu Jan 27 21:52:16 2011 <258812961651354> Failing over after WRITE_ERROR_TO_SERVER exception in sendRequest()
    Thu Jan 27 21:52:16 2011 <258812961651354> attempt #5 out of a max of 5
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: trying connect to '10.10.10.10'/16101/16101 at line 2658 for '/irm_desktop'
    Thu Jan 27 21:52:16 2011 <258812961651354> New SSL URL: match = 0 oid = 22
    Thu Jan 27 21:52:16 2011 <258812961651354> Connect returns -1, and error no set to 10035, msg 'Unknown error'
    Thu Jan 27 21:52:16 2011 <258812961651354> EINPROGRESS in connect() - selecting
    Thu Jan 27 21:52:16 2011 <258812961651354> Setting peerID for new SSL connection
    Thu Jan 27 21:52:16 2011 <258812961651354> 0a0a 0a0a e53e 0000 .....>..
    Thu Jan 27 21:52:16 2011 <258812961651354> Local Port of the socket is 63872
    Thu Jan 27 21:52:16 2011 <258812961651354> Remote Host 10.10.10.10 Remote Port 16101
    Thu Jan 27 21:52:16 2011 <258812961651354> general list: created a new connection to '10.10.10.10'/16101 for '/irm_desktop', Local port:63872
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: GetSessionCallback: No session match found
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: SSL certificate chain validation failed: 3015
    Thu Jan 27 21:52:16 2011 <258812961651354> trusted certs = 0
    Thu Jan 27 21:52:16 2011 <258812961651354> dumping cert chain
    Thu Jan 27 21:52:16 2011 <258812961651354> commonName is uat.sealedinfo.com
    Thu Jan 27 21:52:16 2011 <258812961648171> WARN: DeleteSessionCallback: No match found!!
    Thu Jan 27 21:52:16 2011 <258812961651354> ERROR: SSLWrite failed
    Thu Jan 27 21:52:16 2011 <258812961651354> SEND failed (ret=-1) at 793 of file ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> *******Exception type [WRITE_ERROR_TO_SERVER] raised at line 794 of ../nsapi/URL.cpp
    Thu Jan 27 21:52:16 2011 <258812961651354> Marking 10.10.10.10:16101 as bad
    Thu Jan 27 21:52:16 2011 <258812961651354> got exception in sendRequest phase: WRITE_ERROR_TO_SERVER [os error=0,  line 794 of ../nsapi/URL.cpp]: at line 3094
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Closing SSL context
    Thu Jan 27 21:52:16 2011 <258812961651354> INFO: Error after SSLClose, socket may already have been closed by peer
    Thu Jan 27 21:52:16 2011 <258812961651354> Failing over after WRITE_ERROR_TO_SERVER exception in sendRequest()
    Thu Jan 27 21:52:16 2011 <258812961651354> request [irm_desktop] did NOT process successfully..................

    I see that it is six months ago that I first posted this. Nothing has changed. When I use affixa to create a message with an attachment from my gmail account in firefox, the message is created in drafts, but the gmail window is closed and I have to re-open it. Not critical, but annoying.
    Now there is a plug-in on the affixa site that is supposed to be designed for Firefox, and which affixa support claims should take care of this. And I've downloaded it twice. When you download it and open it, it says that it will be installed when Firefox restarts, and gives you a button to restart Firefox. But after you click that button and firefox disappears and re-appears, the affixa plug-in is NOT in the plugin list.
    Please, somebody, HELP.

  • Problem with thumbnails in Bridge CS4

    I was having a problem with Adobe Bridge crashing on me when I was looking at a large amount of images - like all my 2011 images. I'd read online that I needed to purge my cache and delete my preferences by holding down the ctrl key when starting Bridge and choosing all three options to "reset preferences", "purge entire thumbnail cache" and "reset standard workspace".
    I did this, but it really did not solve my problem. I'm still working on that. It did create a problem that all my raw files show up without thumbnails, and I can't for the life of me figure out how to regenerate these thumbnails. I've tried downloading the camera raw plugin and installing that again and it does not help.
     My raw files are from a Pentax K100d and are pef files.
    I went back to some old photos, in my 2010 folder.  When it first came up it showed the thumbnail for just a brief moment.  It then went blank and then up popped that stupid little flower icon that I seen when there is no thumbnail.
    Any help would be appreciated.

    Thank you so much for your response.
    I am running 64 bit Vista. I have CS4 and found that the latest version of Camera Raw that I could install was version 5.7.  I found the install instructions on the Adobe site.  As it told me to do, I downloaded the zip file for version 5.7 and extracted.  I moved the Camera Raw.8bi file from the top directory into C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\CS4\File Formats and moved the Camera Raw.8bi file from the Win64 folder into C:\Program Files\Common Files\Adobe\Plug-Ins\CS4\File Formats.
    Does this look right to you?
    I can double-click on any of my raw "pef" files and I can edit them in Camera Raw, no problem.  I can also look at the "about Camera Raw" and see that it shows version 5.7.
    It just won't generate thumbnails.
    This worked in the past.  What happened to mess things up is a long story.  I got a new camera, a Nikon D5100.  What I did not realize was that this camera was too new for CS4 to be able to recognize.  The updates that include this camera are only for CS5.  At some point after I got this camera and came home with a ton of vacation pictures - saved as Raw + Jpg (so I had a ton of photos) bridge started crashing.  I don't know if it was the size and or number of photos that I was trying to have visible in Bridge at one time or what.  I started Goggling what could be the problem.  I found one source say that I needed to reset the preferences and such and that I should start Bridge while holding the ctrl key and choose all three items to reset.  I did this and my thumbnails that were there for all my old photos shot with my Pentax k100d went away.  I just see a flower icon in their place.  I've not been able to get them back.  I have since moved all those big photo files to another folder and the crashing has stopped.  Now I just have the problem that I caused.
    What bothers me is that I saw a post here in this forum that says to never use the "purge cache" option from the edit > preferences box in Bridge.  I can't find this post again.  I have done this also before I saw that.  I have also moved my cache to another location so that it had to create a new one. Still this does not work.  I've restarted Bridge, rebooted, "purged the cache for the selection" and "generate high quality thumbnail".  Nothing I've tried works.
    Would reinstalling Bridge help?  Do I have to install all of Photoshop?  Do I have to uninstall first?

  • Multiple Problems with PDF InDesign, Bridge, and Acrobat Reader

    I create proof books with a blend of Adobe Bridge & InDesign.
    Here is my work flow: I will BOLD the errors I am having and need help with.
    Step 1.) I create contact sheets in Bridge and save them as PDF's
    Problem with Bridge ( I have another posting for this thread as well under Bridge) I cannot save PDF's larger than 400ish photos at 300ppi (important for my printer) without it saving as a blank PDF. COMPLETELY EMTPY! So I have to split up my photos into groups of 400 or less photos then patch them back together.
    Problem with Acrobat: If I patch those PDF’s back together with Adobe Acrobat (a suggestion from another person on here) they save great but I get an error when I try to import them in indesign. The error reading: ERROR. Cannot determine page count.
    Please open the PDF file in Acrobat, do a “Save As…” and try again. (99)
    Step 2.) I use a script (MultiPageImporter2.2.1.jsx) to import the PDF's into Indesign. (if saved as one pdf in acrobat I get the above error)
    Problem With InDesign: I run this importer script in InDesign to create my books with a template I use from my printers. Well since I have to import multiple pdf with multiple pages ( because I can’t piece them together without the above error. Then I have this problem:
    I place a pdf with 1-226 pages in. I start this on page 1.
    I place the next pdf with 1-141 pages in. I start this on page 227.
    An error pops up that says I MUST start my import on page 226!!!!!!!!!! I don’t want to import on page 226 because I have two photos on that page!
    I tried it several ways and no matter what I loose my last page of my first import.
    PLEASE someone help me! I feel like I might be doing something really silly but I’ve spent 7.5 hours today working on this books with error after error.
    I have done all the updates on my computers and nothing works. I use two macs and both have the same errors. I have a mac-book Pro | snow leopard and a Imac | snow leopard.
    Thanks much!

    All your problems seem to stem from the PDFs that you are making from Bridge.  What you are describing should be perfectly possible, but the fact that Bridge doesn't want to make a PDF with more than 400 photos and it all goes downhill from there makes me suspect Bridge.
    Here's a plugin that may help?  Looks pretty cheap for what it does.
    Apart from that I'd try to clean up the PDFs that Bridge is producing if Indesign doesn't like them.  One way would be to print to a new PDF, after you've combined them as necessary.
    As to the last pronlem you mention, where it forces you to place on page 226, have you tried creating a blank page 227 first, before you try placing?

  • Problem with Clustered Weblogic App 5.1 sp9

              Hi eveyone I hope one or more of you will be able to shed some light on my problem.
              I am running my application clustered with 3 App-servers and proxing to 3 web
              servers. I get this error sometimes when i bring up an instance of Weblogic when
              there is already an instance running under load.
              Mon Oct 29 13:23:03 PST 2001:<E> <Kernel> ExecuteRequest failed.
              java.io.NotSerializableException: com.beasys.commerce.foundation.pipeline.RequestAttributeMap
              --------------- nested within: ------------------
              weblogic.rmi.MarshalException: error marshalling arguments
              - with nested exception:
              [java.io.NotSerializableException: com.beasys.commerce.foundation.pipeline.RequestAttributeMap]
              --------------- nested within: ------------------
              weblogic.rmi.extensions.RemoteRuntimeException: Undeclared checked exception -
              with nested exception:
              [weblogic.rmi.MarshalException: error marshalling arguments
               - with nested exception:
              [java.io.NotSerializableException: com.beasys.commerce.foundation.pipeline.RequestAttributeMap]]
              Mostly Im concerned about why it says my objects are not serializeable and what
              exactly is this Marshal Exception.
              Thanks everyone
              Quintin
              

    Surya,
              This is a known issue and BEA will address it in a future service pack.
              Surya wrote:
              > The objects in the session need to be those which implement Serializable.
              > It seems you have
              >
              > com.beasys.commerce.foundation.pipeline.RequestAttributeMap
              >
              > object in the session and RequestAttributeMap is not a serializable object. This
              > requirement is if you have session replication turned on.
              >
              > I also had this problem. When I corrected the session object (made it ) the problem
              > was gone.
              > One thing that still puzzles me is the error showed up only when a new appserver
              > joins the cluster and exixting appserver attempts to replicate it's session on
              > it.
              > For the session which were formed with both appservers in cluster this problem
              > never came.
              >
              > Marshal Exception - as the name suggests is problem encountered while weblogic
              > was marshelling the objects for replication to the remote (secondary) server.
              >
              > -Surya
              > "scott" <[email protected]> wrote:
              > >
              > >I get this problem also with weblogic 5.1 sp 9. I'm still looking for
              > >the answer
              > >
              > >"Quintin Paulson" <[email protected]> wrote:
              > >>
              > >>Hi eveyone I hope one or more of you will be able to shed some light
              > >>on my problem.
              > >> I am running my application clustered with 3 App-servers and proxing
              > >>to 3 web
              > >>servers. I get this error sometimes when i bring up an instance of
              > >Weblogic
              > >>when
              > >>there is already an instance running under load.
              > >>
              > >>Mon Oct 29 13:23:03 PST 2001:<E> <Kernel> ExecuteRequest failed.
              > >>java.io.NotSerializableException: com.beasys.commerce.foundation.pipeline.RequestAttributeMap
              > >>
              > >>--------------- nested within: ------------------
              > >>weblogic.rmi.MarshalException: error marshalling arguments
              > >> - with nested exception:
              > >>[java.io.NotSerializableException: com.beasys.commerce.foundation.pipeline.RequestAttributeMap]
              > >>
              > >>--------------- nested within: ------------------
              > >>weblogic.rmi.extensions.RemoteRuntimeException: Undeclared checked exception
              > >>-
              > >>with nested exception:
              > >>[weblogic.rmi.MarshalException: error marshalling arguments
              > >> - with nested exception:
              > >>[java.io.NotSerializableException: com.beasys.commerce.foundation.pipeline.RequestAttributeMap]]
              > >>
              > >>Mostly Im concerned about why it says my objects are not serializeable
              > >>and what
              > >>exactly is this Marshal Exception.
              > >>
              > >>Thanks everyone
              > >>
              > >>--
              > >>Quintin
              > >>
              > >>
              > >
              

  • Problems with the ActiveX bridge for Java beans when using third-party .jar

    I encountered the following problem when using the ActiveX bridge for a java bean:
    I am using JDK 1.4.2_09 and MS Visual Basic 6.0 (SP6). I wrote a java bean called ProcessViewer (my class ProcessViewer inherits from JComponent and implements the interfaces Serializable and AdjustmentListener) which I would like to use within a VB 6.0 application. I used the ActiveX bridge (packager.exe) to generate a DLL (ProcessViewer.dll) and registered it successfully. The java bean GUI-control works fine within my VB 6.0 application unless my java bean (ProcessViewer.jar) uses any third-party .jar files.
    But when I tried to add a reference to some third-party class (com.sap.xxx.xxx....) I got some problems. I could solve the problem with packager.exe by setting the correct CLASSPATH. But at runtime my VB 6.0 application does not work. It crashes or it reports an error like this: "The control ... could not be loaded from axbridge.dll" (although I deployed my .jar file correctly to the directory C:\Programme\Java\j2re1.4.2_09\axbridge\bin and lib). Setting the CLASSPATH environment variable before calling my VB 6.0 application (exe) did not solve the problem.
    How can I teach my VB 6.0 application (containing the Java bean ActiveX control) where to find the third-party .jar file? Copying the third-party .jar file to the JRE lib-folder or to the axbridge\lib folder did not solve the problem either.
    I studied the documentation about the ActiveX bridge given at:
    http://java.sun.com/j2se/1.4.2/docs/guide/beans/axbridge/developerguide/index.html
    but I am missing informations on how the third-party .jar files can be found during runtime of the ActiveX container (e. g. a VB 6.0 application).

    See how to solve your problem with JNI:
    http://codeproject.com/cpp/OOJNIUse.asp
    More examples (for SWING) in tools setup:
    http://www.simtel.net/product.php[id]95126[SiteID]simtel.net
    http://www.simtel.net/product.php[id]94368[SiteID]simtel.net
    http://www.simtel.net/product.php[id]93174[SiteID]simtel.net

  • Problems with keywording in Bridge CS4

    Hi,
    I am using Bridge CS4 to add keywords and captions (descriptions) to my photos. However, I have noticed that when I change the photos from location, from one folder to another, Bridge cannot recognize the keywords anymore (no problem with the captions). The same happens if I change the name of the folder where the photos are in. This problem happens if I do those folder changes outside Bridge AND also INSIDE Bridge.
    However other programs (Picasa, Windows7 AND surprisingly Photoshop CS4) will recognize the keywords after those folder changes.
    Can someone help me with this Bridge problem ? is this a well known bug ?
    Anthony

    i have tried with 2 out of the 3 options. I cannot purge the cache, i will then loose all the information (labels, ratings,...) on my big database (160,000 images). (http://kb2.adobe.com/cps/331/331083.html)
    It did not work ;-(
    Another very strange thing, i noticed that the 10% of pictures that were not affected by the problem are in 99% of the cases vertical (portrait pictures)...
    Thanks for trying to help !
    Anthony

  • Problem with oracle weblogic enterprise manager 11g.

    hi guys,
    i am sai sandeep, i am using weblogic server for running oracle forms and reports in oracle11g,
    actually my problem with running reports ,
    if any report is failed, then complete reports are going to fail ,not only in the current user but also all the users.
    it will work until kill all the failed jobs in oracle weblogic enterpraise manager.
    so,please tell me what is the solution..
    thank you....

    Please ask your question in the WebLogic Server forum (https://forums.oracle.com/community/developer/english/fusion_middleware/application_server/weblogic_server_-_general).
    Craig...

  • Problem With Jdbc-Odbc BRidge Connection

    I get The following error
    SQLException:[Microsoft][ODBC Driver Manager] Invalid cursor state
    when using the code
    whats the problem with it
    import java.sql.*;
    public class Employee {
    String DBurl;
    Connection con;
    public Employee(String url)
    DBurl=url;
    void queryTest()
    String query="SELECT * FROM EmpTable";
    ResultSet result;
    Statement stmt;
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    catch(java.lang.ClassNotFoundException e){
    System.err.println("Class not Found Exception:");
    System.err.println(e.getMessage());
    try{
    con=DriverManager.getConnection(DBurl,"myLogin","mypassword");
    stmt=con.createStatement();
    result=stmt.executeQuery(query);
    System.out.println("ID"+"\t"+"Name"+"\t"+"Rate"+"\t"+"DeptID");
    System.out.println("--"+"\t"+"----"+"\t"+"---"+"\t"+"----");
    while(result.next());
    String name=result.getString("Name");
    int ID=result.getInt("ID");
    float rate=result.getFloat("Rate");
    int deptID=result.getInt("DeptID");
    System.out.println(ID+"\t"+name+"\t"+rate+"\t"+deptID);
    stmt.close();
    con.close();
    catch(SQLException ex){
    System.err.println("SQLException:" + ex.getMessage());
    public static void main(String args[])
    Employee app = new Employee("jdbc:odbc:Employee");
    app.queryTest();
    }

    here's your mistake:
    while(result.next());  // <--- the loop body is empty.Remove the semi-colon.
    %

  • Weblogic configuration problem with IIS 5.0

    Hi,
    This is our current setup.
    1. Weblogic application server on HP-UX11i;
    2. IIS 5.0 on windows 2000 Advanced server.
    IIS is used to serve all the .html,.jpg,.pdf files and forwards all the
    requests for .jsp pages to the applications server (HP-UX).
    The IISproxy.ini file setting are as given below :
    WebLogicHost=XXX.XXX.XXX.XXX
    WebLogicPort=7001
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    Debug=OFF
    where XXX.XXX.XXX.XXX i our IP address.
    however we are getting this error on the top of my jsp pages.This error
    appears as and when and i cant figure out why is this happening .
    Message from the ISAPI plugin:
    POST timed out to the server XXX.XXX.XXX.XXX:7001
    Build date/time: Nov 8 2001 HTTP/1.1 200 Server: Microsoft-IIS/5.0 Date:
    Mon, 20 May 2002 05:38:53 GMT Connection: close Date: Mon, 20 May 2002
    05:38:53 GMT Server: WebLogic WebLogic Server 6.1 SP2 12/18/2001 11:13:46
    #154529 Content-Type: text/html
    where XXX.XXX.XXX.XXX i our IP address.
    The POSTTimeout setting on the application server is 120
    Can anyone instruct me on how to solve this .
    Prashant

    Hi.
    A couple of suggestions:
    First - make sure you can ping the WebLogic server on HPUX from your Win2k
    machine that is running IIS.
    Second, turn Debug=ON in your iisproxy.ini file to see what the debug log says.
    Post the log here if you need further help.
    Thanks,
    Michael
    Prashant S wrote:
    Hi,
    This is our current setup.
    1. Weblogic application server on HP-UX11i;
    2. IIS 5.0 on windows 2000 Advanced server.
    IIS is used to serve all the .html,.jpg,.pdf files and forwards all the
    requests for .jsp pages to the applications server (HP-UX).
    The IISproxy.ini file setting are as given below :
    WebLogicHost=XXX.XXX.XXX.XXX
    WebLogicPort=7001
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    Debug=OFF
    where XXX.XXX.XXX.XXX i our IP address.
    however we are getting this error on the top of my jsp pages.This error
    appears as and when and i cant figure out why is this happening .
    Message from the ISAPI plugin:
    POST timed out to the server XXX.XXX.XXX.XXX:7001
    Build date/time: Nov 8 2001 HTTP/1.1 200 Server: Microsoft-IIS/5.0 Date:
    Mon, 20 May 2002 05:38:53 GMT Connection: close Date: Mon, 20 May 2002
    05:38:53 GMT Server: WebLogic WebLogic Server 6.1 SP2 12/18/2001 11:13:46
    #154529 Content-Type: text/html
    where XXX.XXX.XXX.XXX i our IP address.
    The POSTTimeout setting on the application server is 120
    Can anyone instruct me on how to solve this .
    Prashant--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • POST problems with IIS Plugin

    I am using the latest version of the IIS plugin for Weblogic (build: Apr 14 2002
    17:53:13)
    It seems that the ISAPI Filter (iisforward.dll) does not forward all http POSTs
    - however it does seem to work fine for http GET's.
    We have configured the plugin (you will see the attached debug dump) to forward
    all calls on "/weblogic". If we perform http GET's on such a URL (using IE) everything
    works fine - and the call is routed to Weblogic.
    When we make a SOAP call using our C++ client, (a http POST) through the IIS plugin
    we get a 405 error. If we artificially add the ".wlforward" extension on the context
    URL (in our C++ client ) then it is forwarded correctly to weblogic by the Application
    Extension (iisproxy.dll) - so the problem lies with the ISAPI filter. Also, if
    we remove the ISAPI filter from IIS, we get the same 405 error - which confirms
    that the ISAPI filter is not catching the POST's.
    More puzzling, however, is that the SOAP requests from our Java SOAP client (using
    WLS SOAP) works fine.
    The problem must have something to do with the difference in structure of the
    POSTS.
    Normally, I would attach the logs/config in a zip file - but that seems broken
    at the moment. Instead they are all pasted in below.....
    -Nick
    Successful POST http header:
    POST /weblogic/webservice/BondInstrumentService HTTP/1.0
    Host: localhost:8080
    Connection: Keep-Alive
    Content-Length: 1965
    Content-Type: text/xml; charset=utf-8
    SOAPAction: ""
    Authorization: Basic c3lzdGVtOnBhc3N3b3Jk
    UNSuccessful POST http header:
    POST /weblogic/webservice/BondInstrumentService HTTP/1.0
    SOAPAction: ""
    Content-Type: text/xml
    Connection: close
    Content-Length: 1670
    IIS 405 Response:
    HTTP/1.1 405 Method not allowed
    Server: Microsoft-IIS/5.0
    Date: Thu, 25 Jul 2002 14:28:52 GMT
    Allow: OPTIONS, TRACE, GET, HEAD
    Content-Length: 3126
    Content-Type: text/html
    IIS Plugin Config:
    Properties loaded from path: 'D:\Inetpub\WeblogicPlugin\iisproxy.ini'
    Query String: '__WebLogicBridgeConfig'
    General Server List:
    Host: 'localhost' Port: 7001 Status: OK
    ConnectRetrySecs: '2'
    ConnectTimeoutSecs: '10'
    CookieName: 'JSESSIONID'
    Debug: '12'
    DebugConfigInfo: 'ON'
    DefaultFileName: ''
    DynamicServerList: 'ON'
    ErrorPage: ''
    FileCaching: 'ON'
    HungServerRecoverSecs: '300'
    Idempotent: 'OFF'
    KeepAliveEnabled: 'ON'
    KeepAliveSecs: '30'
    PathPrepend: ''
    PathTrim: '/weblogic'
    MaxSkips: '10'
    MaxPostSize: '-1'
    SecureProxy: 'OFF'
    WLLogFile: 'D:\Inetpub\WeblogicPlugin\iisPlugin.log'
    WLProxySSL: 'OFF'
    Runtime statistics:
    requests: 1
    successful requests: 1
    Exception objects created: 0
    Exception Objects deleted: 0
    URL Objects created: 1
    URL Objects deleted: 1
    connections recycled: 0
    UNKNOWN_ERROR_CODE exceptions: 0
    CONNECTION_REFUSED exceptions: 0
    CONNECTION_TIMEOUT exceptions: 0
    READ_ERROR exceptions: 0
    WRITE_ERROR exceptions: 0
    READ_TIMEOUT exceptions: 0
    WRITE_TIMEOUT exceptions: 0
    UNKNOWN_HOST exceptions: 0
    NO_RESOURCES exceptions: 0
    PROTOCOL_ERROR exceptions: 0
    CONFIG_ERROR exceptions: 0
    FAILOVER_REQUIRED exceptions: 0
    Build date/time: Apr 14 2002 17:53:13

    Doh. :< I hope you can get someone here from the BEA guys/gals to help out.
    I'm outside of my league at this point. Sorry about that. Good luck.
    "Nick Minutello" <[email protected]> wrote
    in message news:[email protected]...
    >
    >
    Thanks.
    Sadly, my IIS configuration is correct. The plugin seems to work fine if Ijust
    use my browser (http GET) for either forward-by-extension (*.jsp) orforward-by-path
    (/weblogic/*).
    However, there seems to be a problem when I use SOAP (http POST). For somereason,
    when I use my C++ SOAP client (using WASP), then the ISAPI filter (the onethat
    generates the .wlforward on the URL) doesnt modify the URL - hence the403...
    If I use my java client.... everything is fine. Comparing the two httppackets,
    I dont see anything obviously wrong - but something is making the WLSplugin choke.
    >
    Cheers,
    Nick
    "PHenry" <[RemoveBeforeSending][email protected]> wrote:
    Howdy. I had a similar problem. I'm not a BEA support person, but maybe
    I
    might be able to help. If not, at least someone's listening. :>
    Did you add the .jsp AND the .wlforward in the path redirection under
    your
    web app in IIS? I read the instructions thoroughly (or so I thought),
    and I
    wasn't able to get the POST to work. :< But as I reread the
    instructions,
    I
    had put in the .jsp (is it under Home Directory, Configuration I think?),
    and I put in the ISAPI dll, but I didn't put in the .wlforward (in with
    the
    ..jsp). Once I did that, and restarted the box, all was good! :>
    That might help. And if not, at least one of the BEA people have one
    less
    thing to try. Good luck.
    "Nick Minutello" <[email protected]>
    wrote
    in message news:[email protected]...
    I am using the latest version of the IIS plugin for Weblogic (build:Apr
    14 2002
    17:53:13)
    It seems that the ISAPI Filter (iisforward.dll) does not forward allhttp
    POSTs
    - however it does seem to work fine for http GET's.
    We have configured the plugin (you will see the attached debug dump)to
    forward
    all calls on "/weblogic". If we perform http GET's on such a URL (usingIE) everything
    works fine - and the call is routed to Weblogic.
    When we make a SOAP call using our C++ client, (a http POST) throughthe
    IIS plugin
    we get a 405 error. If we artificially add the ".wlforward" extensionon
    the context
    URL (in our C++ client ) then it is forwarded correctly to weblogicby the
    Application
    Extension (iisproxy.dll) - so the problem lies with the ISAPI filter.Also, if
    we remove the ISAPI filter from IIS, we get the same 405 error -which
    confirms
    that the ISAPI filter is not catching the POST's.
    More puzzling, however, is that the SOAP requests from our Java SOAPclient (using
    WLS SOAP) works fine.
    The problem must have something to do with the difference in structureof
    the
    POSTS.
    Normally, I would attach the logs/config in a zip file - but that seemsbroken
    at the moment. Instead they are all pasted in below.....
    -Nick
    Successful POST http header:
    POST /weblogic/webservice/BondInstrumentService HTTP/1.0
    Host: localhost:8080
    Connection: Keep-Alive
    Content-Length: 1965
    Content-Type: text/xml; charset=utf-8
    SOAPAction: ""
    Authorization: Basic c3lzdGVtOnBhc3N3b3Jk
    UNSuccessful POST http header:
    POST /weblogic/webservice/BondInstrumentService HTTP/1.0
    SOAPAction: ""
    Content-Type: text/xml
    Connection: close
    Content-Length: 1670
    IIS 405 Response:
    HTTP/1.1 405 Method not allowed
    Server: Microsoft-IIS/5.0
    Date: Thu, 25 Jul 2002 14:28:52 GMT
    Allow: OPTIONS, TRACE, GET, HEAD
    Content-Length: 3126
    Content-Type: text/html
    IIS Plugin Config:
    Properties loaded from path: 'D:\Inetpub\WeblogicPlugin\iisproxy.ini'
    Query String: '__WebLogicBridgeConfig'
    General Server List:
    Host: 'localhost' Port: 7001 Status: OK
    ConnectRetrySecs: '2'
    ConnectTimeoutSecs: '10'
    CookieName: 'JSESSIONID'
    Debug: '12'
    DebugConfigInfo: 'ON'
    DefaultFileName: ''
    DynamicServerList: 'ON'
    ErrorPage: ''
    FileCaching: 'ON'
    HungServerRecoverSecs: '300'
    Idempotent: 'OFF'
    KeepAliveEnabled: 'ON'
    KeepAliveSecs: '30'
    PathPrepend: ''
    PathTrim: '/weblogic'
    MaxSkips: '10'
    MaxPostSize: '-1'
    SecureProxy: 'OFF'
    WLLogFile: 'D:\Inetpub\WeblogicPlugin\iisPlugin.log'
    WLProxySSL: 'OFF'
    Runtime statistics:
    requests: 1
    successful requests: 1
    Exception objects created: 0
    Exception Objects deleted: 0
    URL Objects created: 1
    URL Objects deleted: 1
    connections recycled: 0
    UNKNOWN_ERROR_CODE exceptions: 0
    CONNECTION_REFUSED exceptions: 0
    CONNECTION_TIMEOUT exceptions: 0
    READ_ERROR exceptions: 0
    WRITE_ERROR exceptions: 0
    READ_TIMEOUT exceptions: 0
    WRITE_TIMEOUT exceptions: 0
    UNKNOWN_HOST exceptions: 0
    NO_RESOURCES exceptions: 0
    PROTOCOL_ERROR exceptions: 0
    CONFIG_ERROR exceptions: 0
    FAILOVER_REQUIRED exceptions: 0
    Build date/time: Apr 14 2002 17:53:13

Maybe you are looking for