top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

When i tried to update wireless adapter it showed error now i cannot connect to interenet.

0 votes
245 views
posted May 26, 2020 by Shreesha Vasishta

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+1 vote

I am using Springs 3.0 with JAXB.. I am trying to retrieve a list of IDs through Webservice.. The WSDL is published properly.. But when I hit a SOAP request, I get a response which says:

No adapter for endpoint [public wsi.deviceprofile.GetDeviceProfileIDsResponse wsi.deviceprofile.DeviceProfileEndPoint.getDeviceProfileIDList()]: Is your endpoint annotated with @Endpoint, or does it implement a supported interface like MessageHandler or PayloadEndpoint?

My class is annotated with @EndPoint:

@Endpoint
public class DeviceProfileEndPoint implements DeviceProfileConstants {

    @Autowired
    private DeviceProfileManager deviceProfileManager;

    @PayloadRoot(localPart="GetDeviceProfileIDsRequest", namespace=NAMESPACE)
    @ResponsePayload
    public GetDeviceProfileIDsResponse getDeviceProfileIDList(){
        ObjectFactory factory = new ObjectFactory();
        GetDeviceProfileIDsResponse response = factory.createGetDeviceProfileIDsResponse();

        List<DeviceProfileWebVO> deviceProfiles = deviceProfileManager.getAllDeviceProfileWebVO();
        for(DeviceProfileWebVO deviceProfile : deviceProfiles)
            response.id.add(BigInteger.valueOf(deviceProfile.getDeviceId()));       

        return response;
    }
}

Few websites say this might be a problem with the XSD structure and have suggested few guidelines (like, defining the request/response elements inline rather than a reference).. I have ensured that those have been taken care of. However, The problem remains. Here is my XSD:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" targetNamespace="http://www.hp.com/schema/m2m/" xmlns:tns="http://www.hp.com/schema/m2m/">
    <!-- 
        Get list of all the Device Profile IDs
    -->
    <xs:element name="GetDeviceProfileIDsRequest">  
    </xs:element>
    <xs:element name="GetDeviceProfileIDsResponse">
        <xs:complexType>
            <xs:sequence minOccurs="0" maxOccurs="unbounded">
                <xs:element name="id" type="xs:integer"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>

</xs:schema>

Does anyone know any other possible reasons? Let me know if you need more details.

0 votes

I somehow deleted /tmp when I was deleting files from /tmp to make room. Now I get errors when I boot and try to login

There is a problem with the configuration server.
(/usr/libexec/gconf-sanity-check-2 exited with status 256)

When I close that, I get:

Install problem!
The configuration defaults for GNOME Power Manager have not been installed correctly. Please contact your computer administrator.

One time I saw the login options - when I logged in I only saw a black screen. Other than doing an install, is there a way to recover the files in /tmp?

+1 vote

I deployed one small app in heroku built on ROR, now I want to send mails. How is it possible can anyone give me a details how to do it.

...