WebService naming problem

Hi,
I have a problem regarding the naming of WebServices in the WAS. I need to know if i´m right in this:
1. When creating WebServices in the ABAP stack using the ABAP Workbench i can only develop WebServices who starts whith an "Z" or an "Y". I.ex. Y_GetCustomerName.
2. When developing WebServices on the JAVA Stack i´m free to call my WebServices anything i like i.ex GetCustomerName.
Could anyone confirm this two statements? I need to know because even though it seems to bee a small problem it´s in our organisation a big problem if we cannot name our WebServices as we like!
Regards
Jakob

Yes i can reserve an Namespace, but it´s not enough... It´s not the "Z" who are the problem but rather that the Service should allways begin with the same string.
I need to develop services like:
GetCustomerName
CreateFinanceDocument
BlockCustomerAccount
I´m pretty sure that i cannot do it in the ABAP stack - but if i can do it the JAVA stack everything is fine for me - i just need a confirmation on that :-).
Jakob

Similar Messages

  • Un-Named Problem

    This is my Server Program
    import javax.swing.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    class Validation
         Object object;
         public static Vector v1=new Vector(1,1);
         Vector vctUsername = new Vector(1,1);
         public Validation(String ipAddress1, String message1)
              message1.trim();
              if(checkIP(ipAddress1))
              else
                   v1.add(ipAddress1);
                   System.out.println("IP Added");
              String check = new String(String.valueOf(message1.charAt(0)));
              if(message1.length()==0)
              else if(message1.equals("A"))
                   System.out.println("Join in Message .. not to be sent");
              else if(check.equals("�"))
                   StringTokenizer str = new StringTokenizer(message1,"�");
                   String username13 = (str.nextToken());
                   String dust13 = (str.nextToken());
                   System.out.println(dust13);
                   if(dust13.equals(new String(" has joined the conversation")));
                   System.out.println(username13);
                   vctUsername.add(username13);
                   NewServer.listNames.setListData(vctUsername);
              else
                   for(int i=0; i<v1.size(); i++)
                        try
                             object = v1.elementAt(i);
                             Socket socket = new Socket(object.toString(),4001);
                             System.out.println("Connection formed with Client "+object.toString());
                             ObjectOutputStream toClient = null;
                             toClient = new ObjectOutputStream(socket.getOutputStream());
                             toClient.writeObject(message1);
                             toClient.flush();
                             System.out.println("Message "+message1+"to IP -- "+object.toString());
                             toClient.close();
                             socket.close();
                        catch(ConnectException e1)
                             for(int ii=0; ii<v1.size(); ii++)
                                  Object object1 = v1.elementAt(ii);
                                  if(object1.toString().equals(object.toString()))
                                       v1.removeElementAt(ii);
                                       vctUsername.removeElementAt(ii);
                                       NewServer.listNames.setListData(vctUsername);
                                  else
                        catch(Exception e)
                             System.out.println("Error : "+e);
         public boolean checkIP(String ipAddress2)
              for(int i=0; i < v1.size(); i++)
                   Object object = v1.elementAt(i);
                   if(object.toString().equals(ipAddress2))
                        return true;
              return false;
    public class NewServer
         public static JList listNames;
         private     ServerSocket chatSocket;
         public NewServer()
              Object object;
              JFrame frameMain = new JFrame("Server");
              JPanel panelMain = new JPanel();
              JTextArea textAreaDisplay = new JTextArea(25,50);
              JScrollPane scrollPaneBoard = new JScrollPane(textAreaDisplay);
              listNames = new JList();
              frameMain.getContentPane().add(panelMain);
              frameMain.setVisible(true);
              frameMain.setSize(200,200);
              panelMain.add(scrollPaneBoard);
              panelMain.add(listNames);
              textAreaDisplay.setLineWrap(true);
              try
                   chatSocket = new ServerSocket(4000);
              catch(BindException e)
                   JOptionPane.showMessageDialog(frameMain, new String("Port Address in use"));
                   System.exit(0);
              catch(Exception e)
                   System.out.println("Error 1 "+e);
              while(true)
                   try
                        System.out.println("Waiting for connections .. ");
                        Socket client = chatSocket.accept();
                        String inetAddress = String.valueOf(client.getInetAddress());
                        StringTokenizer str = new StringTokenizer(inetAddress,"/");
                        String hostName = (str.nextToken());
                        String ipAddress = (str.nextToken());
                        System.out.println("Accepted connection from : "+hostName+" : "+ipAddress);
                        new Validation(ipAddress, "A");
                        try
                             ObjectInputStream fromClient = null;
                             client.setSoTimeout(1000);
                             fromClient = new ObjectInputStream(client.getInputStream());
                             String x;
                             x = (String) fromClient.readObject();
                             textAreaDisplay.append(x);
                             textAreaDisplay.append("\n");
                             new Validation(ipAddress, x);
                        catch(Exception e)
                             System.out.println("Error 3 "+e);
                   catch(NullPointerException e)
                        JOptionPane.showMessageDialog(frameMain, new String("An unexpected error occured while starting the Server -- Error - "+e));
                        System.exit(0);
                   catch(Exception e)
                        System.out.println("Error 2 "+e);
         public static void main(String args[])
              new NewServer();
    this is my Client Program
    import java.io.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.net.*;
    import javax.swing.*;
    public class NewClient
         JFrame frameMain1;
         JPanel panelMain1;
         JTextArea textAreaDisplay;
         JScrollPane scrollPaneDisplay;
         JTextField textFieldMessage;
         Socket socket;     
         ObjectInputStream fromServer;
         ServerSocket inputServerSocket;
         String username123;
         public NewClient(String username12)
              frameMain1 = new JFrame("Client");
              panelMain1 = new JPanel();
              textAreaDisplay = new JTextArea(25,50);
              scrollPaneDisplay = new JScrollPane(textAreaDisplay);
              textAreaDisplay.setLineWrap(true);
              panelMain1.add(scrollPaneDisplay);
              System.out.println("coming 1");
              textFieldMessage = new JTextField(50);
              panelMain1.add(textFieldMessage);
              textFieldMessage.addKeyListener(new listener());
              frameMain1.getContentPane().add(panelMain1);
              frameMain1.setSize(200,200);
              frameMain1.setVisible(true);
              System.out.println("coming 3");
              try
                   socket = new Socket("192.168.16.1",4000);
                   inputServerSocket = new ServerSocket(4001);
                   ObjectOutputStream toServer = new ObjectOutputStream(socket.getOutputStream());
                   toServer.writeObject("� "+username12+" � has joined the conversation");
                   toServer.flush();
                   toServer.close();
              catch(UnknownHostException e)
                   JOptionPane.showMessageDialog(frameMain1, new String("Host Not Found "+e));
                   System.exit(0);
              catch(ConnectException e)
                   JOptionPane.showMessageDialog(frameMain1, new String("Connection Failed Because "+e));
                   System.exit(0);
              catch(BindException e)
                   JOptionPane.showMessageDialog(frameMain1, new String("Client Application already running or Port in use"));
                   System.exit(0);
              catch(Exception e)
                   JOptionPane.showMessageDialog(frameMain1, new String("An unexpected Error occured "+e));
                   System.exit(0);
              try
                   while(true)
                        Socket listener = inputServerSocket.accept();
                        ObjectInputStream fromClient = null;
                        listener.setSoTimeout(1000);
                        fromServer = new ObjectInputStream(listener.getInputStream());
                        String input = (String) fromServer.readObject();
                        textAreaDisplay.append("\n");
                        textAreaDisplay.append(input);
                        fromServer.close();
                        listener.close();
              catch(Exception e)
                   JOptionPane.showMessageDialog(frameMain1, new String("An unexpected Error occured "+e));
         class listener implements KeyListener
              public void keyTyped(KeyEvent e)
              public void keyReleased(KeyEvent e)
              public void keyPressed(KeyEvent e)
                   int code = e.getKeyCode();
                   if(code == KeyEvent.VK_ENTER)
                        String message12 = textFieldMessage.getText();
                        message12.trim();
                        if(message12.length()==0)
                        else
                             try
                                  Socket socket1;
                                  socket1 = new Socket("192.168.16.1",4000);
                                  ObjectOutputStream toServer = new ObjectOutputStream(socket1.getOutputStream());
                                  String messageTyped;
                                  messageTyped = (username123+" says::"+message12);
                                  toServer.writeObject(messageTyped);
                                  toServer.flush();
                                  textFieldMessage.setText("");
                                  toServer.close();
                                  socket1.close();
                             catch(ConnectException e1)
                                  JOptionPane.showMessageDialog(frameMain1, new String("Server Down"));
                                  System.exit(0);
                             catch(Exception e2)
                                  JOptionPane.showMessageDialog(frameMain1, new String("Error : "+e2));
                                  System.exit(0);
         public static void main(String args[])
              new NewClient("Guest_Null");
    and this is the program ...thru which i am calling ... Newclient
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.*;
    import java.sql.*;
    public class Prashant extends JFrame
         //----frameMain objects
         JFrame frameMain = new JFrame("");     
         //----panelMain objects
         JPanel panelMain = new JPanel();
         CardLayout c1 = new CardLayout();
         //----panelAdministrator
         JPanel panelAdministrator = new JPanel();
         JTable table = new JTable();
         //----panelWelcome objects
         JPanel panelWelcome = new JPanel();
         String stringFirstName2 = new String("User");
         JLabel labelFirstName1=new JLabel("");
         //----panelLogin objects
         JPanel panelLogin = new JPanel();
         JLabel labelUsername2 = new JLabel("Username");
         JTextField textFieldUsername2 = new JTextField(10);
         JLabel labelPassword1 = new JLabel("Password");
         JPasswordField passwordFieldPassword1 = new JPasswordField(10);
         JButton buttonLogin = new JButton("Login");
         JButton buttonNewUser = new JButton("New User, Sign Up");
         //----panelInsertData objects
         JPanel panelInsertData = new JPanel();
         JLabel labelUsername1 = new JLabel("Username");
         JTextField textFieldUsername1 = new JTextField(10);
         JLabel labelPassword = new JLabel("Password");
         JPasswordField passwordFieldPassword = new JPasswordField(10);
         JLabel labelReTypePassword = new JLabel("Re-Type Password");
         JPasswordField passwordFieldReTypePassword = new JPasswordField(10);
         JLabel labelFirstName = new JLabel("First Name");
         JTextField textFieldFirstName = new JTextField(10);
         JLabel labelLastName = new JLabel("Last Name");
         JTextField textFieldLastName = new JTextField(10);
         JLabel labelPhoneNumber = new JLabel("Phone Number");
         JTextField textFieldPhoneNumber = new JTextField(10);
         JLabel labelAddress = new JLabel("Address");
         JTextArea textAreaAddress = new JTextArea("",10,10);
         JScrollPane scrollPaneAddress = new JScrollPane(textAreaAddress);
         ClickListen ClickListener = new ClickListen();
         JButton buttonSubmit = new JButton("Submit");
         //----panelRetieveData objects
         JPanel panelRetieveData = new JPanel();
         JButton testButton = new JButton("Retieve Data");
         //----panelUsernameSearch
         JPanel panelUsernameSearch = new JPanel();
         JLabel labelUsername = new JLabel("Username");
         JTextField textFieldUsername = new JTextField(10);
         JButton buttonCheckForAvailability = new JButton("Check");
         public void frameMain()
              frameMain.setResizable(true);
         public void panelMainClass()
              frameMain.getContentPane().add(panelMain);
              panelMain.setLayout(c1);
         public void panelWelcome()
              panelMain.add(panelWelcome, "panelWelcome");
              panelWelcome.setLayout(null);
              panelWelcome.add(labelFirstName1);
              labelFirstName1.setBounds(10,10,200,25);
         public void panelAdministrator()
              panelMain.add(panelAdministrator,"panelAdministrator");
              panelAdministrator.add(table);
         public void panelLogin()
              frameMain.setSize(195,160);
              frameMain.setVisible(true);
              panelLogin.setLayout(null);
              panelMain.add(panelLogin, "panelLogin");
              c1.show(panelMain, "panelLogin");
              panelLogin.add(labelUsername2);
              labelUsername2.setBounds(10,10,100,25);
              panelLogin.add(textFieldUsername2);
              textFieldUsername2.setBounds(75,10,100,25);
              panelLogin.add(labelPassword1);
              labelPassword1.setBounds(10,40,100,25);
              panelLogin.add(passwordFieldPassword1);
              passwordFieldPassword1.setBounds(75,40,100,25);
              panelLogin.add(buttonLogin);
              buttonLogin.setBounds(10,70,165,25);
              buttonLogin.addActionListener(ClickListener);
              panelLogin.add(buttonNewUser);
              buttonNewUser.setBounds(10,100,165,25);
              buttonNewUser.addActionListener(ClickListener);
         public void panelUsernameSearch()
              panelMain.add(panelUsernameSearch,"panelUsernameSearch");
              panelUsernameSearch.setLayout(null);
              panelUsernameSearch.add(labelUsername);
              labelUsername.setBounds(10,10,60,25);
              panelUsernameSearch.add(textFieldUsername);
              textFieldUsername.setBounds(75,10,100,25);
              panelUsernameSearch.add(buttonCheckForAvailability);
              buttonCheckForAvailability.setBounds(10,40,165,25);
              buttonCheckForAvailability.addActionListener(ClickListener);
         public void panelInsertDataClass()
              panelInsertData.setLayout(null);
              panelMain.add(panelInsertData, "panelInsertData");
              labelUsername1.setBounds(10,10,100,25);
              panelInsertData.add(labelUsername1);
              textFieldUsername1.setBounds(115,10,100,25);
              textFieldUsername1.setEnabled(false);
              textFieldUsername1.setText("Prashant");
              panelInsertData.add(textFieldUsername1);
              labelPassword.setBounds(10,40,100,25);
              panelInsertData.add(labelPassword);
              passwordFieldPassword.setBounds(115,40,100,25);
              panelInsertData.add(passwordFieldPassword);
              labelReTypePassword.setBounds(10,70,100,25);
              panelInsertData.add(labelReTypePassword);
              passwordFieldReTypePassword.setBounds(115,70,100,25);
              panelInsertData.add(passwordFieldReTypePassword);
              labelFirstName.setBounds(10,100,100,25);
              panelInsertData.add(labelFirstName);
              textFieldFirstName.setBounds(115,100,100,25);
              panelInsertData.add(textFieldFirstName);
              labelLastName.setBounds(10,130,100,25);     
              panelInsertData.add(labelLastName);
              textFieldLastName.setBounds(115,130,100,25);
              panelInsertData.add(textFieldLastName);
              labelPhoneNumber.setBounds(10,160,100,25);
              panelInsertData.add(labelPhoneNumber);
              textFieldPhoneNumber.setBounds(115,160,100,25);
              panelInsertData.add(textFieldPhoneNumber);
              labelAddress.setBounds(10,190,100,25);
              panelInsertData.add(labelAddress);
              textAreaAddress.setLineWrap(true);
              scrollPaneAddress.setBounds(115,190,100,75);
              panelInsertData.add(scrollPaneAddress);
              panelInsertData.add(buttonSubmit);          
              buttonSubmit.addActionListener(ClickListener);
              buttonSubmit.setBounds(10,270,205,25);
         public void panelRetieveDataClass()
              panelMain.add(panelRetieveData, "panelRetieveData");               
              panelRetieveData.add(testButton);
         class ClickListen implements ActionListener
              public void actionPerformed(ActionEvent evt)
                   Object obj = evt.getSource();
                   if(obj==buttonLogin)
                        String stringUsername2 = new String(textFieldUsername2.getText());
                        if(stringUsername2.length()==0)
                             JOptionPane.showMessageDialog(frameMain, new String("Username field cannot be left empty"));
                        else
                             String stringPassword1 = new String(passwordFieldPassword1.getPassword());
                             if(stringPassword1.length()==0)
                                  JOptionPane.showMessageDialog(frameMain,new String("Password field cannot be left empty"));
                             else
                                  if(stringUsername2.equals("Administrator"))
                                       if(stringPassword1.equals("Prashant"))
                                            JOptionPane.showMessageDialog(frameMain,new String("Welcome Mr.Prashant"));
                                            c1.show(panelMain, "panelAdministrator");
                                       else
                                            JOptionPane.showMessageDialog(frameMain,new String("Invalid Password"));
                                  else
                                       try
                                            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                                            Connection con2;
                                            con2 = DriverManager.getConnection("jdbc:odbc:prashant","user1","");
                                            PreparedStatement stat2 = con2.prepareStatement("select * from prashant_registration where username = ? AND cpassword = ?");
                                            stat2.setString(1, stringUsername2);
                                            stat2.setString(2, stringPassword1);
                                            ResultSet result;
                                            result = stat2.executeQuery();
                                            if(result.next())
                                                 JOptionPane.showMessageDialog(frameMain,new String("Login successful"));
                                                 stringFirstName2 = result.getString(3);
                                                 labelFirstName1.setText("Welcome "+stringFirstName2);
                                                 new NewClient(stringUsername2);
                                                 c1.show(panelMain, "panelWelcome");
                                            else
                                                 JOptionPane.showMessageDialog(frameMain,new String("Login Failed"));
                                                 textFieldUsername2.setText("");
                                                 passwordFieldPassword1.setText("");
                                       catch(Exception e)
                                            System.out.println("error" +e);
                   if(obj==buttonNewUser)
                        c1.show(panelMain, "panelUsernameSearch");
                        frameMain.setSize(190,100);
                        frameMain.setVisible(true);
                   if(obj==buttonCheckForAvailability)
                        String stringUsername = textFieldUsername.getText();
                        if(stringUsername.length()==0)
                             JOptionPane.showMessageDialog(frameMain,new String("Username cannot be left blank"));
                        else
                             try
                                  Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                                  Connection con1;
                                  con1 = DriverManager.getConnection("jdbc:odbc:prashant","user1","");
                                  PreparedStatement stat1 = con1.prepareStatement("select * from prashant_registration where username = ?");
                                  stat1.setString(1, textFieldUsername.getText());
                                  ResultSet result;
                                  result = stat1.executeQuery();
                                  if(result.next())
                                       JOptionPane.showMessageDialog(frameMain,new String("Username is not Avaiable, Click Ok, to choose someother username"));
                                       textFieldUsername.setText("");
                                  else
                                       JOptionPane.showMessageDialog(frameMain, new String("Username is available, Click Ok, to move to the next step"));
                                       textFieldUsername1.setText(textFieldUsername.getText());
                                       frameMain.setSize(230,330);
                                       frameMain.setVisible(true);
                                       c1.show(panelMain, "panelInsertData");
                             catch(SQLException sqlex)
                                  System.out.println ("SQLState: " + sqlex.getSQLState () + "");
                                  System.out.println ("Message: " + sqlex.getMessage() + "");
                                  System.out.println ("Vendor ErrorCode: " + sqlex.getErrorCode() + "");
                             catch(Exception ex1)
                                  System.out.println("Error ex1" +ex1);
                   if(obj==buttonSubmit)
                        String stringPassword = new String(passwordFieldPassword.getPassword());
                        if(stringPassword.length()==0)
                             JOptionPane.showMessageDialog(frameMain, new String("Password field cannot be left empty"));
                        else
                             String stringReTypePassword = new String(passwordFieldReTypePassword.getPassword());
                             if(stringReTypePassword.length()==0)
                                  JOptionPane.showMessageDialog(frameMain, new String("Please ReType the password"));
                             else
                                  if(stringPassword.equals(stringReTypePassword))
                                       if((new String(textFieldFirstName.getText())).length()==0)
                                            JOptionPane.showMessageDialog(frameMain,new String("FirstName cannot be left blank"));
                                       else
                                            if((new String(textFieldLastName.getText())).length()==0)
                                                 JOptionPane.showMessageDialog(frameMain,new String("LastName cannot be left blank"));
                                            else
                                                 if((new String(textFieldPhoneNumber.getText())).length()==0)
                                                      JOptionPane.showMessageDialog(frameMain,new String("Phone Number cannot be left blank"));
                                                 else
                                                      if((new String(textAreaAddress.getText())).length()==0)
                                                           JOptionPane.showMessageDialog(frameMain,new String("Address Cannot Be Left Blank"));
                                                      else
                                                           try
                                                                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                                                                Connection con;
                                                                con = DriverManager.getConnection("jdbc:odbc:prashant","user1","");
                                                                PreparedStatement stat2 = con.prepareStatement("insert prashant_registration values(?,?,?,?,?,?, getDate(), getDate())");
                                                                stat2.setString(1,textFieldUsername1.getText());
                                                                stat2.setString(2,stringPassword);
                                                                stat2.setString(3,textFieldFirstName.getText());
                                                                stat2.setString(4,textFieldLastName.getText());
                                                                stat2.setString(5,textFieldPhoneNumber.getText());
                                                                stat2.setString(6,textAreaAddress.getText());
                                                                stat2.executeUpdate();
                                                                JOptionPane.showMessageDialog(frameMain,new String("Your Details have been registered"));
                                                                c1.show(panelMain, "panelRetieveData");
                                                           catch(SQLException ex)
                                                                System.out.println ("SQLState: " + ex.getSQLState () + "");
                                                                System.out.println ("Message: " + ex.getMessage() + "");
                                                                System.out.println ("Vendor ErrorCode: " + ex.getErrorCode() + "");
                                                           catch(Exception e)
                                                                JOptionPane.showMessageDialog(frameMain,new String("Error encountered while entering data in the database: "+e));
                                  else
                                       JOptionPane.showMessageDialog(frameMain,new String("Passwords doesnt match"));
         public static void main(String args[])
              Prashant prashant = new Prashant();
              prashant.frameMain();
              prashant.panelMainClass();
              prashant.panelLogin();
              prashant.panelWelcome();
              prashant.panelAdministrator();
              prashant.panelUsernameSearch();
              prashant.panelInsertDataClass();
              prashant.panelRetieveDataClass();
    I dont know what the problem is .... the Client program's frame is EMPTY
    my faculty and my fellow programmers said ...the program is getting hanged or something is getting overlapped
    please try and let me know what could be the possible problem could be .... people in here and myself ..couldnt solve it ... because i am not getting any error message or exception ... so it is a
    **Un-Named Problem**
    I will be really thankful to you ...if u could help me out

    When you post code, please use [code] and [/code] tags as described in Formatting Help on the message entry page. It makes it much easier to read.

  • TestStand sub-sequence naming problem: "Step" column doesn't match "View" menu

    Refer to the attached screenshoot; when I rename the sub-sequences in the "Step" column to the left, these names don't show up in the "View" menu pull-down list shown on the right. What's going on here?
    All my sequences are in one .seq file.
    Attachments:
    Sequence Naming Problem.gif ‏31 KB

    They're not supposed to. When you rename a step, that's not the same thing as renaming a sub-sequence. Say you have a sub-sequence called x, you could have steps called "call sequence x_1", "call sequence x_2", "call sequence x_3", etc., all calling the same sub-sequence. It's no different than the different labels you might have every time you call a pass/fail step.

  • Webservice authentication problem

    Web Service Authentication problem
    Posted: Jun 17, 2005 3:32 PM        Reply      E-mail this post 
    Hi
    I have created a portal service and exposed this service as a webservice. I am consuming this webservice in webdynpro. Portal service contains 2 simple methods putdata() and getdatat().
    When i access the webservice i am getting the following error.
    "javax.xml.rpc.soap.SOAPFaultException: The User Authentification is not correct to access to the Portal Service com.sap.portal.prt.soap.GlobalData or the service was not found"
    My Enterprise portal server is configured for SSO to back end R/3 system. I have checked for portal service availability and it is fine.
    My Webdynpro and Portal are running on different machines. EP is running on AIX with SP11.
    Any help please.
    Regards
    NagaKishore V

    Hi Shahab,
    Can you reproduce the issue if you create 2 applications. One that exposes a secured web service and the other one the one, consumes the web service? This would help to isolate the issue and move forward in case is a bug.
    Thanks,
    Juan Camilo

  • File Naming Problem in Camera Raw 5.4

    Am having a problem when processing Raw images in CS4 using Camera Raw 5.4
    After processing the image I click 'Save Image'.
    In the 'Save Options' box, under 'File Naming' I enter what I want to call the saved image.
    Eg.  'Hooded Top' becomes 'Hooded Top.jpg'
    The file is then saved onto the Desktop.
    Camera Raw seems to be 'stuck' on a previous file name. It will add the same previous file name to the end of the new image.
    You can see in the image that the text to the right of 'Example' also seems to be stuck between two lines of text.
    If I want to call an image 'Hooded Top' it will add an old name
    Eg. 'Hooded Top' will become 'Hooded TopTrack Pants.jpg'     (Track Pants being the previous image name)
    I have been using CS4 trial for a month with no problems. I have just upgraded to CS4 from CS3 today. The program was working fine all morning.
    I have re-installed CS4 and restarted my Mac Pro (OSX 10.5.8). I am using a Canon EOS 5D Mk2.
    Any thoughts appreciated.

    Look in Task Manager.
    One or both of them may be running under Processes.
    Use End Process.
    My advice is not to use the automatic startup for Bridge.

  • Exporting originals naming problem.

    In exporting original files, I chose to have the originals named with the preset of filename+date+time.  But all of the new file names show 2016 as the year instead of 2015, which is when they were taken and what shows up as the information included in the metadata.  Has anyone else had this problem?  Do you have a workaround?  Currently looks like a flaw in Aperture's preset.

    Okay; I didn't read enough of my camera files and settings.  I retract this comment/question since the camera did actually record some of the photos as taken in 2016. So the Date Time preset was working.

  • Webservice proxy problem

    Yesterday i developed a sample webservice application using weblogic paltform
    7.0 release..
    Actually i am trying to connect another weblogic server running in different machine
    through my webservice application..while connecting(sending message) i am getting
    following proxy exceptions..
    first i tried with proxy server(i got proxy exception) then i tried by dial up
    connection(this time ip address is not recognized problem)..Anyway here i enclosed
    my exception..
    weblogic.jws.control.ControlException: ControlException on control investigateControl[This
    proxy is not part of an existing conversation.] at weblogic.knex.control.ControlHandler.invoke(ControlHandler.java:333)
    at $Proxy115.onCreditReportDone($Proxy115.ctrl) at java.lang.reflect.Method.invoke(Native
    Method) at weblogic.knex.dispatcher.DispMethod.invoke(DispMethod.java:189) at
    weblogic.knex.dispatcher.Invocable.invoke(Invocable.java:490) at weblogic.knex.bean.WebBean.invokeBase(WebBean.java:190)
    at weblogic.knex.bean.WebServiceBean.invoke(WebServiceBean.java:68) at weblogic.knex.bean.WebServiceBean_sdf2pw_EOImpl.invoke(WebServiceBean_sdf2pw_EOImpl.java:46)
    at weblogic.knex.bean.WebDispatcherBean.invoke(WebDispatcherBean.java:103) at
    weblogic.knex.bean.RemoteDispatcherBean.invoke(RemoteDispatcherBean.java:117)
    at weblogic.knex.bean.RemoteDispatcherBean_9hm9uw_EOImpl.invoke(RemoteDispatcherBean_9hm9uw_EOImpl.java:100)
    at weblogic.knex.bean.RemoteDispatcherBean_9hm9uw_E! OImpl_WLSkel.invoke(Unknown
    Source) at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:159)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:262)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:229)
    at weblogic.knex.bean.RemoteDispatcherBean_9hm9uw_EOImpl_WLStub.invoke(Unknown
    Source) at weblogic.knex.dispatcher.Dispatcher.remoteDispatch(Dispatcher.java:111)
    at weblogic.knex.dispatcher.Dispatcher.dispatch(Dispatcher.java:72) at weblogic.knex.dispatcher.HttpServer.doPost(HttpServer.java:256)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:945)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:332)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:242)
    at weblogic.se! rvlet.internal.WebAppServletContext$ServletInvocationAction.r!
    un(WebAp pServletContext.java:5360) at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:721)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3043)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2468)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)

    Please post this to the Workshop newsgroup.
    Rangarajan wrote:
    i am also getting same problem..if anyone knew plz help me out..
    weblogic.jws.control.ControlException: ControlException on control investigateControl[This
    proxy is not part of an existing conversation.] at weblogic.knex.control.ControlHandler.invoke(ControlHandler.java:333)
    at $Proxy115.onCreditReportDone($Proxy115.ctrl) at java.lang.reflect.Method.invoke(Native
    Method) at weblogic.knex.dispatcher.DispMethod.invoke(DispMethod.java:189) at
    weblogic.knex.dispatcher.Invocable.invoke(Invocable.java:490) at weblogic.knex.bean.WebBean.invokeBase(WebBean.java:190)
    at weblogic.knex.bean.WebServiceBean.invoke(WebServiceBean.java:68) at weblogic.knex.bean.WebServiceBean_sdf2pw_EOImpl.invoke(WebServiceBean_sdf2pw_EOImpl.java:46)
    at weblogic.knex.bean.WebDispatcherBean.invoke(WebDispatcherBean.java:103) at
    weblogic.knex.bean.RemoteDispatcherBean.invoke(RemoteDispatcherBean.java:117)
    at weblogic.knex.bean.RemoteDispatcherBean_9hm9uw_EOImpl.invoke(RemoteDispatcherBean_9hm9uw_EOImpl.java:100)
    at weblogic.knex.bean.RemoteDispatcherBean_9hm9uw_E! OImpl_WLSkel.invoke(Unknown
    Source) at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:159)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:262)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:229)
    at weblogic.knex.bean.RemoteDispatcherBean_9hm9uw_EOImpl_WLStub.invoke(Unknown
    Source) at weblogic.knex.dispatcher.Dispatcher.remoteDispatch(Dispatcher.java:111)
    at weblogic.knex.dispatcher.Dispatcher.dispatch(Dispatcher.java:72) at weblogic.knex.dispatcher.HttpServer.doPost(HttpServer.java:256)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:945)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:332)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:242)
    at weblogic.se! rvlet.internal.WebAppServletContext$ServletInvocationAction.r!
    un(WebAp pServletContext.java:5360) at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:721)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3043)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2468)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)--
    Rajesh Mirchandani
    Developer Relations Engineer
    BEA Support

  • Webservice response problems

    hi,
    Iam trying to get my query webservice to function, but iam
    having severe problems. No information can be found to solve my
    problem, so Iam hoping some here can assist me in solving my
    problem.
    Iam getting errors (
    RPC Fault faultString="Unexpected parameter 'queryResponse'
    found in input arguments." faultCode="Client.Input"
    faultDetail="null"]
    at
    mx.rpc.soap::Operation/mx.rpc.soap:Operation::createFaultEvent()
    at mx.rpc.soap::Operation/
    http://www.adobe.com/2006/flex/mx/internal::invokePendingCall()
    at mx.rpc.soap::Operation/send()
    at Function/
    http://adobe.com/AS3/2006/builtin::apply()
    at mx.rpc.soap.mxml::Operation/send()
    at AlfrescoQuery/___Button1_click()
    I have tried everything I can think of, but to no avail...
    below is my flex code Iam using:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.rpc.events.ResultEvent;
    public function queryResultHandler(event:ResultEvent):void {
    ]]>
    </mx:Script>
    <mx:WebService id="alfServ"
    wsdl="
    http://myalfresco/alfresco/wsdl/repository-service.wsdl"
    endpointURI="http:/myalfresco8/alfresco/api/RepositoryService">
    <mx:operation name="query"
    result="queryResultHandler(event)">
    <mx:request>
    <store>
    <ns1:scheme xmlns:ns1="
    http://www.alfresco.org/ws/model/content/1.0">workspace</ns1:scheme>
    <ns2:address xmlns:ns2="
    http://www.alfresco.org/ws/model/content/1.0">SpacesStore</ns2:address>
    </store>
    <query>
    <ns3:language xmlns:ns3="
    http://www.alfresco.org/ws/model/content/1.0">lucene</ns3:language>
    <ns4:statement xmlns:ns4="
    http://www.alfresco.org/ws/model/content/1.0">TEXT:'alfresco
    development team'</ns4:statement>
    </query>
    <includeMetaData>false</includeMetaData>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    <mx:Button x="88" y="45" label="Button"
    click="alfServ.query.send()"/>
    </mx:Application>
    But this does not work... HELP ME PLEASE....
    below included soap calls for the request and the response
    that is recieved....
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="
    http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="
    http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <query xmlns="
    http://www.alfresco.org/ws/service/repository/1.0">
    <store>
    <ns1:scheme xmlns:ns1="
    http://www.alfresco.org/ws/model/content/1.0">workspace</ns1:scheme>
    <ns2:address xmlns:ns2="
    http://www.alfresco.org/ws/model/content/1.0">SpacesStore</ns2:address>
    </store>
    <query>
    <ns3:language xmlns:ns3="
    http://www.alfresco.org/ws/model/content/1.0">lucene</ns3:language>
    <ns4:statement xmlns:ns4="
    http://www.alfresco.org/ws/model/content/1.0">TEXT:'alfresco
    development team'</ns4:statement>
    </query>
    <includeMetaData>false</includeMetaData>
    </query>
    </soapenv:Body>
    </soapenv:Envelope>
    RESPONSE
    <soapenv:Envelope
    xmlns:soapenv="
    http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="
    http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <queryResponse
    xmlns="
    http://www.alfresco.org/ws/service/repository/1.0">
    <queryReturn>
    <querySession>
    52dbfef8-306d-11dc-9782-6160ed7fcc06
    </querySession>
    <resultSet>
    <ns1:rows
    xmlns:ns1="
    http://www.alfresco.org/ws/model/content/1.0">
    <ns1:rowIndex>0</ns1:rowIndex>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/system/1.0}store-protocol
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>workspace</ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/content/1.0}modifier
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>admin</ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/content/1.0}name
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>SampleContent.txt</ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/system/1.0}node-dbid
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>2121</ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/content/1.0}content
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>
    contentUrl=store://2007/7/12/13/42/05a414e3-306d-11dc-9782-6160ed7fcc06.bin|mimetype=text /plain|size=68|encoding=UTF-8|locale=en_US_
    </ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/content/1.0}modified
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>
    2007-07-12T13:42:51.895+02:00
    </ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/content/1.0}created
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>
    2007-07-12T13:42:51.286+02:00
    </ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/system/1.0}store-identifier
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>SpacesStore</ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/system/1.0}node-uuid
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>
    054727cd-306d-11dc-9782-6160ed7fcc06
    </ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/content/1.0}creator
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>admin</ns1:value>
    </ns1:columns>
    <ns1:columns>
    <ns1:name>
    http://www.alfresco.org/model/content/1.0}path
    </ns1:name>
    <ns1:isMultiValue>false</ns1:isMultiValue>
    <ns1:value>
    http://www.alfresco.org/model/application/1.0}company_home/{http://www.alfresco.org/model/ content/1.0}sample_folder/{http://www.alfresco.org/model/content/1.0}sample_content
    </ns1:value>
    </ns1:columns>
    <ns1:score>0.38761</ns1:score>
    <ns1:node>
    <ns1:id>
    054727cd-306d-11dc-9782-6160ed7fcc06
    </ns1:id>
    <ns1:type>
    http://www.alfresco.org/model/content/1.0}content
    </ns1:type>
    </ns1:node>
    </ns1:rows>
    <ns2:totalRowCount
    xmlns:ns2="
    http://www.alfresco.org/ws/model/content/1.0">
    1
    </ns2:totalRowCount>
    </resultSet>
    </queryReturn>
    </queryResponse>
    </soapenv:Body>
    </soapenv:Envelope>

    Anybody any idears ???????????

  • Webservice Import Problem

    Hi,
    I have used the NWDS Wizard to generate a webservice proxy. The Service is "SAP Server" and the runtime is "SAP NetWeaver". I have a service project with the EJBs and a surrounding EAR project to deploy the webservice.
    I have generated a webservice-interface. One
    @WebMethod(operationName="getById")
    and one
    @WebMethod(operationName="getDummy")
    getDummy only returns new String();
    this works fine. But getById calls a ABAP Webservice via the generated proxy. I inject the reference:
    @WebServiceRef(name="ZALINKRFC_Service")
    ZALINKRFC_Service service;
    get the port
    ZALINKRFCWD port = service.getPort(ZALINKRFCWD.class);
    and call port.rfcfunction(...)
    I then get the error
    com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 20 counts of IllegalAnnotationExceptions
    com.sap.document.sap.rfc.functions.ALINKRFCTABLEGET is an interface, and JAXB can't handle interfaces. this problem is
    related to the following location: at com.sap.document.sap.rfc.functions.ALINKRFCTABLEGET
    com.sap.document.sap.rfc.functions.ALINKRFCTABLEGET does not have a no-arg default constructor. this problem is
    related to the following location: at com.sap.document.sap.rfc.functions.ALINKRFCTABLEGET
    com.sap.document.sap.rfc.functions.TABLEOFTBL1024 is an interface, and JAXB can't handle interfaces
    I have absolutely no idea what the problem is. All the mentioned classes were automatically generated by NWDS.
    any ideas?
    thanks in advance

    Please try with IP
    Regards, Anilkumar

  • Naming Problem in 6670

    Hi All,
    I have Nokia 6670 phone and I am getting naming convention problem. The name displays as Last Name and then First Name when I recieve any message.
    I have formatted sevral times with both way Hard & Soft but still same.
    Please help me out.
    Your Friend

    Assuming that you have settings in contacts set to First name Last name, try using Ovi suite to check your contacts, and make sure they are correctly entered in the correct fields. If the contact list was transferred from a previous phone , some may be in the wrong format. If the are all ok in Ovi suite, sync contacts and choose Ovi suite as the choice to keep if any conflicts appear.
    Good Luck
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Webservice Migration Problems (WLS 9.2 - WLS 10.3.2)

    Hi,
    we're upgrading our weblogic server from version 9.2 to 10.3.2. Everything runs just fine in my testing environment except for the webservices we have.
    We have 6 webservices (JAX-RPC) which use a generic set of xml schema types to which each webservice offers specialized types that extend the supertype. Here comes the problem: The ant tasks wsdlc and clientgen from wls 9.2 generates java classes that do extend from the superclass. Unfortunatley the same call from the wls 10.3.2 results in a loss of class hierarchy.
    Example:
    <xs:complexType name="personinfo">
    <xs:sequence>
    <xs:element name="firstname" type="xs:string"/>
    <xs:element name="lastname" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="fullpersoninfo">
    <xs:complexContent>
    <xs:extension base="personinfo">
    <xs:sequence>
    <xs:element name="address" type="xs:string"/>
    <xs:element name="city" type="xs:string"/>
    <xs:element name="country" type="xs:string"/>
    </xs:sequence>
    </xs:extension>
    </xs:complexContent>
    </xs:complexType>
    On WLS 9.2 this results in the following:
    class Personinfo {
    class Fullpersoninfo extends Personinfo {
    On WLS 10.3.2. the result differs:
    class Personinfo implements Serializable {
    class Fullpersoninfo implements Serializable {
    Is there any way to tell the wls 10.3.2 to generate a jax-rpc webservice that obeys the extension directive?
    I look forward to your replies =)
    Regards,
    Johannes Bialek

    Hi Jay,
    thanks for the reply. Unfortunately using the other ant task doesn't seem to help. This is a WLS8.2 Version of Clientgen (which used the attribute "clientjar" rather than "destDir"/"destFile" and expected "packagename" as a required parameter). I tried id and it seems to have a couple of problems with schema files imported in included schema files. I worked around this by importing in the schema files from the wsdl itself, but now I get a "weblogic.xml.schema.binding.BindingException: ERROR: during code compilation".
    Full stack trace:
    weblogic.xml.schema.binding.BindingException: ERROR: during code compilation
    at weblogic.xml.schema.binding.internal.codegen.Compiler.invoke_compiler(Compiler.java:581)
    at weblogic.xml.schema.binding.internal.codegen.Compiler.compile_descriptors(Compiler.java:380)
    at weblogic.xml.schema.binding.internal.codegen.Compiler.compile(Compiler.java:290)
    at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.addTypesInSchemas(XSDTypeMappingBuilder.java:140)
    at weblogic.xml.schema.binding.internal.TypeMappingBuilderBase.processSchemaTypes(TypeMappingBuilderBase.java:310)
    at weblogic.webservice.tools.build.internal.Schema2JavaImpl.doTypeMapping(Schema2JavaImpl.java:317)
    at weblogic.webservice.tools.build.internal.Schema2JavaImpl.run(Schema2JavaImpl.java:204)
    at weblogic.webservice.tools.build.internal.WSDL2JavaImpl.run(WSDL2JavaImpl.java:258)
    at weblogic.webservice.tools.build.internal.ClientGenImpl.getTypeMappingFromWSDL(ClientGenImpl.java:747)
    at weblogic.webservice.tools.build.internal.ClientGenImpl.doClientGenFromWsdl(ClientGenImpl.java:419)
    at weblogic.webservice.tools.build.internal.ClientGenImpl.run(ClientGenImpl.java:359)
    at weblogic.ant.taskdefs.webservices.clientgen.ClientGenTask.doClientGen(ClientGenTask.java:375)
    at weblogic.ant.taskdefs.webservices.clientgen.ClientGenTask.execute(ClientGenTask.java:229)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
    at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
    at org.apache.tools.ant.Main.runBuild(Main.java:758)
    at org.apache.tools.ant.Main.startAnt(Main.java:217)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
    Caused by: java.io.IOException: Compiler failed executable.exec: null
    at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:493)
    at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:332)
    at weblogic.xml.schema.binding.internal.codegen.Compiler.invoke_compiler(Compiler.java:575)
    ... 41 more
    Shouldn't we be able to use a 9.2 weblogic.jar for creating webservices that run on a 10.3.2?
    Regards,
    Johannes

  • Naming problem

    Hello,
    Just wondering if anyone can help me, I have come across an
    annoying problem in my code and i dont know how to fix it :S
    Basically I have a load of movie clips that I am containing
    in the library and loading onto the stage via the addChild();
    function in action script on the timeline.
    In this i assign a name to the movie clip, i.e. var
    movieClip1_mc = new mcMovieClip1(); later on i wish to reference
    this to test a condition, for example; if(event.currentTarget.name
    == "movieClip1_mc").......blah blah
    however the only way i can get this to work is if i set up a
    trace to find out the instance names of the movie clip, which comes
    back with "instance34" for example, if i replace "movieClip1_mc"
    with "instance34" the code works fine.
    However my only problem is that the instance names change
    whenever i add another movie clip for example, is there no way i
    can test the condition using the name i have already assigned the
    movie clip???
    Any help would be gratefully appreciated :D
    Many many thanks
    Jude :D

    Hello,
    Okay so my problem, I have movie clips that I am loading onto
    the stage dynamically through action script using the addChild
    function. I have named these movie clips i.e.
    movieClip1_mc.name = "movieClip1_mc";
    Within this movie clip however are other movie clips, these
    are on the timeline of the mc, i.e. movieClip1_mc.within1_mc
    These are named in the properties box on the stage. So
    everything is named as it should be as far as I am aware, I have
    tried loading the second movie clips dynamically but it doesnt seem
    to make any difference, i.e. movieClip1_mc.addChild(within1_mc);
    within1_mc.name = "within1_mc";
    So that is the structure, when I set up some event listeners
    with trace values, the name is visible on rollover, but when the
    movie clip becomes the drop target it isnt reckonised.
    For example the following trace brings back the movie clip
    name assigned:
    trace(event.target.name);
    However when another movie clip is dragged over the mc in
    question the name is not known i.e.
    trace(event.target.dropTarget.name);
    result "instance23";
    is there something i need to do to the movie clip to make it
    a recognisable drop target??
    Many thanks for your help
    It is greatly appreciated :D
    Jude

  • Subclips sorting/naming problem

    when i split a long captured clip into subclips with the dv-start-stop thingie, i get a bunch of subclips that are named something like
    "subclip 1, subclip 2, subclip 3" etc.
    problem is, when i open the browser, the sorting does something like
    subclip 1
    subclip 11
    subclip 12
    subclip 19
    subclip 2
    subclip 20
    subclip 21
    which is really quite confusing.
    is there a way to fix this, or change it to include leading 0s when naming subclips?
    thanks

    okay, thanks for the CatDV tip, i'll look into it later tonight. first glance looks promising, though.
    second, i have 30 hours of tapes to capture, and the dvcam deck is a rental.
    third, logging and THEN capturing from tape is tedious.
    so, i got am extra hard drive (i'm almost at the terrabyte barrier , and load everything at once.
    THEN i do scene detection, and end up with about 300 scenes per tape.
    now to weed out the stuff i don't want, i'll go through the browser items one at a time. and it's here that this weird sorting gives me headaches, since i'm looking at the tape, i know the sequence of events as they took place, i klick around and then i jump ahead an hour, then back again.
    if i can't add a 0, why can't i tell FCP to go by numbers and interpret numbers as such.
    anyways ... i guess there's not really a solution except for third party software like CatDV.
    thanks for your replies, guys.

  • Webservice path problem

    HI,
    When I access data from server using webservice I have to
    specify the path of wsdl. There is a problem with that
    For example If I give the path as
    http://www.abc.com/service.asmx?WSDL,
    I cant access the html page containing that swf movie with out
    using "www" infront of the url. If I access the html page just like
    http://abc.com/test.html its
    throwing an error.
    The vice versa is also making problem..
    If the service is in the same domain I can give relative path
    to avoid this problem, but how can we solve this problem if the
    service is in a different domain?
    Please help
    Anz

    http://blog.flexexamples.com/2007/10/29/passing-parameters-to-an-httpservice/

  • Webservice binding problem

    Hi,
    I created a webservice. In SOAMANAGER configured service. In overview tab, I selected my configured service and clicked on "Opnn WSDL document for selected binding". But its not calling any other screen. And I tried to test the webservice by clicking on "Open Web Service navigator for selected binding". Its not connecting WSNavigator. What is the problem here? Suggest me how to solve it.
    Thanks & Regards,
    Dhanunjaya Reddy

    Hi,
    Try applying SAP Note 1263112.
    Find the below link which will be helpful as this can be one of the reasons:
    soamanager referencing wrong port number in wsdl document
    Thanks
    Dhwani

Maybe you are looking for