Getting "Missing Port Information" exception

I wrote a simple service with 3 methods. I created and deployed the service on one machine. I wrote a client to access the service and everything was fine. Then I took the same service on another machine - created and deployed the service on this machine. It says the service deployed. But when I access the service via client I get the following exception:
Exception is received fault: "Missing port information" (code: "Server" namespace: "http://schemas.xmlsoap.org/soap/envelope/"); nested exception is:
received fault: "Missing port information" (code: "Server" namespace: "http://schemas.xmlsoap.org/soap/envelope/")
java.rmi.RemoteException: received fault: "Missing port information" (code: "Server" namespace: "http://schemas.xmlsoap.org/soap/envelope/"); nested exception is:
received fault: "Missing port information" (code: "Server" namespace: "http://schemas.xmlsoap.org/soap/envelope/")
received fault: "Missing port information" (code: "Server" namespace: "http://schemas.xmlsoap.org/soap/envelope/")
at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:321)
at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:211)
at work.EmployeeDirectoryPort_Stub.findAllPeers(Unknown Source)
at Client.main(Client.java:16)
Can someone please help me with this?
Thanks.

Tool: jax-rpc
Server: weblogic 6.1 (sp3)
Yes, I wrote the client on my own and here is a part of it.
public static void main(String[] args) {
try {
String baid = args[0];
EmployeeDirectory_Impl empDir = new EmployeeDirectory_Impl();
System.out.println("Constructed Impl ");
EmployeeDirectoryPort_Stub stub = (EmployeeDirectoryPort_Stub)empDir.getEmployeeDirectoryPort();
System.out.println("Got Port ");
work.EmployeeProfile[] empArray = (work.EmployeeProfile[])stub.findAllPeers(baid);
System.out.println("Invoked ");
if(empArray != null) {
System.out.println("Peers array is "+ empArray.length);
I do not get to the "Got port" printout.
Thanks
Neerja

Similar Messages

  • What is "Missing Port Information" error?

    Setting FINEST log level on JAXRPC in the AS8 2004Q04 Beta reveals nothing.
    Searches on this forum provides only 3 matches for "Missing port information" (this one makes 4). In http://forum.java.sun.com/thread.jsp?forum=136&thread=508958 the same problem that I have is described, and the problem is left unresolved, despite a plea from a second user. ( I wonder what happened to these people...Did they sell short or become .NET developers. Neither are an answer for me. )
    Searches in the bug parade shows that this error is generic: In 6157880, classpath was not set correctly. In 4859401, service used a J2SE 1.4 API in a 1.3 environment. In 4802443 there is a getter for a public field and so jaxrcp was confused. There are more bugs matching but I'm not listing them all here. My point is that there doesn't seem to be a single root cause for this problem.
    So, logs don't help, forum doesn't have answer, bug parade is too noisy. This problem seems unresolved here on Sun's web pages, but here I try again:
    Here are some questions:
    1) What is "port information"?
    2) From where is it missing? Where does AS8 expect to find it?
    3) Anyone have a strategy on how to debug this?
    I have Axis TCPMON tracing the soap messages and can verify that AS8 originates the error, not the client. The limited information from the server log verifies this too:
    [#|2004-11-01T16:28:20.008-0500|SEVERE|sun-appserver-pe8.1|javax.enterprise.resource.webservices.rpc.server.http|_Thre
    adID=11;|JAXRPCSERVLET22: no endpoint specified|#]Here is the output of a client that dumps the exception:
         [java] Endpoint address = http://Stratocaster:8080/ym/ym-alias
         [java] javax.xml.rpc.soap.SOAPFaultException: JAXRPCSERVLET28: Missing port information
         [java]     at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:515)
         [java]     at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:294)
         [java]     at svcp.XXXAPIR0501_Stub.create2(XXXAPIR0501_Stub.java:282)
         [java]     at SubClient.main(SubClient.java:31)

    I believe I've gotten to the bottom of this error and will report it here in case there is anyone that is also having this problem and in case there is anyone that can make sense of it.
    The alias and endpoint fields must be equal.
    The deploy tool allows you to enter an alias and an endpoint for your web service. I'll show you the user interface specifics below. The data you enter in these fields show up in the wsdl, the web.xml and the sun-web.xml, and I'll show what elements below.
    Except for the preceding '/' in the alias field (the '/' is inserted by deploytool), the alias and the endpoint string must be identical: if '/imp-alias' is the alias value, the endpoint must be 'imp-alias'.
    If they are not equal and your client uses the alias value in endpoint address, you will get "Missing port information" error.
    If they are not equal and your client uses the endpoint value in endpoint address, you will get '404 Not Found' error.
    For example, lets say I set alias to 'api-alias' and endpoint to 'api-endpoint'. Using my browser, I can get the wsdl with http://localhost:8080/context/api-alias?wsdl (where context is also a value set in deploytool gui). The returned wsdl will show that the soap:adress location attribute is: http://localhost:8080/context/api-endpoint. If your client uses the wsdl to generate stubs, the default endpoint is this location and your client will get the '404 Not Found' error. If you client provides an endpoint address by setting the ENDPOINT_ADDRESS_PROPERTY to http://localhost:8080/context/api-alias, your client will get the "Missing port information" error.
    You get to the alias and endpoint fields in deploytool from the File panel on the left. Open the subfolder that represents your war file. There will be your web service. Select the web service and the main panel will change to contain about 4-6 tabs. One tab labelled Aliases another tab labelled Endpoint.
    The alias field shows up in the web.xml file like this:
    <servlet-name>APIImpl</servlet-name>
    <url-pattern>/api-alias</url-pattern>
    </servlet-mapping>The endpoint field show up in the web.xml file under the same servlet-mapping element as alias:
    <servlet-name>APIImpl</servlet-name>
    <url-pattern>/api-endpoint/__container$publishing$subctx/*</url-pattern>
    </servlet-mapping>The endpoint field shows up in the wsdl in the soap:address element's 'location' attribute:
          <soap:address location="http://localhost:8080/context/api-endpoint" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"/>The endpoint field shows up in the sun-web.xml file
    <endpoint-address-uri>api-endpoint</endpoint-address-uri>John

  • Java.rmi.ServerException: JAXRPCSERVLET28: Missing port information

    Hi
    We are getting errors when we run the webservice client..
    With this we have also provided the webservice code.
    Please any one help us to resolve this issue...
    Thanks in advance.
    We are using
    J2EE 1.4
    Error:
    java.rmi.ServerException: JAXRPCSERVLET28: Missing port information
    at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.ja
    va:510)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:307
    at com.sun.xml.rpc.client.dii.CallInvokerImpl.doInvoke(CallInvokerImpl.j
    ava:103)
    at com.sun.xml.rpc.client.dii.BasicCall.invoke(BasicCall.java:492)
    at com.sun.xml.rpc.client.dii.CallInvocationHandler.doCall(CallInvocatio
    nHandler.java:121)
    at com.sun.xml.rpc.client.dii.CallInvocationHandler.invoke(CallInvocatio
    nHandler.java:85)
    at $Proxy0.flowrequest(Unknown Source)
    at dynamicproxy.MathClient.main(MathClient.java:52)
    Web service Client Code:
    package dynamicproxy;
    import java.net.URL;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.JAXRPCException;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.ServiceFactory;
    //import com.ibm.ctg.client.JavaGateway;
    //import com.ibm.ctg.client.ECIRequest;
    import dynamicproxy.*;
    public class MathClient
    static String message;
    static String err=null;
         static StringBuffer sb = null;
         public String s1;
         public static int iValidationFailed = 0;
    public static void main(String[] args)
    try {
    String nameSpaceUri = "urn:Foo";
    String serviceName = "CtgService";
    String portName = "MathFacePort";
    // Specify the location of the WSDL file
    URL url = new URL("http://localhost:8080/math-ctgservice/math?WSDL");
    // Create an instance of service factory
    ServiceFactory serviceFactory = ServiceFactory.newInstance();
    // Create a service object to act as a factory for proxies.
    Service mathService = serviceFactory.createService(url,
    new QName(nameSpaceUri, serviceName));
    // Create a proxy
    dynamicproxy.MathFace
    myProxy = (dynamicproxy.MathFace) mathService.getPort(new
                             QName(nameSpaceUri,
    portName), dynamicproxy.MathFace.class);
    // Invoke the add method
    //System.out.println(myProxy.add(23, 12));
              //get the input value and pass it to the function
                   String a = args[0]+"~"+"------------------------------------------------------------";
                   //String a = b.toUpperCase();
                   // Invoke the add method
                   myProxy.flowrequest(a);
                   System.out.println("Message:"+message);
         catch (Exception ex)
    ex.printStackTrace();
    }

    As is so often the case, Google is your friend.
    Googling for the exception message (JAXRPCSERVLET28: Missing port information) yields the following list.
    http://www.google.com/search?hl=en&q=JAXRPCSERVLET28%3A+Missing+port+information&btnG=Google+Search
    Follow the bouncing link, it will lead you to the solution.
    PS.

  • "Missing port information" and NoClassDefFoundError

    I'm developing a Web Service using JWSPD1.2, and I'm having some problem in executing a client which accesses to the service I'm publishing.
    On Client side the error is:
    java.rmi.ServerException: Missing port information
    at com.sun.xml.rpc.StreamingSender._send
    On Server side (file $(JWSPD_HOME)/logs/launcher.server.log) I found out that the thrown exception is a NoClassDefFoundError.
    The class that is not found, however, is included in a library that I'm linking on the command line, so I can't understand why this exception is thrown...
    Has anyone of you been involved in a similar problem?
    Perhaps I have to link the library somewhere else, but I don't know where...
    Thanks in advance for your help!

    Hi ! I am getting the same error at the client side :
    java.rmi.ServerException: Missing port information
    at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:370)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:231)
    at com.sun.xml.rpc.client.dii.CallInvokerImpl.doInvoke(CallInvokerImpl.java:56)
    at com.sun.xml.rpc.client.dii.BasicCall.invoke(BasicCall.java:281)
    at DIIClient.main(DIIClient.java:111)
    can u just tell me how the problem was solved and what were the jar files u had set in the classpath. Pls help me i am new to webservices. Thanx in advance

  • "Missing port information" when calling web service

    I have implemented a web service that works fine as long as I use primitive types as arguments and return types, but when I add a method that takes a user-defined class as an argument, I receive the following error when calling any of the methods in the web service:
    [java] java.rmi.RemoteException: received fault: "Missing port information"
    (code: "Server" namespace: "http://schemas.xmlsoap.org/soap/envelope/"); nested
    exception is:
    [java] received fault: "Missing port information" (code: "Server" names
    pace: "http://schemas.xmlsoap.org/soap/envelope/")
    [java] java.rmi.RemoteException: received fault: "Missing port information"
    (code: "Server" namespace: "http://schemas.xmlsoap.org/soap/envelope/"); nested
    exception is:
    [java] received fault: "Missing port information" (code: "Server" names
    pace: "http://schemas.xmlsoap.org/soap/envelope/")
    [java] received fault: "Missing port information" (code: "Server" namespace
    : "http://schemas.xmlsoap.org/soap/envelope/")
    [java] at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingS
    ender.java:321)
    [java] at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.
    java:211)
    [java] at qsws.MyItf_Stub.HelloWorld(Unknown Source)
    [java] at qsws.WSClient.main(Unknown Source)
    The class I pass as an argument implements Serializable and a user-defined interface and it has two public member variables (int and String).
    Anyone know why I receive this error?
    /Magnus

    I am also seeing this same error. I have rebuilt and redeployed the service several times, but am still stuck getting this error. Strangely enough, the Tomcat server where the service is hosted is not reporting this type of error. Instead, it is recording an error 500 (Server Internal Error) each time I try to execute one of my services. I trimmed out the meat of the service and configured it so that it would echo the input parameters to the output (they are actually in/out params) but even this reduced configuration gives an error 500. I am inclined to suspect my deployment, but I have checked it several times against the examples.
    Anyone else see the error 500 reported as missing port information?

  • Java.rmi.ServerException: Missing port information

    when i call the service ,i got the error:
    run-test-client:
    [java] java.rmi.ServerException: Missing port information
    [java] at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingS
    ender.java:382)
    [java] at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.
    java:234)
    [java] at sys.SetIF_Stub.getdeviceid(SetIF_Stub.java:68)
    [java] at sys.StockPriceFetcher.getdeviceid(Unknown Source)
    [java] at sys.TestPriceFetcher.main(Unknown Source)
    what cause it??
    in my SetImpl.java i use wurfltags.jar
    //SetImpl.java
    package sys;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import net.sourceforge.wurfl.wurflapi.*;
    public class SetImpl implements SetIF {
         private String ret="";
    private ProConf pc;
    private MyObjectsManager mom;
         public SetImpl(){}
    public String getdeviceid(String request)
    String result="";           
    try{              
    mom=new MyObjectsManager();
    mom.wurflWebInit();
    UAManager uam =mom.getUAManagerInstance();
    result=uam.getDeviceIDFromUA("MOT-T720/05.08.41R MIB/2.0 Profile/MIDP-1.0 Configuration/CLDC-1.0");
    System.out.println(result);
    catch(Exception e){}
    return result;     
    and, i generate the wsdl file and deploy it successfully. but in the client
    when i call the service it will be error.
    the client code is:
    /////////StockPriceFetcher.java
    package sys;
    import javax.xml.rpc.*;
    import com.sun.xml.rpc.client.*;
    public final class StockPriceFetcher {
    public static final String getdeviceid(String req,String endpoint) {
    String result="";
    try {
    SetIF_Stub stub =(SetIF_Stub)(new SystemConfiguration_Impl().getSetIFPort());
    stub._setProperty(javax.xml.rpc.Stub.ENDPOINT_ADDRESS_PROPERTY,endpoint);
    result = stub.getdeviceid(req);
    } catch (Exception ex) {
    ex.printStackTrace();
    return result;
    } // getLonNowItem
    //////////////////////TestPriceTetcher.java
    package sys;
    import java.math.BigDecimal;
    import java.util.*;
    public class TestPriceFetcher {
    public static void main(String[] args) {
    try {
    // String result=StockPriceFetcher.endsetinfo("ball=5&srv=7&pcode=500001","http://192.152.251.224:8080/jaxrpc-sys/jaxrpc");
    String result=StockPriceFetcher.getdeviceid("ball=5&srv=7&pcode=500001","http://192.152.251.224:8080/jaxrpc-sys/jaxrpc");
    System.out.println(result+"bb");
    } catch (Exception ex) {
    ex.printStackTrace();
    when i run the testpricefetcher.java it will raise the above error infomation.
    it spent 2 days for me to find the problem, but i cannot solve it.
    i think it does matter with the wurfl package.because i doesnt use the method of the package in the SetImpl.java it will be ok. How to call the package?please give me a hand.

    can you give me a hand!thank you

  • Missing port information

    Hi all,
    i am running a simple web service in JWSDP1.3 with tomcat server.When i am running the client application i am getting the output without any problem.Then i modified my server program with some oracle database connection.When i tried the same client program i am getting error.The error as follows:
    java.rmi.ServerException: JAXRPC.JAXRPCSERVLET.28: Missing port information
    Please help to fix this problem.I will be indebted for the same help.Thanks.

    if your server connect to database and uses JDBC you must register your database in the system ODBC registry. I have the same problem and i resolve it in ths way.

  • Missing Port  Information - HELP!

    Hi, i built a dynamic client to work with my webservice. Both were built using the JWSP1.2. Bellow is the error i get. It happens only if i call the getAll WS method (this method receives a String parameter and returns a Source Type Object) . Does anyone have any idea about what's happening? Could someone show me the way? Really appreciate
    [java] WSDLstring = http://localhost:8080/cm/ContextManager?WSDL
    [java] java.rmi.ServerException: Missing port information
    [java] at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:382)
    [java] at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:234)
    [java] at com.sun.xml.rpc.client.dii.CallInvokerImpl.doInvoke(CallInvokerImpl.java:64)
    [java] at com.sun.xml.rpc.client.dii.BasicCall.invoke(BasicCall.java:346)
    [java] at com.sun.xml.rpc.client.dii.CallInvocationHandler.doCall(CallInvocationHandler.java:102)
    [java] at com.sun.xml.rpc.client.dii.CallInvocationHandler.invoke(CallInvocationHandler.java:74)
    [java] at $Proxy0.getAll(Unknown Source)
    [java] at contextclient.CMClient.getConnection(Unknown Source)
    [java] at contextclient.CMClient.main(Unknown Source)
    Tks in advance,
    Rodrigo.

    The WSDL code is right here. It was generated by the ant builder wich follows the JWSDP 1.2
    <definitions xmlns:tns="http://localhost:8080/cm/ContextManager" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:ns2="http://java.sun.com/jax-rpc-ri/internal" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="http://localhost:8080/cm/ContextManager" name="ContextManager">
         <types>
              <schema targetNamespace="http://java.sun.com/jax-rpc-ri/internal" xmlns:tns="http://java.sun.com/jax-rpc-ri/internal" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://www.w3.org/2001/XMLSchema">
                   <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
                   <simpleType name="text_xml">
                        <restriction base="string"/>
                   </simpleType>
              </schema>
         </types>
         <message name="ContextManagerIF_getAll">
              <part name="String_1" type="xsd:string"/>
         </message>
         <message name="ContextManagerIF_getAllResponse">
              <part name="result" type="ns2:text_xml"/>
         </message>
         <message name="ContextManagerIF_getFullDOM">
              <part name="Source_1" type="ns2:text_xml"/>
         </message>
         <message name="ContextManagerIF_getFullDOMResponse">
              <part name="result" type="ns2:text_xml"/>
         </message>
         <message name="ContextManagerIF_teste">
              <part name="String_1" type="xsd:string"/>
         </message>
         <message name="ContextManagerIF_testeResponse">
              <part name="result" type="ns2:text_xml"/>
         </message>
         <portType name="ContextManagerIF">
              <operation name="getAll" parameterOrder="String_1">
                   <input message="tns:ContextManagerIF_getAll"/>
                   <output message="tns:ContextManagerIF_getAllResponse"/>
              </operation>
              <operation name="getFullDOM" parameterOrder="Source_1">
                   <input message="tns:ContextManagerIF_getFullDOM"/>
                   <output message="tns:ContextManagerIF_getFullDOMResponse"/>
              </operation>
              <operation name="teste" parameterOrder="String_1">
                   <input message="tns:ContextManagerIF_teste"/>
                   <output message="tns:ContextManagerIF_testeResponse"/>
              </operation>
         </portType>
         <binding name="ContextManagerIFBinding" type="tns:ContextManagerIF">
              <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
              <operation name="getAll">
                   <input>
                        <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost:8080/cm/ContextManager"/>
                   </input>
                   <output>
                        <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost:8080/cm/ContextManager"/>
                   </output>
                   <soap:operation/>
              </operation>
              <operation name="getFullDOM">
                   <input>
                        <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost:8080/cm/ContextManager"/>
                   </input>
                   <output>
                        <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost:8080/cm/ContextManager"/>
                   </output>
                   <soap:operation/>
              </operation>
              <operation name="teste">
                   <input>
                        <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost:8080/cm/ContextManager"/>
                   </input>
                   <output>
                        <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost:8080/cm/ContextManager"/>
                   </output>
                   <soap:operation/>
              </operation>
         </binding>
         <service name="ContextManager">
              <port name="ContextManagerIFPort" binding="tns:ContextManagerIFBinding">
                   <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
              </port>
         </service>
    </definitions>
    Regards,
    Rodrigo.

  • JAXRPCSERVLET.28:Missing port information

    All,
    I have exposed JCD as webservice in 513. When client try to invoke my webservice, they get JAXRPCSERVLET.28:Missing port information error and I have checked the server.log and I have find out below error. Please help.
    [#|2007-07-05T10:54:02.419-0400|SEVERE|IS5.1.3|Avalara.svcAddress.jcdAddress_Runtime_Handler|_ThreadID=39; ThreadName=http21001-Processor4;stacktrace-id=30;|java.lang.ArrayIndexOutOfBoundsException: Array index out of range: 10
    java.lang.ArrayIndexOutOfBoundsException: Array index out of range: 10
         at com.borders.ECOM.otd.xsd.Output.<init>(com.borders.ECOM.otd.xsd.Output:115)
         at java.lang.Class.newInstanceImpl(Native Method)
         at java.lang.Class.newInstance(Class.java:1243)
         at com.stc.util.OtdObjectFactory.createInstance(OtdObjectFactory.java:51)
         at Avalara.svcAddress.jcdAddress_Runtime_Handler.createObject(Avalara.svcAddress.jcdAddress_Runtime_Handler:517)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:140)
         at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:135)
         at $Proxy107.createObject(Unknown Source)
         at com.stc.codegen.frameworkImpl.runtime.DeployedServicePartners.internalCreateObject(DeployedServicePartners.java:813)
         at com.stc.codegen.frameworkImpl.runtime.DeployedServicePartners.localCreateObject(DeployedServicePartners.java:565)
         at com.stc.wsserver.runtime.impl.JCDWSServerServiceImpl.init(JCDWSServerServiceImpl.java:182)
         at com.stc.wsserver.runtime.impl.AbstractServiceEndpoint.init(AbstractServiceEndpoint.java:278)
         at com.sun.xml.rpc.server.http.Implementor.init(Implementor.java:45)
         at com.sun.xml.rpc.server.http.ImplementorCacheDelegateImpl.getImplementorFor(ImplementorCacheDelegateImpl.java:57)
         at com.sun.xml.rpc.server.http.ImplementorCache.getImplementorFor(ImplementorCache.java:32)
         at com.sun.xml.rpc.server.http.JAXRPCServletDelegate.doPost(JAXRPCServletDelegate.java:290)
         at com.sun.xml.rpc.server.http.JAXRPCServlet.doPost(JAXRPCServlet.java:74)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:768)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:861)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:289)
         at java.security.AccessController.doPrivileged(AccessController.java:275)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:727)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:318)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:205)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:102)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:192)
         at java.security.AccessController.doPrivileged(AccessController.java:242)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:261)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:215)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:200)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:180)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at com.sun.enterprise.webservice.EjbWebServiceValve.invoke(EjbWebServiceValve.java:134)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at com.sun.enterprise.security.web.SingleSignOn.invoke(SingleSignOn.java:254)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at com.sun.enterprise.web.VirtualServerValve.invoke(VirtualServerValve.java:209)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:161)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
         at com.sun.enterprise.web.VirtualServerMappingValve.invoke(VirtualServerMappingValve.java:173)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:979)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:211)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:692)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:647)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:589)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:691)
         at java.lang.Thread.run(Thread.java:803)

    Solved it ! Some endpoint alias problem during deployment ! Now works fine !

  • I have Photoshop 7 on a laptop with windows 8.1.  When I try to open Photoshop 7 I get the error message "cannot open missing personalization information".  What is this and how can I fix it?

    I have Photoshop 7.0.  This is on a laptop running windows 8.1.  When I try to open it I get the errro message: " cannot open missing personalization information".
    what is this and how can I fix it.

    Run it in compatibility mode and input the credentials.
    Mylenium

  • How to make iTunes get missing information about a song ?

    Hello World !
    I'm carying with me on my computers, a very big iTunes Library through the time.
    Recently, I was caring about the track names because when I imported my first songs, I didn't care about the names and I always remove every tags but the artist name and song title.
    Today I have many tracks that don't have any album artist, the genre is added by me and almost no album illustration.
    I want to know if there is a way to make iTunes get all the information itself, based on the title and artist name, or based to something else? Curiously, iTunes Match is able to associate a song to their databases, but don't find any album illustration or even album title (except if it's normal).
    At least, if iTunes can't do that, is there a way to make it do it? Like for example, a third app that can get the information itself and fill in the tags, something like Shazam (which can recognize the song) or based on already existant tags?
    Thanks for your help.

    Have you tried QuickTime Player instead? That can loop a track, and while I can't say it would be more reliable than iTunes, QT Player is a lot less complex so it would seem to me to stand a better chance of running indefinitely. This of course presumes any system problem, power surge, etc. which might interrupt any application.
    Regards.

  • Missing contact information

    Has anybody encountered this problem.  I am missing entire fields of information from many of my contacts on my mac runnning Mountain Lion.  On most of the missing items I am only getting their name and company with the rest of the information blank.  You cannot even go to edit and reenter, as the field will not come up.
    When I go and look at my contacts in iCloud, all of the data is there. 
    I have tried turning off contacts and letting iCloud delete all of the icloud contacts off the Mac, and then turning it on again, which reimports.  Same problem with no change.  The same contacts are missing the same data.
    This is global on all my computers running Mountain Lion.  I have not encountered this in Lion.
    Anyone know whats up or what to do to fix?

    I have found the reason why about half of my contacts are missing all fields except name, title and company (the ones at the very top).
    It's because they have "United States of America" in the Country field (automatically entered by Outlook and probably the old Mac Address Book App, too).  This is the correct name of our country, Apple programmers!!  It IS NOT 'United States", which is what is in their new drop-down list of countries.  Apparently, if your country is not in their list, you won't be able to see any data for that person!
    So I had to go thru my whole address book and change the country name in order to see my contacts. 
    The way I did it was I logged into icloud.com, clicked on Contacts, searched for "of America" and changed them all to "United States".  At the same time, I had my local Contacts open and I watched them populate as I changed each country field.
    Try just changing one, and then look at your local Contacts (if it's syncing with iCloud).  It will magically populate all fields.
    I know that MacWorld put out an article on how to REPLACE ALL INSTANCES of something in Contacts, but I don't know where that is.  I'm sure you could go to their website and find it.
    Hopefully, they won't change it back and still require us to choose from the list of country names!  Then I'll have to change them all back.
    I had a similar problem in Snow Leopard with those same contacts, only I could see all fields except the address fields.  Lion fixed the problem.  Then Mountain Lion brought it back with a vengeance!

  • I changed my apple id but the apple id for icloud did not change on my mac.  How do I get icloud account information to change and match my new apple id?

    I changed my apple id but the applie id for icloud did not change on my mac in system preferences. 
    I have changed my apple id on system preferences under users and groups but the icloud preferences don't pick up the change.
    I restarted my computer, and still no change.
    I have been using icloud under my old apple id for mail calendars and notes.
    How do I get icloud account information to change on my mac's system preferences and match my new apple id?
    I am missing something.
    Please help.  Thanks.

    Thank you Roger, your solution gave me the courage to sign out of Systems Preferences.  The pop up told me it was going to delete my contact and other information from my mac, so I was hesitant to do that.  Well I did as you directed and I was able to sign in with my new apple id and I did not lose the information the pop up threatened I was going to.  So again thank you.  It is the little things that make a big difference sometimes.

  • How to get the log information when using a class?

    Hi All,
    I have a simple question, which I don't know how to solve. I am using org.apache.commons.logging.Log and LogFactory to do some logging. A typical situation is exemplified in the following code snippet.
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    class LogClass {
        private static final Log LOG = LogFactory.getLog(AClass.class);
        public void logit(){
            LOG.debug("This is the debugging log.");
    public class AClass{
        public static void main(String[] args) {
            LogClass l=new LogClass();
            l.logit();
    }But this way, I do not get the log information from the class LogClass. Could anybody please help?
    Many thanks.

    jschell wrote:
    jverd wrote:
    ...configuration in log4j.xml or log4j.properties.And far as I recall you need one of those two also. If there is no config then there is no output.I thought it used some default config if no file is present, but I could be mistaken. Either way, it adds to the possible problems that the OP could be having, any of which are consistent with his rather vague question.
    1) He's passing the wrong class to the LogFactory, and hence getting a logger with the wrong name, so he's seeing a different name than he expects in the output that's being produced.
    2) His config file does not contain the proper format to include the actual classname, independent of the logger's name, so he's missing a piece of desired information in each line of the output that's being produced.
    3) His config file indicates a threshold that's less verbose than the level at which his code is logging, so no output is present when he wants it.
    4) His config file is missing (or not where it's expected to be), so no output is being produced at all.
    5) His config file is missing (or not where it's expected to be), so a default level or format is being produced, effectively the equivalent of one of the misconfigurations described in #2 and #3.
    Since the OP seems to have vanished, we may never know.

  • How can I get missing contacts, notes, calendar dates and reminders that are just on my old iphone onto the iCloud for transfer to my new iPhone upgrade?

    Dear wise & wondeful people:
    How can I get missing contacts, notes, calendar dates and reminders that are just on my old iphone onto the iCloud for transfer to my new iPhone upgrade? Half of my contacts, notes, ect. were on my iCloud so have happily moved to my new iPhone but the rest are completely resistant. For example, on my iCloud I have 14 missing contacts starting with the letter A alone, however they are happily viewable on my old iPhone 4S and won't budge over into the iCloud.
    There are also 3 notes missing yet still acessible on my onld iPhone 4S, the list goes on.
    Your help would be most appreciated. Thank you so much.
    BCHR

    Hi BCHR,
    If you are having issues transfering your content from your old iPhone onto iCloud so it can be transfered to your new iPhone, you may find the following articles helpful:
    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device
    http://support.apple.com/kb/HT2109
    iCloud: Troubleshooting iCloud Contacts
    http://support.apple.com/kb/TS3998
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/TS3999
    iCloud: Notes overview
    http://support.apple.com/kb/PH12081
    Regards,
    - Brenden

Maybe you are looking for

  • Soundflower, Logic Pro X and Ustream

    I broadcast a show on Ustream in which I play the saxophone against trax that I have loaded into iTunes. I play the sax into an apogee USB mic. I also use that same mic to talk to the audience while trax are playing, at which time I need to adjust th

  • Problem installing Windows Phone Developer Power Tools (8.1) on a device

    Hi, we have tried to install Windows Phone Developer Power Tools (8.1) in a Lumia 730 device, but due to an error we can't do it. We do it through Visual Studio 2013 Update 4: - Menu TOOLS - Windows Phone 8.1 - Developer Power Tools - Select the devi

  • All photos gone!!!!

    Yesterday I was downloading off an SD card when iphoto decided to wipe everything, all photos are gone. Running iphoto 7.1.5 on OS 10.6.8 on older black macbook. I tried to restore using the time capsule but it says the disk is full. How do I fix?

  • Substitution functionality of OSS also needed for B1 messages

    Version: SAP Service Marketplace / SAP Business One Customer Portal as of today Description of Requirements: The substitution functionality of the OSS doesn’t apply for B1 messages so it is impossible to share work on the same OSS ticket with several

  • Cc 2014 update results in no video anymore

    Performed an update to CC 2014 suite and now Premiere outputs no video.  Not in the source monitor or the program/sequence monitor (as if playing audio only, but without a waveform).  Video output to a "playback" monitor is full white.  Importing new