How can I do to install a domain like wndows service in JCAPS 6.0?

I'm using JCAPS 6.0 and to start the domain I have to invoke eveytime:
$ asadmin start-domain --user admin domain1
Is possible create a windows service that permit to call this procedure directly?

I've created a new domain with this command:
$ asadmin create-domain adminport 18000 user admin dmRemineTest
I've installed the serviceWindows with this script:
SETLOCAL
SET I=C:\Sun\SDK
c:\windows\system32\sc.exe create JCAPS6U1_dmRemineTest binPath= "%I%\lib\appservService.exe \"%I%\bin\asadmin.bat start-domain dmRemineTest\" \"%I%\bin\asadmin.bat stop-domain dmRemineTest\"" start= auto DisplayName= "JCAPS6U1_dmRemineTest"
pause
ENDLOCAL
like the one suggest me in this forum, and thanks for it but now i have an other problem. I've started the domain dmRemineTest and it is running:
asadmin> list-domains
dmRemineTest running
domain1 not running
Command list-domains executed successfully.
I'm proving to access to eManager at link: http://intaliodevsrv:15000/eManager/Welcome.do
inserting this informations required:
Server Type: Sun Java System Application Server Domain (9.1)
Host Name: localhost
HTTP Administration Port: 18000
User Name: admin
Password: adminadmin
I insert into HTTP Administration Port 18000 from here:
<http-listener acceptor-threads="1" address="0.0.0.0" blocking-enabled="false" default-virtual-server="__asadmin" enabled="true" family="inet" id="admin-listener" port="18000" security-enabled="false" server-name="" xpowered-by="true"/>
When I click on Connect to Server, eManager response with this message:
Connection Failed. Please check the following:
- Server Type is correct.
- Server is running.
- Hostname and Port number(s) are correct.
- Server SSL configuration.
How can I solve the problem?

Similar Messages

  • How can I do to install Patch and RDBMS using SILENT mode in a Pentium 4 ?

    I was installing the Oracle 8.1.6.0.0 in remote machines using a SILENT mode normally. But now, I`m having a problem with the Pentium 4. I need to apply a patch because of the bug number 1507768. And, after apply the patch, I don't get to install using the same response file (in a SILENT mode). How can I do to install the patch and the RDBMS using a SILENT mode in a Pentium 4?

    I've created a new domain with this command:
    $ asadmin create-domain adminport 18000 user admin dmRemineTest
    I've installed the serviceWindows with this script:
    SETLOCAL
    SET I=C:\Sun\SDK
    c:\windows\system32\sc.exe create JCAPS6U1_dmRemineTest binPath= "%I%\lib\appservService.exe \"%I%\bin\asadmin.bat start-domain dmRemineTest\" \"%I%\bin\asadmin.bat stop-domain dmRemineTest\"" start= auto DisplayName= "JCAPS6U1_dmRemineTest"
    pause
    ENDLOCAL
    like the one suggest me in this forum, and thanks for it but now i have an other problem. I've started the domain dmRemineTest and it is running:
    asadmin> list-domains
    dmRemineTest running
    domain1 not running
    Command list-domains executed successfully.
    I'm proving to access to eManager at link: http://intaliodevsrv:15000/eManager/Welcome.do
    inserting this informations required:
    Server Type: Sun Java System Application Server Domain (9.1)
    Host Name: localhost
    HTTP Administration Port: 18000
    User Name: admin
    Password: adminadmin
    I insert into HTTP Administration Port 18000 from here:
    <http-listener acceptor-threads="1" address="0.0.0.0" blocking-enabled="false" default-virtual-server="__asadmin" enabled="true" family="inet" id="admin-listener" port="18000" security-enabled="false" server-name="" xpowered-by="true"/>
    When I click on Connect to Server, eManager response with this message:
    Connection Failed. Please check the following:
    - Server Type is correct.
    - Server is running.
    - Hostname and Port number(s) are correct.
    - Server SSL configuration.
    How can I solve the problem?

  • Adobe CR 6.7 does not install into CS5, how can I get this installed to view CR files?

    Just installed CS5 onto new computer. Adobe bridge and CS5 do not recognize CR format. How can I get this installed. I have tried up dating and downloading the CR6.7 update, but can not get it to install. What do I do?

    Product updates

  • Hey, I'm trying to install Adobe Flash on my Macbook Air. At a certain point it asks for my password but it doesn't take it. So I cannot continue installment. I have reset my password already. Still the same problem. How can I continue to install when it

    Hey, I'm trying to install Adobe Flash on my Macbook Air. At a certain point it asks for my password but it doesn't take it. So I cannot continue installment. I have reset my password already. Still the same problem. How can I continue to install when it keeps asking for a password it doesn't recognize over and over again? How many times do I have to reset it then? Advice please

    You have to provide your computer's administrator password in order to install Flash Player.

  • How can send mails using hotmail/rediffmail domain name?

    I have used the below code to send a mail using javamail API?Even when I am sending my application does not have notified any of error/exceptions,But the message is not reached to I have given receipient's address in the to field.
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class Sendmail1 extends HttpServlet {
    private String smtpHost;
    // Initialize the servlet with the hostname of the SMTP server
    // we'll be using the send the messages
    public void init(ServletConfig config)
    throws ServletException {
    super.init(config);
    smtpHost = config.getInitParameter("smtpHost");
    //smtpHost = "sbm5501";
    smtpHost = "www.rediffmail.com";
    public void doGet(HttpServletRequest request,HttpServletResponse response)
    throws ServletException, java.io.IOException {
    String from = request.getParameter("from");
    String to "[email protected]";
    String cc = "[email protected]";
    String bcc ="[email protected]";
    String smtp ="www.rediffmail.com";
    String subject = "hai";
    String text = "Hai how r u";
    PrintWriter writer = response.getWriter();
    if (subject == null)
    subject = "Null";
    if (text == null)
    text = "No message";
    String status;
    try {
    // Create the JavaMail session
    java.util.Properties properties = System.getProperties();
    if (smtp == null)
    smtp = "www.rediffmail.com";
    properties.put("mail.smtp.host", smtp);
    Session session = Session.getInstance(properties, null);
    //to connect
    //Transport transport =session.getTransport("smtp");
    //transport.connect(smtpHost,user,password);
    // Construct the message
    MimeMessage message = new MimeMessage(session);
    // Set the from address
    Address fromAddress = new InternetAddress(from);
    message.setFrom(fromAddress);
    // Parse and set the recipient addresses
    Address[] toAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.TO,toAddresses);
    Address[] ccAddresses = InternetAddress.parse(cc);
    message.setRecipients(Message.RecipientType.CC,ccAddresses);
    Address[] bccAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.BCC,bccAddresses);
    // Set the subject and text
    message.setSubject(subject);
    message.setText(text);
    Transport.send(message);
    //status = "<h1>Congratulations,</h1><h2>Your message was sent.</h2>";
    } catch (AddressException e)
    status = "There was an error parsing the addresses. " + e;
    } catch (SendFailedException e)
    status = "<h1>Sorry,</h1><h2>There was an error sending the message.</h2>" + e;
    } catch (MessagingException e)
    status = "There was an unexpected error. " + e;
    // Output a status message
    response.setContentType("text/html");
    writer.println("<title>sendForm</title><body bgcolor= ><b><h3><font color=green><CENTER>CALIBERINFO.COM</CENTER></h3>Your message was sent to recepient(s).<br><font color=red>"+"\n"+to);
    writer.println("<br><br><a href=e:/mail/javamail/mail.html>back to compose</a>");
    writer.close();
    Please any one help me out from this probs.
    Awaiting for yours reply,
    or give me a reply to: [email protected]
    Regards,
    @maheshkumar.k

    Hi,
    how can send mails using hotmail/rediffmail domain name?In your java application,you specified www.rediffmail.com as your
    smtp server.But that is the address of that website.Try will a smtp
    server instead.For a list of free smtp servers,please visit http://www.thebestfree.net/free/freesmtp.htm
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support/

  • The Safari on my iMac is no longer supported, how can I download   and install a new version?

    The Safari browser on my iMac OSX 10.6.8 is no longer supported. How can I download and install a supported Safari browser?

    If you’re running Safari 5.1.10, you need to either upgrade the computer’s OS or switch browsers.
    To upgrade, open the Mac App Store and try downloading Yosemite. If you get told it's incompatible, choose About this Mac from the Apple menu, check if the computer has at least a Xeon or Core 2 Duo(not Core Duo) CPU and 2GB of RAM, and if it does, click here and order a download code for Lion 10.7.
    Back up your data and check your applications for compatibility before upgrading. In particular, Mac OS X 10.7 and newer don't support PowerPC programs such as versions of Microsoft Office prior to 2008.
    (123754)

  • I bought iphone 3G with ios 4.2.1 -however I couldn't install viber, Skype--it say that it needs update to ios 4.3 what it means and  how can I mange to install such program?

    could you some one help me? I bought iphone 3G with opration system ios 4.2.1 ..however i couldn't install viber, skype and othe software , ...it say that need update to iso 4.3 .what it means and how can I manged to install such program in my iphone?

    iOS 4.2.1 is the latest version available for the iPhone 3G, if apps require iOS higher than that then unfortunately you will not be able to install it.

  • How can i find the installed forms version in 6i...?

    Dear all,
    How can i find the installed forms version in 6i, the situation is we have given a solution which will work in only forms6i latest version, before implementing the same we need to check whether the forms latest version has been installed or not
    Is there any way to find out without opening the forms builder..?
    Even if we un install the forms from a machine, the forms60_path variable will remain in regedit, so we cannot go based on that and aslo i dont know whether regedit will have the version details and all.
    It would be greatly appreciated if any one can give a solution.
    Thanks in Advance.
    Thangaraj.

    you query the registry, the registry has the version number saved, but I cannot remember exactly where and I don't have 6i Installed on my machine.
    You just open the Forms Builder and click on Help/About.
    But Jan's method is the best.

  • I just had an app update that I tried to download - iBooks and it said it couldn't be installed but now it is saying installing for the last 5 days, how can I delete this install and start over?

    I had an app update a few days ago, iBooks and tried to install it on my iphone4s ios 6 and it said it could't be installed.  But instead of it going away it now says it is installing and this had been going on for day.  How can I delete this install?  I have tried going to itunes but cannot find this....
    Please help so I can get this off my phone and maybe try reinstalling it.....

    I had an app update a few days ago, iBooks and tried to install it on my iphone4s ios 6 and it said it could't be installed.  But instead of it going away it now says it is installing and this had been going on for day.  How can I delete this install?  I have tried going to itunes but cannot find this....
    Please help so I can get this off my phone and maybe try reinstalling it.....

  • How can I do to install the path fix

    How can I do to install the path fix in BerkeleyDB 4.5.20?
    I'm using Windows with BerkeleyDB MSI instalation.

    It doesn't look like the patch applies cleanly ?
    cd /Users/vajda/osaf/osaf/external/db/db-4.5.20; patch -Np0 < ../patch.4.5.20.1; echo ok
    (Stripping trailing CRs from patch.)
    patching file sequence/sequence.c
    Hunk #1 FAILED at 228.
    Hunk #2 succeeded at 368 with fuzz 2.
    Hunk #3 FAILED at 768.
    2 out of 3 hunks FAILED -- saving rejects to file sequence/sequence.c.rej
    ok
    cd /Users/vajda/osaf/osaf/external/db/db-4.5.20; patch -Np0 < ../patch.4.5.20.2; echo ok
    patching file rep/rep_method.c
    Hunk #1 succeeded at 526 (offset 2 lines).
    Hunk #2 succeeded at 555 (offset 2 lines).
    patching file rep/rep_record.c
    Hunk #1 succeeded at 163 (offset 2 lines).
    Hunk #2 succeeded at 629 (offset 2 lines).
    ok
    I'm applying it to a source tree from a db-4.5.20.tar.gz archive dated October 5th, 2006.
    (yes, this is before I apply any of my own patches)
    Andi..

  • How can I dowload and install libagluc28.dll in my Adobe Bridge program?

    How can I download and install libagluc28.dll in my Adobe Bridge program?

    libagluc28.dll file issue - Microsoft Community
    …and I doubt it has anything to do with Adobe.

  • How can I find the currently logined domain name on Windows??

    Dear,
    I've a program that query some user account information from A.D.
    But I don't want to hard code anything.
    I've read some previous post about using LDAP, and using DNS queries to found all LDAP server of A.D.
    But how can I get the A.D. domain name in Java?
    for example
    ldcp://_ldap._tcp.xxxx.yyyy
    I want to get "xxxx.yyyy" from the logined user account. It is possible in Java.

    You coud use the NTSystem class to derive the NetBIOS domain name, however without doing some gymnastics it isn't easy to derive the fully qualified domain name. import java.io.*;
    import com.sun.security.auth.module.NTSystem;
    class NTDomain {
         public static void main(String[] args) {
              NTSystem system = new NTSystem();
              String domain = system.getDomain();
              System.out.println("Domain: " + domain);
    }The only other alternatives could be to check the domain suffix of the user principal that was authenticated via Kerberos ....
    lc = new LoginContext(searchkrb5.class.getName(),new SampleCallbackHandler());
         lc.login();
         catch (LoginException le) {
              System.out.println("Logon failed: " + le);
              System.exit(-1);
         System.out.println("Authenticated via GSS-API");
            System.out.println("User: " + lc.getSubject().getPrincipals().toString); however I think that you still have to specifify the Kerberos realm in the apps configuration file.
    Another alternative could be to make assumptions about the machines hostname, however one day an assumption will always be proven wrong, (eg. The machine's DNS domain name does not need to match the Active Directory domain).
    Unless there is a Java API to read the Windows registry or extract Kerberos ticket information from the WIndows Kerberos ticket cache, you may be kind of stuck.

  • Every app install results in the "waiting" mode on my home screen.   How can I complete the install process?

    Every attempted app installation results in the "waiting" mode icon on my home screen.   How can I complete the install process?   What am I missing?

    Hi,
    1) Forget downloading the application from the device, and instead download it through iTunes and sync to transfer the application to your iPhone / iPad.
    2) Other way is: Go to Application Settings> Store and tap above the Apple ID to sign out. Restart your iPhone / iPad, go back to Settings> Store and sign. Tap the icon that was waiting to update the application.

  • How can I do to install the apple store that I deleted from Maveriks?

    how can I do to install the apple store that I deleted from Maveriks?
    thanks you
    <Email Edited by Host>

    Continuing what I linked last time, this is an older thread that covered a similar problem.   Preview, Fontbook, Maps not working...: Apple Support Communities
    See the post by MacJack which was awarded solved.

  • How can I change the install location when installing an App (i.e. Lightroom) from Creative Cloud?

    How can I change the install location when installing an App (i.e. Lightroom) from Creative Cloud?

    Rolfjuelg I am sorry but Lightroom does not support custom installation locations through the Creative Cloud.  You can find more details at Lightroom and Creative Cloud FAQ.

Maybe you are looking for

  • Excise base amount for the material in J1IF01-Subcontracting Challan

    Dear Expert, we are facing problem while creating subcontracting challlan (J1IF01) ie assasable vlaue in material master is appearing as excise base amount in J1IF01. We want to take  latest excise invoice value for the material as excise base amount

  • Migrating Windows XP from Desktop to Laptop

    Hello - I use Virtual Box to run Windows XP on my desktop. I'm trying to use Migration Assistant to bring Windows XP over to my new Retina Laptop - (no dvd drive) ... but it's not working -  Any suggestions for how to get Migration Assistant to bring

  • Aggregate sql select

    Hi, I'm in Oracle 11g, need some help writing aggregate sql select. That might be really easy I hope. We are doing some web analytics and counting clicks on a company’s web site, so I have to count sums on clicks, visitors and sessions from activity

  • Debugger in Oracle

    Debugger in Oracle Mar 23, 2004 2:02 PM Reply Debugger In Oracle What packages does Oracle Use to make debug to procedures, functions, etc. I use Embarcadero Rapid SQL Debugger module and PL/SQL Developer Debugger module and one of these tool don't i

  • Can i share iPhoto libraries between macs

    I just bought a MacBook Air and am looking to share the library in my iPhoto between my iMac and MacBook Air.  Is this possible?