Automated Webservice problem

hi all
I am new to BPM.I was trying a example with two human activities and a automated activity.
I am using webservice as my automated activity. I am passing some parameters to web service through a human activity and capturing webservice output in another human activity . The problem is my web service is not getting executed .The default  trace shows "There is no hashtable registered for java.lang.String class. Maybe there is a class loader problem."
Please help in resolving this.
Thanks
Monika

Hi Monika,
Did you have a look at "Manage Processes" in NWA to verify that your process started correctly - well in case you were able to access the first human activity then this should be the case. Nevertheless this perspective should list your process. Once selected you can find a tab called "History" at the bottom of the page. Switch the view to "advanced" and see the result of the service call. If it was successful the history will log it. If there was some error either the history will log it or the problem will be part of the default trace.
I think the "hashtable + String" message you mentioned is not directly related to this problem.
Cheers,
Martin

Similar Messages

  • WebService problem in java

    Hi All,
    Me facing a problem related to java web services.I am using jdk-6u3,Eclipse and Tomcat 5.0.I am making the web service of WsEpp Class shown below
    @WebService
    public class WsEpp
    EppService objcls;
    @WebMethod
    public int registerDomain(String ACTIVITY_ID,String DOMAIN_NAME,String DOMHOSTNAME1,
    String DOMSERVER_IP_ADDRESS1,String DOMHOSTNAME2,String DOMSERVER_IP_ADDRESS2,
    String DOM_MX ,String DOM_MX_IP,String DOM_REGISTRAR,String DOM_RCONTACTID,
    String DOM_ACONTACTID,String DOM_BCONTACTID,String DOM_TCONTACTID,String DOM_AUTHCODE,
    String DOM_CURRENT_REGISTRAR,String DOM_AUTHORIZATION_CODE,String DOM_REG_FIRSTNAME,
    String DOM_REG_LASTNAME,String DOM_REG_EMAIL,String DOM_REG_COMPANY_NAME,String DOM_REG_ADDRESS,String DOM_REG_CITY,String DOM_REG_COUNTRY,String DOM_REG_STATE,String DOM_REG_ZIP,String DOM_REG_PHONE,String DOM_REG_COUNTRY_CODE,String DOM_REG_AREA_CODE,String DOM_REG_FAX,String DOM_REG_MOBILE,String DOM_ADM_FIRST_NAME,String DOM_ADM_LAST_NAME,String DOM_ADM_EMAIL,String DOM_ADM_ADDRESS,String DOM_ADM_CITY,String DOM_ADM_COUNTRY,String DOM_ADM_STATE,String DOM_ADM_ZIP,String DOM_ADM_PHONE,String DOM_ADM_COUNTRY_CODE ,String DOM_ADM_AREA_CODE,String DOM_ADM_FAX,String DOM_ADM_MOBILE,String DOM_BILL_FIRST_NAME,String DOM_BILL_LAST_NAME,String DOM_BILL_EMAIL,String DOM_BILL_ADDRESS,String DOM_BILL_CITY,String DOM_BILL_COUNTRY,String DOM_BILL_STATE,String DOM_BILL_ZIP,String DOM_BILL_PHONE,String DOM_BILL_COUNTRY_CODE,String DOM_BILL_AREA_CODE,String DOM_BILL_FAX ,
    String DOM_BILL_MOBILE,String DOM_TECH_FIRST_NAME,String DOM_TECH_LAST_NAME,String DOM_TECH_EMAIL,String DOM_TECH_ADDRESS,String DOM_TECH_CITY,String DOM_TECH_COUNTRY,String DOM_TECH_STATE,String DOM_TECH_ZIP,String DOM_TECH_PHONE,String DOM_TECH_COUNTRY_CODE,String DOM_TECH_AREA_CODE,String DOM_TECH_FAX,String DOM_TECH_MOBILE ,int DURATION)
    objcls=new EppService();
    int result=objcls.createDomain(ACTIVITY_ID,DOMAIN_NAME,DOMHOSTNAME1,DOMSERVER_IP_ADDRESS1,
    DOMHOSTNAME2,DOMSERVER_IP_ADDRESS2,DOM_MX,DOM_MX_IP,DOM_REGISTRAR,
    DOM_RCONTACTID,DOM_ACONTACTID,DOM_BCONTACTID,DOM_TCONTACTID,
    DOM_AUTHCODE,DOM_CURRENT_REGISTRAR,DOM_AUTHORIZATION_CODE,
    DOM_REG_FIRSTNAME,DOM_REG_LASTNAME,DOM_REG_EMAIL,DOM_REG_COMPANY_NAME,
    DOM_REG_ADDRESS,DOM_REG_CITY,DOM_REG_COUNTRY,DOM_REG_STATE,DOM_REG_ZIP,
    DOM_REG_PHONE,DOM_REG_COUNTRY_CODE,DOM_REG_AREA_CODE,DOM_REG_FAX,
    DOM_REG_MOBILE,DOM_ADM_FIRST_NAME,DOM_ADM_LAST_NAME,DOM_ADM_EMAIL,
    DOM_ADM_ADDRESS,DOM_ADM_CITY,DOM_ADM_COUNTRY,DOM_ADM_STATE,
    DOM_ADM_ZIP,DOM_ADM_PHONE,DOM_ADM_COUNTRY_CODE,DOM_ADM_AREA_CODE,
    DOM_ADM_FAX,DOM_ADM_MOBILE,DOM_BILL_FIRST_NAME,DOM_BILL_LAST_NAME,
    DOM_BILL_EMAIL,DOM_BILL_ADDRESS,DOM_BILL_CITY,DOM_BILL_COUNTRY,
    DOM_BILL_STATE,DOM_BILL_ZIP,DOM_BILL_PHONE,DOM_BILL_COUNTRY_CODE,
    DOM_BILL_AREA_CODE,DOM_BILL_FAX,DOM_BILL_MOBILE,DOM_TECH_FIRST_NAME,
    DOM_TECH_LAST_NAME,DOM_TECH_EMAIL,DOM_TECH_ADDRESS,DOM_TECH_CITY,
    DOM_TECH_COUNTRY,DOM_TECH_STATE,DOM_TECH_ZIP,DOM_TECH_PHONE,DOM_TECH_COUNTRY_CODE,
    DOM_TECH_AREA_CODE,DOM_TECH_FAX,DOM_TECH_MOBILE,DURATION);
    return result;
    The EppService Class is shown below
    public class EppService {
    public int createDomain(String ACTIVITY_ID,String DOMAIN_NAME,String DOMHOSTNAME1,
    String DOMSERVER_IP_ADDRESS1,String DOMHOSTNAME2,String DOMSERVER_IP_ADDRESS2,
    String DOM_MX ,String DOM_MX_IP,String DOM_REGISTRAR,String DOM_RCONTACTID,
    String DOM_ACONTACTID,String DOM_BCONTACTID,String DOM_TCONTACTID,String DOM_AUTHCODE,
    String DOM_CURRENT_REGISTRAR,String DOM_AUTHORIZATION_CODE,String DOM_REG_FIRSTNAME,
    String DOM_REG_LASTNAME,String DOM_REG_EMAIL,String DOM_REG_COMPANY_NAME,String DOM_REG_ADDRESS,String DOM_REG_CITY,String DOM_REG_COUNTRY,String DOM_REG_STATE,String DOM_REG_ZIP,String DOM_REG_PHONE,
    String DOM_REG_COUNTRY_CODE,String DOM_REG_AREA_CODE,String DOM_REG_FAX,String DOM_REG_MOBILE,String DOM_ADM_FIRST_NAME,String DOM_ADM_LAST_NAME,String DOM_ADM_EMAIL,String DOM_ADM_ADDRESS,String DOM_ADM_CITY,String DOM_ADM_COUNTRY,String DOM_ADM_STATE,String DOM_ADM_ZIP,String DOM_ADM_PHONE,
    String DOM_ADM_COUNTRY_CODE ,String DOM_ADM_AREA_CODE,String DOM_ADM_FAX,String DOM_ADM_MOBILE,String DOM_BILL_FIRST_NAME,String DOM_BILL_LAST_NAME,String DOM_BILL_EMAIL,String DOM_BILL_ADDRESS,String DOM_BILL_CITY,String DOM_BILL_COUNTRY,String DOM_BILL_STATE,String DOM_BILL_ZIP,String DOM_BILL_PHONE,String DOM_BILL_COUNTRY_CODE,String DOM_BILL_AREA_CODE,String DOM_BILL_FAX ,
    String DOM_BILL_MOBILE,String DOM_TECH_FIRST_NAME,String DOM_TECH_LAST_NAME,String DOM_TECH_EMAIL,String DOM_TECH_ADDRESS,String DOM_TECH_CITY,String DOM_TECH_COUNTRY,String DOM_TECH_STATE,String DOM_TECH_ZIP,String DOM_TECH_PHONE,String DOM_TECH_COUNTRY_CODE,String DOM_TECH_AREA_CODE,String DOM_TECH_FAX,String DOM_TECH_MOBILE ,int DURATION)
    int x;
    n4i.PrintClass obj_PrintClass= new n4i.PrintClass();
    x =obj_PrintClass.printData(DURATION);
    System.out.println(x);
    return x;
    The PrintClass is as shown below
    public class PrintClass {
    public int printData(int type)
    int str = 0;
    PrintLib obj_PrintLib = new PrintLib();
    switch (type)
    case 1: str = obj_PrintLib.returnTest1("","","","","","","","",
    "","","","","","","","","","","","","",0);
    break;
    case 2: str = obj_PrintLib.returnTest2("","","","","","","","",
    "","","","","","","","","","","","","",0);
    break;
    case 3: str = obj_PrintLib.returnData(3);
    break;
    default: str = 9;
    return str;
    The PrintLib is as shown below
    public class PrintLib {
    private static epp_Command command_data = null;
    private static epp_CheckResult[] check_results = null;
    private static Format df = new SimpleDateFormat(Globals.DATE_TIME_FORMAT);
    public PrintLib()
    System.out.println("CONSTRUCTOR 1");
    this.command_data = new epp_Command();
    System.out.println("CONSTRUCTOR 2");
    public int returnTest1(String ACTIVITY_ID,String DOMAIN_NAME,String DOMHOSTNAME1,
    String DOMSERVER_IP_ADDRESS1,String DOMHOSTNAME2,String DOMSERVER_IP_ADDRESS2,
    String DOM_MX ,String DOM_MX_IP,String DOM_REGISTRAR,String DOM_RCONTACTID,
    String DOM_ACONTACTID,String DOM_BCONTACTID,String DOM_TCONTACTID,String DOM_AUTHCODE,
    String DOM_CURRENT_REGISTRAR,String DOM_AUTHORIZATION_CODE,String DOM_REG_FIRSTNAME,
    String DOM_REG_LASTNAME,String DOM_REG_EMAIL,String DOM_REG_COMPANY_NAME,String DOM_REG_ADDRESS,String DOM_REG_CITY,String DOM_REG_COUNTRY,String DOM_REG_STATE,String DOM_REG_ZIP,String DOM_REG_PHONE,
    String DOM_REG_COUNTRY_CODE,String DOM_REG_AREA_CODE,String DOM_REG_FAX,String DOM_REG_MOBILE,String DOM_ADM_FIRST_NAME,String DOM_ADM_LAST_NAME,String DOM_ADM_EMAIL,String DOM_ADM_ADDRESS,String DOM_ADM_CITY,String DOM_ADM_COUNTRY,String DOM_ADM_STATE,String DOM_ADM_ZIP,String DOM_ADM_PHONE,
    String DOM_ADM_COUNTRY_CODE ,String DOM_ADM_AREA_CODE,String DOM_ADM_FAX,String DOM_ADM_MOBILE,String DOM_BILL_FIRST_NAME,String DOM_BILL_LAST_NAME,String DOM_BILL_EMAIL,String DOM_BILL_ADDRESS,String DOM_BILL_CITY,String DOM_BILL_COUNTRY,String DOM_BILL_STATE,String DOM_BILL_ZIP,String DOM_BILL_PHONE,String DOM_BILL_COUNTRY_CODE,String DOM_BILL_AREA_CODE,String DOM_BILL_FAX ,
    String DOM_BILL_MOBILE,String DOM_TECH_FIRST_NAME,String DOM_TECH_LAST_NAME,String DOM_TECH_EMAIL,String DOM_TECH_ADDRESS,String DOM_TECH_CITY,String DOM_TECH_COUNTRY,String DOM_TECH_STATE,String DOM_TECH_ZIP,String DOM_TECH_PHONE,String DOM_TECH_COUNTRY_CODE,String DOM_TECH_AREA_CODE,String DOM_TECH_FAX,String DOM_TECH_MOBILE,int DURATION)
    return 1;
    public int returnTest2(String ACTIVITY_ID,String DOMAIN_NAME,String DOMHOSTNAME1,
    String DOMSERVER_IP_ADDRESS1,String DOMHOSTNAME2,String DOMSERVER_IP_ADDRESS2,
    String DOM_MX ,String DOM_MX_IP,String DOM_REGISTRAR,String DOM_RCONTACTID,
    String DOM_ACONTACTID,String DOM_BCONTACTID,String DOM_TCONTACTID,String DOM_AUTHCODE,
    String DOM_CURRENT_REGISTRAR,String DOM_AUTHORIZATION_CODE,String DOM_REG_FIRSTNAME,
    String DOM_REG_LASTNAME,String DOM_REG_EMAIL,String DOM_REG_COMPANY_NAME,String DOM_REG_ADDRESS,String DOM_REG_CITY,String DOM_REG_COUNTRY,String DOM_REG_STATE,String DOM_REG_ZIP,String DOM_REG_PHONE,
    String DOM_REG_COUNTRY_CODE,String DOM_REG_AREA_CODE,String DOM_REG_FAX,String DOM_REG_MOBILE,String DOM_ADM_FIRST_NAME,String DOM_ADM_LAST_NAME,String DOM_ADM_EMAIL,String DOM_ADM_ADDRESS,String DOM_ADM_CITY,String DOM_ADM_COUNTRY,String DOM_ADM_STATE,String DOM_ADM_ZIP,String DOM_ADM_PHONE,
    String DOM_ADM_COUNTRY_CODE ,String DOM_ADM_AREA_CODE,String DOM_ADM_FAX,String DOM_ADM_MOBILE,String DOM_BILL_FIRST_NAME,String DOM_BILL_LAST_NAME,String DOM_BILL_EMAIL,String DOM_BILL_ADDRESS,String DOM_BILL_CITY,String DOM_BILL_COUNTRY,String DOM_BILL_STATE,String DOM_BILL_ZIP,
    String DOM_BILL_PHONE,String DOM_BILL_COUNTRY_CODE,String DOM_BILL_AREA_CODE,String DOM_BILL_FAX ,String DOM_BILL_MOBILE,String DOM_TECH_FIRST_NAME,String DOM_TECH_LAST_NAME,String DOM_TECH_EMAIL,String DOM_TECH_ADDRESS,String DOM_TECH_CITY,String DOM_TECH_COUNTRY,String DOM_TECH_STATE,
    String DOM_TECH_ZIP,String DOM_TECH_PHONE,String DOM_TECH_COUNTRY_CODE,
    String DOM_TECH_AREA_CODE,String DOM_TECH_FAX,String DOM_TECH_MOBILE,int DURATION)
    return 2;
    public int returnData(int data)
    return data;
    The generated WSDL is as shown below
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="http://DefaultNamespace" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://DefaultNamespace" xmlns:intf="http://DefaultNamespace" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <!--WSDL created by Apache Axis version: 1.4
    Built on Apr 22, 2006 (06:55:48 PDT)-->
    <wsdl:types>
    <schema elementFormDefault="qualified" targetNamespace="http://DefaultNamespace" xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="registerDomain">
    <complexType>
    <sequence>
    <element name="ACTIVITY_ID" type="xsd:string"/>
    <element name="DOMAIN_NAME" type="xsd:string"/>
    <element name="DOMHOSTNAME1" type="xsd:string"/>
    <element name="DOMSERVER_IP_ADDRESS1" type="xsd:string"/>
    <element name="DOMHOSTNAME2" type="xsd:string"/>
    <element name="DOMSERVER_IP_ADDRESS2" type="xsd:string"/>
    <element name="DOM_MX" type="xsd:string"/>
    <element name="DOM_MX_IP" type="xsd:string"/>
    <element name="DOM_REGISTRAR" type="xsd:string"/>
    <element name="DOM_RCONTACTID" type="xsd:string"/>
    <element name="DOM_ACONTACTID" type="xsd:string"/>
    <element name="DOM_BCONTACTID" type="xsd:string"/>
    <element name="DOM_TCONTACTID" type="xsd:string"/>
    <element name="DOM_AUTHCODE" type="xsd:string"/>
    <element name="DOM_CURRENT_REGISTRAR" type="xsd:string"/>
    <element name="DOM_AUTHORIZATION_CODE" type="xsd:string"/>
    <element name="DOM_REG_FIRSTNAME" type="xsd:string"/>
    <element name="DOM_REG_LASTNAME" type="xsd:string"/>
    <element name="DOM_REG_EMAIL" type="xsd:string"/>
    <element name="DOM_REG_COMPANY_NAME" type="xsd:string"/>
    <element name="DOM_REG_ADDRESS" type="xsd:string"/>
    <element name="DOM_REG_CITY" type="xsd:string"/>
    <element name="DOM_REG_COUNTRY" type="xsd:string"/>
    <element name="DOM_REG_STATE" type="xsd:string"/>
    <element name="DOM_REG_ZIP" type="xsd:string"/>
    <element name="DOM_REG_PHONE" type="xsd:string"/>
    <element name="DOM_REG_COUNTRY_CODE" type="xsd:string"/>
    <element name="DOM_REG_AREA_CODE" type="xsd:string"/>
    <element name="DOM_REG_FAX" type="xsd:string"/>
    <element name="DOM_REG_MOBILE" type="xsd:string"/>
    <element name="DOM_ADM_FIRST_NAME" type="xsd:string"/>
    <element name="DOM_ADM_LAST_NAME" type="xsd:string"/>
    <element name="DOM_ADM_EMAIL" type="xsd:string"/>
    <element name="DOM_ADM_ADDRESS" type="xsd:string"/>
    <element name="DOM_ADM_CITY" type="xsd:string"/>
    <element name="DOM_ADM_COUNTRY" type="xsd:string"/>
    <element name="DOM_ADM_STATE" type="xsd:string"/>
    <element name="DOM_ADM_ZIP" type="xsd:string"/>
    <element name="DOM_ADM_PHONE" type="xsd:string"/>
    <element name="DOM_ADM_COUNTRY_CODE" type="xsd:string"/>
    <element name="DOM_ADM_AREA_CODE" type="xsd:string"/>
    <element name="DOM_ADM_FAX" type="xsd:string"/>
    <element name="DOM_ADM_MOBILE" type="xsd:string"/>
    <element name="DOM_BILL_FIRST_NAME" type="xsd:string"/>
    <element name="DOM_BILL_LAST_NAME" type="xsd:string"/>
    <element name="DOM_BILL_EMAIL" type="xsd:string"/>
    <element name="DOM_BILL_ADDRESS" type="xsd:string"/>
    <element name="DOM_BILL_CITY" type="xsd:string"/>
    <element name="DOM_BILL_COUNTRY" type="xsd:string"/>
    <element name="DOM_BILL_STATE" type="xsd:string"/>
    <element name="DOM_BILL_ZIP" type="xsd:string"/>
    <element name="DOM_BILL_PHONE" type="xsd:string"/>
    <element name="DOM_BILL_COUNTRY_CODE" type="xsd:string"/>
    <element name="DOM_BILL_AREA_CODE" type="xsd:string"/>
    <element name="DOM_BILL_FAX" type="xsd:string"/>
    <element name="DOM_BILL_MOBILE" type="xsd:string"/>
    <element name="DOM_TECH_FIRST_NAME" type="xsd:string"/>
    <element name="DOM_TECH_LAST_NAME" type="xsd:string"/>
    <element name="DOM_TECH_EMAIL" type="xsd:string"/>
    <element name="DOM_TECH_ADDRESS" type="xsd:string"/>
    <element name="DOM_TECH_CITY" type="xsd:string"/>
    <element name="DOM_TECH_COUNTRY" type="xsd:string"/>
    <element name="DOM_TECH_STATE" type="xsd:string"/>
    <element name="DOM_TECH_ZIP" type="xsd:string"/>
    <element name="DOM_TECH_PHONE" type="xsd:string"/>
    <element name="DOM_TECH_COUNTRY_CODE" type="xsd:string"/>
    <element name="DOM_TECH_AREA_CODE" type="xsd:string"/>
    <element name="DOM_TECH_FAX" type="xsd:string"/>
    <element name="DOM_TECH_MOBILE" type="xsd:string"/>
    <element name="DURATION" type="xsd:int"/>
    </sequence>
    </complexType>
    </element>
    <element name="registerDomainResponse">
    <complexType>
    <sequence>
    <element name="registerDomainReturn" type="xsd:int"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </wsdl:types>
    <wsdl:message name="registerDomainResponse">
    <wsdl:part element="impl:registerDomainResponse" name="parameters"/>
    </wsdl:message>
    <wsdl:message name="registerDomainRequest">
    <wsdl:part element="impl:registerDomain" name="parameters"/>
    </wsdl:message>
    <wsdl:portType name="WsEpp">
    <wsdl:operation name="registerDomain">
    <wsdl:input message="impl:registerDomainRequest" name="registerDomainRequest"/>
    <wsdl:output message="impl:registerDomainResponse" name="registerDomainResponse"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="WsEppSoapBinding" type="impl:WsEpp">
    <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="registerDomain">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="registerDomainRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="registerDomainResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="WsEppService">
    <wsdl:port binding="impl:WsEppSoapBinding" name="WsEpp">
    <wsdlsoap:address location="http://localhost:8080/WebServiceProject/services/WsEpp"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    And when I am sending the request the response comes like below
    - <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> - <soapenv:Fault> <faultcode>soapenv:Server.userException</faultcode> <faultstring>java.lang.reflect.InvocationTargetException</faultstring> - <detail> <ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">net-df0ab1ca865</ns1:hostname> </detail> </soapenv:Fault> </soapenv:Body> </soapenv:Envelope>
    The faultcode and faultstring is the field which I am not getting.
    And the most funny thing is that,when I make a simple Test.java file which uses the object of PrintLib,then its running perfectally without web service,on the other hand in webservice The object of PrintLib is not instantiated.Means on the console the message printed "CONSTRUCTER 1"
    which I have used in PrintLib.
    Kindally provide me help,Thanks in advance

    The PrintClass is depends upon the "DURATION",there is a switch case in this class.Actully I have to use all the parameters in my web-service,and the supported file is PrintLib.I must have to use object of PrintLib for my web-service.
    Me doing debugging step by step by including lines in PrintLib.,but as shown when i m going to use the object of PrintLib the exception occured in the response of web-service
    *<soapenv:Fault> <faultcode>soapenv:Server.userException</faultcode> <faultstring>java.lang.reflect.InvocationTargetException</faultstring>*

  • WebService problem: only the first element of a string array is returned

    Hello,
    i did the J2EE QuickCarRental tutorial and extended it by some features: I created another entity bean and implemented four new methods in the QuickOrderProcessor. Then i deployed it as a WebService and accessed it using the Visual Composer.
    Everything works fine except the return value of one WebService method. I created a method with the return value String[]. But the Visual Composer reads it as String. Only the first element of the resulting string array is displayed. Although the test at the web-page http://<server>:<port>/QuickCarRentalService/Config1 displays the whole string array with all its elements. What did i wrong?
    Another problem is that after deploying the J2EE-Application with new WebService methods the changes are not visible inside the visual composer. Although the test at the web-page http://<server>:<port>/QuickCarRentalService/Config1 displays the changes. Do i have to restart the WebService system in the portal content? If yes how can i do that?

    Here are details about setting up and using web services and some examples:
    /people/prakash.darji/blog/2006/10/10/external-web-service-proxy-configuration-for-visual-composer

  • Automator Service problem

    Hello all.
    I'm trying to set up a Service in Automator, so that I can convert multiple image files into a single .pdf. It's all working fine, but I have one problem. I'd like the .pdf to automatically be saved in the folder in which the original image files came from.
    At the moment, my workflow allows the .pdf to be created and deletes the original files (if I say yes when I'm asked for confirmation) but I can't figure out how to change the destination for the new .pdf to be the folder in which the original image files came from.
    My workflow is currently as follows:
    Set Value of Variable (1)
    New PDF from Images
    Name Single Item
    Move Finder Items
    Ask for Confirmation (Ignore Input)
    Get Value of Variable (1)
    Move Finder Items to Trash
    Any help greatly appreciated!

    See http://discussions.apple.com/thread.jspa?threadID=2241804 for a four-parter by Sal Saghoian on *Automation in Snow Leopard* and then, this, which describes old and new automator—services stuff:
    http://www.reynoldsftw.com/2009/08/automator-and-finder-interactions-in-os-x-10- 6/

  • Webservice : problem with Base64 returned value

    Hello all,
    We are calling a webservice from a Flex2 application.
    When the returned value does not contain accentuated letters,
    we receive the value "as-is", everything is OK.
    When there is at least one accent, the result is
    automatically Base64 encoded by the server, and the
    xsi:type="n2:base64 is specified in the XML answer.
    The problem is that Flex2 does not Base64 decode the returned
    string, ans we cannot get the right value.
    We do not think that the problem is on the server, because we
    tryied to use 2 other webservice clients, and they worked well.
    We wonder if Flex2 can handle Base64 encoding on Webservice
    results or not.
    We thought abut using the Base64 decoder class, but it won't
    work because the result if not *always* Base64 encoded (depending
    if it contains some chars or not).
    Is there any solution to this issue ? If it can help, I paste
    the XML returned by the server at the end of this message.
    Thank you for your help.
    MiF
    <?xml version="1.0" encoding="UTF-8" ?>
    <env:Envelope xmlns:xsd="
    http://www.w3.org/2001/XMLSchema"
    xmlns:env="
    http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance">
    <env:Body>
    <n1:GetArticleResponse xmlns:n1="urn:ActionWebService"
    env:encodingStyle="
    http://schemas.xmlsoap.org/soap/encoding/">
    <return xmlns:n2="
    http://schemas.xmlsoap.org/soap/encoding/"
    xsi:type="n2:base64">PD94bWwgdmVyc2lvbj0iMS4xIiBlbmNvZGluZz0iSVNPLTg4NTktMSI/Pgo8
    YXJ0aWNsZXM+CiAgPGFydGljbGU+CiAgICA8aWQ+MTwvaWQ+CiAgICA8Y29k
    ZT5NaXRjaDwvY29kZT4KICA8L2FydGljbGU+CiAgPGFydGljbGU+CiAgICA8
    aWQ+MjwvaWQ+CiAgICA8Y29kZT5Qb2xvPC9jb2RlPgogIDwvYXJ0aWNsZT4K
    ICA8YXJ0aWNsZT4KICAgIDxpZD4zPC9pZD4KICAgIDxjb2RlPkvpa+k8L2Nv
    ZGU+CiAgPC9hcnRpY2xlPgo8L2FydGljbGVzPgo=</return>
    </n1:GetArticleResponse>
    </env:Body>
    </env:Envelope>

    You should use cast_to_varchar2 regardless what is source of base64_encode.
    Because base64-value consists of single byte ASCII-characters.

  • Weblogic webservice problem

    Hi , friends, I have a problem regarding web services in oracle weblogic workshop.
    In our application we need to create 2 web services. We have 10 to 12 packages under src folder , i.e.,
    src(under this folder)------------------>com.abc.des.desk (like this we have couple of packages). All those packages are having different java related file, porlets etc.
    I need to create another package called com.abc.des.webservices
    under this I have to create 2 webservice (JAX-WS) with annotations.All these webservices along with remaining above mentioned packages goes to one single EAR file.
    I am unable to select JAX-WS related facets.
    When I select weblogic webservices , it is giving a warning message that "No projects found that support web services.The Standard Annotated Web Service facet must be enabled".I didn't understand where I need to enable them.
    Please suggest on this problem.
    Thanks a lot
    Peter.

    Hi Peter
    1. Since you used the words like portlets etc, I am assuming you have a PortalWeb Project. So you have like portalEAR, portalWeb and may be portalDataSync project. NOW under portalWeb project src you have your own packages. This is where you need to create a new WebService also under a new package. FIRST of all, you need to add Web Services Project Facet to this portalWeb pojrect. Still it may NOT work. But I will give you an idea. Select your portalWeb project. Right clikc mouse, select Properties. From Properties window on left side, select Project Facets. On right side you will see list of Facets already selected. Click on Modify Project button on bottom right hand corner. This opens up Project Facets window. Check the Facet named Web Services. NOW immediately in the bottom you may see some Errors like "Standard Annotated Web Services 2.0 and Beehive Controls 1.0.1 cannot both be selected" etc. I am talking about WLP 10.3 version. This means by default portalWeb project will have Beehive stuff facets Enabled to allow use of Pageflow Portlets. So you cannot add Web Services Facet to this Same portalWeb project. Unless you want to manully remove Beehive Facets (means you cannot use Pageflow portlets), then may be Web Services Facets can be added.
    One work around or more elegant solution is create a another brand new project like myWebServices project and enable Web Services for this. Nothing but create a new WebServices project with all Web Services Facets. Add this to the same portalEAR project. Then add all your webservices to this new project. NOW you can always invoke these Web Services from portalWeb project src code like utility classes or Pageflows etc. Incase if you want to use some utility classes across both portalWeb and webServices project, then you need to add all these classes into another simple Java Project. Then import this into both portalWeb and webServices projects.
    I saw another opotion also. When you select Web Services Project Facet, it has 2 child facets. Standard Annotated Web Services whose default version is 2.0. If you choose version 1.0, look like there are no dependencies. Means poralWeb project can have Web Services Facet provided you use Standard Annotated Web Sevices Version 1.0 (instead of default 2.0). Now using this you may loose some new features from 2.0. I am not sure to what extent this will work. But give this a shot in your dev Env. And see if you can create a simple webservice and live with that.
    portalEAR can have both portalWeb project and any other projects like webServices or Java utility porjects etc. All these projects will be bundled into one single .EAR file only for deployment.
    Thanks
    Ravi Jegga

  • SOAP Webservice problem on Android

    Hello,
    I am trying to consume my own SOAP webservice and generated webservice stubs from my wsdl in flash builder.
    Testing operations is working fine. Everything is working in "simulated device". But when I run my app on my android device webservice calls are never returning.
    They are actually never received on the webservice server.
    Just afert 10 to 30 seconds there is a window displayed inside my app. This window is not from me, I only have two label fields in this project to display test webservice data.
    Made a image for you:
    "click to have good quality"
    I tried 2 services:
    one where the webservice server is running on my device (10.10.200.40 is devices ip address)
    one where the webservice is running in internet.
    The devices connection is fine. 10.10.200.40 and outside addresses are pingable and the webservice on the device can be called from flashbuilder's operation testing.
    Thanks,
    Thomas

    Hello All
    I also need to call some simple web mothods. How is this achieved?
    I have an as3 mobile project built in flash builder 4.6 which needs to send/ receive simple data with my asp.net web service.
    Is your problem related to a security setting in your xml descriptor file perhaps??

  • COM Automation: getProperty problems

    Hi,
    I know that the topic of this post don't belongs to this subcategory, but really I cannot find where to put it.
    I'm implementing a solucion using Oracle COM Automation to use a DLL through its COM interface from PL/SQL. The connection is done ok, and I can instantiate the object, get properties, set properties, invoke methods, etc.
    The problem is that when I use getProperty to get a Property that's empty (null), it returns the last value for which getProperty obtained a valid value:
    COM Object
    - Property A. Value: 'dog'
    - Property B. Value: 'cat'
    - Property C. Value: '' (empty)
    Pseudocode:
    1- CreateObject using COM interface --> OK
    2- getProperty('A') --> dog
    3- getProperty('B') --> cat
    4- getProperty('C') --> cat
    So, as you can see, getProperty('C') returns the last value obtained in a getProperty that returned a value (getProperty('B)). Any of you has any clue on what could be wrong with the Oracle COM Automation method to access a COM interface?
    Thanks a lot in advance,
    Luis Miguel

    Sorry, I meant to say 12g is where it wont be included.
    The migration path is .NET stored procedures. You should also be able to call a COM object via via COM Interop, but you'd be breaking new ground there in a sense as I'm not sure that that is something Oracle has tested, and I haven't heard from other customers that are doing that, so if there are issues there you maybe the one to uncover them.
    Greg

  • Webservice: Problem passing long string 8k

    Hi,
    I have a webservice who receives a string parameter (xml). I send it a string shorter than 8 kb  a no problem but when I send a long string longer than 8 kb, it has problems.
    Do someone know how can I fix this?
    Where can I modify this value?
    regards.

    Thanks for your recomendations, The problem is still there. I'm doing a POST.
    I already did the same sample in CF9 and I don't have the problem there. The only diference is the that the CF9 is a physical server with Win Server 2008 R2 and the CF 10 is a virtual with WIn Server 08 R2.

  • Enable Automated Installation Problems

    I'm having trouble completing a NetRestore/NetInstall restore to computer. I have a Mac Mini that is firewired to a Mac Mini Server 10.6.2. I'm using the Mac Mini as the source.
    Whenever I create either a NetRestore or NetInsall of the Mac Mini it installs fine to another Intel Mac without trouble as long as I either use the non-customized button or do a customize with only the following config...
    Create image
    type: Netinstall
    Install Volume: graphics
    Save to: NetBootSP0
    Image Name:
    Network Disk: Netinstall Graphics Erase
    Image Index: 1580
    Description: Netinstall Graphics Erase
    But when I add in Enable Automated Installation...
    Define Image Source: graphics
    Enable Automated Installation: auto
    Erase Before Installing: English
    Create image
    type: Netinstall
    Install Volume: graphics
    Save to: NetBootSP0
    Image Name:
    Network Disk: Netinstall Graphics Erase
    Image Index: 1580
    Description: Netinstall Graphics Erase
    I'll get a big Yellow error message after a couple of minutes: Install failed: The Installer could not start up the computer from the disk, auto. Try selecting your disk using the Startup Disk utility.
    This problem only happens when I use Enable Automated Installation. I've never had trouble with 10.5 Leopard Server doing this. At first I thought it was the workflows taken from 10.5 but then I created new ones though the same problem continued.
    Also, even though I've included the Install Volume name the destination drive it never gets renamed that. It just keeps the original name, not that this matters that much to me. The big problem is I can't get the Enable Automated Installation to work.
    I've tried both NetInstall and the NetRestore tab but neither work with using Enable Automate Installation
    Any ideas? I've tried Apple Tech Support but no help so far.
    Thanks,
    Todd
    (here are some other errors that show up in the log...)
    Feb 23 13:29:18 localhost Unknown[91]: 2010-02-23 08:29:18.761 Mac OS X Installer[90:9703] no system packages found
    Feb 23 13:29:18 localhost Unknown[91]: 2010-02-23 08:29:18.762 Mac OS X Installer[90:9703] No or Invalid system receipts found on /Volumes/auto
    Feb 23 13:29:18 localhost Unknown[91]: 2010-02-23 08:29:18.764 Mac OS X Installer[90:9703] Attempting fallback using: /System/Library/PrivateFrameworks/SystemMigration.framework/Resources/FallbackS ystemFiles.plist
    Feb 23 13:29:18 localhost Unknown[91]: 2010-02-23 08:29:18.889 Mac OS X Installer[90:9703] Finding system files...
    Feb 23 13:29:19 localhost Unknown[91]: 2010-02-23 08:29:19.270 Mac OS X Installer[90:9703] Writing system path cache.
    Feb 23 13:29:19 localhost Unknown[91]: 2010-02-23 08:29:19.276 Mac OS X Installer[90:9703] Error writing cache to /Volumes/auto/Library/Caches/com.apple.FindSystemFiles.plist
    Feb 23 13:29:19 localhost Unknown[91]: 2010-02-23 08:29:19.291 Mac OS X Installer[90:9703] Failed to enumerate /Volumes/auto/Library/Caches, cannot prune (
    Feb 23 13:29:19 localhost Unknown[91]: "com.apple.userpictureCache"
    Feb 23 13:29:19 localhost Unknown[91]: )
    Feb 23 13:29:19 localhost OSInstaller[90]: Initial free size : 79.61 GB
    Feb 23 13:29:19 localhost OSInstaller[90]: Expected system size : 8 KB
    Feb 23 13:29:19 localhost OSInstaller[90]: * No package reference found for com.apple.server.ASRPackage -- 1.0.0.4390000.0
    Feb 23 13:29:19 localhost OSInstaller[90]: Reserving 1073741824 for extraction
    Feb 23 13:29:19 localhost OSInstaller[90]: Reserving 0 for download
    Feb 23 13:29:19 localhost OSInstaller[90]: Performing volume consistency check on 'auto'.
    Feb 23 13:29:31 localhost OSInstaller[90]: Checking Volume
    Feb 23 13:29:31 localhost OSInstaller[90]: Checking Journaled HFS Plus volume.
    Feb 23 13:29:31 localhost OSInstaller[90]: Checking extents overflow file.
    Feb 23 13:29:31 localhost OSInstaller[90]: Checking catalog file.
    Feb 23 13:29:32 localhost OSInstaller[90]: Checking multi-linked files.
    Feb 23 13:29:32 localhost OSInstaller[90]: Checking catalog hierarchy.
    Feb 23 13:29:32 localhost OSInstaller[90]: Checking extended attributes file.
    Feb 23 13:29:32 localhost OSInstaller[90]: Checking volume bitmap.
    Feb 23 13:29:32 localhost OSInstaller[90]: Checking volume information.
    Feb 23 13:29:32 localhost OSInstaller[90]: The volume auto appears to be OK.
    Feb 23 13:29:33 localhost OSInstaller[90]: Volume repair complete.
    Feb 23 13:29:33 localhost OSInstaller[90]: Updating boot support partitions for the volume as required.
    Feb 23 13:29:33 localhost OSInstaller[90]: Volume passed consistency checks.
    Feb 23 13:29:33 localhost OSInstaller[90]: Copying/Downloading selected packages locally
    Feb 23 13:29:33 localhost OSInstaller[90]: Creating mutable product on /Volumes/auto/Mac OS X Install Data
    Feb 23 13:29:33 localhost OSInstaller[90]: Using packages from product at /Volumes/auto/Mac OS X Install Data
    Feb 23 13:29:33 localhost OSInstaller[90]: Linked to PackageKit-67
    Feb 23 13:29:33 localhost OSInstaller[90]: Remote package size (0) : available size (79611281408)
    Feb 23 13:29:33 localhost OSInstaller[90]: Copying remote packages (0) to mutable product.
    Feb 23 13:29:33 localhost OSInstaller[90]: Configuring volume "auto"
    Feb 23 13:29:33 localhost OSInstaller[90]: Preparing disk for Netbooted OS Install.
    Feb 23 13:29:33 localhost OSInstaller[90]: Volume disk0s2 mounted at /Volumes/auto is ready
    Feb 23 13:29:33 localhost OSInstaller[90]: Preparing disk for local booted OS Install.
    Feb 23 13:29:33 localhost OSInstaller[90]: Physical memory statistics immediately before turning on virtual memory backing store:
    Feb 23 13:29:33 localhost OSInstaller[90]: Physical Memory Allocation: 452 MB wired, 3 MB trapped, 76 MB active, 42 MB inactive, 2499 MB free, 2617 MB usable, 3072 MB total
    Feb 23 13:29:33 localhost OSInstaller[90]: Activated virtual memory backing store at mount point '/Volumes/auto'
    Feb 23 13:29:33 localhost OSInstaller[90]: Preparing disk for local booted install.
    Feb 23 13:29:33 localhost OSInstaller[90]: Creating installation log on volume "auto"
    Feb 23 13:29:33 localhost OSInstaller[90]: IFPKInstallElement (1 packages)
    Feb 23 13:29:33 localhost OSInstaller[90]: PackageKit: ----- Begin install -----
    Feb 23 13:29:33 localhost OSInstaller[90]: PackageKit: request=PKInstallRequest <1 packages, destination=/Volumes/auto>
    Feb 23 13:29:33 localhost OSInstaller[90]: PackageKit: packages=(\n "PKJaguarPackage <file://localhost/System/Installation/Packages/ASRInstall.pkg>"\n)
    Feb 23 13:29:33 localhost OSInstaller[90]: PackageKit: updatedyld_sharedcache -root /Volumes/auto/.OSInstallSandbox-tmp/Root
    Feb 23 13:29:33 localhost OSInstaller[90]: updatedyld_sharedcache failed: /Volumes/auto/.OSInstallSandbox-tmp/Root/var/db/dyld/sharedregionroots/ does not exist, errno=2
    Feb 23 13:29:33 localhost OSInstaller[90]: updatedyld_sharedcache exited with 1
    Feb 23 13:29:33 localhost OSInstaller[90]: PackageKit: Shoving /Volumes/auto/.OSInstallSandbox-tmp/Root (0 items) to /Volumes/auto
    Feb 23 13:29:33 localhost OSInstaller[90]: PackageKit: kextcache -update-volume /Volumes/auto
    Feb 23 13:29:34 localhost OSInstaller[90]: kextcache: /Volumes/auto: no /usr/standalone/bootcaches.plist; nothing to do.
    Feb 23 13:29:34 localhost OSInstaller[90]: Installed "Apple Software Restore Image" ()
    Feb 23 13:29:34 localhost OSInstaller[90]: PackageKit: ----- End install -----
    Feb 23 13:29:34 localhost OSInstaller[90]: Writing installation cookies
    Feb 23 13:29:34 localhost OSInstaller[90]: Could not write configuration file /Volumes/auto/Library/Preferences/.GlobalPreferences.plist
    Feb 23 13:29:34 localhost OSInstaller[90]: Unable to write InstallType cookie file for Setup Assistant to pick up.
    Feb 23 13:29:34 localhost OSInstaller[90]: Finalize disk "auto" for OS Installation
    Feb 23 13:29:34 localhost OSInstaller[90]: Finalizing Disk for OS Install
    Feb 23 13:29:35 localhost OSInstaller[90]: Unable to set 'auto' as boot disk: The bless tool was unable to set the current boot disk
    Feb 23 13:29:35 localhost OSInstaller[90]: Install failed: The Installer could not start up the computer from the disk “auto”. Try selecting your disk using the Startup Disk utility.
    Feb 23 13:29:36 localhost OSInstaller[90]: Allowing machine sleep.
    Feb 23 13:29:36 localhost OSInstaller[90]: Memory statistics for 'Install Failed' pane:
    Feb 23 13:29:36 localhost OSInstaller[90]: Physical Memory Allocation: 242 MB wired, 3 MB trapped, 287 MB active, 43 MB inactive, 2497 MB free, 2827 MB usable, 3072 MB total
    Feb 23 13:31:02 localhost Unknown[91]: 2010-02-23 13:31 Mac OS X Installer[90] (CarbonCore.framework) FSEventStreamStart: ERROR: FSEvents_connect() => Unknown service name (1102)
    Feb 23 13:31:04 localhost OSInstaller[90]: NetworkBrowser failed to launch "/usr/bin/nmblookup" (No such file or directory)

    Still borked after all these months...ugh. I get the feeling this is a very low priority for Apple.
    I'll include my latest log from my automated netrestore:
    Mar 31 01:38:17 localhost Unknown[86]: Launching the Installer using /etc/minstallconfig.xml file with language English.
    Mar 31 01:38:41 localhost configd[66]: subnetroute_ifindex: can't get interface name
    Mar 31 01:38:43 localhost OSInstaller[87]: Folder Manager is being asked to create a folder (cach) while running as uid 0
    Mar 31 01:38:43 localhost OSInstaller[87]: Mac OS X Installer application started
    Mar 31 01:38:43 localhost OSInstaller[87]: 1 display(s) found.
    Mar 31 01:38:43 localhost OSInstaller[87]: Display[1] is using OpenGL acceleration.
    Mar 31 01:38:43 localhost OSInstaller[87]: @(#)PROGRAM:Install PROJECT:Install-574
    Mar 31 01:38:43 localhost OSInstaller[87]: @(#)PROGRAM:Mac OS X Installer PROJECT:OSInstaller-255
    Mar 31 01:38:43 localhost OSInstaller[87]: Hardware: Macmini3,1 @ 2.26 GHz (x 2), 4096 MB RAM
    Mar 31 01:38:43 localhost OSInstaller[87]: Running OS Build: Mac OS X 10.6.2 (10C540)
    Mar 31 01:38:43 localhost OSInstaller[87]: Env: DYLDNO_FIXPREBINDING=1
    Mar 31 01:38:43 localhost OSInstaller[87]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Mar 31 01:38:43 localhost OSInstaller[87]: Env: PWD=/
    Mar 31 01:38:43 localhost OSInstaller[87]: Env: SHLVL=1
    Mar 31 01:38:43 localhost OSInstaller[87]: Env: _=/System/Installation/CDIS/Mac OS X Installer.app/Contents/MacOS/Mac OS X Installer
    Mar 31 01:38:45 localhost OSInstaller[87]: Automated Install: Found requested target at /Volumes/Macintosh HD.
    Mar 31 01:38:46 localhost OSInstaller[87]: Allowing machine sleep.
    Mar 31 01:38:46 localhost OSInstaller[87]: Preventing machine sleep.
    Mar 31 01:38:46 localhost OSInstaller[87]: InstallerStatusNotifications plugin loaded
    Mar 31 01:38:46 localhost OSInstaller[87]: =============================================================================== =
    Mar 31 01:38:46 localhost OSInstaller[87]: Choices selected for installation:
    Mar 31 01:38:46 localhost OSInstaller[87]: Install: "Apple Software Restore Image"
    Mar 31 01:38:46 localhost OSInstaller[87]: ASRInstall.pkg : com.apple.server.ASRPackage : 1.0.0.4420000.0
    Mar 31 01:38:46 localhost OSInstaller[87]: =============================================================================== =
    Mar 31 01:38:46 localhost OSInstaller[87]: It took 0.00 seconds to summarize the package selections.
    Mar 31 01:38:46 localhost OSInstaller[87]: Memory statistics for 'Installing' pane:
    Mar 31 01:38:46 localhost OSInstaller[87]: Physical Memory Allocation: 490 MB wired, 258 MB trapped, 72 MB active, 32 MB inactive, 3244 MB free, 3348 MB usable, 4096 MB total
    Mar 31 01:38:46 localhost OSInstaller[87]: Remote Install Assistant found at 1024:(null)
    Mar 31 01:38:46 localhost OSInstaller[87]: Memory statistics for 'Install Mac OS X' pane:
    Mar 31 01:38:46 localhost OSInstaller[87]: Physical Memory Allocation: 493 MB wired, 258 MB trapped, 73 MB active, 32 MB inactive, 3240 MB free, 3345 MB usable, 4096 MB total
    Mar 31 01:38:46 localhost OSInstaller[87]: -[IFPKGDerivedDocument sortedPackageLocations]: result = (\n "file://localhost"\n)
    Mar 31 01:38:46 localhost runner[133]: Administrator authorization granted.
    Mar 31 01:38:46 localhost OSInstaller[87]: PK will install package file://localhost/System/Installation/Packages/ASRInstall.pkg (0 b)
    Mar 31 01:38:46 localhost OSInstaller[87]: Total install size including padding: 1073741824 b
    Mar 31 01:38:46 localhost OSInstaller[87]: Starting installation:
    Mar 31 01:38:46 localhost OSInstaller[87]: Calculating expected install size requirements
    Mar 31 01:38:46 localhost Unknown[88]: 2010-03-30 18:38:46.808 Mac OS X Installer[87:a303] Looking for system packages
    Mar 31 01:38:46 localhost Unknown[88]: 2010-03-30 18:38:46.933 Mac OS X Installer[87:a303] Finding system files...
    Mar 31 01:38:48 localhost Unknown[88]: 2010-03-30 18:38:48.582 Mac OS X Installer[87:a303] Writing system path cache.
    Mar 31 01:39:11 localhost OSInstaller[87]: Reserving additional 500MB for reaping SnowLeopard volume
    Mar 31 01:39:11 localhost OSInstaller[87]: Initial free size : 155.12 GB
    Mar 31 01:39:11 localhost OSInstaller[87]: Expected system size : 3.32 GB
    Mar 31 01:39:11 localhost OSInstaller[87]: * No package reference found for com.apple.server.ASRPackage -- 1.0.0.4420000.0
    Mar 31 01:39:11 localhost OSInstaller[87]: Reserving 1073741824 for extraction
    Mar 31 01:39:11 localhost OSInstaller[87]: Reserving 0 for download
    Mar 31 01:39:11 localhost OSInstaller[87]: Performing volume consistency check on 'Macintosh HD'.
    Mar 31 01:39:23 localhost OSInstaller[87]: Checking Volume
    Mar 31 01:39:23 localhost OSInstaller[87]: Checking Journaled HFS Plus volume.
    Mar 31 01:39:23 localhost OSInstaller[87]: Checking extents overflow file.
    Mar 31 01:39:23 localhost OSInstaller[87]: Checking catalog file.
    Mar 31 01:39:26 localhost OSInstaller[87]: Checking multi-linked files.
    Mar 31 01:39:26 localhost OSInstaller[87]: Checking catalog hierarchy.
    Mar 31 01:39:33 localhost OSInstaller[87]: Checking extended attributes file.
    Mar 31 01:39:38 localhost OSInstaller[87]: Checking volume bitmap.
    Mar 31 01:39:38 localhost OSInstaller[87]: Checking volume information.
    Mar 31 01:39:38 localhost OSInstaller[87]: The volume Macintosh HD appears to be OK.
    Mar 31 01:39:38 localhost OSInstaller[87]: Volume repair complete.
    Mar 31 01:39:38 localhost OSInstaller[87]: Updating boot support partitions for the volume as required.
    Mar 31 01:39:39 localhost OSInstaller[87]: Volume passed consistency checks.
    Mar 31 01:39:39 localhost OSInstaller[87]: Copying/Downloading selected packages locally
    Mar 31 01:39:39 localhost OSInstaller[87]: Creating mutable product on /Volumes/Macintosh HD/Mac OS X Install Data
    Mar 31 01:39:40 localhost OSInstaller[87]: Using packages from product at /Volumes/Macintosh HD/Mac OS X Install Data
    Mar 31 01:39:40 localhost OSInstaller[87]: Linked to PackageKit-67
    Mar 31 01:39:40 localhost OSInstaller[87]: Remote package size (0) : available size (155120869376)
    Mar 31 01:39:40 localhost OSInstaller[87]: Copying remote packages (0) to mutable product.
    Mar 31 01:39:40 localhost OSInstaller[87]: Preparing previous system for upgrade
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Desktop DF to: /Volumes/Macintosh HD/Recovered Items/Desktop DF\nReason: The file “Desktop DF” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Developer to: /Volumes/Macintosh HD/Recovered Items/Developer\nReason: The file “Developer” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/.com.apple.timemachine.supported to: /Volumes/Macintosh HD/Recovered Items/.com.apple.timemachine.supported\nReason: The file “.com.apple.timemachine.supported” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Previous Systems to: /Volumes/Macintosh HD/Recovered Items/Previous Systems\nReason: The file “Previous Systems” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/.Archived_Directories^M to: /Volumes/Macintosh HD/Recovered Items/.Archived_Directories^M\nReason: The file “.Archived_Directories^M” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Desktop DB to: /Volumes/Macintosh HD/Recovered Items/Desktop DB\nReason: The file “Desktop DB” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Previous System to: /Volumes/Macintosh HD/Recovered Items/Previous System\nReason: The file “Previous System” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/.TemporaryItems to: /Volumes/Macintosh HD/Recovered Items/.TemporaryItems\nReason: The file “.TemporaryItems” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/mach.sym to: /Volumes/Macintosh HD/Recovered Items/mach.sym\nReason: The file “mach.sym” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Shutdown Check to: /Volumes/Macintosh HD/Recovered Items/Shutdown Check\nReason: The file “Shutdown Check” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Trash to: /Volumes/Macintosh HD/Recovered Items/Trash\nReason: The file “Trash” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/cores to: /Volumes/Macintosh HD/Recovered Items/cores\nReason: The file “cores” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Backups.backupdb to: /Volumes/Macintosh HD/Recovered Items/Backups.backupdb\nReason: The file “Backups.backupdb” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Network Trash Folder to: /Volumes/Macintosh HD/Recovered Items/Network Trash Folder\nReason: The file “Network Trash Folder” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/AppleShare PDS to: /Volumes/Macintosh HD/Recovered Items/AppleShare PDS\nReason: The file “AppleShare PDS” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/TheVolumeSettingsFolder to: /Volumes/Macintosh HD/Recovered Items/TheVolumeSettingsFolder\nReason: The file “TheVolumeSettingsFolder” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Temporary Items to: /Volumes/Macintosh HD/Recovered Items/Temporary Items\nReason: The file “Temporary Items” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/automount to: /Volumes/Macintosh HD/Recovered Items/automount\nReason: The file “automount” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Cleanup At Startup to: /Volumes/Macintosh HD/Recovered Items/Cleanup At Startup\nReason: The file “Cleanup At Startup” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/Previous Systems.localized to: /Volumes/Macintosh HD/Recovered Items/Previous Systems.localized\nReason: The file “Previous Systems.localized” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/TheFindByContentFolder to: /Volumes/Macintosh HD/Recovered Items/TheFindByContentFolder\nReason: The file “TheFindByContentFolder” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/AppleInternal to: /Volumes/Macintosh HD/Recovered Items/AppleInternal\nReason: The file “AppleInternal” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Did not move file from: /Volumes/Macintosh HD/VM Storage to: /Volumes/Macintosh HD/Recovered Items/VM Storage\nReason: The file “VM Storage” doesn’t exist.
    Mar 31 01:39:40 localhost OSInstaller[87]: Configuring volume "Macintosh HD"
    Mar 31 01:39:40 localhost OSInstaller[87]: Preparing disk for Netbooted OS Install.
    Mar 31 01:39:40 localhost OSInstaller[87]: Volume disk0s2 mounted at /Volumes/Macintosh HD is ready
    Mar 31 01:39:40 localhost OSInstaller[87]: Preparing disk for local booted OS Install.
    Mar 31 01:39:40 localhost OSInstaller[87]: Physical memory statistics immediately before turning on virtual memory backing store:
    Mar 31 01:39:40 localhost OSInstaller[87]: Physical Memory Allocation: 883 MB wired, 258 MB trapped, 77 MB active, 8 MB inactive, 2870 MB free, 2955 MB usable, 4096 MB total
    Mar 31 01:39:40 localhost OSInstaller[87]: Activated virtual memory backing store at mount point '/Volumes/Macintosh HD'
    Mar 31 01:39:40 localhost OSInstaller[87]: Preparing disk for local booted install.
    Mar 31 01:39:40 localhost OSInstaller[87]: Creating installation log on volume "Macintosh HD"
    Mar 31 01:39:40 localhost OSInstaller[87]: Reaping previous system
    Mar 31 01:41:09 localhost OSInstaller[87]: System Reaper: free space before: 155.12 GB
    Mar 31 01:41:09 localhost OSInstaller[87]: System Reaper: free space after : 158.54 GB
    Mar 31 01:41:09 localhost OSInstaller[87]: System Reaper: free space diff : 3.42 GB
    Mar 31 01:41:10 localhost OSInstaller[87]: System Reaper: Postflight ok (157.57 GB remaining)
    Mar 31 01:41:10 localhost OSInstaller[87]: IFPKInstallElement (1 packages)
    Mar 31 01:41:10 localhost OSInstaller[87]: PackageKit: ----- Begin install -----
    Mar 31 01:41:10 localhost OSInstaller[87]: PackageKit: request=PKInstallRequest <1 packages, destination=/Volumes/Macintosh HD>
    Mar 31 01:41:10 localhost OSInstaller[87]: PackageKit: packages=(\n "PKJaguarPackage <file://localhost/System/Installation/Packages/ASRInstall.pkg>"\n)
    Mar 31 01:41:10 localhost OSInstaller[87]: PackageKit: updatedyld_sharedcache -root /Volumes/Macintosh HD/.OSInstallSandbox-tmp/Root
    Mar 31 01:41:10 localhost OSInstaller[87]: updatedyld_sharedcache failed: /Volumes/Macintosh HD/.OSInstallSandbox-tmp/Root/var/db/dyld/sharedregionroots/ does not exist, errno=2
    Mar 31 01:41:10 localhost OSInstaller[87]: updatedyld_sharedcache exited with 1
    Mar 31 01:41:10 localhost OSInstaller[87]: PackageKit: Shoving /Volumes/Macintosh HD/.OSInstallSandbox-tmp/Root (0 items) to /Volumes/Macintosh HD
    Mar 31 01:41:10 localhost OSInstaller[87]: PackageKit: kextcache -update-volume /Volumes/Macintosh HD
    Mar 31 01:41:10 localhost OSInstaller[87]: kextcache: /Volumes/Macintosh HD: no /usr/standalone/bootcaches.plist; nothing to do.
    Mar 31 01:41:10 localhost OSInstaller[87]: Installed "Apple Software Restore Image" ()
    Mar 31 01:41:10 localhost OSInstaller[87]: PackageKit: ----- End install -----
    Mar 31 01:41:11 localhost OSInstaller[87]: Writing installation cookies
    Mar 31 01:41:11 localhost OSInstaller[87]: Could not write configuration file /Volumes/Macintosh HD/Library/Preferences/.GlobalPreferences.plist
    Mar 31 01:41:11 localhost OSInstaller[87]: Unable to write InstallType cookie file for Setup Assistant to pick up.
    Mar 31 01:41:11 localhost OSInstaller[87]: Finalize disk "Macintosh HD" for OS Installation
    Mar 31 01:41:11 localhost OSInstaller[87]: Finalizing Disk for OS Install
    Mar 31 01:41:11 localhost OSInstaller[87]: Unable to set 'Macintosh HD' as boot disk: The bless tool was unable to set the current boot disk
    Mar 31 01:41:11 localhost OSInstaller[87]: Install failed: The Installer could not start up the computer from the disk “Macintosh HD”. Try selecting your disk using the Startup Disk utility.
    Mar 31 01:41:12 localhost OSInstaller[87]: Allowing machine sleep.
    Mar 31 01:41:12 localhost OSInstaller[87]: Memory statistics for 'Install Failed' pane:
    Mar 31 01:41:12 localhost OSInstaller[87]: Physical Memory Allocation: 563 MB wired, 259 MB trapped, 192 MB active, 19 MB inactive, 3063 MB free, 3274 MB usable, 4096 MB total

  • Automator recording problem

    I posted this on the snow leopard forum last month but got no replies. I figured the mountain lion forum might get more hits and I'm having the same problem with it as with snow leopard, so here goes:
    I want to automate the specification of startup disks as I tend to frequently swap between a few systems. I fired up automator, hit the record button and proceeded to select the system preferences pane from the apple menu, selected startup disk pane and then clicked one of the disks. Automator listed my steps and it looked fine. However, when I play the script, instead of clicking once on the system preferences menu item it clicks twice on the app store menu item, resulting in an error. Obviously, I'm doing something wrong, so I'd appreciate some help. Thanks.

    I see what you mean (in Snow Leopard).  Even though Automator appears to show the right actions, when the workflow runs, the cursor "jumps" up one line in the Apple menu, from System Preferences to the App Store.  Weird, but Watch Me Do is often quirky.  (And remember that the App Store was inserted into Snow Leopard in one of the 10.6 incremental updates.  No surprise that that the insertion isn't perfect.)
    There's a workaround: Avoid the Apple menu.  Make the first action in your workflow Launch Application and set it to System Preferences.  Then put together the Watch Me Do action to choose Startup Disk and select the disk you want.

  • MDM WebServices Problem while connecting to MDM repository

    Hello,
    we have installed the Web Services for MDM.
    When I test the Services, say the MDMSearchRecords I always get a ERROR status and the Message:
    id (String)  WS_LogonProblem
    severity (String) ERROR
    text (String)   Problem while connecting to MDM repository: z_Material on server: debmu416.server..... at port: 4000. Maybe the Repository-Information has not been set correctly at the requested query.
    status (String)  FAIL
    The Repository Information I try to connect with is correct (Repository Name, Server Name, Port, data Language and schema Language).
    Can you pls tell me where the problem could be?
    Points will be generously rewarded!
    Best Regards,
    Mircea

    Hi Arun,
    Thanks a lot!
    you were right! The WebServices version was too old.
    Now I can connect to the Repository in Test mode.
    I get some other error Messages, like "Field Material_Number is not defined at Table Products." and "Repository Data is not available in the requested Language ." which isn' right.
    Do you have a clue where this could come from?
    BR,
    Mircea

  • Automator-Applescript Problem

    I have got an Automator problem that is down mainly to Applescript (I believe) that is posted in the Automator category: http://discussions.apple.com/thread.jspa?threadID=1896508&tstart=0 . Please help, I really need an answer before midnight GMT.

    Actions return their results in a list, so even though you are setting the input to "Stop", what the next action is getting is {"Stop"}. In your Run AppleScript action, you will need to look for your item in the input list - for example:
    if the input contains "Stop" then
          -- or --
    if the first item of the input is "Stop" then

  • SchedulerTask and external webservice problems

    Hi,
    I need to build an application that fetches some report from an external webservice (Axis) on the net and stores some data in a portal database.
    However, I picked the KM-residing SchedulerTask to solve this issue because you can run it just like cron-jobs and the like.
    In my SchedulerTasks code - it has been tested standalone and does a great job fetching data from webservice - the calls fails due to a "connection refused", see stacktrace way below.
    My portal is a development machine and is therefore talking to and with everyone, fully open, un-proxied and should not hinder me from accessing such a webservice, I think.
    I checked the webservice URL (wsdl-ended) is accessible from within my SchedulerTask by opening a simple java.net.URL on it which worked really nice.
    My questions are:
    - Did someone experience a similar behaviour and if so how did you solve this?
    - Is there any additional configuration needed to make portal/KM speak with external webservices?
    - Any other thoughts?
    Thanks for your help!
    regards,
    Christian
    The essential lines from the stacktrace:
    {0}#1#AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.net.ConnectException: Connection refused
    faultActor:
    faultNode:
    faultDetail:
            {http://xml.apache.org/axis/}stackTrace:java.net.ConnectException: Connection refused
            at java.net.PlainSocketImpl.socketConnect(Native Method)
            at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
            at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
            at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
            at java.net.Socket.connect(Socket.java:461)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    For iSight help, consider http://support.apple.com/kb/HT2090
    In addition to testing with iMovie, you can also test video recording with QuickTime Pro if you have it.
    Because you have similar problems with Photo Booth when using another camera, you may be rushing Photo Booth. Consider the suggestions offered here:
      http://discussions.apple.com/thread.jspa?messageID=7018319&#7018319
    If apps other than Photo Booth record properly but you do not want to use one of those that work properly, it is possible that a corrupted Photo Booth Preferences file is causing your problem. Quit Photo Booth (and all other applications) and throw away the Photo Booth Preferences file (com.apple.photobooth.plist) from your Home / Library / Preferences folder. A new preferences folder will be generated when you restart Photo Booth to test whether it works now.
    If resetting preferences did not help but you still want to use Photo Booth, reinstalling the Photo Booth app might help.
    If no app works properly, see your Apple Authorized Service Provider for professional help.
    EZ Jim
    G5 DP 1.8GHz w/Mac OS X (10.5.7) PowerBook 1.67GHz (10.4.11)   iBookSE 366MHz (10.3.9)  External iSight

  • Automation Record Problem

    Hi all,
    I've got a strange problem with Logic not recording any automation coming from external controllers. I'm putting the track in question into "Touch" mode and the controller is altering the sound exactly as expected, but there is no automtion recorded. Am I missing something? it was working fine before I upgraded to 7. Thanks in advance.
    Using Logic 7.1

    Hi,
    u might like to check out this Environment. It lets u convert CC to Trackautomation Events. This enabels you to record external CC´s to Logics Track Automation. And NO its no bug.
    External/internal midi CCs to track automation
    miditrackauto.lso.sit — a simple example of an environment workaround for recording external (synth modwheel etc) or internal (environment faders) midi CCs to track automation for midi instruments.
    If you have any further questions let me know.
    Direct Download:
    http://www.opuslocus.com/logic/miditrackauto.lso.sit
    Source:
    http://www.opuslocus.com/logic/
    Cheers Marc

Maybe you are looking for