Webservices name in case of falult

Hi,
In my application, we are using different webservices. Some of my .Net services and some of the other existing webservices.
In my Flex application, i am using the cairngorm framwork.
I want to know that, if any one of my webservices return fault, so i came to know the name of the webservices is return fault.
And some of the cases, may be webservices may not return either the result or fault in that case also how i came to know the prob. we can say the time out error i want to know in second case.
public function result(data:Object) : void
//the logic which i have written in case of succesfully return
public function fault(info:Object) : void
     Alert.show( " webservices is not responding");  // here i want to know the excate prob with the webservices name.
Please give me some solution. Its urgent.
Thanks in Advance

Hi Prabhat,
I think, the normal Dynamic File Name generation should work fine in your case also. Even if you perform Content Conversion, you can use Variable Name Substiution to create your Destination file name as, the name of the file is determined first and only then is the content converison perfromed.
for info on content conversion, I would suggest that you go through this thread and check my reply,
Re: Dynamic  File Name for Receiver File Adapter
Regards,
Bhavesh

Similar Messages

  • Artist names are case sensitive. how do i fix this?

    Hi,
    With the ipod touch, my artist names are case sensitive, which leads to multiple entries for the same artist. Is there any way to fix this? It is very annoying.
    Thanks for your help!

    Based on what I am seeing in my iTunes, iTunes (7.7 - I'm one release behind) doesn't appear to be case sensitive. BUT, the iPod Touch has always been case sensitive (at least since 1.1.2, which was what was on mine when I got it in December).
    I don't think there will be a way to "fix" it except to correct your data.

  • How can i change webservice name in webdynpro

    i am very new to designing in webdynpro..
    i am using one webservice in my views to display all the retrieved files. but, the web service name had changed now.
    is there only possible way to change all the fields mapping from the begining or else
    can i rename/change the webservice name in my webdynpro project

    Hi,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/webdynpro/tutorial on accessing an email web service - 6_0_.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/24/186440bdd39a0ae10000000a155106/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/58/7d8f671e0fa54db744991e200f9111/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/b0/220342ea44ce6ce10000000a155106/frameset.htm
    hope this helps u,
    regards,
    saravana

  • Dynamic file name in case of .txt output files

    Hi all,
    I have a query related to dynamic file name scenario.
    In case of IDOC-XI-FILE sceanrio,
    <b>Is it possible to generate .txt file name based on Plant number like</b>
    <b>%<Plantname>%_%<BusinessDay>_filename.txt</b>
    <b>Note:I have implemneted this for .xml output files but I am not able to implement it for .txt output files .</b>
    PLEASE HELP ME .
    Regards
    Prabhat

    Hi Prabhat,
    I think, the normal Dynamic File Name generation should work fine in your case also. Even if you perform Content Conversion, you can use Variable Name Substiution to create your Destination file name as, the name of the file is determined first and only then is the content converison perfromed.
    for info on content conversion, I would suggest that you go through this thread and check my reply,
    Re: Dynamic  File Name for Receiver File Adapter
    Regards,
    Bhavesh

  • Jdbc bug in executeUpdate(sql, int[]) when table name is case-sensitive;

    I have found a bug in oracle's jdbc (ojdbc6.jar), can someone tell me how to submit it so that it can be fixed?
    The BUG: using executeUpdate(insert_sql_stmt, int[]) to retrieve the generatedKey generated by before-insert trigger using a sequence results in error when the tablename is case-sensitive (but OK if table name in uppercase).
    Steps to reproduce:
    1a. create table "mixCase" (f1 integer, f2 varchar2(20));
    1b. create table upperCase (f1 integer, f2 varchar2(20));
    2a. create sequence mixCase_seq start with 1;
    2b. create sequence upperCase seq start with 1;
    3a. create or replace trigger mixCase_trigger before insert on "mixCase"
    bq. for each row \\ begin \\ select mixCase_seq.nextval into :new.f1 from dual; \\ end;
    3b. create or replace trigger upperCase_trigger before insert on upperCase
    bq. for each row \\ begin \\ select upperCase_seq.nextval into :new.f1 from dual; \\ end;
    4a. String url = "jdbc:oracle:thin:@//localhost:1521/orcl";
    bq. conn=DriverManager.getConnection(url,user,password); \\ Statement stmt = conn.createStatement (); \\ int rc=stmt.executeUpdate("insert into \"mixCase\"(f2) values('aa')",new int[]{1});
    4b. String url = "jdbc:oracle:thin:@//localhost:1521/orcl";
    bq. conn=DriverManager.getConnection(url,user,password); \\ Statement stmt = conn.createStatement (); \\ int rc=stmt.executeUpdate("insert into upperCase(f2) values('aa')",new int[]{1});
    When you run 4a or 4b in a java jdbc program:
    4b runs OK and rset=stmt.getGeneratedKeys() returns the correct f1 value of 1.
    4a results in error:
    bq. h6. java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist \\ + at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:91)+ \\ + at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:112)+ \\ + at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:173)+ \\ + at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)+ \\ + at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:406)+ \\ + ...+
    +Notes:&lt;/&lt;/em&gt;
    # If Statement.RETURN_GENERATEDKEYS is used instead of "new int[]{1}" in 4b, there is no error but the rset=stmt.getGeneratedKeys() returned in a ROWID such as 'AAARUyAAEAAAAGQAAL', not what is expected. Other database's jdbc return the correct generated integer value.
    # Same 4b error if new String[]{"f1"} is used as 2nd argument for executeUpdate.
    # The only difference in 4a and 4b is that 4a has case-sensitive table name. All sequence names, trigger names, column names are implicitly deemed to be uppercase by oracle in both cases.
    bq.
    Edited by: user10343198 on Oct 2, 2008 5:50 PM
    Edited by: user10343198 on Oct 2, 2008 6:34 PM

    Please patch one fo your machines to 10.2.0.3 and then try and duplicate. You do not have to go through the complete registration of the XSD process thoguh you can check and see if the c based parser will validate on the command line using the
    schema executible under your oracle_home bin directory.
    schema 1.xml 1.xsd
    for example
    if it dupes in 10.2.0.3 open a TAR with support so that we may bug it.
    regards
    Coby

  • Table name for Case Management

    Can anyone please help me out with all the required table names for implementing CASE MANAGEMENT....... the table information which contains status, Texts, Description,activities, Bus.transactions,priorities,and etc of Cases.....

    Hi Daniel,
    First of all, you need to create status Profile, Text Profile, Attribute Profile etc.,
    Later you have to create a CASE TYPE.
    while creating a Case Type you will mention the above created Status, Text and Attribute Profile names.
    Later while reating the Case you need to choose this particular Case Type which you have created.
    Because, Case is based on CaseType.
    Steps for creating Status, Text , Attribute Profiles will be available in the IMG Activity. Do refer.
    Regards,
    Eswari.

  • Configuring Webservice Name

    How to configure the name of webservice URL when this webservice is created from an EJB with JAX-WS annotation ?
    For instance:
    +@Stateless(mappedName = "FooInterf")+
    +@TransactionAttribute(TransactionAttributeType.REQUIRED)+
    +@WebService()+
    +public class FooImpl implements FooInterf{+
    +}+
    Will generate the following WSDL
    http://server:port/FooImpl/FooImplService?WSDL
    I'd like to change the nome for:
    http://server:port/Foo/FooService?WSDL
    The second part of the name (FooImplService) is possible to change using the property serviceName
    +@WebService(serviceName="FooService")+
    http://server:port/FooImpl/FooService?WSDL
    But the first part of the name(FooImpl) seems to be impossible to configure. I've tried all WebService properties and none of them worked out. The name of this part is always the same name of the EJB class.
    Is there a way to change this name without changing the name of the class?
    Thanks. Mauro.

    can you try with " <module contextPath="test" name="myJar" >"
    <target name="build-service3">
    <jwsc
    srcdir="src"
    destdir="output/TestEar" >
    <module contextPath="test" name="myJar" >
    <jws file="examples/webservices/jwsc/SecondTestServiceImpl.java" />
    </module>
    </jwsc>
    </target>
    For more information
    http://download.oracle.com/docs/cd/E13222_01/wls/docs103/webserv_ref/anttasks.html
    hth
    Regards,
    Sunil

  • External OWA name - certificate / CAS Array?

    I am implementing Exchange environment.
    Single Exchange server (MBX/CAS/HUB) - exchsrv.intdom.com.
    I have purchased a public certificate and configured my external DNS and SRV to webmail.extdom.com. Public cert contains webmail.extdom.com, and autodiscover addresses.
    webmail.extdom.com points to IP address of firewall which performs NAT to allow me to point to internal Exchange services for OWA, OA etc.
    Does webmail.extdom.com need to match anything internally (it is already configured in the external URLs for each service) in addition to this e.g. do I need to create a CAS array even though I have a single server?
    Does webmail.extdom.com need to be referenced anywhere else internally for the purpose of certificates.

    Hi,
    As far as I know, when we install Exchange server, a self-signed certificate including the server name is automatically installed and the internal URLs of web services are configured with the server name.
    Thus, we can change the URLs with the external host name and it doesn’t matter if you don’t change them.
    Additionally, it’s recommended to create CAS array even though there is only one CAS server in your environment :
    http://blogs.technet.com/b/exchange/archive/2012/03/23/demystifying-the-cas-array-object-part-1.aspx
     If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Validating user name & password (case sensetive) from database

    i need to validate user according to their username & password i have Ms access Database which hold the values for username & password
    now i want towrite a query which can retrive data form table but the problem is sql query cant check the case of string
    my query is
    st.executeQuery("select * from user where loginname = '"+name+"' and password ='"+pass+"'");
    now any body can tell me that how can i retrive the correct data from table if user enter username or password in wrong case then it should not return rs
    thanks if some one knows how to do this

    in MS Access query u can't do.
    put fetch the data and pass the value in your custom function to compares the ASCII values of both strings
    in Ms SQL Server this can be done only through query is server while inStalling the server it is opted Case Sensetive data storing option.
    Thank you
    Mukesh Kumar

  • Access name of case from indicator inside case using VI Scripting

    Hello everyone. I have a script that finds all instances of a specific sub vi. All instances of this sub vi will be contained in a case structure. Using VI scripting, I want to be able to traverse backwards and determine the name of the case that the sub vi is in. Attached is an image of the code that I currently have, however it errors out in the part where I cast the reference to a case structure. Does anyone know what I am doing wrong? Thanks.
    Solved!
    Go to Solution.
    Attachments:
    Untitled.png ‏39 KB

    Here is what I would do in this situation:
    For a given SubVI reference I would find the Owner Property and cast it to class 'Diagram'
    If there is no error (ie. feed the error out of the To More Specific Class to a Case structure), then I would find the owner of the Diagram and Cast it to 'CaseStructure'
    Again if there is no error then you know you have the reference for the Case Structure which holds your SubVI.  Find the Frames property of the Case Structure.
    Using Search 1D array, search the Frames array for the Diagram reference you found earlier, this will give you the Frame Index.
    Using the index, index the FrameNames property to find the name of the frame.

  • Displaying filter names in case of "No Results"

    Hi All,
    Is there a way to display the customized prompt names in the filter view rather than showing the original names, at the dashboard level itself, I am avoiding making changes in presentation layer of RPD.
    For example my presentation layer contains column --"Year" I rename it in prompt as "YearValue" , now when I select any value from dashboard prompt "YearValue" and fire the report the filter view shows the selected value corresponding to the name "Year" but I want it to be shown as "YearValue".
    Thanks,
    Anurag

    then first check final internal table is emty or not.
    IF IT_FINAL[] IS INITIAL.
      USE MESSAGE OR write  to display "no records'.
    else.
    call all ALV related function modules.
    endif.
    regards
    srikanth
    Message was edited by: Srikanth Kidambi

  • What is meant by sender webservice in my case

    In case of HTTP-XI-non-sap system scenario,
    I want to test the scenario with some sample data.
    What could be the reasons that the data is not recieved at the other end?
    what are possible way to debug it?
    Regards,
    XI developer.

    Hi,
    Ur subject line is totally different than ur problem in main body.
    Can you please explain me what is ur scenario.What is the Non sap system.
    There are n number of reasons but u have to describe where u r facing the error.
    Thnx
    Chirag

  • Bar code name - not case sensitive

    Hi ,
       We are using the barcode name cd39_00.The barcode can not be printed if the corresponding text  contains lowercase letters.As per SAP note 645158 code 39 is an alphanumeric code which supports only numbers , uppercase letters and certain special characters.but now we need to print lowercase letters also.I found that c128b_00 and EAN8 can support uppercase as well as lowercase letters.could any one give me the other alphanumeric barcode names that supports both ?
    Regards,
    Charumathi.B

    Hi, 
    This forum is about C# Programming language. 
    Could you please post your question on Javascript or ASP .NET forum for better response ?
    Cheers

  • Create directory / object name must NOT be case sensitive

    SQL Dev. 2.1 - the wizard, chosen from the left side navigator, submits a wrong create statement in which the object name becomes case-sensitive. This should not be so! Even if you write the new object name in small letters , the object name must end up in the data dictionary with capitals. kind regards Inger ([email protected])

    Which wizard? If I use a create table wizard, for example, and enter the table in lower case, this is indeed stored in the DB as upper case, as you require.
    Please provide more detail for your problem.
    Sue

  • Case sensitive table names and column names in 8i or 9i databases

    Hi everybody,
    I've got a couple of business-side colleagues who insist that Oracle table and column names are case sensitive. That is, there is a setting in the set up of a database that lets you pick if table and column names are case sensitive. For example, this would mean that there could be a table named EMP in a given schema schema plus a table named emp in that same schema.
    Can this be true? I'd be surprised of course, but I've been surprised before.
    Thanks for any direction.
    -- Bill Loggins

    You can do it, but I would avoid it like the plague.
    SQL> create table "a" (b date);
    Table created.
    SQL> create table "A" (b date);
    Table created.
    I think I would refuse to work on a database where this has been used !

Maybe you are looking for