Wht is Remote Fault and binding Fault?

Hi All,
wht is a Remote Fault and Binding Fault. When these Faults occur.
can any one explain these,
<Action id="aia-ora-java">
<javaAction className="oracle.apps.aia.core.eh.BPELJavaAction" defaultAction="ora-rethrow-fault">
<returnValue value="REPLAY" ref="ora-terminate"/>
<returnValue value="RETRHOW" ref="ora-rethrow-fault"/>
<returnValue value="ABORT" ref="ora-terminate"/>
<returnValue value="RETRY" ref="aia-ora-retry"/>
<returnValue value="MANUAL" ref="ora-human-intervention"/>
</javaAction>
wht happens when at rethrow and wht happens at retry?
I got confused understanding the AIA Error Handling? can any one explain on this?

Please refer to this link to understand BPEL Faults, http://www.oracle.com/technology/products/ias/bpel/htdocs/orabpel_technotes.tn007.html
regards
Rohit

Similar Messages

  • Code fault and pivot fault?

    SET SERVEROUTPUT ON
           declare
        sonuc float;
        begin
          SELECT AVG(GPA_RESULT)
           into sonuc FROM (
           SELECT  oa.ogrenci_no,sum(n.sayisal*dt.kredi)/sum(dt.kredi+0.00000000000001)  GPA_RESULT 
             FROM ders_aktif da,ders_tanim dt,ogrenci_akademik oa,ders_kayit dk, notlar n
             WHERE
                    da.acildigi_yil=2007 and
                    oa.ders_baslama_yil=2007 and
          oa.birim like '1521%' and
          (da.acildigi_donem='1'or
          da.acildigi_donem='2')and
          da.ders_kodu like '1521%' and
          (dt.normal_yariyili=1 or
          dt.normal_yariyili=2)and
          dt.ders_kodu=da.ders_kodu and
          da.acilan_ders_no=dk.acilan_ders_no and
          oa.ogrenci_no=dk.ogrenci_no and
          dk.harf_kodu is not null  and
          dk.y_yil is null and
          dk.harf_kodu=n.tanim and
          n.ortalamaya_kat='1' and
          dk.durum='1' and
          dk.yerine is null AND
          dk.yil<=2007
          group by oa.ogrenci_no);
           dbms_output.put_line('GPA lerin ortalaması='||sonuc);    
         end;the above code is running correctly. and the result is
    sonuc
    GPA lerin ortalaması=2.5078663284036687778981464598173228276 9I dont want to these only da. acildigi_yil is 2007 year . I want to the last 5 year 2007,2006,2005,2004 .
    I prepared codes with using pivot but has error acout da.acildigi yil .
    SET SERVEROUTPUT ON
           declare
        sonuc float;
        acildigi_yil NUMBER(4);
        begin
          SELECT AVG(GPA_RESULT),da.acildigi_yil
           into sonuc,acildigi_yil FROM (
           SELECT  oa.ogrenci_no,sum(n.sayisal*dt.kredi)/sum(dt.kredi+0.00000000000001)  GPA_RESULT 
             FROM ders_aktif da,ders_tanim dt,ogrenci_akademik oa,ders_kayit dk, notlar n
             WHERE -- da.acildigi_yil=2007 and
                    --oa.ders_baslama_yil=2007 and
          oa.birim like '1521%' and
          (da.acildigi_donem='1'or
          da.acildigi_donem='2')and
          da.ders_kodu like '1521%' and
          (dt.normal_yariyili=1 or
          dt.normal_yariyili=2)and
          dt.ders_kodu=da.ders_kodu and
          da.acilan_ders_no=dk.acilan_ders_no and
          oa.ogrenci_no=dk.ogrenci_no and
          dk.harf_kodu is not null  and
          dk.y_yil is null and
          dk.harf_kodu=n.tanim and
          n.ortalamaya_kat='1' and
          dk.durum='1' and
          dk.yerine is null AND
          dk.yil<=2007
          group by oa.ogrenci_no);
           dbms_output.put_line('GPA lerin ortalaması='||sonuc);
         end;
    PL/SQL: ORA-00904: "DA"."ACILDIGI_YIL": invalid identifierSo ı couldnt do using pivot because of error.
    create or replace
    PROCEDURE YILARALIKLIGPADAGILIM(aranilan_yil number,birimno number,sinif number )
    AS
    a_yil number :=aranilan_yil;
    acildigi_yil number(4);
    gpa_result float;
    begin
    WITH PIVOT_DATA AS (   
            SELECT GPA_RESULT,da.acildigi_yil
           into gpa_result,acildigi_yil
           FROM (
           SELECT  oa.ogrenci_no,sum(n.sayisal*dt.kredi)/sum(dt.kredi+0.00000000000001)  GPA_RESULT
          FROM ders_aktif da,ders_tanim dt,ogrenci_akademik oa,ders_kayit dk, notlar n
          WHERE --da.acildigi_yil=aranilan_yil and
         oa.ders_baslama_yil=2007 and
          oa.birim like birimno||'%' and
          (da.acildigi_donem='1'or
          da.acildigi_donem='2')and
          da.ders_kodu like birimno||'%' and
          (dt.normal_yariyili=sinif or
          dt.normal_yariyili=sinif+1)and
          dt.ders_kodu=da.ders_kodu and
          da.acilan_ders_no=dk.acilan_ders_no and
          oa.ogrenci_no=dk.ogrenci_no and
          dk.harf_kodu is not null  and
          dk.y_yil is null and
          dk.harf_kodu=n.tanim and
          n.ortalamaya_kat='1' and
          dk.durum='1' and
          dk.yerine is null --and
        --  dk.yil<=aranilan_yil 
          --group by oa.ogrenci_no
          --order by oa.ogrenci_no desc
          SELECT * FROM PIVOT_DATA 
         PIVOT(AVG(gpa_result) aa FOR acildigi_yil IN(2007,2006,2005,2004,2003));
          if sinif=1 then
          a_yil :=aranilan_yil ;
          elsif sinif=3 then
          a_yil :=aranilan_yil -1;
          elsif sinif=5 then
          a_yil:=aranilan_yil-2;
           elsif sinif=7 then 
          a_yil:=aranilan_yil-3;
           end if;
       dbms_output.put_line('GPA ortalaması ='||"2007_aa");
       /* dbms_output.put_line('GPA ortalaması ='||"2006_aa");
           dbms_output.put_line('GPA ortalaması ='||"2005_aa");
             dbms_output.put_line('GPA ortalaması ='||"2004_aa");
              dbms_output.put_line('GPA ortalaması ='||"2003_aa");*/
    END YILARALIKLIGPADAGILIM;
    Error(12,27): PL/SQL: ORA-00904: "DA"."ACILDIGI_YIL": invalid identifier
    Error(53,47): PLS-00201: identifier '2007_aa' must be declared

    ı am confused :S
    SET SERVEROUTPUT ON
    DECLARE
    YILL NUMBER(4):=2009;
    BEGIN
    SELECT AVG(XY.GPA_RESULT), XY.acildigi_yil;
    into sonuc,acildigi_yil FROM (
    SELECT oa.ogrenci_no,sum(n.sayisal*dt.kredi)/sum(dt.kredi+0.00000000000001) GPA_RESULT
    FROM ders_aktif da,ders_tanim dt,ogrenci_akademik oa,ders_kayit dk, notlar n
    WHERE -- da.acildigi_yil=2007 and
    --oa.ders_baslama_yil=2007 and
    oa.birim like '1521%' and
    (da.acildigi_donem='1'or
    da.acildigi_donem='2')and
    da.ders_kodu like '1521%' and
    (dt.normal_yariyili=1 or
    dt.normal_yariyili=2)and
    dt.ders_kodu=da.ders_kodu and
    da.acilan_ders_no=dk.acilan_ders_no and
    oa.ogrenci_no=dk.ogrenci_no and
    dk.harf_kodu is not null and
    dk.y_yil is null and
    dk.harf_kodu=n.tanim and
    n.ortalamaya_kat='1' and
    dk.durum='1' and
    dk.yerine is null AND
    dk.yil<=YILL
    group by oa.ogrenci_no) XY
    Group by XY.acildigi_yil;
    DBMS_OUTPUT.PUT_LINE('SWQASAS'||SONUC);
    DBMS_OUTPUT.PUT_LINE('SWQASAS'||ACILDIGI_YIL);
    END;
    RA-06550: line 5, column 43:
    PL/SQL: ORA-00923: FROM keyword not found where expected
    ORA-06550: line 5, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 6, column 1:
    PLS-00103: Encountered the symbol "INTO" when expecting one of the following:
       ( begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimitNagaraja I tried to it
    create or replace
    PROCEDURE PIVOTLUGPADAGILIM (birimno number,sinif number,aranilan_yil number) AS
         gpa_ortalama float;     
         a_yil number :=aranilan_yil;
      acyil number(4);
       cursor gpa  is  
       SELECT ROUND(AVG(GPA_RESULT),4) aa         
      FROM (
           SELECT  oa.ogrenci_no,sum(n.sayisal*dt.kredi)/sum(dt.kredi+0.00000000000001)  GPA_RESULT     
              FROM ders_aktif da,ders_tanim dt,ogrenci_akademik oa,ders_kayit dk, notlar n
          WHERE da.acildigi_yil=aranilan_yil and
          oa.birim like birimno||'%' and
          (da.acildigi_donem='1'or
          da.acildigi_donem='2')and
          da.ders_kodu like birimno||'%' and
          (dt.normal_yariyili=sinif or
          dt.normal_yariyili=sinif+1)and
          dt.ders_kodu=da.ders_kodu and
          da.acilan_ders_no=dk.acilan_ders_no and
          oa.ogrenci_no=dk.ogrenci_no and
          dk.harf_kodu is not null  and
          dk.y_yil is null and
          dk.harf_kodu=n.tanim and
          n.ortalamaya_kat='1' and
          dk.durum='1' and
          dk.yerine is null         
          cursor bb is     
          SELECT  distinct da.acildigi_yil
         FROM ders_aktif da,ders_tanim dt,ogrenci_akademik oa,ders_kayit dk
         WHERE da.acildigi_yil=aranilan_yil and
          --oa.ders_baslama_yil=a_yil and
          oa.birim like '1521%' and
          (da.acildigi_donem='1'or
          da.acildigi_donem='2')and
          da.ders_kodu like '1521%' and
          (dt.normal_yariyili=1 or
          dt.normal_yariyili=2)and
          dt.ders_kodu=da.ders_kodu and
          da.acilan_ders_no=dk.acilan_ders_no and
          oa.ogrenci_no=dk.ogrenci_no
               begin
          if sinif=1 then
          a_yil :=aranilan_yil ;
          elsif sinif=3 then
          a_yil :=aranilan_yil -1;
          elsif sinif=5 then
          a_yil:=aranilan_yil-2;
           elsif sinif=7 then 
          a_yil:=aranilan_yil-3;
           end if;
                  for i in gpa loop
                  DBMS_OUTPUT.PUT_LINE('ortalama'||I.aa);
                  for h in bb loop
                   DBMS_OUTPUT.PUT_LINE('ortalama'||h.acildigi_yil);
          end loop;  
          end loop;
    END PIVOTLUGPADAGILIM;AND It is running correctly. the result is
    Connecting to the database OGUBS.
    GPA 2.5412
    YEAR 2008
    Process exited.
    So how can ı merge above true codes and runnşng only in a cursor .?? how can ı merge them.
    Edited by: esra aktas on 12.Haz.2011 02:10

  • What is the "catchAll for all faults" equivalent in fault-policy.xml

    Hi
    This is regarding the catchAll equivalent tag in fault-policy.xml file
    fault-policy.xml has two sections - Conditions & Actions
    In Conditions, you'll define several <faultName name="XXX"> and corresponding <condition>, <test> & <action ref="">.
    But what I want is, how do you define a condition for all Fault types (something like a catchAll activity)?
    Lets say i need a single condition for all faults, so i want to say
    <conditions>
    <faultName name=*"ALL_FAULT_TYPES"*>
    <condition>
    <!--<test> -- i dont give any test condition here, so that it is applicable for all conditions for this fault type -->
    <action ref="ora-human-intervention">
    </condition>
    </faultName>
    </conditions>
    I've searched documentation, blogs but could not find any.
    Only thing i could find is, if we dont give any <test> tag, that means it is like a catchAll for that particular faultName. I need a similar one, but for all faults.
    Appreciate your response.
    Regards
    RaviKiran.
    Edited by: kiransaravi on Oct 16, 2012 12:39 AM
    Edited by: kiransaravi on Oct 16, 2012 12:40 AM

    Hi Ronald Van,
    what do you mean by this statement .
    Mind: the fault-policy framework catches faults in invocations of (external) services from BPEL, Mediator, etc. Internal BPEL faults such as errored assign activities are >not caught.Is it like faults generated while invoking only will go to faultpolicies ?
    I want to generate a email in case of faults to notify the customer. faultpolicies is working good for remote and binding fault and i am generating mail using java. but in case of selection failure it is not referring to fault policies. So Is generating a email from catchall block is the only solution for this or is there any other way.The problem with catch all block is that the instance state will be completed and my monitoring is affected. I want to generate a email and the process should be in running state . Is there any way?
    Please suggest .
    Thanks in Advance
    regards,
    Raju

  • DB Adapter Binding Fault Not Working

    Hi,
    I am trying to run the application "InsertWithCatch" bpel sample in 10.1.3.1 and after testing it's always generating the same exception as below for any Database error:
    javax.transaction.RollbackException: Transaction has been marked for rollback:.
    What might the possible reason that binding fault is not getting generated at rutime when I am doing a duplicate row insertion?
    Thanks.

    Hi,
    I have increased the domain Logging level and this is the actual stack trace that is getting generated:
    While trying to do an insert:-
    Caused by: ORABPEL-11616
    DBWriteInteractionSpec Execute Failed Exception.
    insert failed. Descriptor name: [InsertWithCatch1.Movies]. [Caused by: ORA-00001: unique constraint (SOADEMO.MOVIES_PK1) violated
    Caused by Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.BatchUpdateException: ORA-00001: unique constraint (SOADEMO.MOVIES_PK1) violated
    Error Code: 1.
         at oracle.tip.adapter.db.exceptions.DBResourceException.createEISException(DBResourceException.java:369)
         at oracle.tip.adapter.db.exceptions.DBResourceException.outboundWriteException(DBResourceException.java:410)
         at oracle.tip.adapter.db.DBInteraction.executeOutboundWrite(DBInteraction.java:933)
         at oracle.tip.adapter.db.DBInteraction.execute(DBInteraction.java:211)
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:480)
         ... 87 more
    Caused by: Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.BatchUpdateException: ORA-00001: unique constraint (SOADEMO.MOVIES_PK1) violated
    Binding fault raised as expected:-
    <2008-03-19 13:45:18,468> <DEBUG> <default.collaxa.cube.engine> <bpel.insertwithcatch.BPEL_BIN$$BPELC_BpInv2::perform> error thrown
    com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}bindingFault}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    While performing a merge:-
    org.collaxa.thirdparty.apache.wsif.WSIFException: file:/D:/soasuiteproduct/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_InsertWithCatch_1.0_4b0c7547e53123fc55dd2a1a4c59a472.tmp/InsertWithCatch1.wsdl [ InsertWithCatch1_ptt::merge(MoviesCollection) ] - WSIF JCA Execute of operation 'merge' failed due to: Could not create/access the TopLink Session.
    This session is used to connect to the datastore. [Caused by: Transaction has been marked for rollback: null]
    ; nested exception is:
         ORABPEL-11622
    Could not create/access the TopLink Session.
    Database adapter runtime platform classname is:-oracle.toplink.platform.database.Oracle9Platform
    What can be the possile fixture to above problem?
    Please advice as I am have to implement the error handling strategy to an actual Case Study implementation.
    Thanks

  • BEA Soap Faults and differentiating them from Normal Soap Faults

    Hi,
    I've written a webservice client that interfaces with an external soap service. The external soap service generates custom soap exceptions that I am already handling by catching remote exception and then getting the cause from this remote exception to obtain the soap fault.
    However, I notice if for example the external webservice is down I get a BEA soap fault returned which is a different format to the faults returned from the external service
    IS there a way to easily identify a BEA generated fault from a standard soap fault without interoggating the soap fault manually?

    Added the charset to web-service.xml
    <web-services xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <handler-chains>
    <handler-chain name="SOAPHandler">
    <handler class-name="WebServiceHandler"/>
    </handler-chain>
    </handler-chains>
    <web-service name="xxx"
    uri="/uri"
    targetNamespace="http://xxxx"
    style="rpc"
    ignoreAuthHeader="true"
    exposeWSDL="true"
    charset="UTF-8">
    <components>
    <java-class name="mainClass"
    class-name="WebService">
    </java-class>
    </components>
    <operations>
    <operation method="x"
    component="mainClass" handler-chain="SOAPHandler">
    <params>
    <param name="data" class-name="java.lang.String" style="in" type="xsd:string"/>
    <return-param name="result" class-name="java.lang.String" type="xsd:string"/>
    </params>
    </operation>
    </operations>
    </web-service>
    </web-services>
    But it did not help.
    This is beas issue probably because, everything works when I invoke service from some other system.
    Any more ideas???

  • Binding Fault in OSB

    How to simulate Binding fault in OSB
    1. Created proxy service based on a port in WSDL
    2. Created Business serive
    3. Proxy service invokes BS through route node.
    Tried below options to get binding fault.
    1. gave invalid end point URL ( invlaid servlet-context ) IP and port are valid
    2. gave URL of service which is based on a different WSDL
    In above cases I got BEA-380000 . In below link ther is a error code for binding BEA-382103 : General binding error while processing outbound response.I would like to know when this error code will be raised.
    http://download.oracle.com/docs/cd/E13171_01/alsb/docs25/consolehelp/errorcodes.html

    Hi,
    could not dispatch message because there is no active transaction.Are you trying to have OSB transaction propagated to BPEL? If that's the case you need to check this:
    1. On the composite.xml you have to add the property transaction=required for yor BPEL
    2. On the OSB proxy server you need transaction required box checked (message handling)
    3. On the service callout (or publish, or route) for your BPEL you need to add Routing Options Qos = Exactly-once
    Hope this helps...
    Cheers,
    Vlad

  • Binding fault vs Runtime fault

    Hi,
    I am trying to do a http post from a bpel process and I want to retry if I get
    connection errors. When I tried running this with invalid URL I am getting
    a 'connection refused' but it is a binding fault and not runtime fault. I am assuming
    this is the reason that 'retry' configuration is not working. Here are the entries
    in bpel.xml
    <partnerLinkBinding name="PartnerLink_1">
    <property name="wsdlLocation">myService.wsdl</property>
    <property name="retryMaxCount">5</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    So What decides whether it is a binding fault or a runtime fault? Is there anyway
    to get this as a runtime fault instead? If not what is the right way to do retry in
    this scenario?
    Any information will be of great help
    Thanks
    Raj

    I believe retry only works when there is a runtime fault. As for testing the process you can explicitly throw runtime exception using throw activity for test purpose.
    Dipal

  • Lack of support for broadband fault and now v+ box...

    Am I the only one to think that bt no longer give customer support like they used to? I have had tv bb and phone for over 18 months but in the last 8 weeks the bb you have to reset the hub everytime you want to go online and now the v+ box keeps giving error codes and crashing at random times in the last 3 days. Here are the times and the fault if anyone can help me that would be great. I am losing the will to go on with this now as they just tell me to reset the hub so they can run a line check then say everything is fine, but anywhere between ten minutes and a couple of hours can pass and it goes off again.Plleeeaaasseee help! Surely under the Sale of Goods act 1979 which states that the item purchased has to be as described, of satisfactory quality and fit for purpose they are responsible to fix this problem ???????????    
    11.33 am 17/9/13 had to reset hub as will not connect to internet working after speaking to bt adviser at 1020 am
    21.42 pm 17/9/13 had to reset hub as broadband would not work  not used since 1220 pm that day
    21.55 pm 17/9/13 had to reset visionplus box as catchup tv keeps freezing
    Broadband went off 1220 pm 18/9/13 had to turn off to reset
    Tele went off would not work 18/9/13  1625pm had to turn off to reset
    18/9/13 20.39 Internet wouldn’t load had to reset home hub.
    19/9/13 11.15 TV would not record gave error code R02 and R06 and said to restart home hub and Vision + box and to contact BT if problem persists.
    19/9/13 11.57 Internet wouldn’t load tried using BT desktop Help which said it was working again but internet page still wouldn’t load had to reset home hub.
    19/9/13 1715 pm had to reset hub to get internet to work worked for ten minutes then had to reset again as it had stopped working

    Hi Welcome to the community forums
    Here is a basic guide to getting help from the community members done by CL Keith Please read through the link posted http://forumhelp.dyndns.info/speed/first_steps.html
    once you have posted the information asked for then the community members can help you more
    Thank You
    This is a customer to customer self help forum the only BT presence here are the forum moderators
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Itunes shows a fault and it has to be closed

    when i try to open itunes then it says 'itunes has a fault and it needs to be closed down' i don't know what to do.
    i tryd uninstalling in and reinstalling it but it still shows the same mistake...
    if anybody here can help me or show a usefull topic about this problem
    picture :
    http://img161.imageshack.us/img161/7380/naamloosup8.png
    sorry for the dutch but it says :
    there is a fault in itunes and it has to be closed down.
    tyvm for help greetz.

    I have encountered the same exact problem with my itunes. I have read that you need to have quicktime installed for itunes to work: I ran the unistall for itunes and quicktime and it tells me that it has been successfully removed. Then I go to try to install the "only quicktime" option and it starts installing but cannot finish because "a newer version of quicktime is already installed and must be removed before the installation can be completed." Even with quicktime unistalled it is still showing the little quicktime icon on the bottom right side, but you can't get any response right clicking on the icon and choosing options. Any ideas on how I can get rid of this quicktime that keeps running in the background. I had itunes on this hard-drive before but needed to reinstall xp for this new computer that the hard drive is now in.

  • Regarding Alerts And the Fault Mesages

    Hi All,
    I Want to Know When We Use Alert Messages And When We Will Use Fault Messages in One Scenario.
    According to My Knowledge Fault messages were used in Sysnch Comminication.
    Used to Send the Error Messages That Occured at Receiver Side.Its Like an Acknoledgement to the Sender Form the Receiver.Used to Store the Log of the Application Error.
    Please Give me the Written Answers. Dont Forwars Any Doc's
    Regards
    Vamsi

    Hi Vamsi,
    <b>Fault messages</b>
    Fault message is an error meesage. Its like an exception in simple terms. The fault message is used to store a log for application error. Fault messages is defined in IR.
    To give an overview of Fault messages it is mostly used in synchronous communication. When an error occurs at the inbound side instead of sending the response message back it sends a fault message back to the sender system to handle error.
    Fault Message are Msg type that provided whenever u create a namespace..they are usually used to get the exception or error mapped which has occured while execution of Application at the sender/receiver end....
    <b>Alert Messages</b>
    Ususally purpose of alert are error notification. But not always.
    e.g Suppose there is a scenario: If a user has applied for a leave from one system to another, the alert should be raised for a particular interface and this should be notified to XYZ Administrator. (Just an example, may not exactly suit the real world scenario)
    Note : Triggering of alert cannot be made user specific...What u can do most is that u can configure the alert and add a particular user only in ur recipients list so that notifications can be restricted to particular user only ...
    Regards,
    Ramana Kumar. A
    Fault messages are used to propogate / send back the error message to the calling application. This is used when there is a failure and the sending system needs to know what the error was. This is more of catching Application Errors.

  • Disabled my Win2003 DC Network adapter by fault and cannot login locally to enable it again

    Disabled my Win2003 DC Network adapter by fault and cannot login locally to enable it back again

    Hi,
    Agree with Darshana. For the detailed procedure, please refer to the link below:
    https://technet.microsoft.com/en-us/library/cc776568(v=ws.10).aspx
    Best Regards.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Hello..i have IPhone 4S i did reset to factory settings by fault and till now after a 2 hours there is nothing just a waiting icon in the middle of the screen and none of home or turn off button are response so i do need your help plz

    hello..i have IPhone 4S i did reset to factory settings by fault and till now after a 2 hours waiting (as known it takes a 1 to 2 minutes maximum) there is nothing just a blank screen and a running waiting icon in the middle of the screen and none of home or turn off button are responsed so i do need your help plz & thanks in advance..

    Try to reset it by holding the power an home buttons at the same time until you see the Apple logo, then release.  If it won't reset, you'll probably have to force it into recovery mode and restore it, as explained here: http://support.apple.com/kb/ht1808.

  • OSB message level authentication fault and predicate

    Hi,
    I have successfully configured MLS on my proxy service and it works fine.
    However, the fault thrown back by OSB does not give you much when authorization fails.
    Is it possible to get the predicate that has not been fulfilled? It would be more useful to the consumer of the service.
    Also, is it possible to at least trace/log the predicate on authorization failure?
    The logs contain the operation that failed but not the predicate
    \[OSB Security:386004\] Message-level access control denied access to proxy service Main/Proxy Service/LocalFundPS, operation findAllSchemes, subject: XXX
    Thanks
    Arnaud
    <faultcode>soapenv:Server</faultcode>
    <faultstring>
    BEA-386102: Message-level authorization denied
    </faultstring>
    <detail>
    <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
    <con:errorCode>BEA-386102</con:errorCode>
    <con:reason>Message-level authorization denied</con:reason>
    <con:location>
    <con:path>request-pipeline</con:path>
    </con:location>
    </con:fault>
    </detail>
    </soapenv:Fault>

    I have authentication providers configured as below (in the same order)
    Custom authenticatio provider - REQUIRED
    DefaultAutentication Provider - OPTIONAL
    I did configured message level authentication in proxy service for custom username/password token.
    Craeted a new user in weblogic console.
    Invoked proxy service with newly created username/password.
    I expect the user should not be authenticated since authetication with custom authentication provider will fail, which is required.
    I'm getting user authenticated and business service invoked and got a valid response.
    If i open another browser window and try to login with the weblogic admin password, it does not let me in because the user is not authenticated by my custom provider.
    Hope this makes scenario clear.

  • Xp pc will not let me open the itunes store it faults and closes   the store or tutorials

    Dell XP will not let me reach the store or act on any tutorials.  It faults and closes the shortcut to Itunes.  I have the most current Qtime and just downloaded the store program..  According to the apple test for the store everything is up and running but it will not connect.
    Microsoft Windows XP Home Edition Service Pack 3 (Build 2600)
    Dell Computer Corporation Dimension 8300
    iTunes 10.7.0.21
    QuickTime 7.6
    FairPlay 2.2.19
    Apple Application Support 2.2.2
    iPod Updater Library 10.0d2
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 6.0.0.59
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0012A81406E14F10
    Current user is an administrator.
    The current local date and time is 2012-09-22 10:32:41.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA GeForce 6200 
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 10.7.0.21 is currently running.
    iTunesHelper 10.7.0.21 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {D8D4748F-C04C-4432-8FCC-D1A6BE80F0B3}
    Description:             Intel(R) PRO/100 VE Network Connection - Packet Scheduler Miniport
    IP Address:              192.168.1.2
    Subnet Mask:          255.255.255.0
    Default Gateway:     192.168.1.1
    DHCP Enabled:       Yes
    DHCP Server:          192.168.1.1
    Lease Obtained:      Sat Sep 22 09:54:35 2012
    Lease Expires:         Sun Sep 23 09:54:35 2012
    DNS Servers:          192.168.1.1
    Active Connection:  LAN Connection
    Connected:              Yes
    Online:                     Yes
    Using Modem:         No
    Using LAN:              Yes
    Using Proxy:            No
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    iTunes has never successfully accessed the iTunes Store.

    Add me to the list. I just bought mine & can't log onto the Apple Store to rent/purchase. I can on my MBP.
    I've had the same thing happen when I tried to enter my YouTube username & password. It wouldn't accept it. I thought it was a fluke w/YouTube. Apparently not so.
    So, I can't buy or rent movies/TV shows. Exactly why do I want this gadget?
    How about an update on the Apple site that just recognizes these problems & promise a fix?
    Message was edited by: Randy Green

  • Binding Fault when using http-POST

    Hi all,
    i have again a binding fault in my process. When i use a http-GET binding for the invoked webservice, the process works well. But when i use a POST-binding instead of the GET in the service-wsdl i get the following binding fault:
    <bindingFault>
    <part name="summary" >
    <summary>[email protected]9 : Could not invoke 'WFS_GetCapOP'; nested exception is: java.io.IOException: Content-Type `UTF-8;charset=ISO-8859-1' is not a text type</summary>
    </part>
    <part name="detail" >
    <detail>java.io.IOException: Content-Type `UTF-8;charset=ISO-8859-1' is not a text type</detail>
    </part>
    </bindingFault>
    Does anyone know, where the problem may be? Here's the wsdl:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:aw="http://www.example.org/WFS_gesamt/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://www.example.org/WFS_gesamt/" name="WFS_gesamt">
         <wsdl:types>
              <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.org/WFS_gesamt/">
                   <xsd:element name="GetCapOut" nillable="true" type="xsd:anyType"/>
              </xsd:schema>
         </wsdl:types>
         <wsdl:message name="GetCapabilitiesOut">
              <wsdl:part name="GetCapabilities_response" element="aw:GetCapOut"/>
         </wsdl:message>
         <wsdl:message name="GetCapabilitiesIn">
              <wsdl:part name="request" type="xsd:string"/>
         </wsdl:message>
         <wsdl:portType name="GetCapabilitiesPT">
              <wsdl:operation name="WFS_GetCapOP">
                   <wsdl:input message="aw:GetCapabilitiesIn"/>
                   <wsdl:output message="aw:GetCapabilitiesOut"/>
              </wsdl:operation>
         </wsdl:portType>
         <wsdl:binding name="HTTPPostGetCap_Binding" type="aw:GetCapabilitiesPT">
              <http:binding verb="POST"/>
              <wsdl:operation name="WFS_GetCapOP">
                   <http:operation location="/geoserver/wfs"/>
                   <wsdl:input>
                        <http:urlEncoded/>
                   </wsdl:input>
                   <wsdl:output>
                        <mime:mimeXml part="GetCapabilities_response"/>
                   </wsdl:output>
              </wsdl:operation>
         </wsdl:binding>
         <wsdl:service name="WfsService">
              <wsdl:port name="GetCapabilitiesPT" binding="aw:HTTPPostGetCap_Binding">
                   <http:address location="http://localhost:8080"/>
              </wsdl:port>
         </wsdl:service>
    </wsdl:definitions>
    rg.
    Alli

    well the error msg is correct ..
    i would expect content type to be something like text/xml ....
    can you trace the message that is generated ..
    thank you.
    clemens

Maybe you are looking for