WSRP: Relative URL results in error code 404 in the consumer access.log

Hello everyone,
I deployed a JSF portlet(implemented in facelets) in Weblogic Server 10.3.2 (11g) [extended to support WSRP]. When the JSF portlet is consumed from a 'consumer' portal [Weblogic 10.3.2 portal], WSRP URL Rewrite results in error code 404 in the consumer portal access.log if the relative path (contextPath+resourcePath) of the javaScript resource is provided.
However, when the absolute path (protocol + serverName + port+ contextPath) of the JavaScript resource is provided, it works correctly:
works:
<script type="text/javascript" src="#{request.protocol}://#{request.serverName}:#{request.serverPort}#{request.contextPath}/resources/scripts/search/patientSearch.js"><!-- --></script>
Failed:
<script type="text/javascript" src="#{request.contextPath}/resources/scripts/search/patientSearch.js"><!-- --></script>
Any idea on what is causing the incorrect URL Rewrite?
The .xhtml and the portlet wsdl are listed below:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich"
xmlns:nchic="http://www.saic.com/nchicago/jsf">
<ui:composition template="/WEB-INF/facelets/templates/page-protected.xhtml">
<head>
<title>not used</title>
<ui:define name="title">#{msgs.searchPageTitle}</ui:define>
<ui:define name="head">
<f:verbatim>
<style type="text/css">
#patientSearchContainer .pageCentered {
width: 800px;
#patientSearchFormInstructions {
padding: 10px 0px 10px 0px;
font-weight: bold;
font-size: 11px;
text-align: left;
.s-form-label {
width: 250px;
.s-form-input {
width: 450px;
</style>
</f:verbatim>
<script type="text/javascript" src="#{request.protocol}://#{request.serverName}:#{request.serverPort}#{request.contextPath}/resources/scripts/search/patientSearch.js"><!-- --></script>
</ui:define>
</head>
<body >
<ui:define name="body" >
<h:panelGroup id="patientSearchContainer"
layout="block"
style="text-align: center;">
<rich:panel id="patientSearchPanel"
styleClass="pageCentered"
header="#{msgs.searchPanelSearchTitle}">
<h:panelGroup id="patientSearchFormInstructions" layout="block">
<h:outputText value="#{msgs.searchInstructions}" />
<ul>
<li><h:outputText value="#{msgs.searchInstructions1}" /></li>
<li><h:outputText value="#{msgs.searchInstructions2}" /></li>
<li><h:outputText value="#{msgs.searchInstructions3}" /></li>
</ul>
</h:panelGroup>
<h:panelGroup id="errorPanel"
layout="block"
rendered="#{searchForm.hasMessages}">
<h:panelGroup layout="block"
style="padding: 5px;">
<h:outputFormat value="#{msgs.errorMultipleMessage}"
rendered="#{searchForm.errorCount &gt; 1}">
<f:param value="#{searchForm.errorCount}" />
</h:outputFormat>
<h:outputFormat value="#{msgs.errorSingleMessage}"
rendered="#{searchForm.errorCount == 1}">
<f:param value="#{searchForm.errorCount}" />
</h:outputFormat>
<h:messages layout="list"
showSummary="false"
showDetail="true"
errorClass="errors"
styleClass="errorsList" />
</h:panelGroup>
</h:panelGroup>
<h:form id="patientSearchForm" prependId="false">
<h:panelGrid columns="2"
columnClasses="s-form-label,s-form-input"
summary="#{msgs.tableSummary}">
<nchic:label for="queryIdType"
value="#{msgs.labelIdType}"
required="false" />
<h:selectOneMenu id="queryIdType"
value="#{searchForm.criteria.identificationType}"
converter="patient.IdentificationType"
tabindex="2"
styleClass="masked-hidden not-required">
<f:selectItems value="#{searchForm.lists.allIdTypes}" />
<a4j:support event="onchange"
reRender="sponsorSearch,queryIdNumber"
oncomplete="JointReg.searchForm.patientIdTypeUpdateComplete();"
onsubmit="JointReg.searchForm.patientIdTypeUpdateSubmit();"
actionListener="#{searchForm.identificationTypeChangeListener}" />
</h:selectOneMenu>
<nchic:label for="sponsorSearch"
value="#{msgs.labelIdNumberRadios}"
required="false" />
<h:selectOneMenu id="sponsorSearch"
value="#{searchForm.criteria.sponsorSearch}"
tabindex="3"
disabled="#{searchForm.identificationDisabled}"
styleClass="masked-hidden not-required">
<f:selectItem itemValue="true" itemLabel="#{msgs.labelSponsor}" />
<f:selectItem itemValue="false" itemLabel="#{msgs.labelPatient}" />
</h:selectOneMenu>
<nchic:label for="queryIdNumber"
value="#{msgs.labelIdNumber}"
required="false" />
<h:inputText id="queryIdNumber"
converter="patient.IdentificationNumber"
value="#{searchForm.criteria.identificationNumber}"
tabindex="4"
styleClass="not-required resettable"
disabled="#{searchForm.identificationDisabled}"
maxlength="11" />
<nchic:label for="queryBirthDate"
value="#{msgs.labelBirthDateShort}"
required="false" />
<nchic:date id="queryBirthDate"
value="#{searchForm.criteria.birthDate}"
monthValues="#{searchForm.lists.allMonths}"
dayValues="#{searchForm.lists.allDays}"
yearValues="#{searchForm.lists.allYears}"
tabindex="5"
styleClass="masked-hidden not-required resettable" />
<nchic:label for="queryLastName"
value="#{msgs.labelLastName}"
required="false" />
<h:inputText id="queryLastName"
value="#{searchForm.criteria.lastName}"
tabindex="8"
maxlength="30"
styleClass="not-required resettable" />
<nchic:label for="queryFirstName"
value="#{msgs.labelFirstName}"
required="false" />
<h:inputText id="queryFirstName"
value="#{searchForm.criteria.firstName}"
tabindex="9"
maxlength="30"
styleClass="not-required resettable" />
<nchic:label for="queryGender"
value="#{msgs.labelGender}"
required="false" />
<h:selectOneMenu id="queryGender"
value="#{searchForm.criteria.gender}"
converter="patient.Gender"
tabindex="10"
styleClass="masked-hidden not-required resettable">
<f:selectItems value="#{searchForm.lists.allGenderTypes}" />
</h:selectOneMenu>
</h:panelGrid>
<h:panelGroup layout="block" style="text-align: center">
<h:panelGroup layout="block"
style="padding-top: 15px; margin-left: auto; margin-right: auto;">
<h:commandButton action="#{searchForm.searchAction}"
value="#{msgs.buttonSearch}"
styleClass="s-button"
tabindex="11"
onclick="jQuery(document.body).mask('Searching...');" />
<rich:spacer width="10" />
<h:commandButton type="button"
styleClass="s-button"
onclick="return JointReg.searchForm.resetSearchForm();"
tabindex="12"
value="#{msgs.buttonClearSearch}" />
<rich:spacer width="100" />
<h:commandButton action="#{searchForm.createJohnDoeAction}"
styleClass="s-button"
onclick="jQuery(document.body).mask('Registering...');"
tabindex="13"
value="#{msgs.buttonJohnDoe}" />
</h:panelGroup>
</h:panelGroup>
</h:form>
</rich:panel>
</h:panelGroup>
</ui:define>
</body>
</ui:composition>
</html>
WSDL:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
- <s0:definitions xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:s2="urn:oasis:names:tc:wsrp:v1:bind" xmlns:s3="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s4="urn:bea:wsrp:ext:v1:bind" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" targetNamespace="urn:oasis:names:tc:wsrp:v1:wsdl">
<import location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-2.0/markup?WSDL" namespace="urn:oasis:names:tc:wsrp:v2:wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" />
<s0:import location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-1.0/markup?WSDL/wlp_wsrp_v1_bindings.wsdl" namespace="urn:bea:wsrp:ext:v1:bind" />
<s0:import location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-1.0/markup?WSDL/wsrp_v1_bindings.wsdl" namespace="urn:oasis:names:tc:wsrp:v1:bind" />
<wsp:UsingPolicy s0:Required="true" />
- <wsp:Policy s1:Id="ProducerDefaultPolicy">
- <wsp:All>
- <wssp:Identity xmlns:wssp="http://www.bea.com/wls90/security/policy">
- <wssp:SupportedTokens>
- <wssp:SecurityToken TokenType="http://docs.oasis-open.org/wss/2004/01/oasis-2004-01-saml-token-profile-1.0#SAMLAssertionID">
- <wssp:Claims>
<wssp:ConfirmationMethod>sender-vouches</wssp:ConfirmationMethod>
</wssp:Claims>
</wssp:SecurityToken>
</wssp:SupportedTokens>
</wssp:Identity>
</wsp:All>
</wsp:Policy>
- <s0:service name="WSRPService">
- <s0:port binding="s2:WSRP_v1_Markup_Binding_SOAP" name="WSRPBaseService">
<s3:address location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-1.0/markup" />
</s0:port>
- <s0:port binding="s2:WSRP_v1_ServiceDescription_Binding_SOAP" name="WSRPServiceDescriptionService">
<s3:address location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-1.0/serviceDescription" />
</s0:port>
- <s0:port binding="s4:WLP_WSRP_v1_Markup_Ext_Binding_SOAP" name="WLP_WSRP_Ext_Service">
<s3:address location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-wlp-ext-1.0/markup" />
</s0:port>
</s0:service>
</s0:definitions>

did you publish the internetserive "<b>bbpstart</b>" to site internal?
Regards
Raja

Similar Messages

  • I had FF version 9. When I tried to get on FF I recevied error code 404 not on server. I uninstalled ff and reinstalled version 12. Still get code 404. Help

    I have Windows XP. I cannot access FF. when I do I get error code 404 and the message " the URL/firefox was not found on this server". It started today, I had FF version 9. I uninstalled that and reinstalled version 12, but still get same error when trying to access FF.
    PS: Other browsers work fine

    Didn't you open Firefox and go to google.com?

  • SICF service - error code 404

    When I am trying to test the service iin SICF it prompt the following error, but the service already acivated. Can anyone help me how to resolve this issue. Service already activated, but while testing I am having issue
    Thanks & Regards
    Srinivas.
    Service cannot be reached
    What has happened?
    URL http://<host>:8000/sap/bc/solman/defaultuser/graphic call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system <SID> with error code 404 and for the reason No Extension Found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:010-u:CONTENTSERV-l:E-i:<hostname>_<SID>_00-v:0-s:404-r:NoExtensionFound
    HTTP 404 - No Extension Found
    Your SAP Internet Communication Framework Team
    Edited by: Srinivas Dasari on Jul 9, 2009 8:26 AM

    Hi
    I have a similar problem, please tell me like you solved. Thanks
    Service cannot be reached
    What has happened?
    URL http://sapcip01.prebel.com.co:1080/sap/bc/srt/wsdl/sdef_ZPP_PRUEBA/wsdl11/ws_policy/document call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system PRD with error code 403 and for the reason Forbidden.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:S-i:sapci_PRD_00-v:0-s:403-r:Forbidden
    HTTP 403 - Forbidden

  • Zenwsreg returned the following error code: 404

    L.S.
    I'm having problems importing workstations. I've already configured a
    number of networks, and only on this one I'm having problems.
    The problem in short:
    Workstations don't get imported. On the prompt I get:
    Zenwsreg returned the following error code: 404
    The problem more elaborate:
    The network:
    Netware 6.0 SP5
    Zfd 4.01 SP6
    Workstation
    XP
    Tree:
    I would like to import workstations is a separate container.
    I made a server policy package, in Policies, Netware I defined a
    workstation import policy, In this policy I put containers and in
    platform, and in platform general I put allow importing, selected
    container, one of the containers I defined earlier.
    Still I get:
    Error on the XP-DOS prompt:
    Zenwsreg returned the following error code: 404
    Then I put logging on. I got this error line:
    Error line in
    Leaving HTTPUtil::SendMessage, returning 404
    Any help?
    Thanks
    (There is no one at [email protected])
    Complete zenwsreg.log:
    Friday, December 02, 2005 10:29:25 -- -- Entering ZENWSREGRegister
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    ZenLiteTree::ZenLiteTree()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    ZenLiteTree::ZenLiteTree()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    ZenLiteTree::InitZENContextIfNeeded
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- About to call
    ZENContextInit(ptr, REMADM)
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    ZENContextInit
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Returned from
    ZENContextInit(<REMADM><2><switact.rsg1><0>, REMADM, 1)
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Leaving
    ZenLiteTree::InitZENContextIfNeeded, returning 1
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    ZenLiteTree::ZenLiteTree(zenContext)
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Leaving
    ZenLiteTree::ZenLiteTree(zenContext)
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    NDSTree::WhoAmI()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- WhoAmI()
    returning switact.rsg1.
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Leaving
    NDSTree::WhoAmI()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    NDSTree::GetTreeName()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister --
    NDSTree::GetTreeName() returning REMADM.
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    NDSTree::GetTreeName()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    Registrar::Register
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Created
    Mutex.
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Got Mutex.
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    Registrar::Update
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Leaving
    Registrar::Update, returning 1
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    Registrar::Import
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    GenerateImportDoc
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- User Tree =
    <REMADM>
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- User DN =
    <switact.rsg1>
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Login count =
    <1>
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    ZenLiteTree::ZenLiteTree()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    ZenLiteTree::ZenLiteTree()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- ConnType = 2
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Encountered
    Winsock error 4294967295 when trying to scan the IPX address.
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    ZenLiteTree::ZenLiteTree()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    ZenLiteTree::ZenLiteTree()
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- ConnType = 2
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Leaving
    GenerateImportDoc
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Entering
    HTTPUtil::SendMessage
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- HTTP server =
    zenwsimport
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Loaded
    wininet.dll
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- About to
    create an HTTP connection.
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Connecting to
    server <zenwsimport> port 8039.
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- hConnect =
    13369352
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- hRequest =
    13369356
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- Finished
    opening request. hRequest = cc000c.
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- About to send
    the following request:
    Friday, December 02, 2005 10:29:25 -- ZENWSREGRegister -- <?xml
    version="1.0" encoding="UTF-16LE"?>
    <new_ws>
    <computer>DAVINCI-A750EDC</computer>
    <cpu>PENTIUM 4</cpu>
    <dns>davinci-a750edc.adm.noa.davinci.local</dns>
    <subnet_mask>255.255.255.0</subnet_mask>
    <ip>192.168.30.41</ip>
    <ipx></ipx>
    <mac>00:13:20:83:25:66</mac>
    <os>WINXP (5.1 Service Pack 2)</os>
    <server>FS_NOA_ADM1</server>
    <user_tree>REMADM</user_tree>
    <user_dn>switact.rsg1</user_dn>
    <login_count>1</login_count>
    <auditing_version>4.0.1.53</auditing_version>
    </new_ws>
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- Last error =
    12029
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- Error: Kan
    geen verbinding maken met de server
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- Leaving
    HTTPUtil::SendMessage, returning 12029
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- Entering
    HTTPUtil::SendMessage
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- HTTP server =
    zfd_mts
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- Loaded
    novinet.dll
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- About to
    create an HTTP connection.
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister --
    InternetSetOption returned 1
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- Connecting to
    server <zfd_mts> port 80.
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- hConnect =
    33619969
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- hRequest =
    50397185
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- Finished
    opening request. hRequest = 3010001.
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- About to send
    the following request:
    Friday, December 02, 2005 10:29:26 -- ZENWSREGRegister -- <?xml
    version="1.0" encoding="UTF-16LE"?>
    <new_ws>
    <computer>DAVINCI-A750EDC</computer>
    <cpu>PENTIUM 4</cpu>
    <dns>davinci-a750edc.adm.noa.davinci.local</dns>
    <subnet_mask>255.255.255.0</subnet_mask>
    <ip>192.168.30.41</ip>
    <ipx></ipx>
    <mac>00:13:20:83:25:66</mac>
    <os>WINXP (5.1 Service Pack 2)</os>
    <server>FS_NOA_ADM1</server>
    <user_tree>REMADM</user_tree>
    <user_dn>switact.rsg1</user_dn>
    <login_count>1</login_count>
    <auditing_version>4.0.1.53</auditing_version>
    </new_ws>
    Friday, December 02, 2005 10:29:27 -- ZENWSREGRegister -- Finished
    sending request. Result = 1
    Friday, December 02, 2005 10:29:27 -- ZENWSREGRegister -- Leaving
    HTTPUtil::SendMessage, returning 404
    Friday, December 02, 2005 10:29:27 -- ZENWSREGRegister -- Entering
    Registrar::Import
    Friday, December 02, 2005 10:29:27 -- ZENWSREGRegister -- Import
    failed. Error: 404
    Friday, December 02, 2005 10:29:27 -- ZENWSREGRegister -- Released
    Mutex.
    Friday, December 02, 2005 10:29:27 -- ZENWSREGRegister -- Leaving
    Registrar::Register, returning 404
    Friday, December 02, 2005 10:29:27 -- ZENWSREGRegister -- Leaving
    ZENWSREGRegister, returning 404

    L.S.
    Thanks. Problem solved. For who wants to know, read on
    > ok... the zenwsimport dns is not resolved..
    Aargh! This is "by design" in my workstation deployment strategie .....
    but only up to some point. I was forced to troubleshoot a not very well
    deployed image (when will people read my instructions).
    The workstation at this state had a line in the hosts file to prevent
    registring the workstation. This should be deleted in the final state
    of the workstation but hadn't.
    >
    > that's why he is going for the middletier server..
    >
    > from where the 404 is comming from..
    >
    Well, i'll read that one as soon as I need this.
    > troubleshooting Middle Tier authentication
    > http://support.novell.com/cgi-bin/se...?/10073537.htm
    > --
    >
    Thomas Roes
    there is no one at [email protected]
    www dot switact dot nl (not yet a very mature site)

  • Error code 404 comes up even after uninstalling and reinstalling

    After complete crash of laptop everything reinstalled. Attempted to put firefox as browser but each time I attempt to complete the download I get "error code 404" I uninstalled and reinstalled a number of times, but I still get the error code

    Nobody can know since you haven't botehred to actually tell us what error you get and then the usual like system information or what version of ID you actually mean. Your post is totally useless.
    Mylenium

  • Spotify Error code 404

    whenever i login i get error code 404 i cant play any musici tried re logging but it doesnt matter still nothing what to do now i got e unlimited account....

    I have the same problem.It says error code 404 and now 410 (wrong username or password). I'm 100% sure that my username at password is correctly input.

  • Error code 404

    receiving error code 404
    10.8.3
    recreated icloud acount

    Hi,
    All the things indicatd have been performed. Still its giving this error. Is there anything else apart from this which shud be maintained?
    While activating the ITS service should we be giving some login id and password in "Service data" tab and "handler list" ?
    What is a handler list?
    regards
    Srivatsan

  • Error code 404 keeps coming up on screen when I try to access Vodafone website (using Mac Pro)

    Error code 404 keeps coming up on screen when I try to access Vodafone website (using Mac Pro)
    Any ideas why only started happening in last week ?

    404 means the page you are looking for doesn't exist,  if you are using a bookmark
    type the website directly into your browser.
    otherwise:
    open terminal> type:
    traceroute www.vodafone.com.au
    you should get something like this:

  • Firefox user when i try to access my gmail,orkut and yahoomail i get this error message Error code: sec_error_expired_certificate All the other sites are working fine please help Plugins installed:

    Firefox user
    when i try to access my gmail,orkut and yahoomail i get this error message
    Error code: sec_error_expired_certificate
    All the other sites are working fine
    please help
    Plugins installed:
    == URL of affected sites ==
    http://

     Hi,
    One of my ex-colleagues has installed a NI-DAQ 6.5 in our system. [And I do not see any other naitional instruments card in the CPU of the computer, may be he removed it] I deleted the account and all his files in the system. When I am trying to install version8.0, its not getting installed and giving me a message that I should uninstall the previous version by going to Add/Remove programs in the control panel.
    I tried doing that, but the "Change/Remove" button does not seem to work...[There is no response and so unable to install the new version...]
    Any idea how can this problem be solved?
    It is a windowsXP operating system with SP2 installed on a machine with P4 processor.
    Thanks

  • When i try to open photoshop this shows up Please uninstall and reinstall the product.  If this problem still occurs, please contact Adobe technical support for help, and mention the error code shown at the bottom of this screen.  Error: 16

    i had to take my photoshop file into a hardrive because my dad was going to give me a new Mac and when things didn't work out and went back to my old one i use the time capsule thing to save everything before but didn't give me photoshop so i physically moved the file and tried to open it but then this error shows up
    Please uninstall and reinstall the product.
    If this problem still occurs, please contact Adobe technical support for help, and mention the error code shown at the bottom of this screen.
    Error: 16
    and when i click the uninstall app on the file it tells me this
    The alias “Uninstall Adobe Photoshop CS6 2” can’t be opened because the original item can’t be found
    and when i click fix alias i click on photoshop and the app just turns into photoshop and i just run in circles
    please help thank you

    Run the cleaner tool and reinstall.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Download CS6 products
    Mylenium

  • Oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

  • [Load data from excel file [1]] Error: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0202009. There may be error messa

    Error
    [Load data from excel file [1]] Error: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0202009.  There
    may be error message
    I am using BIDS Microsoft Visual Studio 2008 and running the package to load the data from excel .
    My machine has 32 bit excel hence have set property to RUN64BITRUNTIME AS FALSE.
    But the error still occurs .
    I checked on Google and  many have used Delay validation property at Data flow task level to true but even using it at both excel connection manager and DFT level it doesnt work
    Mudassar

    Thats my connection string
    Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\SrcData\Feeds\Utilization.xlsx;Extended Properties="Excel 12.0;HDR=NO";
    Excel 2010 installed and its 32 bit edition
    Are you referring to install this component -AccessDatabaseEngine_x64.exe?
    http://www.microsoft.com/en-us/download/details.aspx?id=13255
    Mudassar
    You can try an OLEDB provider in that case
    see
    http://dataintegrity.wordpress.com/2009/10/16/xlsx/
    you might need to download and install ms access redistributable
    http://www.microsoft.com/en-in/download/details.aspx?id=13255
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • HT201413 I am receiving the error code (-50). The original itune songs etc were installed on a win 7 32 bit system and I have now moved to a win 7 64 bit system. Is this why I get the error code? I can access the itunes store to view my account. Any ideas

    I am receiving the error code (-50) when trying to access the itunes store. The original itune songs etc were installed on a win 7 32 bit system and I have now moved to a win 7 64 bit system (same PC) and have copied the folder across. Has the switch from 32 to 64 bit caused the problem? Is this why I get the error code? I can, however, access the itunes store to view my account. Any ideas please?

    Hello,
    The TechNet Sandbox forum is designed for users to try out the new forums functionality. Please be respectful of others, and do not expect replies to questions asked here.
    As it's off-topic here, I am moving the question to the
    Where is the forum for... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?&lt;=\G.{2})'|%{if($_){[char][int]&quot;0x$_&quot;}})

  • What's the error code: 1661 during the IOS5 restore?

    what's the error code: 1661 during the IOS5 restore?

    What country are you in, and are you trying to use another country's store ?

  • I have an iPhone 4 that is stuck in a recovery loop. i try to restore it but it comes up with an error code (-1) towards the end of the restore. can someone please help me?

    i have an iPhone 4 that is stuck in a recovery loop. i try to restore it but it comes up with an error code (-1) towards the end of the restore. can someone please help me?

    i just baught it off someone.. so im unsure if it was jailbroken or not.. and i dont think its under warranty now.
    is there a software or something along those lines that would indicate what peice of hardware is faulty?
    i baught it in this recovery loop thinking it was going to be a cheap way of getting a new phone without having to do much.. but now im starting to think its a brick

Maybe you are looking for

  • [bug] Airdrop Mp3 files from MBA to iphone6

    Recently I am running into an issue: Airdrop one folder containing larges Mp3 files from MBA to my iPhone6. all is good and no error msg. However, those files cannot be found in iphone by any internal app , such as itunes or 3rd party app such as QQ

  • Stock transfer of different material type

    Sir, finish material of one plant is raw material for other plant. i've to use intercompany stock transfer. How should i cope up with material types? How accounting and excise register entries will effect?

  • Errors showing up around cast to IPermission

    We have noticed an uptick in errors generated from our application that all display the following error with differing stack traces: Description: System.Exception: Unable to cast object of type 'System.Runtime.CompilerServices.TrueReadOnlyCollection`

  • HT3986 can I use the windows 7 UPGRADE version for this?

    I'm thinking about installing Windows 7 to use with Boot Camp .... can I use an Upgrade version of Windows?

  • Prevent drive from mounting at startup

    There is an archived message on this same subject that never received a reply. I perform my backups to a second internal drive and would like to prevent it from mounting at startup. Any ideas? To clarify: I can come up with many ways to UNmount a dri