Make jre to service

I want to make jre to service on windows in order to update the speed, can anyone give me useful advice?
Thanks in advance.

Actually, the speed does not depend on the type of application, I mean servece it is or not.
Now about of how to make a java application to run as service: Carefully look at MSDN for topics about SRVANY.EXE and AutoExNT.exe
Both of those topics describe how to make an application running as service during windows startup.
I think this can help You !
Regards, Alex

Similar Messages

  • Lots of code to make a web service

    Does anybody know of any tools to make creating web services faster in Java - I am getting frustrated with the amount of code it takes. Anybody else feel the same way?

    Here's an example of what I mean..
    // Open a database connection and statement.
    Class.forName("COM.ibm.db2.jdbc.app.DB2Driver").newInstance();
    Connection dbConn = DriverManager.getConnection("jdbc:db2:sample","myuser","mypass");
    Statement statement = dbConn.createStatement();
    // Build the message.
    SOAPMessageContext ctx = (SOAPMessageContext) messageContext;
    try {
    MessageFactory messageFactory = MessageFactory.newInstance();
    SOAPMessage m = messageFactory.createMessage();
    SOAPEnvelope env = m.getSOAPPart().getEnvelope();
    SOAPBody body = env.getBody();
    SOAPElement elem =
    body.addBodyElement(env.createName("ns1:getEmployees"));
    elem.addNamespaceDeclaration("ns1",
    "http://www.abc.com/SampleApplication/Employee.wsdl");
    elem.addNamespaceDeclaration("ns2",
    "http://www.abc.com/SampleApplication/Employee.xsd");
    SOAPElement elem1 = new SOAPElementImpl("Response", null, null);
    // Execute the query.
    String sql = "SELECT EMPNO, FIRSTNME, MIDINIT, LASTNAME, HIREDATE FROM EMPLOYEE";
    ResultSet result = statement.executeQuery(sql);
    SOAPElement employee = new SOAPElementImpl("Employees", "ns2", "http://www.abc.com/SampleApplication/Employee.xsd");
    employee.addChildElement("ns2:EMPNO").addTextNode(result.getString("EMPNO"));
    employee.addChildElement("ns2:FIRSTNME").addTextNode(result.getString("FIRSTNME"));
    employee.addChildElement("ns2:FIRSTNME").addTextNode(result.getString("MIDINIT"));
    employee.addChildElement("ns2:LASTNAME").addTextNode(result.getString("LASTNAME"));
    employee.addChildElement("ns2:FIRSTNME").addTextNode(result.getString("HIREDATE"));
    elem1.addChildElement(employee);
    elem.addChildElement(elem1);
    ctx.setMessage(m);
    dbConn.close();
    } catch (Throwable e) {
    weblogic.utils.Debug.say("(hbs):e " + e);
    e.printStackTrace(System.out);
    putting the data in the node seems excessive to me.
    thanks
    DG

  • Make simple web service

    Hi all, I'd like to make simple web service. I made a desktop (swing) application, which requires access to database. The database is not accessible from outside of the server.
    But I have web application on this server, so I can create a servlet (or jsp), which could operate as web service. Afterwards I can create a connection in my desktop application directed to this service page. The page downloads required data and grants them for my desktop application.
    But I don't know the way I could do it. Can you help me please? Thank you :-).

    Hi again, after several days, I'm back. It seems to be very good solution for me, but I have a problem. I can't catch it :-(. I've read the manual pages maybe twenty-times and I've looked for another tutorials and so on. Nothing helped. I don't know, how I can run it :-(. I create following:
    My web.xml:<web-app version="2.4"
               xmlns="http://java.sun.com/xml/ns/j2ee"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
               http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <servlet>
              <servlet-name>EOTService</servlet-name>
              <servlet-class>services.EOTService</servlet-class>
              <init-param>
                   <param-name>enabledForExtensions</param-name>
                   <param-value>true</param-value>
                   <description>Sets, whether the servlet supports vendor extensions for XML-RPC.</description>
              </init-param>
         </servlet>
         <servlet-mapping>
              <servlet-name>EOTService</servlet-name>
              <url-pattern>/service</url-pattern>
         </servlet-mapping>
    </web-app>In package services I have two .java files. The first one, Calculator.java:package services;
    public class Calculator {
         public int add(int a, int b) {
              return a + b;
         public int sub(int a, int b) {
              return a - b;
    }and the second one, EOTService.java:package services;
    import org.apache.xmlrpc.*;
    import org.apache.xmlrpc.common.*;
    import org.apache.xmlrpc.server.*;
    import org.apache.xmlrpc.webserver.*;
    public class EOTService extends XmlRpcServlet {
         private boolean isAuthenticated(String pUserName, String pPassword) {
              return pUserName.equals("username") && pPassword.equals("password");
         protected XmlRpcHandlerMapping newXmlRpcHandlerMapping() throws XmlRpcException {
              PropertyHandlerMapping mapping = (PropertyHandlerMapping) super.newXmlRpcHandlerMapping();
              AbstractReflectiveHandlerMapping.AuthenticationHandler handler =
                   new AbstractReflectiveHandlerMapping.AuthenticationHandler() {
                        public boolean isAuthorized(XmlRpcRequest pRequest) {
                             XmlRpcHttpRequestConfig config = (XmlRpcHttpRequestConfig) pRequest.getConfig();
                             return isAuthenticated(config.getBasicUserName(), config.getBasicPassword());
              mapping.setAuthenticationHandler(handler);
              try {
                   mapping.addHandler("Calculator", Class.forName("services.Calculator"));
              } catch (ClassNotFoundException e) {
                   e.printStackTrace();
              return mapping;
    }In the myapp/WEB-INF/lib I have these files:xmlrpc-common-3.1.3.jar
    xmlrpc-server-3.1.3.jarAnd now, I'd like to connect to this servlet and download data. So I have another application and in main method of the application I call this:public static void main(String[] args) {
    try {
                XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
                config.setServerURL(new URL("http://127.0.0.1:8080/service"));
                XmlRpcClient client = new XmlRpcClient();
                client.setConfig(config);
                Object[] params = new Object[]{new Integer(33), new Integer(9)};
                Integer result = (Integer)client.execute("Calculator.add", params);
                System.out.println("33 + 9 = " + result);
            } catch (java.net.MalformedURLException e) {
                System.out.println(e.getMessage());
            } catch (org.apache.xmlrpc.XmlRpcException e) {
                e.printStackTrace(System.out);
    }But following exception is thrownException in thread "main" java.lang.NoClassDefFoundError: org/apache/ws/commons/serialize/DOMSerializer
            at org.apache.xmlrpc.serializer.NodeSerializer.<clinit>(NodeSerializer.java:30)
            at org.apache.xmlrpc.common.TypeFactoryImpl.<clinit>(TypeFactoryImpl.java:88)
            at org.apache.xmlrpc.common.XmlRpcController.<init>(XmlRpcController.java:31)
            at org.apache.xmlrpc.client.XmlRpcClient.<init>(XmlRpcClient.java:51)
            at main.Main.main(Main.java:51)
    Caused by: java.lang.ClassNotFoundException: org.apache.ws.commons.serialize.DOMSerializer
            at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
            ... 5 moreI'm trying to implement it for five days and my failure is very stressful. Help me please... please :-[.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Which devices can let me make internet hotspot service?

    Hi,
    Someday I have tried connecting to a wireless connection which was showing in the wireless network connection  list of my laptop, and I have succeeded to log in without entering any a PW or Security key. However, when the connection was wirelessly
    established, I was asked addition log on information may be required, although there an internet access was shown. However, when I tried opening a browsing page, this login page was shown me(screen shot below). 
    I know that a hotspot  is a place in a public building where there is a computer system with an  access point , which allows people
    in the building with a  wireless  computer or  Bluetooth mobile phone  to connect to a service such as the Internet 
    But what I don't understand is where I can purchase a device which will allow me to make such this internet hotspot service? Can I do this with normal Router/modem,
    or there are some specified devices used to do such tasks?
    Also, are there place equipages required to make such a service or it is only another device to be connected to the LAN port of a normal Router/Modem in
    order to broadcast the Router's wireless signals?  
    A man should convert his anger and sadness into strength to continue living in this life.

    Thank you so much indeed,
    More details about what I want are as follows:
    I have always been seeing many wireless network connections are shown when running my laptop. I don't know where these wireless networks are broadcasting from, and I don't if there are near to me or not. But when I try to connect to either, I find myself
    be connected to either without asking entering a PW. However, after opening a browser web, I was asked to enter the PW and login. Thus, my question, if  I wish to setup such a service, how I can do? Are there some devices other modem  which can be
    used to boost and distribute modem's wireless connection to other places. So the wireless of that modem can be accessed from a long distance. 
    On other words, are there other devices which can be connected to a Router/Modem via the LAN port? If yes, then these devices, I think, will be used to distribute wireless point into people who are far away from that Modem, thus, they can be connecting to
    the the same wireless of Router, although they are too far way from the Router's wireless point.
    As a result, I am looking for such devices which can be used to let other people who are very far away from my Modem/Router's wireless range  be able to connect to my Modem's wireless point.
    Besides, Yes I have a wireless router in my home, and I agree that is a "hotspot". BUT, ANY PERSON WHO WANTS TO CONNECT TO MY WIRELESS ROUTER,
    HE MUST BE ASKED TO ENTER A PW IF MY WIRELESS ROUTER IS SECURED BY A PW. HOWEVER, IF IT IS NOT SECURED, THEN HE WILL BE CONNECTED TO MY WIRELESS ROUTER WITHOUT ASKING ABOUT A PW, AND HE WILL BE ACCESSING
    TO THE INTERNET 
    BUT I WOULD BE SAYING, AS SAID BEFORE, WHEN I TIRED CONNECTING TO A WIRELESS ROUTER  FOR SOMEONE ELSE, I CONNECTED TO IT WITHOUT ASKING  ABOUT A PW SINCE
    THAT WIRELESS ROUTER WASN'T SECURED BY A PW. BUT THEN, I WAS ASKED THAT ADDITIONAL LOGING MAY BE REQUIRED,  AND WHEN I TIRED TO OPEN A  WEBPAGE, A LOGING PAGE SHOWED ME (AS IN MY FIRST SCREEN SHOT). THUS, HOW CAN I SET SUCH SETTINGS?
    HOW CAN I LET ANY PERSON CONNECT TO MY WIRELESS ROUTER WITHOUT ASKING ABOUT A PW. HOWEVER, HE WILL THEN BE ASKED TO ENTER A LOGIN NAME AND A PW, AND HE HE WILL NOT BE ABLE TO ACCESS TO THE INTERNET UNTIL GETTING A LOGIN NAME AND A PW. I THINK THERE IS SOME
    DEVICE SHOULD BE CONNECTED TO MODEM WHICH WILL BE CONTROLLING ON WIRELESS ROUTER SUCH A WAY
     I wish you understand me.
    A man should convert his anger and sadness into strength to continue living in this life.

  • How do i make a customer service complaint.

    How do I make a complaint about a webchat operator phoning my home number to tell me off after I had filled in a survay about him. He was really rude and its really creepy to have him phone my home number to tell me off.
    There is no customer complaint no. I can find or option on any of the menus in the automated call.
    Bt must have a duty to provide a customer complaints department.
    Anyone I get through to on BT tell me they can't find it in their database. I have just been told by a BT operative to look it up in the yellow pages.

    Hi Vhon,
    Welcome and thanks for posting!
    I'm sorry that you felt the advisor that called was rude to you.  You can't find that option because whatever department you speak to should be able to address and deal with your complaint.
    Send us over the details and we'll get you sorted from here.  Click on my username and under the "about me" section of my profile you'll see the link to get in touch with us.
    Cheers,
    Robbie
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • How to make jre 1.3 and 1.4 co-exist

    Hi,
    I have an applet that I have tested and know runs fine under 1.3.1_01 to 1.3.1_04.
    I have tested it with 1.4.0_01 and know that it doesn't work.
    Right now, rather than look into why it doesnt work in 1.4 I'm interested in just making it work at all times, using 1.3.
    So there are several problems here, one to make 1.3 and 1.4 co-exist.
    I would like to tell IE ( I use 5.5 but it should also work with 6.0 ) that I dont want to use 1.4 but 1.3. The only way I have made this work is to install 1.3 after 1.4 or it won't. Regardless of how many times I turn off 1.4 from the contolpanel plugin console, and turn on 1.3 the same way, it still runs 1.4 if its installed after. (I restart IE it's not that.)
    I guess this is not just a matter of choosing the default plugin, but it depends also on the applet tag. Furthermore I would like the applet tag to say run this only with 1.3. I also would like it to install 1.3 if and ONLY if 1.3 is not installed. I have many times got the install pop-up even though I know I have the right version installed.
    My applet tag looks like this (its actually an object tag, becuase as I understand, that's the way to tell it run only the version I want) Whats wrong with it?
    <object
         id="treeApplet"
         classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
         width="100%"
         height="80%"
         border="0"
         codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,1,4"
    >
    <param name="code" value="applet/TreeApplet.class">
    <param name="codebase" value="/tree/">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
    <param name=... >
    </object>
    the class id is the dynamic, where do I find the static ones?
    Is the .cab file pointing to the right jre or is it giving me trouble? What is the url of right .exe files to use instead? will that work better?
    ok, so to summarize, how do I make all I want to work? co-existence (shouldnt it work to go back and forth between the jre versions?), running the right version, and intalling when and only when needed.
    thanks

    First, CLSID's:
    8AD9C840-044E-11D1-B3E9-00805F499D93 --> dynamic
    CAFEEFAC-0013-0001-0001-ABCDEFFEDCBA --> static, 1.3.1_01
    CAFEEFAC-0013-0001-0004-ABCDEFFEDCBA --> static, 1.3.1_04
    CAFEEFAC-0014-0000-0000-ABCDEFFEDCBA --> static, 1.4.0
    ... (you get the picture)
    Second, you are really going to have to get your applet working with 1.4 -- Microsoft was kind enough with IE 6 to drop support for Netscape-style plug-ins, which is what all the Sun JRE's except 1.4 use (making them unusable with IE 6). If you want Java on IE 6, your only options are the MS Runtime (1.1.4) or Sun's 1.4 JRE.
    Now, under IE 5, all the runtimes will co-exist fine, but you need to install them IN ORDER -- Make sure 1.3 goes on before 1.4, etc. or you will be constantly plagued by the autodownloading messages.

  • Unable to make use of Service "Release Supplier Invoice"

    We have recently installed EHP-3. I have been trying to make use of the following service
    Under Repository Browser --> Package -- > OPS_SE_IVE_XI_PROXY
    Enterprise Services -- > Server Proxies ---> II_IVE_E_INVOICEREPRELRQ (Double Click)
    The Service Release Supplier Invoice with Service Interface name --> InvoiceERPReleaseRequest_In has status Active.
    Everthing seems to in place... But I don't see the Service under SOA Manager.
    Please advice, how to make use of the Service above....
    Thanks in Advnace!!
    Vikas

    I have configured the Logical Port and able to publish other Services... but not able to find this Service itslelf under wspublish too..
    This is the message comes under Dispaly Logs "No service(s) to be published with the given criteria.
    Message no. MSG_CL_ER022"..
    Thanks for your help
    Vikas

  • Is it possible to make synchronous web service calls?

    Hi all,
    Is it possoble to get a web service call to block and wait
    for a response rather than doing it asynchronously using
    flex/action script?
    thanks

    quote:
    Originally posted by:
    Sean Hughes
    peterent - no offense, but your suggestion is a hack. All we
    need is a timeout value.
    In support of the flash player's design I'm going to have to
    disagree with you here. It is completely normal in any multi
    threaded environment to make all functionality non blocking by
    default. Blocking by design can be implemented with semaphores, and
    is not a hack. To implement simply create a flag such as
    'hold:bool' init it to false when your application starts. Set it
    to true just before the web services send() method is called. In
    the result handler you set it back to false.
    In this way you have complete control over what should be
    blocked and what should not be blocked, by simply testing the
    'hold' semaphore. In this way the GUI itself, and all non dependent
    functionality stays alive. A timeout value would arbitrarily block
    all functionality for a fixed amount of time if the request was
    never filled. Although a semaphore could be used to do this as
    well, it has far more flexibility, and users have notoriously
    shorter timeout values than developers.
    j

  • How to make a systemd service for a bash script with pipes?

    I haven't been able to make a successful systemd service from this script.
    The script itself works (in terminal and xdg autostart), but systemd doesn't run anything after the first pipe (neither sed nor spd-say execute).
    Here's my service:
    [Unit]
    Description=Speak kernel and userspace messages
    [Service]
    Type=simple
    ExecStart=/usr/local/sbin/dmesg-speak
    [Install]
    WantedBy=multi-user.target
    Systemd says the script starts successfully, but only dmesg is started; it's output is not piped through sed or spd-say.
    I've also tried Type=forking without much success.
    Is there something I can do other than switching to sysv-init?
    Do I need IgnoreSIGPIPE=false?
    Last edited by quequotion (2015-02-12 17:07:21)

    fsckd wrote:The linked script appears to lack a hashbang. No hashbang = arbitrary interpretor.
    Yeah, that should probably be there. Since last post I've employed /usr/bin/bash in the service and added a hasbang, but sdp-say still does not run as a systemd service.
    I didn't test either option individually; the key seems to be finding an audio output accessible before user login. I am not certain:
    ccoffey wrote:If a pulseaudio session exists at all
    I am curious to try this:
    ccoffey wrote:run pulseaudio and dbus via XVFB.
    Setting DISPLAY as root would then allow you play audio.
    Still, it seems to me that ALSA would be available at some stage during boot, as is speech-dispatcher (for working with speakup!). If espeak were configured to play audio for root to ALSA, there would be a sound outlet for it (espeak can be used in pipeline mode without speech-dispatcher if need be), and pulseaudio would be probably be OK with that whenever it got around to starting (audio passed through alsa gets piped through, regardless of its source right?).
    I have tried the script with espeak instead of spd-say without success.
    Last edited by quequotion (2015-02-26 03:06:24)

  • [Solved] Make systemctl find .service file in /usr/lib/systemd/user?

    I thought this had always worked, but it seems that systemctl cannot see `.service` files that are in my `/usr/lib/systemd/user` folder and I can't figure out why:
    $ locate redshift-gtk.service
    /usr/lib/systemd/user/redshift-gtk.service
    $ systemctl status redshift-gtk
    ● redshift-gtk.service
    Loaded: not-found (Reason: No such file or directory)
    Active: inactive (dead)
    I have already looked at https://wiki.archlinux.org/index.php/Systemd/User which seems to tell me to check sytemctl --user status but that appears to be loaded and working fine, I have a feeling I'm missing something obvious but can't figure out what it is. How do I make systemctl include this directory?
    $ systemctl --user status
    ● michael-work
    State: running
    Jobs: 0 queued
    Failed: 0 units
    Since: Tue 2014-08-05 11:24:32 BST; 11min ago
    CGroup: /user.slice/user-1000.slice/[email protected]
    ├─730 /usr/lib/systemd/systemd --user
    └─731 (sd-pam)
    Any ideas?
    Last edited by crashandburn4 (2014-08-05 11:09:45)

    systemctl --user status redshift-gtk.service

  • How to make Generic Object Services visible in screen

    with serviceorders and notifications we sometimes use GOS for attaching documents. only disadvantage is that it's not directly visible if attachments are present or not. you have to click on the gos button to check their presence .
    is there any method or solution to make it clear if an attachment is present in the record ?
    I already tried to create a user status for this only nasty side effect was that it took a while before the record was present in th efunction BDS_ALL_CONNECTIONS_GET
    kind regards
    arthur

    Hi,
    i had the same problem (but only for notifications). We included a customer subscreen (function group xqqm, customer project CMOD with enhancement QQMA0001). When you insert a gos attachment, an info-text will be displayed when you change or display the notification again.
    PAI in customer subscreen ist the following code, the customer subscreen has a simple read-only field in which the field g_txt70_gos  is displayed with text "Ther a are attachments".
    Prüfen, ob wir im Ändern/Anzeigen sind
      CHECK NOT viqmel-qmnum IS INITIAL.
    Wurde schon einmal erfolglos gelesen?
      CHECK g_flag_links_obtained  = c_false.
      g_flag_links_obtained = c_true.
    Wurde Vorgänger schon einmal erfolgreich gelesen?
      IF g_txt70_gos IS INITIAL.
        IF tq80 IS INITIAL.
          SELECT SINGLE * FROM tq80
                                 WHERE qmart = ls_viqmel-qmart.
        ENDIF.
        CASE tq80-qmtyp.
          WHEN ypm_01.
            g_object_gos-objtype = c_bus2038.
          WHEN yqm_02.
            g_object_gos-objtype = c_bus2078.
          WHEN ysm_03.
            g_object_gos-objtype = c_bus2080.
          WHEN ynm_05.
            g_object_gos-objtype = c_bus7051.
        ENDCASE.
        g_object_gos-objkey = viqmel-qmnum.
        SELECT * UP TO 1 ROWS
             FROM srgbtbrel
             WHERE
               instid_a = g_object_gos-objkey AND
               typeid_a = g_object_gos-objtype AND
               catid_a = 'BO' AND
               ( reltype = c_reltype_atta OR
               reltype = c_reltype_url ).
        ENDSELECT.
        IF sy-subrc = 0.
          g_txt70_gos = 'Es gibt Anlagen zu dieser Meldung'(z03).
        ENDIF.
      ENDIF.

  • How to make a reporting services report always print one sided

    We have a need to be able to print a specific report always one-sided, even when the printer property is defaulted to duplex.
    Is there a way on a report to do this?

    Hi WAConnie,
    According to your description, you want to set the one-sided printing in Reporting Services. Right?
    In Reporting Services, we don't have any feature/properties to set the printer one-sided. Please refer to the screenshots of print properties:
    In this scenario, you can only set this property on printer side.
    Reference:
    Print Reports (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • [solved] What makes systemd-logind.service fail?

    After last update made yesterday I was unable to reboot. With the help of an installation cd  and chrooting I disabled my graphical login manager lxdm which, when started, seems to do nothing and the system is stuck.
    Without lxdm service enabled, I can start xfce4 with
    startxfce4
    from commandline and everything seems to run fine. 
    But the booting process gives me several messages telling that the service systemd-logind failed. Apart from the virtual console created while booting and the one running X11 there is no other one (no login prompt when pressing strg+alt f3 e.g.)
    [root@amd64-archlinux ~]# systemctl status systemd-logind
    ● systemd-logind.service - Login Service
    Loaded: loaded (/usr/lib/systemd/system/systemd-logind.service; static)
    Active: failed (Result: start-limit) since Sun 2014-06-08 19:09:24 CEST; 5min ago
    Docs: man:systemd-logind.service(8)
    man:logind.conf(5)
    http://www.freedesktop.org/wiki/Software/systemd/logind
    http://www.freedesktop.org/wiki/Software/systemd/multiseat
    Process: 336 ExecStart=/usr/lib/systemd/systemd-logind (code=exited, status=1/FAILURE)
    Main PID: 336 (code=exited, status=1/FAILURE)
    Status: "Shutting down..."
    Jun 08 19:09:24 amd64-archlinux systemd[1]: Failed to start Login Service.
    Jun 08 19:09:24 amd64-archlinux systemd[1]: Unit systemd-logind.service entered failed state.
    Jun 08 19:09:24 amd64-archlinux systemd[1]: systemd-logind.service has no holdoff time, scheduling restart.
    Jun 08 19:09:24 amd64-archlinux systemd[1]: Stopping Login Service...
    Jun 08 19:09:24 amd64-archlinux systemd[1]: Starting Login Service...
    Jun 08 19:09:24 amd64-archlinux systemd[1]: systemd-logind.service start request repeated too quickly, refusing to start.
    Jun 08 19:09:24 amd64-archlinux systemd[1]: Failed to start Login Service.
    Jun 08 19:09:24 amd64-archlinux systemd[1]: Unit systemd-logind.service entered failed state.
    Has anyone an idea where to lead me?
    Last edited by bernd_b (2014-06-09 11:20:21)

    I don't know if I got you point - but here is a try:
    I am running X11 started manually with "startxfce4". So firing up a konsole in X11 I do and get
    root@amd64-archlinux pkg]# systemctl stop systemd-logind
    [root@amd64-archlinux pkg]# systemctl start systemd-logind
    Job for systemd-logind.service failed. See 'systemctl status systemd-logind.service' and 'journalctl -xn' for details.
    journalctl -xn:
    -- Unit systemd-logind.service has begun shutting down.
    Jun 08 21:38:18 amd64-archlinux systemd[1]: Starting Login Service...
    -- Subject: Unit systemd-logind.service has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-logind.service has begun starting up.
    Jun 08 21:38:18 amd64-archlinux systemd[1]: systemd-logind.service start request repeated too quickly, refusing to start.
    Jun 08 21:38:18 amd64-archlinux systemd[1]: Failed to start Login Service.
    -- Subject: Unit systemd-logind.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-logind.service has failed.
    -- The result is failed.
    I ran the service directly I get:
    [root@amd64-archlinux pkg]# /usr/lib/systemd/systemd-logind
    Failed to connect to system bus: No such file or directory
    Failed to fully start up daemon: No such file or directory
    What I figured out so far is this in addition:
    - krusader does not start- there is no response or message in the konsole when firing up this application.
    - I can only mount nfs-shares with the option "-o nolock" otherwise I get, e.g.
    mount.nfs: rpc.statd is not running but is required for remote locking.
    mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
    mount.nfs: an incorrect mount option was specified
    Last edited by bernd_b (2014-06-08 19:48:43)

  • What components make up the services repository?

    Hello,
    I am looking for information on the services repository in Netweaver.
    Can you point me to any documents which describe the enterprise services or web services repository? How do you publish and access  a service and is the repository UDDI compliant?  Where do you locate WSDL files?
    Any pointers you have would be helpful, thanks,
    John.

    The web services repository for Netweaver is built into WAS 6.40.  On SDN, there is a web services section under Web Application Server, you may want to check into that area. 
    The UDDI directory on WAS is UDDI compliant.  In addition, it was developed based on standards that Microsfot and SAP were a strong part of creating.  If you look at the UDDI directory on WAS and Windows 2003 Server, you will see striking similarities. 
    I've struggled to find good documentation on WAS UDDI on SDN.  I do know it is installed as part of the WAS.  You can manually load services into the WAS UDDI through a front end, and you can search for them as well.  The UDDI also provides a programmatic way to load and find services (via web services).  However, at this point I'm unable to find any documentation on that.
    I hope this gives you some help, though I understand I've not answered all your questions.

  • How to make a web service out of a Stored procedure/Package

    Hi
    I have developed a PL/SQL Package and i wanted to expose this package as a WebService. Can you please give me the detailed steps to create a webservice.
    Your help in this regard is highly appreciated.
    Thanks
    Laj

    Laj,
    I've not done it myself but I believe that there are wizards in JDeveloper that do most (if not all) of the work for you.
    You could try searching the JDeveloper forum.
    Patrick.

Maybe you are looking for

  • Error while burning dvd in pre 8.0 "device error-the target device isn't suitable for use."

    I am trying to burn a dvd in premiere elements 8.0 but after 96%  iam getting this error : "device error-the target device isn't suitable for use." I have tried all of these steps according to this link :http://kb2.adobe.com/cps/515/cpsid_51553.html.

  • Apex fails to connect after rebooting XE

    Hi: My environment is Apex 4.0.0, Oracle XE 10.2.0, Apex default Gateway, Windows 2008 32 bit. After I reboot the database, Apex fails to connect. If I check the Apex port number, it lists 8080, as expected. (SELECT DBMS_XDB.GETHTTPPORT FROM DUAL;) L

  • FM for excel sheet download

    Is there any function module which can help me download data from an internal table into mutiple sheets on an excel workbook ? My internal table contains more than 65536 records.

  • Sending fax using java API

    Hai, There is a requirement in one of the projects i am currently working, to send fax from the application to any fax machine in the world. I am now assigned the task of finding out how this can be done in java. I have been " googling " all day . Al

  • Won't display images - Its probably something simple!

    Hey , Ive been trying for ages, looked throught the tutorials (i have even tried just using java pasted from the site for one of the simple programs) and looking through old forum questions but can't find out why my GUI wont display images. It compil