Browser pipelining

Hi Crew,
Has anyone had any experience or learings about browser pipelining.
It appears that the J2EE Engine supports pipeling but IE does not.
We have a situation where because the TCP connection is closed several times during a page load, the NTLM authentication is executed multiple times during the rendering of the page.
This has a significant impact on performance due to latency.
Look forward to hearing your thoughts.
Paul

Ok, it seems you have to do the following :
1. (if the dns name of the portal is not the same as the computer name (netbios))
setspn -A HTTP / <portal_host_name> <netbios_name>
(reference http://support.microsoft.com/default.aspx?scid=kb;en-us;326985 and http://www.microsoft.com/windows2000/techinfo/reskit/tools/existing/setspn-o.asp)
If this is not done, you will only get a ticket if you add the name of the server as a DNS entry in the host file(C:\WINNT\system32\drivers\etc\host) of the client computer.
If you install kerbtray from http://www.microsoft.com/windows2000/techinfo/reskit/tools/existing/kerbtray-o.asp
you can see which kerberos ticket you have. You should have one for HTTP/<portal_host_name>
Another way to check this is to view the event log on the server on the security tab. For each logon/logoff event the method is displayed. This should be kerberos, not ntlmssp.
2. The computer must be trusted for delegation of tickets . a.     On the domain controller, click Start, point to Settings, and then click Control Panel.
b.     Double-click the Administrative Tools folder, and then double-click Active Directory Users and Computers.
c.     Under your domain, click the Computers folder.
d.     In the list, locate the IIS server. Right-click the server name, and then click Properties.
e.     Click the General tab, click to select the Trusted for delegation check box, and then click OK.
But even after having done this changes it seems like there are quite a few reauthentications, although alot fewer than before (and they use less http packages). Perhaps this is the way it works ?
(ps a very good walkthrough of IIS authentication is available at http://support.microsoft.com/?scid=http://support.microsoft.com%2Fservicedesks%2Fwebcasts%2Fen%2Ftranscripts%2Fwctd060904.asp , but it doesn't say what happens for subsequent kerberos request to IIS).

Similar Messages

  • How easy is it to create a new add on? I would like to see tabbed display within the browser on FF24 on Android 4.2 – as per desktop FF

    Please excuse this if it's a noob Q – I am, indeed, completely new to Android. Tabbed display appears to have been possible on previous versions of FF for Android via several add ons but unfortunately no more. Display of each open tab within the browser – rather than the current arrangement with just the number in the corner – is still possible with FF desktop and also features in Chrome, Opera and Dolphin for Android. I would prefer not to use these other mobile browsers as FF outperforms them but I do need tabbed display to allow for PDF docs to open – using the PDF viewer add on – alongside their initiating webpage. Any ideas? Is it difficult to create an add on? What is the process? Is one in the pipeline? Many thanks in advance for any help or guidance you can offer...

    Many thanks for your reply, Waka – guess you're right that it's a new add on or bust... I still find it odd that such a common UI feature across mobile browsers is unavailable in FF24 either as an option under settings or as an add-on. Surely, I'm not the only person who finds this puzzling?

  • My Firefox browser is no longer working on my phone

    I primarily use my Mozilla Firefox browser on my android phone. I went to use it yesterday and got an error message stating it was sorry and then wanted me to send the crash report. Then it said it sent the report and then goes right back to the screen wanting me to send the crash report again. It's just his in circles. How can I fix this?

    hi thorvath, thank you for reporting this. unfortunately this is a problem with the android lollipop update that you've received on your htc one m8 from verizon at the moment.
    there is a fix for this issue by mozilla already in the pipeline, so please look out for a firefox update in the google play store in the coming days.

  • XML - WML; Unable to open in WAP/WEB browser

    I am trying to convert an XML document into a WML document. I have the following code:
    private void generateWML() {
         wmlPath = root+System.getProperty("file.separator")+"results.wml";
         File results = new File(wmlPath);
         try {
              //instantiate a TransformerFactory
              TransformerFactory tFactory = TransformerFactory.newInstance();
              //Generate TRansformer object using stylesheet Source
              Source stylesheet = new StreamSource(stylePath);
              Transformer transformer = tFactory.newTransformer(stylesheet);
              transformer.setOutputProperty(OutputKeys.INDENT, "yes");
              transformer.setOutputProperty(OutputKeys.MEDIA_TYPE, "text/vnd.wap.wml");
              //Use transformer to transform XML source and send the output to SourceResult object
              StreamSource xmlIn = new StreamSource(xmlPath);
              StreamResult wmlOut = new StreamResult(results);
              transformer.transform(xmlIn, wmlOut);
         catch (TransformerConfigurationException tce) {
              out.println(tce.getMessage()+"<br />");
         catch (TransformerException te) {
              out.println(te.getMessage()+"<br />");
    }I can open the resultant wml file in my text editor, but am unable to load the file both in IE and in my WAP phone simulator.
    I get an alert box saying Access to the specified device, path, or file is denied when I try to open the file in IE, and I get a No response, Try again alert when I try to load the file in my Nokia Mobile Internet Toolkit.
    Does anyone know how to solve this problem?
    Thanking in advanced.
    gerbera

    Hi ,
    I've a problem in browsing in WAP phone simulator. I use xml --> xsl --> wml.
    But, in wap phone, i can see only "url not found" error. How can i solve it?
    Plz help me if possible.
    Here's my code.....
    ----------------------------- address-wml.xsl ------------------------------------------------------------
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template
    match="contact">
    <xsl:processing-instruction name="cocoon-format">
    type="text/wml"
    </xsl:processing-instruction>
    <wml>
    <card id="index" title="Your Contacts">
    <p align="center">
    Phone Book
    </p>
    </card>
    <card id="contact" title="Phone Book">
    <p>
    <b><xsl:value-of select="name/first-name"/>
    <xsl:text>
    </xsl:text>
    <xsl:value-of select="name/last-name"/></b>
    <xsl:value-of select="phone"/>
    <do type="accept" label="More">
    <go href="#Address"/>
    </do>
    </p>
    </card>
    <card
    id="Address" title="address">
    <p>
    <b>
    <xsl:value-of
    select="name/first-name"/>
    <xsl:text> </xsl:text>
    <xsl:value-of
    select="name/last-name"/>
    </b>
    <xsl:value-of select="address/street"/>
    <xsl:value-of select="address/city"/>
    <xsl:value-of
    select="address/state"/>
    <xsl:value-of select="address/country"/>
    Main
    <do type="prev">
    <prev/>
    </do>
    </p>
    </card>
    </wml>
    </xsl:template>
    </xsl:stylesheet>
    ---------------------------------------------- homer.xml ------------------------------------------------------------
    <?xml-stylesheet href="address-wml.xsl? type="text/xsl? media="wap"?>
    ---------------------------------------------- sitemap.xmap --------------------------------------------------------
    <?xml version="1.0"?>
    <!-- CVS $Id: sitemap.xmap,v 1.13 2003/11/18 07:12:10 tony Exp $ -->
    <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
    <!-- =========================== Views =================================== -->
    <map:views>
    <map:view name="content" from-label="content">
    <map:serialize type="xml"/>
    </map:view>
    <map:view from-label="content" name="pretty-content">
    <map:transform src="context://stylesheets/system/xml2html.xslt"/>
    <map:serialize type="html"/>
    </map:view>
    <map:view name="links" from-position="last">
    <map:serialize type="links"/>
    </map:view>
    </map:views>
    <!-- =========================== Pipelines ================================= -->
    <map:serializers>
    <!--<map:serializer logger="sitemap.serializer.wml" mime-type="text/vnd.wap.wml" name="wml" src="org.apache.cocoon.serialization.XMLSerializer">
    <doctype-public>-//WAPFORUM//DTD WML 1.1//EN</doctype-public>
    <doctype-system>http://www.wapforum.org/DTD/wml_1.1.xml</doctype-system>
    <encoding>ASCII</encoding>
    <omit-xml-declaration>yes</omit-xml-declaration>
    </map:serializer>
    </map:serializers>
    <map:pipelines>
    <map:pipeline>
    <map:match pattern="homer.wml">
    <map:generate src="homer.xml"/>
    <map:transform src="address-wml.xsl"/>
    <map:serialize type="wml"/>
    </map:match>
    </map:pipeline>
    </map:pipelines>
    </map:sitemap>

  • OSB Proxy Service does not want to display on the browser

    Hi guys, can you please help with this one
    I have created a business service that calls a webservice tha is housed inside my weblogic domain. The business service is then called by a proxy service. The business and the proxy service make use of the same wsdl that ensures that they both comform to the structure of the soap envelope.
    When I debug both the business and the proxy service from inside the osb console, I get a positive result. Now the problem arises when I call the proxy service directly from the browser, I get a BEA-380001 error. http://localhost:8001/ProxServiceProj/RicaPS
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soapenv:Body>
              <soapenv:Fault>
                   <faultcode>soapenv:Server</faultcode>
                   <faultstring>BEA-380001: Internal Server Error</faultstring>
                   <detail>
                        <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
                             <con:errorCode>BEA-380001</con:errorCode>
                             <con:reason>Internal Server Error</con:reason>
                             <con:location>
                                  <con:node>RouteNode1</con:node>
                                  <con:path>response-pipeline</con:path>
                             </con:location>
                        </con:fault>
                   </detail>
              </soapenv:Fault>
         </soapenv:Body>
    </soapenv:Envelope>
    The proxy service has a route node that routes to the business service. I did not do anything that will affect the response, so there are no request actions or response actions. I have even tried adding a pipeline pair that has a stage on the response, this stage does nothing though as I do not know what to do with it.
    Based on the information I have gathered from the net, it might be a transport header problem, that is related to the response-pipeline. So does anyone know what the potential problem could be? Is there anything that I was supposed to do?
    O..

    Hey guys,
    any suggestions? This is the actual error that gets thrown when I check the logs:
    BEA-423405     An exception [Write failed: Broken pipe] was thrown while rendering the content at [jsp/test/ServiceRequest.jsp]. java.net.SocketException: Write failed: Broken pipe at jrockit.net.SocketNativeIO.writeBytesPinned(Native Method) at jrockit.net.SocketNativeIO.socketWrite(SocketNativeIO.java:46) at java.net.SocketOutputStream.socketWrite0(SocketOutputStream.java) at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) at java.net.SocketOutputStream.write(SocketOutputStream.java:136) at weblogic.servlet.internal.ChunkOutput.writeChunkTransfer(ChunkOutput.java:507) at weblogic.servlet.internal.ChunkOutput.writeChunks(ChunkOutput.java:486) at weblogic.servlet.internal.ChunkOutput.flush(ChunkOutput.java:382) at weblogic.servlet.internal.CharsetChunkOutput.flush(CharsetChunkOutput.java:313) at weblogic.servlet.internal.ChunkOutput$2.checkForFlush(ChunkOutput.java:580) at weblogic.servlet.internal.CharsetChunkOutput.write(CharsetChunkOutput.java:221) at weblogic.servlet.internal.ChunkOutputWrapper.write(ChunkOutputWrapper.java:146) at weblogic.servlet.internal.ServletOutputStreamImpl.write(ServletOutputStreamImpl.java:138) at weblogic.servlet.internal.WLOutputStreamWriter.writeBytes(WLOutputStreamWriter.java:168) at weblogic.servlet.internal.WLOutputStreamWriter.flushBuffer(WLOutputStreamWriter.java:212) at weblogic.servlet.internal.WLOutputStreamWriter.write(WLOutputStreamWriter.java:132) at weblogic.servlet.internal.WLOutputStreamWriter.write(WLOutputStreamWriter.java:113) at weblogic.servlet.internal.DelegateChunkWriter.print(DelegateChunkWriter.java:118) at weblogic.servlet.internal.ChunkOutputWrapper.print(ChunkOutputWrapper.java:157) at weblogic.servlet.jsp.JspWriterImpl.print(JspWriterImpl.java:176) at com.bea.alsb.console.taglibs.test.TestPageSection.doEndTag(TestPageSection.java:121) at jsp_servlet._jsp._test.__servicerequest._jspService(__servicerequest.java:437) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at org.apache.beehive.netui.pageflow.PageFlowPageFilter.continueChainNoWrapper(PageFlowPageFilter.java:455) at org.apache.beehive.netui.pageflow.PageFlowPageFilter.runPage(PageFlowPageFilter.java:432) at org.apache.beehive.netui.pageflow.PageFlowPageFilter.doFilter(PageFlowPageFilter.java:284) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:527) at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:447) at org.apache.beehive.netui.pageflow.scoping.internal.ScopedRequestDispatcher.include(ScopedRequestDispatcher.java:119) at com.bea.netuix.servlets.controls.content.JspContent.beginRender(JspContent.java:552) at com.bea.netuix.servlets.controls.content.NetuiContent.beginRender(NetuiContent.java:365) at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:485) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:326) at com.bea.netuix.nf.UIControl.render(UIControl.java:582) at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:486) at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:146) at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:62) at jsp_servlet._framework._skeletons._wliconsole.__flowlayout._jspService(__flowlayout.java:271) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:529) at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:447) at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:130) at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72) at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65) at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:481) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:326) at com.bea.netuix.nf.UIControl.render(UIControl.java:582) at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:486) at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:146) at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:62) at jsp_servlet._framework._skeletons._wliconsole._popupwindow.__gridlayout._jspService(__gridlayout.java:312) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:529) at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:447) at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:130) at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72) at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65) at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:481) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:326) at com.bea.netuix.nf.UIControl.render(UIControl.java:582) at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:486) at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:146) at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:62) at jsp_servlet._framework._skeletons._wliconsole.__flowlayout._jspService(__flowlayout.java:271) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:529) at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:447) at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:130) at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72) at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65) at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:481) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:326) at com.bea.netuix.nf.UIControl.render(UIControl.java:582) at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:486) at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:146) at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:62) at jsp_servlet._framework._skeletons._wliconsole._popupwindow.__gridlayout._jspService(__gridlayout.java:312) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:529) at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:447) at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:130) at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72) at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65) at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:481) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361) at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:208) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:162) at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388) at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258) at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:211) at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:196) at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:251) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:130) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201) at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    I can't find any helpful links on the net about this error,
    O..
    Edited by: Ophola on 2010/11/10 11:07 AM

  • Project Pipeline Workbook

    When clicking on "Project Pipeline Workbook" from Project Super User Responsibility..
    The Browser Page that open ..shows following message :
    The requested URL /discoverer/viewer was not found on this server.
    We are using R12.1.1. Pls suggest whats wrong?
    Thanks

    Hi
    Project Pipeline should include those projects initiated by Oracle Sales, following a sale opportunity.
    The projects should have a certain probability to get awarded, but were not yet approved to start execution.
    If you don't implemented the integration between Oracle Sales and Projects, I suspect that view wouldn't be available.
    Dina

  • Why doesn't Mozilla Firefox officially support HTTP 1.1 pipelining yet?

    This is really more of a philosophical question than a technical one, but I thought I'd mention it. While investigating ways to improve my browsing speed in general, I even found a Bugzilla ticket from 2004 debating this issue.
    While I understand Mozilla wants to reduce the number of problems end users have, turning this option on in my browser has greatly increased the speed by which major websites load.
    Since I'm asking, I would like to make sure. I'm currently using a web proxy and have both "network.http.pipelining" and "network.http.proxy.pipelining" set to TRUE. Is this the appropriate way to enable this feature?
    Thanks In Advance.

    If that works better for you, use it by all means. Certainly both browser and proxy should be set the same way. I found that pipelining did not help with Mac browsers, but did help with Windows browsers with a proxy that supported it.

  • WL6.1 - browsing and receiving from queues with MDBs

    Hi all,
              I have hit on a problem that has been brought up previously without,
              as far as I can tell, any conclusive response.
              I am using a queue which is processed by message driven beans. This
              queue contains jobs which may take a long time to execute and hence it
              is important to allow users to manage the queue. Ideally this
              management should work in the same way as, say, a printer queue where
              it is possible to view queued jobs and cancel them if necessary.
              It has been said that MDBs in WLS6.1 use an internal pipeline which
              [quote from previous thread " QueueBrowser not working in WL6"]
              "uses an optimistic algorithm and pushes the message at the bean
              before it is ready"
              and, sure enough, pointing a queue browser, activated from a JSP, at
              the queue always returns a queue length of zero, whatever the number
              of pooled MDBs and whatever the actual number of messages queued. I
              have worked around this by creating a second 'monitoring' queue not
              listened to by any MDBs and which I then have to manually synchronise
              with the 'real' jobs queue. However, removing jobs does not work
              either (I am storing the job message ID and trying to access the jobs
              queue using this as a selector) since the queue is empty when looked
              at from any client which is not the listening MDB. In contrast with
              the browsing, there seems to be no obvious way around this as I need
              to access the jobs queue itself before I can remove any jobs.
              My intended 'queue management' functionality does not seem
              particularly esoteric to me and hence I am puzzled that this appears
              difficult to implement. I have therefore been wondering whether I have
              been missing any obvious point and I would be grateful to hear of
              anybody else's experiences trying to achieve similar functionality.
              It would also be interesting to hear whether moving to WLS 7.0 would
              change/fix this 'pipelining' behaviour of MDBs.
              Many thanks.
              Peter
              

    Hi Peter,
              Since 6.0, when pipelining was introduced,
              the pipeline size is configurable via the connection
              factory (see "MessagesMaximum"). To tune this setting,
              you will need to configure a
              custom connection factory for the MDB rather than use
              the default one, and specify its name in the xml descriptor.
              I'm a little surprised you did not find reference to this
              setting in your search.
              Regardless, you will not be able to stop the current message in the MDB.
              In the next release (beta December) you can force the current tx to
              rollback through the JTA mbeans. Of course, this won't stop
              the onMessage() from continuing its work, but it will
              guarantee that any of its transactional
              work will be ultimately discarded.
              Since the app server has no control of the thread
              once it is passed to the MDB app (it can't just kill
              the thread), you will need to roll your
              own mechanism to make it stop. One possibility is to have your MDB
              "register" that it is starting with a "manager" application, and then
              have the MDB poll this application to see if the system admin
              has requested that the current job be aborted.
              You will likely find it useful to read through the JMS FAQ. You
              might also find it useful to look at the jsp queue browser app
              posted on dev2dev by Adarsh...
              Tom, BEA
              P.S. The release after next release will contain more advanced message
              management features.
              Peter Case wrote:
              > Hi all,
              >
              > I have hit on a problem that has been brought up previously without,
              > as far as I can tell, any conclusive response.
              > I am using a queue which is processed by message driven beans. This
              > queue contains jobs which may take a long time to execute and hence it
              > is important to allow users to manage the queue. Ideally this
              > management should work in the same way as, say, a printer queue where
              > it is possible to view queued jobs and cancel them if necessary.
              > It has been said that MDBs in WLS6.1 use an internal pipeline which
              >
              > [quote from previous thread " QueueBrowser not working in WL6"]
              > "uses an optimistic algorithm and pushes the message at the bean
              > before it is ready"
              >
              >
              > and, sure enough, pointing a queue browser, activated from a JSP, at
              > the queue always returns a queue length of zero, whatever the number
              > of pooled MDBs and whatever the actual number of messages queued. I
              > have worked around this by creating a second 'monitoring' queue not
              > listened to by any MDBs and which I then have to manually synchronise
              > with the 'real' jobs queue. However, removing jobs does not work
              > either (I am storing the job message ID and trying to access the jobs
              > queue using this as a selector) since the queue is empty when looked
              > at from any client which is not the listening MDB. In contrast with
              > the browsing, there seems to be no obvious way around this as I need
              > to access the jobs queue itself before I can remove any jobs.
              > My intended 'queue management' functionality does not seem
              > particularly esoteric to me and hence I am puzzled that this appears
              > difficult to implement. I have therefore been wondering whether I have
              > been missing any obvious point and I would be grateful to hear of
              > anybody else's experiences trying to achieve similar functionality.
              > It would also be interesting to hear whether moving to WLS 7.0 would
              > change/fix this 'pipelining' behaviour of MDBs.
              >
              > Many thanks.
              >
              > Peter
              

  • Safari won't work with CNN Pipeline and other sites all of a sudden?

    Safari won't work with CNN Pipeline and other sites all of a sudden? A few weeks ago Safari was working OK but now I often have to use Firefox to visit certain webpages.
    Anyone else having this same problem?
    Is there a quick fix?
    I'm using Safari 2.0.4
    Thanks.

    Hi QuickTimeKirk,
    I have WMP version 9, as well. I do not use F4M, for many users f4mac is what helps.
    I find some items work while others do not. I always get an alert about the wmp , which version it is, takes very long to load, I find it is not consistant with Safari, as seems the poster of this topic has found.
    Quoted from ms Mactopia site:
    http://www.microsoft.com/windows/windowsmedia/player/mac/
    Download and find information about Windows Media Player for Mac and playing Windows Media files in your QuickTime Player. Which download is right for you?
    Windows Media Components for QuickTime
    Windows Media Player 9 for Mac OS X
    Windows Media Player 7.1 for Mac
    Important Information
    Microsoft will continue to offer Windows Media Player for Mac as a download free of charge, but has no plans to provide future updates or product support.
    We are pleased to offer Windows Media® Components for Quicktime, by Flip4Mac™, as an alternative for Mac OS X users wanting to play Windows Media Audio and Windows Media Video.
    ~•~
    Validation of the cnn home page using the W3C Validatior, http://validator.w3.org/
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.cnn.com%2F
    though 41 errors is not as poor as some, Firefox handles the site better than Safari, imo.
    Some sites just work better with Firefox or an other browser.
    Cheers,
    Eme '~[ )

  • Last servlet in request pipeline

    Hi All ,
    What is the last  servlet in the request pipeline?  Because I have a requirement to redirect to some other page based on our business logic.
    Thanks in advance.

    Last servlet pipeline: TailPipeline Servlet.
    If u want to view servlet pipeline sequence, Browse to DynamoHandler(which is first servlet pipeline) in dyn/admin and go to nextServlet and so on.
    From any servlet pipeline if u redirect to page. after processing ur page will get loaded.
    No need to go to end and add ur servlet.
    U can add it in middle also and use response.sendredirect.
    Thanks,
    Nitin..

  • Pipeline Sales Process Flow

    Hello Everyone,
    I was searching for Pipeline sales process flow documentation to meet for one of our client business requirement.
    Pipeline sales process used mainly in Oil and Gas industries, I happened to browse thru the SDN.SAP.com site, I found some useful information was posted, but the information was completely theoretical. I was looking for some best practice or documentation on configuration settings for this process.
    If anyone happened to work on this process, then kindly let me know, how you have gone about doing configuration?
    Also, give some documentation if you have any.
    Many thanks in advance.
    Regards,
    Mookii

    Hi Mookii,
    This forum is dedicated to Development in the SAP Business One - SB1 - product. SB1 is an ERP for small and mid-size companies, so it does not have anything specific for the Oil and Gas industries.
    You should search the Business Process - BPX forum for what you need. Also, you might search the Blogs or the Articles.
    Regards,
    Vítor Vieira

  • I can not access the net w/ Internet Explorer but not firefox. I have Mozilla set as default browser.

    I have had a problem previously accessing the net w/ firefox. After checking firefox info site, I set Firefox as the default browser and that corrected the problem. It has now happened again w/ the settings as described. No problems (other than normal) w/ Internet Esplorer and no problems w/ Thunderbird. Suggestions?

    You may also need to reset some prefs. You have a lot of prefs in your More system details list that were changed from the default.<br />
    One of them being the pref to override the user agent to Firefox 3.6.3
    general.useragent.override Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    If you haven't set network.http prefs yourself to those values for specific reasons then you should reset them (not all servers support pipelining). dom.max_chrome_script_run_time 0 and dom.storage.enabled false should also only be done in case of problems. dom.storage is a replacement for cookies and dom.max_chrome_script_run_time set to 0 may cause the browser to hang in case of script errors.

  • Unable to add the Custom Pipeline component in to the Visual Studio Tool Box

    I have tried to create the custom Pipeline component to transfer the large message in Receive side,
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Xml;
    using System.IO;
    using Microsoft.BizTalk.Message.Interop;
    using Microsoft.BizTalk.Component.Interop;
    namespace Sample.LargeFilesDecoder
    [ComponentCategory(CategoryTypes.CATID_PipelineComponent)]
    [ComponentCategory(CategoryTypes.CATID_Encoder)]
    [System.Runtime.InteropServices.Guid("25984614-BCFD-4c47-82FC-4A2300B76411")]
    public class LargeFilesDecoder : IBaseComponent,
    IComponentUI,
    IComponent,
    IPersistPropertyBag
    #region IBaseComponent Members
    public string Description
    get
    return "Pipeline component used to receive Larger Files through SFTP Ports";
    public string Name
    get
    return "LargeFilesDecoder";
    public string Version
    get
    return "1.0.0.0";
    #endregion
    #region IComponentUI Members
    public IntPtr Icon
    get
    return new System.IntPtr();
    public System.Collections.IEnumerator Validate(object projectSystem)
    return null;
    #endregion
    #region IPersistPropertyBag Members
    private string _largeFileLocation;
    private int _thresholdSize;
    public string LargeFileLocation
    get { return _largeFileLocation; }
    set { _largeFileLocation = value; }
    public int ThresholdSize
    get { return _thresholdSize; }
    set { _thresholdSize = value; }
    public void GetClassID(out Guid classID)
    classID = new Guid("DBA77DFA-5D3E-4B85-8F78-1D6330B6BCA0");
    public void InitNew()
    public void Load(IPropertyBag propertyBag, int errorLog)
    object val1 = null;
    object val2 = null;
    try
    propertyBag.Read("LargeFileLocation", out val1, 0);
    propertyBag.Read("ThresholdSize", out val2, 0);
    catch (ArgumentException)
    catch (Exception ex)
    throw new ApplicationException("Error reading PropertyBag: " + ex.Message);
    if (val1 != null)
    _largeFileLocation = (string)val1;
    if (val2 != null)
    _thresholdSize = (int)val2;
    public void Save(IPropertyBag propertyBag, bool clearDirty, bool saveAllProperties)
    object val1 = (object)_largeFileLocation;
    propertyBag.Write("LargeFileLocation", ref val1);
    object val2 = (object)_thresholdSize;
    propertyBag.Write("ThresholdSize", ref val2);
    #endregion
    #region IComponent Member
    public IBaseMessage Execute(IPipelineContext pContext, IBaseMessage pInMsg)
    if (_largeFileLocation == null || _largeFileLocation.Length == 0)
    _largeFileLocation = Path.GetTempPath();
    if (_thresholdSize == null || _thresholdSize == 0)
    _thresholdSize = 4096;
    if (pInMsg.BodyPart.GetOriginalDataStream().Length > _thresholdSize)
    Stream originalStream = pInMsg.BodyPart.GetOriginalDataStream();
    string largeFilePath = _largeFileLocation + pInMsg.MessageID.ToString() + ".msg";
    FileStream fs = new FileStream(largeFilePath, FileMode.Create);
    // Write message to disk
    byte[] buffer = new byte[1];
    int bytesRead = originalStream.Read(buffer, 0, buffer.Length);
    while (bytesRead != 0)
    fs.Flush();
    fs.Write(buffer, 0, buffer.Length);
    bytesRead = originalStream.Read(buffer, 0, buffer.Length);
    fs.Flush();
    fs.Close();
    // Create a small xml file
    string xmlInfo = "<MsgInfo xmlns='http://Sample.LargeFilesDecoder'><LargeFilePath>" + largeFilePath + "</LargeFilePath></MsgInfo>";
    byte[] byteArray = System.Text.Encoding.UTF8.GetBytes(xmlInfo);
    MemoryStream ms = new MemoryStream(byteArray);
    pInMsg.BodyPart.Data = ms;
    return pInMsg;
    #endregion
    I have
    Added .dll file in to the Global Assembly Cache (use gacutil)
    Copied it the Pipeline Components folder (E:\Program Files (x86)\Microsoft BizTalk Server 2013\Pipeline Components)
    Everything was successful, when I try to add the component to the Toolbox I get the message like below and cannot find the component in Toolbox.
    Tried several times but still getting stuck in the same place. I am using Visual Studio 2013. Any help is greatly appreciated.

    Do not put the Assembly in the %\Pipeline Components folder.  Pipeline Component Assemblies should be in the GAC only.
    To correctly deploy a custom Pipeline Component, you can follow the steps in this Wiki Article:
    http://social.technet.microsoft.com/wiki/contents/articles/26404.biztalk-deploying-custom-pipeline-components-in-biztalk-server-2006-and-higher.aspx
    I have never seen that specific error before.  Are you sure you're browsing from the Pipeline Components tab?

  • Enhance browsing speed - firefox & mozilla

    these guidelines are based on mozilla 1.7 and firefox 0.9, but reportedly they also work in earlier versions of each browser. the options differ slightly between firefox and mozilla, so adjust accordingly. i've shown in parantheses which browsers have which options.
    to get started, type about:config in the address bar, and press <enter>. then change the following keys as indicated:
    1. browser.turbo.enabled - true (FF MOZ)
    2. network.http.pipelining - true (FF MOZ)
    3. network.http.pipelining.firstrequest - true (FF)
    4. network.http.pipelining.maxrequests - 32 (FF MOZ)
    5. network.http.proxy.pipelining - true (FF MOZ)
    6. nglayout.initialpaint.delay - 0 (FF)
    Enabling the pipelining features allows the browser to make multiple requests to the server at the same time. The "maxrequests" is the maximum number of requests it will send at once. I've heard that 8 is the most it will send at once, but setting it higher won't hurt, just in case. The initialpaint.delay is the length of time (in milliseconds) after the server response before the browser begins to paint the page.
    with those settings, most people report a noticeable speed boost in rendering pages. YMMV.
    have fun!

    the  "browser.turbo.enabled" i didnt know, but pipelining is also in the Preferences of Moz:
    Preferences -> Advanced -> HTTP-Networking
    i did search about this for short:
    http://www.webmasterworld.com/forum21/8007-3-10.htm
    http://www.peoplesrepublicofcork.com/~p … 19009.html
    http://zgp.org/pipermail/linux-elitists … 07815.html
    http://zgp.org/pipermail/linux-elitists/2003-October/007815.html wrote:
    > What about browser.turbo.enabled?
    Has to do with what is now called "quicklaunch" (and which doesn't work on
    Linux; this pref isn't used anymore.) I learned this from THE FIRST Google
    hit, BTW.
    and about pipelining for surfing the web read this:
    http://www.mozilla.org/projects/netlib/ … g-faq.html
    for computer newbies: nice explanation about pipelining:
    http://cse.stanford.edu/class/sophomore … ipelining/
    ->
    normal:
    pipelining:

  • Water pipeline network

    Hi All,
    Our company would like to use LabView for doing analysis work for water pipeline network.
    We are looking for a software both capability of the control and the flow assessment on real time. Actually air is the working fluid at the normal condition in the system. We would like to control both of mass and pressure. We want not only to check those result data from our virtual design but to control those results data with the system requirement in the system performance point of view.
    Could somebody here be able to give us some examples or hints?
    Cheers,
    Eric

    Eric,
    It might be difficult to locate an example that is specific to your application for several reasons. Primarily, most of the example code on the site will be aimed at illustrating basic concepts and will not be comprehensive solutions. Additionally, example programs must be written specific to the hardware for which you are programming. Before you can view example code, you must consider the platform for which you would like to develop. As linked previously, our Programmable Automation Controllers (PACs) come in many different form factors from which to choose. Lastly, example programs are written such that they can be executed by anyone who has the hardware; it is rare that an example will be written under the assumption that a user will have several specific I/O points (such as pumps, valves, transducers, and switches). You will find various examples for data acquisition, data analysis, process control, and user interface separately. From these pieces, you can build an application that specifically meets your needs.
    That being said, we do have several resources that will assist in your selection of a hardware platform. These can also show you how code can be configured for basic operations. Your final application will consist of several basic blocks used together to control your system. I would suggest you take a look at the product pages for FieldPoint and CompactRIO. One of these two forms of Programmable Automation Controllers should align closely enough with your application to begin searching for example code.
    Below I have linked several resources that may be of interest. The first link is to a list of Web Events for our Compact FieldPoint line of Programmable Automation Controllers. The "Advanced Control Schemes with Programmable Automation Controllers" is quite a detailed look at Compact FieldPoint. It provides you with an overview of process control as well as a look at the code behind the application. I have also included links that might help you to choose a real-time system as well as to get a feel for what LabVIEW can do to acquire, analyze, and present your data.
    I apologize if this is not exactly what you were looking for in example code. While our sales representatives may be able to talk about specific applications, it is less likely that we will have a turn-key solution for you to browse. We are more than happy to provide you with the tools and the support to build your application. Please let me know if you have any additional questions or concerns. Thank you,
    Mike D.
    National Instruments
    Applications Engineer
    Compact FieldPoint Web Events
    Selecting a Real-Time System Tutorial
    Acquire, Analyze, Present Tutorial

Maybe you are looking for

  • Problem in BI 7.0 while loding info cube

    when i am loading data to info cube in bi 7.0 i am getting an error no sid foud for value ' 00000 ' of chareteristic 0currency

  • Amount for production order goods receipt

    How does the system determine the amount of the product order goods receipt for make to order product that uses variant configuration? Meaning during sales order, the components are selected to make up that product.

  • How can i add icloud shortcut to task bar

    Is there a way to add an iCloud shortcut to my laptop's task bar?

  • ICal can't open my application file in a specific time.

    I set a iCal task on my MAC OS x  10.7 Task on 07/17/2012 information is as follows:                     all day                      frome    07/17/2012                          to     07/17/2012                      repeat   Every day              

  • Broken links to ABAP keyword documentation

    Hi, The links to ABAP Keyword documentation on SAP Help portal mentioned by Horst Keller here: http://help.sap.com/abapdocu_740/en/index.htm http://help.sap.com/abapdocu_740/de/index.htm appear to be down again for me... Ditto for http://help.sap.com