Siebel testing help me please

hello all, we are currently preparing test cases, a Siebel application. This application is developed with the aim to interact with external applications of suppliers using interfaces in Java with Siebel Loyalty.
The problem I have now, is that the validation test we made are correct and file information from suppliers is properly loaded into Siebel Loyalty.
Step 1 - receive a file provider
Step 2 - Siebel effected validations and loads the information into the IM tables and then loads the Siebel tables.
Step 3 - check in relation to the original file, which are cases that should be recorded and not in relation to Siebel validations.
Basically, I find the form and if not, create a script based on an external table, and go running by checking if data retrieved from Siebel are correct in relation to predefined results.
Anyone know how I can compare with data from external data fields Siebel as the script browsing application in order to verify that these fields were validated correctly in the interface?. I really do not understand if Oracle Application testing suite can.
Thank you very much .-

Not really sure if I understand completely what you are trying to do. How do vendors send over files? Is it uploaded to the system through a web UI or is an actual set of delimited files that are imported through a utility? I would think that if the files are being uploaded via multipart post and the validation can be done through the Siebel UI then all you have to do is have a set of controlled inputs.

Similar Messages

  • Siebel testing help me please - Iterative test whith a data file - HELP PLS

    good morning,
    I have a problem. In my work, we are making an application testing of Siebel Loyalty and are too established items. this is why we want to use the Oracle Application Testing Suite tool but do not know how and which one to use (whether to use open funtional testing or script). The aim is to check the query for a datum, such as a client (PK), all data associated with this are correct based on a file that we prepared for this. The idea is to carry out an iterative navigation and browse the application by checking that the different fields in each view are correct in relation to the file you talk to them. These would be steps that could better describe the way we want to do:
    1 - making the customer No. of inserts and submit to update the other fields.
    2 - go through the first hearing and verifies the customer's first and last name are the same that appear in the file as well as the rest of the fields.
    3 - Continuing on the screen of current account transactions and verify that the customer has to be the same as in the file.
    All this by checking each field data with data from the file.
    understand file format should be "CSV", the issue is not how to configure the application and which of the two applications mentioned above is correct to do what I want. Please Help.
    Sincerely,
    Martin Gatto

    Not really sure if I understand completely what you are trying to do. How do vendors send over files? Is it uploaded to the system through a web UI or is an actual set of delimited files that are imported through a utility? I would think that if the files are being uploaded via multipart post and the validation can be done through the Siebel UI then all you have to do is have a set of controlled inputs.

  • I would need to install Adobe Connect Add-in Test for only one webinar. When I pressed instal button -  it said to me - it cannot be written on hard disc. Could you help me, please. Bretislav

    I would need to install Adobe Connect Add-in Test for only one webinar. When I pressed instal button -  it said to me - it cannot be written on hard disc. Could you help me, please. Bretislav

    After posting my concern/question, especially in regards to the optical drive, I read this on this forum:
    Jul 11, 2011 5:21 AM      
    I would like to update my macbook pro from Tiger to Snow Leopard, but my optical drive is not working. Can I take my macbook pro into the apple store and have them install it via a portable drive?
    MacBook Pro, Optical drive is no longer working
    Another poster replied, "Yes, I believe they will."
    Is this true? Can someone verify this?  Any idea of cost?  I really don't need my optical drive.  Besides, end of year, I'm getting a new Mack Book Pro.

  • Can anyone help me, please

    Hello again:
    Please run my coding first, and get some view from my coding.
    I want to add a table(it is from TableRenderDemo) to a JFrame when I click on the button(from DrawCalendar) of the numer 20, and I want the table disply under the buttons(from DrawCalendar), and the table & buttons all appear on the frame. I added some code for this problem(in the EventHander of the DrawCalendar class), but I do
    not known why it can not work.Please help me to solve this problem.
    Can anyone help me, please.
    Thanks.
    *This program for add some buttons to JPanel
    *and add listeners to each button
    *I want to display myTable under the buttons,
    *when I click on number 20, but why it doesn't
    *work, The coding for these part are indicated by ??????????????
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.GridLayout;
    public class DrawCalendar extends JPanel {
         private static DrawCalendar dC;
         private static TestMain tM;
         private static TableRenderDemo myTable;
         private static GridLayout gL;
         private static final int nlen = 35;
        private static String names[] = new String[nlen];
        private static JButton buttons[] = new JButton[nlen];
         public DrawCalendar(){
              gL=new GridLayout(5,7,0,0);
               setLayout(gL);
               assignValues();
               addJButton();
               registerListener();
        //assign values to each button
           private void assignValues(){
              names = new String[35];
             for(int i = 0; i < names.length; i++)
                names[i] = Integer.toString(i + 1);
         //create buttons and add them to Jpanel
         private void addJButton(){
              buttons=new JButton[names.length];
              for (int i=0; i<names.length; i++){
                   buttons=new JButton(names[i]);
         buttons[i].setBorder(null);
         buttons[i].setBackground(Color.white);
         buttons[i].setFont(new Font ("Palatino", 0,8));
    add(buttons[i]);
    //add listeners to each button
    private void registerListener(){
         for(int i=0; i<35; i++)
              buttons[i].addActionListener(new EventHandler());          
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
    private class EventHandler implements ActionListener{
         public void actionPerformed(ActionEvent e){
         for(int i=0; i<35; i++){
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
         if(i==20){  //???????????               
              tM=new TestMain(); //???????
              tM.c.removeAll(); //??????
              tM.c.add(dC); //???????
              tM.c.add(myTable); //????
              tM.validate();
         if(e.getSource()==buttons[i]){
         System.out.println("testing " + names[i]);
         break;
    *This program create a table with some data
    import javax.swing.table.AbstractTableModel;
    import javax.swing.table.TableColumn;
    import javax.swing.DefaultCellEditor;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TableRenderDemo extends JScrollPane {
    private boolean DEBUG = true;
    public TableRenderDemo() {
    // super("TableRenderDemo");
    MyTableModel myModel = new MyTableModel();
    JTable table = new JTable(myModel);
    table.setPreferredScrollableViewportSize(new Dimension(700, 70));//500,70
    //Create the scroll pane and add the table to it.
    setViewportView(table);
    //Set up column sizes.
    initColumnSizes(table, myModel);
    //Fiddle with the Sport column's cell editors/renderers.
    setUpSportColumn(table.getColumnModel().getColumn(2));
    * This method picks good column sizes.
    * If all column heads are wider than the column's cells'
    * contents, then you can just use column.sizeWidthToFit().
    private void initColumnSizes(JTable table, MyTableModel model) {
    TableColumn column = null;
    Component comp = null;
    int headerWidth = 0;
    int cellWidth = 0;
    Object[] longValues = model.longValues;
    for (int i = 0; i < 5; i++) {
    column = table.getColumnModel().getColumn(i);
    try {
    comp = column.getHeaderRenderer().
    getTableCellRendererComponent(
    null, column.getHeaderValue(),
    false, false, 0, 0);
    headerWidth = comp.getPreferredSize().width;
    } catch (NullPointerException e) {
    System.err.println("Null pointer exception!");
    System.err.println(" getHeaderRenderer returns null in 1.3.");
    System.err.println(" The replacement is getDefaultRenderer.");
    comp = table.getDefaultRenderer(model.getColumnClass(i)).
    getTableCellRendererComponent(
    table, longValues[i],
    false, false, 0, i);
    cellWidth = comp.getPreferredSize().width;
    if (DEBUG) {
    System.out.println("Initializing width of column "
    + i + ". "
    + "headerWidth = " + headerWidth
    + "; cellWidth = " + cellWidth);
    //XXX: Before Swing 1.1 Beta 2, use setMinWidth instead.
    column.setPreferredWidth(Math.max(headerWidth, cellWidth));
    public void setUpSportColumn(TableColumn sportColumn) {
    //Set up the editor for the sport cells.
    JComboBox comboBox = new JComboBox();
    comboBox.addItem("Snowboarding");
    comboBox.addItem("Rowing");
    comboBox.addItem("Chasing toddlers");
    comboBox.addItem("Speed reading");
    comboBox.addItem("Teaching high school");
    comboBox.addItem("None");
    sportColumn.setCellEditor(new DefaultCellEditor(comboBox));
    //Set up tool tips for the sport cells.
    DefaultTableCellRenderer renderer =
    new DefaultTableCellRenderer();
    renderer.setToolTipText("Click for combo box");
    sportColumn.setCellRenderer(renderer);
    //Set up tool tip for the sport column header.
    TableCellRenderer headerRenderer = sportColumn.getHeaderRenderer();
    if (headerRenderer instanceof DefaultTableCellRenderer) {
    ((DefaultTableCellRenderer)headerRenderer).setToolTipText(
    "Click the sport to see a list of choices");
    class MyTableModel extends AbstractTableModel {
    final String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    final Object[][] data = {
    {"Mary ", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Chasing toddlers", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Angela", "Lih",
    "Teaching high school", new Integer(4), new Boolean(false)}
    public final Object[] longValues = {"Angela", "Andrews",
    "Teaching high school",
    new Integer(20), Boolean.TRUE};
    public int getColumnCount() {
    return columnNames.length;
    public int getRowCount() {
    return data.length;
    public String getColumnName(int col) {
    return columnNames[col];
    public Object getValueAt(int row, int col) {
    return data[row][col];
    * JTable uses this method to determine the default renderer/
    * editor for each cell. If we didn't implement this method,
    * then the last column would contain text ("true"/"false"),
    * rather than a check box.
    public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
    * Don't need to implement this method unless your table's
    * editable.
    public boolean isCellEditable(int row, int col) {
    //Note that the data/cell address is constant,
    //no matter where the cell appears onscreen.
    if (col < 2) {
    return false;
    } else {
    return true;
    * Don't need to implement this method unless your table's
    * data can change.
    public void setValueAt(Object value, int row, int col) {
    if (DEBUG) {
    System.out.println("Setting value at " + row + "," + col
    + " to " + value
    + " (an instance of "
    + value.getClass() + ")");
    if (data[0][col] instanceof Integer
    && !(value instanceof Integer)) {
    //With JFC/Swing 1.1 and JDK 1.2, we need to create
    //an Integer from the value; otherwise, the column
    //switches to contain Strings. Starting with v 1.3,
    //the table automatically converts value to an Integer,
    //so you only need the code in the 'else' part of this
    //'if' block.
    try {
    data[row][col] = new Integer(value.toString());
    fireTableCellUpdated(row, col);
    } catch (NumberFormatException e) {
    JOptionPane.showMessageDialog(TableRenderDemo.this,
    "The \"" + getColumnName(col)
    + "\" column accepts only integer values.");
    } else {
    data[row][col] = value;
    fireTableCellUpdated(row, col);
    if (DEBUG) {
    System.out.println("New value of data:");
    printDebugData();
    private void printDebugData() {
    int numRows = getRowCount();
    int numCols = getColumnCount();
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + data[i][j]);
    System.out.println();
    System.out.println("--------------------------");
    *This program for add some buttons and a table on JFrame
    import java.awt.*;
    import javax.swing.*;
    public class TestMain extends JFrame{
    private static TableRenderDemo tRD;
         private static TestMain tM;
    protected static Container c;
    private static DrawCalendar dC;
         public static void main(String[] args){
         tM = new TestMain();
         tM.setVisible(true);
         public TestMain(){
         super(" Test");
         setSize(800,600);
    //set up layoutManager
    c=getContentPane();
    c.setLayout ( new GridLayout(3,1));
    tRD=new TableRenderDemo();
    dC=new DrawCalendar();
    addItems();//add Buttons to JFrame
    private void addItems(){
         c.add(dC); //add Buttons to JFrame
         //c.add(tRD); //add Table to JFrame     

    Click Here and follow the steps to configure your Linksys Router with Version FIOS.

  • A serious question  ,could someone help me please just a little problem

    this is a program to let me open a file and read birthday and related name, and then type name we can fetch the birthday, everything is ok ,whenever i input a name, it always find nothing, can some experts help me please
    there are three class i defined, one is birth_reader, another is date to record the date have been read from specified file, one is the name stored firstname and last name, the file my lecture give me is just a simple txt file which is example like:
    1 31 1984 robin ralu
    i realised maybe i shoud add a equals() to test ,but how can i do that , i have really no idea
    please
    import java.util.Scanner.*;
    import java.util.*;
    import java.io.*;
    public class birth_reader
    public static void main(String[] args)throws IOException
    birth_reader haha=new birth_reader();
    Map <name,date> book=new HashMap<name,date>();
    Scanner input=new Scanner(System.in);
    name b;
    FileReader fin = new FileReader("birthday.txt");
    Scanner sc = new Scanner(fin);
    while(sc.hasNext())
    int cat=sc.nextInt();
    int cta=sc.nextInt();
    int atc=sc.nextInt();
    String first_name=sc.next();
    String last_name=sc.next();
    date a=new date(cat,cta,atc);
    b=new name(first_name,last_name);
    book.put(b,a);
    System.out.println(book);
    System.out.println("please enter the name");
    String f=input.next();
    String l=input.next();
    b.firstname=f;
    b.lastname=l;
    date p=book.get(b);
    if((p!=null))
    System.out.println(b+":"+p);
    else{ System.out.println("no person here"+" "+b);
    public class name
    String firstname,lastname;
    public name(String firstname,String lastname)
    this.firstname=firstname;
    this.lastname=lastname;
    public String toString()
    return firstname+" "+lastname;
    public class date
    int year,month,day;
    public date(int year,int month,int day)
    this.year=year;
    this.month=month;
    this.day=day;
    public String toString()
    return year+" "+month+" "+day;
    public int getyear()
    return year;
    public int getmonth()
    return month;
    public int getday()
    return day;
    }

    Why do you suppose you should add an equals method?
    In what class would you add it?
    How would that change the behaviour of your code?
    What else should you keep in mind when overriding equals?

  • Help required please. "Itunes can not read the contents of my iphone"

    Greetings all,
    I know this question has been asked before and I apologize for asking again but all the solutions provided don't seam to work for me, can anyone help me please.
    I am receving the message: "Itunes can not read the contents of the iPhone. Go to the summary tab In iPhone Preferences and click restore torestore this Iphone to factory settings".
    Now a little about my iphone, Itunes and my laptop and what steps i havealready tried.
    I have an iPhone 4 running software 5.0
    My itunes version is 10.5.0.142
    I know these are not the most up to date versions but I have had this issue for almost 3 months now and updating the software back then was the first step I tried. I don’t believe updating to the latest will fix this issue as updating the last two times did nothing.
    Every so often after starting Itunes, The program will stop responding and will require the three finger death kill (CTRL, ALT, DELETE) to open task manager to end the task of Itunes. Once it shuts down, I restart the iTunes and it runs smoothly, apart from not reading my iPhone.
    When I run a diagnostic in itunes under the help tab, I get these fail messages:
    Network Connectivity test: Secure link to Itunes store fail
    Device connectivity test: Under support services: Itunes helper is not running. And under ports: No iPod, iPhone or iPad found.
    Device Sync test: No iPod touch, iPhone or iPad found.
    *See below for full diagnostic report*
    I have restored back to factory settings twice.
    I have shut down and restarted both my iPhone and laptop.
    I am running Windows 7 32-bit on my laptop.
    I am using ZoneAlarm as my fire wall, and have been disabling it when syncing my iPhone to prevent other error messages.
    The iPhone is plugged into a genuine Iphone USB cable and is plugged into a USB port not a USB hub on my laptop, I have tried plugging it into all 4 USB ports and this issue still persist. The Cable is less then 5 months old, is not frayed or damaged in any way, have also borrowed 2 other cables from friends and still the same issue.
    The iPhone does not even come up in windows explorer as a digital camera.
    The iPhone is NOT jailbroken
    I do not live close to a so called genius bar, however I have made the journey to them on 3 separate occasions last year when I first received my iPhone for a different issue, the so called genius's could not fix the problem so they just gave me a new (refurbished) iPhone, which did not extend my warranty. I will not be taking the iPhone back to them as I believe they can not resolve many issues, this is why I am reaching out to the power of the people in the wider apple community.
    I have read in other forums about ifunbox and other programs for jail broken iPhones to isolate folders “iTunesDB” and "iTunesCDB" and delete them. If this is the issue is there a way to access these files through windows explorer as my iphone is not jailbroken.
    I hope I have provided enough information and someone can help me fix this issue. If I have left anything out, please let me know. I thank everyone in advance for your patience and support.
    Thanks
    Hoggie27
    FULL DIAGNOSITC REPORT
    Microsoft Windows 7 Home Premium Edition Service Pack 1 (Build 7601)
    Hewlett-Packard HP Pavilion dv6 Notebook PC
    iTunes 10.5.0.142
    QuickTime not available
    FairPlay 1.13.35
    Apple Application Support 2.1.5
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.96
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.3.494
    Gracenote MusicID 1.9.3.106
    Gracenote Submit 1.9.3.136
    Gracenote DSP 1.9.3.44
    iTunes Serial Number 001BAD14XXXXEA78
    Current user is an administrator.
    The current local date and time is 2011-11-16 10:04:53.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 230M 
    **** External Plug-ins Information ****
    No external plug-ins installed.
    The drive H: Vodafone  USB SCSI CD-ROM Rev  USB is a USB 1 device.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:    {97524DB0-B9DC-41DB-8AFA-0CE6938F7C95}
    Description:    PC
    IP Address:    (HAS BEEN REMOVED FOR PERSONAL REASONS)
    Subnet Mask:    255.255.255.255
    Default Gateway:    0.0.0.0
    DHCP Enabled:    No
    DHCP Server:   
    Lease Obtained:    Thu Jan 01 11:00:00 1970
    Lease Expires:    Thu Jan 01 11:00:00 1970
    DNS Servers:    10.143.147.147
            10.143.147.148
    Adapter Name:    {BFF0456E-DE42-4FEF-B1FA-1EA1C5EDEE42}
    Description:    Vodafone Mobile Broadband Network Adapter (ZTE)
    IP Address:    0.0.0.0
    Subnet Mask:    0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:    No
    DHCP Server:   
    Lease Obtained:    Thu Jan 01 11:00:00 1970
    Lease Expires:    Thu Jan 01 11:00:00 1970
    DNS Servers:   
    Adapter Name:    {D5511FFD-0CA8-4F62-B3CA-E90384FFCD03}
    Description:    Broadcom 43225 802.11b/g/n
    IP Address:    0.0.0.0
    Subnet Mask:    0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:    Yes
    DHCP Server:   
    Lease Obtained:    Thu Jan 01 11:00:00 1970
    Lease Expires:    Thu Jan 01 11:00:00 1970
    DNS Servers:   
    Active Connection:    PC
    Connected:    Yes
    Online:        Yes
    Using Modem:    Yes
    Using LAN:    No
    Using Proxy:    No
    SSL 3.0 Support:    Enabled
    TLS 1.0 Support:    Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    ZoneAlarm Firewall is installed.
    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 unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-11-16 09:59:57.
    **** CD/DVD Drive Tests ****
    LowerFilters: Afc (1.0.0.2),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    F: hp CDDVDW TS-L633N, Rev 0300
    Drive is empty.
    **** Device Connectivity Tests ****
    iPodService 10.5.0.142 is currently running.
    iTunesHelper is currently not running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B34.  Device is working properly.
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B3C.  Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    1394 OHCI Compliant Host Controller.  Device is working properly.
    Most Recent Devices Not Currently Connected:
    iPhone 4 (GSM) running firmware version 5.0
    Serial Number:    85107XQLA4S
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.
    < Edited By Host >

    Hi AM_Kidd.
    Thanks for your reply.
    I have done a complete uninstall and re install of iTunes and all related apple programs from my laptop through control panel, add remove programs and also by going through program files and deleting all tracers of any left over folders remove programs may have missed.
    My apologies for forgetting to add this in my original post.
    Thanks again

  • I have upgraded to 10.5 on itunes but i cant download ios 5 on my ipod touch4 when its current version is 4.3.5? Can someone help me please?!?!?!

    Every time i have tried to download IOS5 on my ipod touch it keeps saying there was a problem downloading the software for the ipod. the network connection has timed out. what does that even mean? Can anyone help me please?!?!?!

    When you get anything that says your network connection timed out it either means you lost internet connection or there is something blocking the connection between the computer and the servers that it is trying to connect to.
    If you have a solid internet connection and can browse to websites fine it's either an anti-virus program or a firewall on the computer OR a firewall in the router's settings that you use to connect to the internet.
    Reconfigure any security software to allow Apple's servers to pass.
    Useful information for configuring your security software:
    IMPORTANT: iTunes must be allowed to contact Apple using the following ports and servers:
              ▪          port 80
              ▪          port 443
              ▪          phobos.apple.com, deimos3.apple.com, albert.apple.com, gs.apple.com, itunes.apple.com, ax.itunes.apple.com, ax.init.itunes.apple.com, ax.phobos.apple.com.edgesuite.net
    iTunes uses well known ports and these ports may need to be opened for iTunes: 80, 443, 3689, 5297, 5298, 5353, 8000-8999, and 42000-42999.
    iTunes also contacts VeriSign servers during an iPhone restore and activation:
              ▪          evintl-ocsp.verisign.com
              ▪          evsecure-ocsp.verisign.com
    For more information see Update and restore alert messages on iPhone and iPod touch
    Temporarily disable or uninstall your security software
    If the current available version of your security software is incompatible with iTunes, you can disable the security software and test if it is the source of the issue. It might also be necessary to temporarily uninstall security software after making sure you can reinstall it and note any required licenses. A temporary deinstallation might be required because parts of some security software remain active in the background though they appear to be deactivated.
    To reduce any security risks that security software is designed to prevent, consider making sure all files needed to reinstall it are available and disconnect network connections before uninstalling security software. Should this not be possible, such as if a download without active security software is required, that required step should be the only process completed without security software. For assistance in checking your configuration, disabling, or uninstalling your security software, please contact the manufacturer.
    Once disabled or uninstalled, perform only the steps required to verify your issue has been resolved. Complete whatever update, restore, syncing, back up, activation, or other task you were troubleshooting. Once that task is complete, install and configure compatible security software to ensure your PC is protected.
    If it isn't a program or software on the computer contact your Internet Service Provider and/or Router Company to configure or disable the firewall in the router settings.
    To isolate the issue to this you can also try disconnecting the router and plugging your computer directly in to the modem but this does not help for troubleshooting time-out issues directly on any apple mobile devices only if you are syncing or going through iTunes on the computer.

  • HELP ME PLEASE!! Why doesn't my Epson CX6400 Driver install?

    My printer quit printing last week.It still works because I tested it with my husband's laptop.I have downloaded a new driver from the Epson website and it does not install,it asks me for my password.I am the administrator and it says"this software needs administrative rights or higher" or something to that effect,anyway since it does not work with my password, THE only password I have,I tried changing it with the install cd 1 and after I changed both my password and the root administrator password,it still does not install,not even when I try to install the driver with the original CX6400 software cd.HELP!!!!!!I have already paid Apple support $49.99 and they cant seem to help because they say its an Epson issue and Epson support(REALLY NICE,compared to the snots at Apple!) says its an Apple issue......HELP ME,PLEASE!!!!!
    imac Mac OS X (10.3.9)
    imac   Mac OS X (10.3.9)  

    Hi Maclapa!
    Do you have more than one account on the Mac?
    Are you sure that you are logged in with an Admin account?
    Have you run Repair Permissions?
    TO REPAIR PERMISSIONS ON THE STARTUP DISK
    1.Open Disk Utility, located in Applications/Utilities, and select the startup disk in the left column.
    2.Click First Aid.
    3.Click Verify Disk Permissions to test permissions or Repair Disk Permissions to test and repair permissions. (I never "Verify". Just run "Repair".)
    Rerun RP until the only message it reports is:
    "We are using special permissions for the file or directory ./System/Library/Filesystems/cd9660.fs/cd9660.util.
    New permissions are 33261"
    This is a status message and not a cause for concern. You may safely ignore it.
    Or these:
    "We are using a special uid for the file or directory ./private/var/at/jobs. New uid is 1"
    "We are using a special uid for the file or directory ./private/var/at/spool. New uid is 1"
    Again, these are status messages, which appeared after Security Update 2005-001.
    There may be others that you can ignore. Complete list at link below.
    Spurious Permissions Errors Using: 10.3.x, authored by Michael Conniff.
    When "Repair Permissions" is complete. Quit "Disk Utility".
    ali b

  • I need help urgent please :(

    Hi i'm too much worried about my laptop because before 1 hours its working perfectly and while i working on my laptop suddenly laptop is off and now when i presss power on button its on for 4 seconds with a fast fan voice and no display on screen and then again off what i do can any one help me please thansk a lot advanced....
    Regards,
    Osman

    Please diagnose your PC using the detailed instructions in the link below.
    The "HP PC Hardware Diagnositcs" will test all the hardware components of your PC.
    Testing using HP PC Hardware Diagnostics (UEFI)

  • I baught Seagate Backup plus 2T hard drive to use as my Backup time machine. But its not working when i connect to time machine its not coping files, it keep saying preparing files. Can someone help me please...

    i baught Seagate Backup plus 2T hard drive to use as my Backup time machine. But its not working. when i connect to time machine its not coping files, it keep saying preparing files. Can someone help me please...

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • My imessages are gone. i cant activate them now. When i go into send and recieve its only my e-mail address thats ticked and not my phone number ticked also. When i sign in with my apple ID it is ticked there. can anyone help me please.

    my imessages are gone. i cant activate them now. When i go into send and recieve its only my e-mail address thats ticked and not my phone number ticked also. When i sign in with my apple ID it is ticked there. can anyone help me please.

    Hi,
    Go to the iPhone
    GO to Settings > Messages
    Is the iPhone Number ticked to be enabled (It will be greyed out and not editable but should be On)
    If it is Off (Unticked remove the Apple ID)
    Place the iPhone in Airplane mode for a few minutes.
    Go back to Settings Messages and make sure the Message app Is Enabled overall.
    Check the iPhone Number is verifying.
    When Completed test by sending an iMessage to your Apple ID (Mac)
    If that works add back the Apple ID to the iPhone's Settings.
    Restart the Mac App and Accept the op ups that appear as to what the iPhone is using.
    9:52 pm      Friday; April 4, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Siebel Testing. Cookie handling, cookie load balancing and authentication.

    We are delivering a PoC in a big Siebel customer and we are finding some issues.
    Environment information is:
    - Siebel testing, version 8.
    - NTLM Windows authentication.
         When we create a Siebel Load script, recording works fine. Replaying the script, after adding the Authentication function, does not work
         When we create a Web Load Script with the same structure and business process, after adding the Authentication function, it works.
         Looking at the difference between Web and Siebel scripts, only difference are a couple of cookies that Web script considers and Siebel does not. This two cookies are added in the second call of the NTLM handshake requests (two requests with 401 http code and a final with a 200 http code). The application, in the first NTLM handshake request, ask the browser to add a couple of cookies that the browser (and OLT in a web load script) add. Siebel load script does not add/handle this cookies.
         Accordingly, the script works with web module but does not work with Siebel module.
    Right now we only have two options to make Siebel work:
    - Change the DNS address to point to a single node for the application, instead of pointing to the load balancing service. This way, cookies are not needed and the script does not fail.
    - Add the cookies by hand. This way, cookie content is "hardcoded" and, so, it will not be useful for load balancing purposes, which lead us to previous bullet. Load testing using Siebel will not work load balanced.
    I added a web script (works fine with no tweaking) and a Siebel script executed with normal configuration (does not work) and workaround (avoiding the load balancing cookies- it works).
    Many thanks for the help,
    Iván.
    IM_Siebel_Second_Test.zip
    Siebel web test.zip
    Edited by: user9982485 on 03-Aug-2010 09:18

    Álex,
    Thank you a lot, I will call you related to other issue also. Thanks for the kind help!.
    IMHO, it works or not depending on cookies added for load balancing. Siebel module does not specifically add these cookies, while web module does. If you delete the cookies from the web module, it stops working, so I guess the cookies are making/breaking the script.
    I will send you the scripts, so you can have a look.
    Thanks,
    Iván.

  • Can not run jcwde (Somebody help me please !)

    Hi all, I'm a newbie in java card development.
    Let's get to the point. I have some problem with jcwde and I've been searching for the similar problems in this forum such as : here here and here here
    Other sources that I've referred to is : here and here
    I'm trying to set environment variable for java card development.
    Before running jcwde, i also run samples_build.bat but I don't know whether it OK or not.
    When I try to run jcwde for testing demo file (I type : jcwde -jcwde.app in command prompt) the only message that i got is :
    C:\java_card_kit-2_1_2\samples\src\demo>jcwde jcwde.app
    'C:\Program' is not recognized as an internal or external command, operable program or batch files
    Is there any problem with my enviromnent variables setting ? since I'm not sure how to fix it
    here is mine :
    JAVA_HOME : C:\Program Files\Java\jdk1.5.0_04
    JC21_HOME : C:\java_card_kit-2_1_2
    CLASSPATH : .;C:\java_card_kit-2_1_2\lib\api21.jar
    PATH : C:\Program Files\Java\jdk1.5.0_04\bin;C:\java_card_kit-2_1_2\bin
    Oh yeah, I almost forgotten that I'm using Windows XP Professional Edition SP 1, and Java Card Development Kit 2.1.2
    Can somebody help me please or maybe give me advice about what I'm doing is right or wrong ?
    Thanks in advance,
    Best Regards,
    iCH1
    Edited by: ichiwan on Mar 12, 2008 10:00 PM

    dear kicklee,
    Thank you for your response to the topic. By the way, do you mean that all CLASSPATH variable must not be more than 8 characters ?
    I just did it, but still the same error occur.
    Is there any solution for this ?
    I need you to copy-paste all your succesfull CLASSPATH configuration here for better explanation.
    thx in advance.
    Best Regards,
    iCH1
    Edited by: ichiwan on Mar 18, 2008 8:09 AM
    Edited by: ichiwan on Mar 18, 2008 8:13 AM
    Edited by: ichiwan on Mar 18, 2008 8:15 AM

  • Error Message "This is not a Test User account - Please create a new account in the Sandbox Environment

    hello ,,
    i have this problem many times why i don't know and i dont have jealbreak " Cydia " ok
    the messageis is :
    Error Message "This is not a Test User account - Please create a new account in the Sandbox Environment"
    how to solve this problem any helpful answer please ?
    thank you

    The ultimate solution after you have tried restarting/ rebooting your device (no need to hard reset or restore your device) is:
    Click iForgot, then reset your password, change it to your new password. Then go to Store, try downloading any app! Hope this will help because some of my friends had this prob before and all what i did was this way!

  • Siebel Test Automation - Anonymous user

    Hi,
    We have integrated siebel 8.1.1.7 callcenter_enu AOM with LDAP for authentication of user authentication and are trying to use the same AOM for Test Automation.
    change param EnableAutomation=True for comp XX
    change param AllowAnonUsers=True for comp XX
    When we hit the url
    http://hostname/callcenter_enu/start.swe?SWECmd=AutoOn
    We could see that the user logged into the system is the anonymous user instead of the actual user being used.
    When we do the same with DB authentication AOM, the actual user logs into the system which is as expected.
    Could you please let me know how can we set the actual user to logon in LDAP Authenticated AOM.
    Regards,
    Ajay

    Hi
    Indeed it is, you need to enable Siebel Test Automation in the Siebel server.
    Alex

Maybe you are looking for

  • All files in folder of Application server.

    Hi Frnds, how to get the all files from a folder of application server. I have to get the all files in internal table when i selecting only folder? thanks in advance. regards, Balu

  • Problems calling stored procedure with DG4IFMX

    Hi guys, I am trying to call stored procedures from Informix Database which is connected through Oracle Database Gateway for Informix. I have run select,update,delete successfully but when i try to run a stored procedure nothing happens. for example

  • Snapshot Report taking long time

    Hi, We have snapshot collection every 1 hour in our db and the process is taking 1/2 hour to run and it is the highest resource hog while it is running. what can we do to avoid this scenario ? Quick help ismuch appreciated. We use oem 11g for a 9.2.0

  • 3150, 3253, 3252

    For a few weeks now, I have been trying to download a tv series that I purchased. I get several downloading problem messages.... network connection was terminated unexpectedly, network connection timed-out, network connection was reset, network conne

  • How to pin a website's icon to the quick launch area.

    ''duplicate - https://support.mozilla.com/en-US/questions/901878'' I'm used to the Internet Explorer option to create a shortcut to the desktop, then I drag the icon to the quick launch area. I don't see that option in FF.