Blazix Server

When I load the Blazix Server I got the following Message
Clustering :no clustering configuration file found
What should be done regarding the above message ?
Host name : shailaja IP Address 202.88.211.133 Port 80
Index Url : http:/shailaja
But when I try a loading a simple program under the above url it is not working ?
Blazix web Server Operational at Sat Jun 18....
What should I do get the jsp code working ?
Kindly reply
regards
sj

well, im unsure..because the jsp tags are blazix's standard.
however, i actually execute its update tag (for insert too) before retrieving the latest chat. Since it only happens after a certain time, does this mean microsoft access or blazix isn't fast enough or something else? like..cache? but if its cache..why does it happen only after a certain period of time instead of instantly when i start to use the application..

Similar Messages

  • Java.io.FileNotFoundException: C:\Blazix\ejbtemp\pack1\JellyBeanCtx_Skel.cl

    Dear all,
    I am using Blazix server, when i executing third command in the build file , i got this exception , so now i am unable to create EJB jar , please send me reply for this doubt
    D:\mania\java\kum>blxejbc Jelly.jar JellyEjb.jar
    Blazix EJB Compiler 1.2
    Copyright (C) Desiderata Software, 2001-2006
    All rights reserved
    Configuration file: C:\Blazix\ejb.ini
    JRMP Version
    Processing Session bean "Jelly"
    Validating bean classes
    Generating bean support classes
    Jelly: Compiling classes with javac
    Jelly: Generating RMI classes
    Jelly: Adding to JAR file JellyEjb.jar
    java.io.FileNotFoundException: C:\Blazix\ejbtemp\pack1\JellyBeanCtx_Skel.class (
    The system cannot find the file specified)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(Unknown Source)
    at desisoft.ejbtools.EjbCompiler.addZipEntry(EjbCompiler.java:79)
    at desisoft.ejbtools.EjbCompiler.compileAndAddToJar(EjbCompiler.java:133
    8)
    at desisoft.ejbtools.EjbCompiler.compileBeans(EjbCompiler.java:449)
    at desisoft.ejbtools.EjbCompiler.compile(EjbCompiler.java:224)
    at desisoft.ejbtools.EjbCompiler.main(EjbCompiler.java:1513)

    how can we know the third command in your build file unless you put the build file here???

  • Javax.servlet.ServletException: Cannot create bean of class

    People,
    HELP!! I am getting desperate!!!
    I am a newbie when it comes to TOMCAT, but i have been using Blazix before.
    My current system is using APACHE/TOMCAT on a Solaris machine and I keep hitting the same problem. I have gone through the archives but the only thing it states is to check the directory which i have done.
    I keep getting:
    Error 500
    Internal Error
    javax.servlet.ServletException: Cannot create bean of class MyClass
    The code used to work on the Blazix server so i am assuming it is something to do with a config parameter somewhere - but i do not know where. I have checked the directory/package structure and they seem to work. It even serves it when they are html pages not jsp, but obviously wont use the bean. :(
    I can post code if necessary.
    Please help
    Steve

    The FormData.class file is in examples/WEB-INF/classes/ directory.
    Is this wrong? then should it be in a package called examples.steve???
    <TITLE> Poc </TITLE>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <META NAME="Generator" CONTENT="Mozilla/4.61 [en] (WinNT; I) [Netscape]">
    <META NAME="Author" CONTENT="Steve Brodie">
    <META NAME="Proof of Concept order entry system" CONTENT="">
    <META NAME="PROOF OF CONCEPT ORDER ENTRY SYSTEM " CONTENT="">
    </HEAD>
    <%@ page import="steve.FormData" %>
    <jsp:useBean id="user" class="steve.FormData"/>
    <jsp:setProperty name="user" property="*"/>
    <FORM METHOD=POST ACTION="SaveDetails.jsp">
    <CENTER>
    <H1>     
    POC CNS demo <BR>
    POC Order Entry System <BR></H1>
    <H2><CENTER>PROOF OF CONCEPT ORDER ENTRY SYSTEM <BR>
    in order to illustrate the use of an new product<BR></H1>
    </CENTER>
    <BODY>
    Please enter the following details: <BR>
    Second name <INPUT TYPE=TEXT NAME=secondName SIZE=20><BR>
    First name <INPUT TYPE=TEXT NAME=firstName SIZE=20><BR>
    Address <INPUT TYPE=TEXT NAME=address1 SIZE=20><BR>
    Address <INPUT TYPE=TEXT NAME=address2 SIZE=20><BR>
    Post Code <INPUT TYPE=TEXT NAME=postCode SIZE=10><BR>
    Phone NO. <INPUT TYPE=TEXT NAME=phone SIZE=10><BR>
    <BR>
    Credit Card<INPUT TYPE=TEXT NAME=credit SIZE=15><BR>
    <BR>
    Quality of Service:
    <SELECT TYPE=TEXT NAME="QoS">
    <OPTION SELECTED TYPE=TEXT NAME=Gold>Gold <BR>
    <OPTION TYPE=TEXT NAME=Silver>Silver <BR>
    <OPTION TYPE=TEXT NAME=Bronze>Bronze <BR>
    </SELECT>
    <BR>
    <BR>
    <INPUT TYPE=RESET>
    <P><INPUT TYPE=SUBMIT>
    <BR>
    <BR>
    <IMG SRC=../images/Cisco.gif>
    </FORM>
    </BODY>
    </HTML>
    package steve;
    * @author Steven Brodie
    * @date
    * @version 0.0
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    public class FormData {
         String secondName = null;
         String firstName = null;
         String address1 = null;
         String address2 = null;
         String postCode = null;
         int credit = 0;
         int phone = 0;
         String qos = null;
         String file = "out";
         String filex = "xout";
         PrintWriter pout = null;
         PrintWriter xout = null;
         FormData() {
              try {
                   pout = new PrintWriter(new BufferedWriter(new FileWriter(file + ".txt")));
                   xout = new PrintWriter(new BufferedWriter(new FileWriter(filex + ".xml")));
              xout.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
              xout.println("<OrderEntry xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"");
              xout.println("xsi:noNamespaceSchemaLocation=\"http://machine2.com:8080/xml/xsd/OrderEntry.xsd\">");
              } catch (IOException ioe) {
                   System.err.println("DataFileWriter error ioe on init");
                   ioe.printStackTrace();
                   System.exit(1);
    public void setFirstName( String value ) {
    firstName = value;
              System.out.println(firstName);
              pout.println(firstName);
              xout.println("<firstname value= \"" + firstName + "\"/>");
    public void setSecondName( String value ) {
    secondName = value;
              System.out.println(secondName);
              pout.println(secondName);
              xout.println("<secondname value= \"" + secondName + "\"/>");
    public void setAddress1( String value ) {
    address1 = value;
              System.out.println(address1);
         pout.println(address1);
              xout.println("<address1 value= \"" + address1 + "\"/>");
    public void setAddress2( String value ) {
    address2 = value;
              System.out.println(address2);
              pout.println(address2);
              xout.println("<address2 value= \"" + address2 + "\"/>");
    public void setPostCode( String value ) {
    postCode = value;
              System.out.println(postCode);
              pout.println(postCode);
              xout.println("<postCode value= \"" + postCode + "\"/>");
    public void setCredit( int value ) {
    credit = value;
              System.out.println(credit);
              pout.println(credit);
              xout.println("<creditCard value= \"" + credit + "\"/>");
         public void setPhone( int value) {
              phone = value;
              System.out.println("0" + phone);
              pout.println("0" + phone);
              xout.println("<phoneNo value= \"0" + phone + "\"/>");
    public void setQoS( String value ) {
    qos = value;
              System.out.println(qos);
              pout.println(qos);
              xout.println("<QoS value= \"" + qos + "\"/>");
              xout.println("</OrderEntry>");
              pout.flush();
              pout.close();
              xout.flush();
              xout.close();
    public String getFirstName() {
              return firstName;
    public String getSecondName() {
              return secondName;
    public String getAddress1() {
              return address1;
    public String getAddress2() {
              return address2;
    public String getPostCode() {
              return postCode;
    public int getCredit() {
              return credit;
         public int getPhone() {
              return phone;
         public String getQoS() {
              return qos;

  • Repost: Cart find class of Bean :-{

    People,
    HELP!! I am getting desperate!!!
    I am a newbie when it comes to TOMCAT, but i have been using Blazix before.
    My current system is using APACHE/TOMCAT on a Solaris machine and I keep hitting the same problem. I have gone through the archives but the only thing it states is to check the directory which i have done.
    I keep getting:
    Error 500
    Internal Error
    javax.servlet.ServletException: Cannot create bean of class MyClass
    The code used to work on the Blazix server so i am assuming it is something to do with a config parameter somewhere - but i do not know where. I have checked the directory/package structure and they seem to work. It even serves it when they are html pages not jsp, but obviously wont use the bean. :(
    I can post code if necessary.
    Please help
    Steve
    The FormData.class file is in examples/WEB-INF/classes/ directory.
    Is this wrong? then should it be in a package called examples.steve???
    <TITLE> Poc </TITLE>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <META NAME="Generator" CONTENT="Mozilla/4.61 [en] (WinNT; I) [Netscape]">
    <META NAME="Author" CONTENT="Steve Brodie">
    <META NAME="Proof of Concept order entry system" CONTENT="">
    <META NAME="PROOF OF CONCEPT ORDER ENTRY SYSTEM " CONTENT="">
    </HEAD>
    <%@ page import="steve.FormData" %>
    <jsp:useBean id="user" class="steve.FormData"/>
    <jsp:setProperty name="user" property="*"/>
    <FORM METHOD=POST ACTION="SaveDetails.jsp">
    <CENTER>
    <H1>
    POC CNS demo <BR>
    POC Order Entry System <BR></H1>
    <H2><CENTER>PROOF OF CONCEPT ORDER ENTRY SYSTEM <BR>
    in order to illustrate the use of an new product<BR></H1>
    </CENTER>
    <BODY>
    Please enter the following details: <BR>
    Second name <INPUT TYPE=TEXT NAME=secondName SIZE=20><BR>
    First name <INPUT TYPE=TEXT NAME=firstName SIZE=20><BR>
    Address <INPUT TYPE=TEXT NAME=address1 SIZE=20><BR>
    Address <INPUT TYPE=TEXT NAME=address2 SIZE=20><BR>
    Post Code <INPUT TYPE=TEXT NAME=postCode SIZE=10><BR>
    Phone NO. <INPUT TYPE=TEXT NAME=phone SIZE=10><BR>
    <BR>
    Credit Card<INPUT TYPE=TEXT NAME=credit SIZE=15><BR>
    <BR>
    Quality of Service:
    <SELECT TYPE=TEXT NAME="QoS">
    <OPTION SELECTED TYPE=TEXT NAME=Gold>Gold <BR>
    <OPTION TYPE=TEXT NAME=Silver>Silver <BR>
    <OPTION TYPE=TEXT NAME=Bronze>Bronze <BR>
    </SELECT>
    <BR>
    <BR>
    <INPUT TYPE=RESET>
    <P><INPUT TYPE=SUBMIT>
    <BR>
    <BR>
    <IMG SRC=../images/Cisco.gif>
    </FORM>
    </BODY>
    </HTML>
    package steve;
    * @author Steven Brodie
    * @date
    * @version 0.0
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    public class FormData {
    String secondName = null;
    String firstName = null;
    String address1 = null;
    String address2 = null;
    String postCode = null;
    int credit = 0;
    int phone = 0;
    String qos = null;
    String file = "out";
    String filex = "xout";
    PrintWriter pout = null;
    PrintWriter xout = null;
    FormData() {
    try {
    pout = new PrintWriter(new BufferedWriter(new FileWriter(file + ".txt")));
    xout = new PrintWriter(new BufferedWriter(new FileWriter(filex + ".xml")));
    xout.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
    xout.println("<OrderEntry xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"");
    xout.println("xsi:noNamespaceSchemaLocation=\"http://machine2.com:8080/xml/xsd/OrderEntry.xsd\">");
    } catch (IOException ioe) {
    System.err.println("DataFileWriter error ioe on init");
    ioe.printStackTrace();
    System.exit(1);
    public void setFirstName( String value ) {
    firstName = value;
    System.out.println(firstName);
    pout.println(firstName);
    xout.println("<firstname value= \"" + firstName + "\"/>");
    public void setSecondName( String value ) {
    secondName = value;
    System.out.println(secondName);
    pout.println(secondName);
    xout.println("<secondname value= \"" + secondName + "\"/>");
    public void setAddress1( String value ) {
    address1 = value;
    System.out.println(address1);
    pout.println(address1);
    xout.println("<address1 value= \"" + address1 + "\"/>");
    public void setAddress2( String value ) {
    address2 = value;
    System.out.println(address2);
    pout.println(address2);
    xout.println("<address2 value= \"" + address2 + "\"/>");
    public void setPostCode( String value ) {
    postCode = value;
    System.out.println(postCode);
    pout.println(postCode);
    xout.println("<postCode value= \"" + postCode + "\"/>");
    public void setCredit( int value ) {
    credit = value;
    System.out.println(credit);
    pout.println(credit);
    xout.println("<creditCard value= \"" + credit + "\"/>");
    public void setPhone( int value) {
    phone = value;
    System.out.println("0" + phone);
    pout.println("0" + phone);
    xout.println("<phoneNo value= \"0" + phone + "\"/>");
    public void setQoS( String value ) {
    qos = value;
    System.out.println(qos);
    pout.println(qos);
    xout.println("<QoS value= \"" + qos + "\"/>");
    xout.println("</OrderEntry>");
    pout.flush();
    pout.close();
    xout.flush();
    xout.close();
    public String getFirstName() {
    return firstName;
    public String getSecondName() {
    return secondName;
    public String getAddress1() {
    return address1;
    public String getAddress2() {
    return address2;
    public String getPostCode() {
    return postCode;
    public int getCredit() {
    return credit;
    public int getPhone() {
    return phone;
    public String getQoS() {
    return qos;
    *******************************************************************************

    try by adding the keyword 'public' before your FormData constructor.
    It must looks like,public FormData() {
    try {
    pout = new PrintWriter(new BufferedWriter(new FileWriter(file + ".txt")));
    xout = new PrintWriter(new BufferedWriter(new FileWriter(filex + ".xml")));
    xout.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
    xout.println("<OrderEntry xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"");
    xout.println("xsi:noNamespaceSchemaLocation=\"http://machine2.com:8080/xml/xsd/OrderEntry.xsd\">");
    } catch (IOException ioe) {
    System.err.println("DataFileWriter error ioe on init");
    ioe.printStackTrace();
    System.exit(1);
    }Sudha

  • Problem in displaying jsp page

    I read a tutorial and followed their instrction where the first step is to install a server so I installed the Blazix server.
    I then put this following jsp file in the c:\blazix\webfiles and named it as hello.jsp.
    I first ran the server and then open that file where it shows :
    Hello ! The time is now
    <html>
    <body>
    <%@ page import="java.util.*" %>
    <HTML>
    <BODY>
    <%!
        Date theDate = new Date();
    %>
    Hello!  The time is now <%= theDate %>
    </BODY>
    </HTML>

    if by apache you mean Tomcat then its a good idea to start with that one.
    http://jakarta.apache.org/tomcat/index.html

  • Suggest me a small J2EE Project

    I want to do my MS project in j2ee using EJBs, JSPs, servlets and xml etc. I have some familiarity with all of these. Can someone suggest me a project that requires an effort of around 60 days of one person.

    For example at begin You can download the Blazix Server its a Web Server and Ejb Server, it�s easy to use, to understand, it has wizard to create Session and Entity Beans. It�s very useful to learn how to make a web application distribuited. It supports JSP, Servlets and other types of files.
    the page is: www.blazix.com and to learn more about how to use blazix and ejbs the page is
    www.ejbtut.com
    For example now i�m doing an application about a big library that has many clients who makes consultations and sales-purchases of books. Its very interesting that. Good luck !

  • Please give step by step details how can I deploy an EJB on weblogic 7

    Hi,
    I was working on Blazix Server for EJB.It is very esay to deploy bean on blazix
    server.Now I have to use weblogic 7. So please explain me step by step of deployment
    of EJB on weblogic. I don't know abcd of Weblogic Server.
    Thanking You,
    waiting for ur postive response,
    Mahendra Mahajan

    Hello Mahendra,
    There is no need to copy and paste all of the WebLogic documentation here. Just
    follow the steps in the documentation and you should be fine. If you run into
    a specific problem, we would be happy to assist you. Begin with the following
    EJB programming guide:
    http://edocs.bea.com/wls/docs81/ejb/index.html
    Best regards,
    Ryan LeCompte
    [email protected]
    http://www.louisiana.edu/~rml7669
    "Mahendra Mahajan" <[email protected]> wrote:
    >
    Hi,
    I was working on Blazix Server for EJB.It is very esay to deploy
    bean on blazix
    server.Now I have to use weblogic 7. So please explain me step by step
    of deployment
    of EJB on weblogic. I don't know abcd of Weblogic Server.
    Thanking You,
    waiting for ur postive response,
    Mahendra Mahajan

  • Unable to access gif files from the server

    hi all,
    i have successfully signed an applet and it is loading in the client system also. in that applet, i instantiated a jbutton as given below:
    JButton jb = new JButton(new ImageIcon("http://192.168.91.154:8080/success/set.gif"));
    but the icon din appear and a blank button appears, even when accessed from the server system.
    if i give the exact path like c:/blazix/webfiles/success/ set.gif, the icon is coming in the server system but not in other systems. i tried without port no also but in vain. pl solve my problem. what i need is how to
    specify the path of the file[any file] which is present in server.
    or if i put all the gif files in the jar file, can i access the gif files present in the jar file [set for archive] ? if i can, give me the soln for accessing the gif file present in the jar file, so that i need not access the server to get the gif files.(i.e) how to specify the path of the gif files present in the jar file?
    i ve one more doubt. the jni library file shld be in the server, and the client has to access the library in the server. i think the applet loaded in the client ll search for the library in the local m/c only . how to make the applet to search for library in the server??
    i feel only by using rmi we can solve this problem. am i correct? if so i feel that an appln or applet running in the server shld access the jni library, and the applet in the client side should communicate with this server appln using rmi to get the data.is it correct? is there
    anyother way?
    i appreciate your help in this regard. thanks in advance. bye, padmanbhan.

    Better information on what you are doing with JNI might help you get an answer.
    If you have some server process that needs to use JNI, then I would code a servlet to call, instead of using RMI to ge there.
    Depending on your environment, and the target audiences environment, RMI may just cause you a lot of grief. Firewalls etc, get in the way of RMI connections and force security holes to be opened in order to work.
    If you use a servlet, then traffic to your server process is done via standard http calls, which will already be enabled, because your app runs in a browser.
    If ther data requirements are heavy duty, your server could always send an XML stream to the client, which would allow you to describe complex data to the client.
    Running JNI stuff from the client directly means a lot of local infrastructure to run your app. The code you want to run, the JNI library ....
    If what you have is really an application, but want the convenience of starting it from a browser, look at Java WebStart. Then you can distribute an application via the browser, and WebStart will worry about the deployment issues for you.
    In Summary:
    Stay away from RMI from applets if you can help it.
    If you really have an App, then try WebStart to manage the distribution issues for you.

  • Error when trying to start EJB Server

    Hi,
    I am new to EJB's and am following the tutorial on ejbtut.com. I followed the tutorial and created the EmployeesEJB.jar file and placed the appropriate code in the ejb.ini file to deploy it. But when i start the EJB server i get the following. Can anyone please help me tackle this problem.
    Heres what happens when i start the server:::::::::::
    file: C:\Blazix\Ejblog.log
    Blazix EJB Server 1.2
    Copyright (C) Desiderata Software, 2001-2002
    All rights reserved
    Configuration file: C:\Blazix\ejb.ini
    JRMP version
    Deploying EJB-Home class "employees.EmployeesHome" at JNDI name "Employees"
    Evaluation license
    java.rmi.ServerException: Server RemoteException; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: desisoft.ejb.server.EjbServerJRMP_Stub
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: desisoft.ejb.server.EjbServerJRMP_Stub
    java.lang.ClassNotFoundException: desisoft.ejb.server.EjbServerJRMP_Stub
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
         at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
         at sun.rmi.server.UnicastRef.invoke(Unknown Source)
         at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
         at java.rmi.Naming.rebind(Unknown Source)
         at desisoft.ejb.server.EjbServerJRMP.serverMain(EjbServerJRMP.java:329)
         at desisoft.ejb.server.EjbServer.main(EjbServer.java:803)
    Looking at the error it seems as if its looking for the EJBServer's stub file. The tutorial didn't mention abt creating any kind of stub file, so can someone please tell me what am missing here.
    Thanks in advance

    Generate the stubs and skeletons for your EJB.This you can do by generating deployment code in most of the IDEs.
    Hope this helps you.

  • Java server page compiler can not find a class defined in a java bean file

    I have a jsp file using java bean. The java bean class file is uploaded into the server and also the directory to this java bean .class file is included in the Unix environment CLASSPATH. This .jsp file is registered and should be compiled and excecuted automatically.
    WHen I try to invoke this .jsp file, the jsp compiler error, saying the class defined by java bean can not be found. I already include this path in teh CLASSPATH, I thought the jsp compiler will go to the right place according to CLASSPATH to find the referenced class.
    Can anyone tell me what I have done wrong or what should I do in order to allow jsp compiler to find the class refrenced by .jsp file and defined by java bean file?
    Thank you so much

    hello friends,
    i am also facing the same problem of not finding bean class files for both jsp and servlet though it is placed in same package. the problem of not finding bean class file for jsp is experienced in Tomcat server only whereas in Blazix, there is no such error and the file is compiled and runs successfully.
    i have checked Tomcat properly. there is no error in its configuration also servlets without the use of bean files run successfully. so please can anybody guide me about what is the problem and how to solve it. plz its urgent .

  • Jsp for apache web server

    hi all,
    i am new 2 the field of JSP & web servers.
    i have installed apache web server on a unix box. i am invoking the jsp files from a win - 2000 machine.
    i want to know if the apache web server can interprett the java code (JSP)that is embedded in html. if not what other web server should i use.
    The jsp code is not being interpretted. the output for the foll code is:
    HELLO WORLD
    HELLO WORLD
    <HTML>
    <TITLE>
    HELLO
    </TITLE>
    <BODY>
    HELLO WORLD
    <br>
    <%= new java.util.Date() %>
    HELLO WORLD
    <% System.out.println("HELLO ALL") %>
    </BODY>
    </HTML>
    Do i have to use some other server like Blazix or will apache web server do the job for me???
    thanx in advance

    Double-posted:
    http://forum.java.sun.com/thread.jsp?forum=45&thread=388900&tstart=0&trange=30

  • Using MS Access from a file server

    i have a ms access db that i'd like to read from using jdbc. It is on a network file server. Can i read from it from a jsp on a separate weblogic box without having a dsn to the DB? ie using some kind of a file path in the connection address instead of a url?

    Below is an example using a DSN-less connection. It uses a database on the local drive but could just as easily use a file on a network share.
    <%@page import=java.sql.* %>
    <%
    // Establish connection to database
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con= DriverManager.getConnection(
         "jdbc:odbc:DRIVER=Microsoft Access Driver (*.mdb);DBQ="
         + "c:\\blazix\\webfiles\\livedb\\livedb.mdb");
    Statement st = con.createStatement();
    String strSQL = "Select * from tblData";
    ResultSet rs = st.executeQuery(strSQL);
    ResultSetMetaData rsmd = rs.getMetaData();
    rs.next();

  • About server in game programming

    hi,
    from what i know, we need a web server like tomcat or blazix to make other people can access our web. but my problem is like this..... i develop a game programming that need a server to control the player, so that mean now i have 2 server...... but when people acces my web, they cannot connect with my game server, so they cannot play the game..... so what should i do to make people can access my web and play the game?

    I presume this is about how to have a game run in the background on the server, outside of the web requests the user made to get to the game in the first place.
    What it comes down to is, you need some way to get the data back, asynchronously or pseudo-asynchronously. You have a few options...
    (1) Run a process on the server separate to the web server, which opens the game server socket, and does all the game stuff. Simplest solution.
    (2) Make a little servlet which initialises when your webapp starts up, and the init() method starts a thread, which opens the game server socket, and does all the game stuff. A little harder, but better because it will work even if you don't have a shell to the web server (e.g. if you're on a hosting provider who has given you just an FTP.)
    (3) Make a little servlet to perform the actual game functions, and either poll at regular intervals or have the servlet itself send the data back as a continuous stream. I personally like this solution the best, and it doesn't require a thread to sit there on the server wasting a thread, but it does make a single HTTP request last for a rather long time and also proxies can screw around with the data.
    Hope this helped somehow...

  • Reg. JBoss, Blazix, Websphere, WebLogic, Nucleus IDE

    Dear Friends,
    How are you All? I have a critical doubt & intial doubt.
    Now i am need to install the following softwares, where i can get these softwares and after installation how i can verify it is correctly installed. What are supporting softwares are needed.
    Software List as follows :
    JBoss
    Blazix
    WebSphere
    WebLogic
    Nucleus IDE (I heard it is a java editor am i right ??)
    Advance Thanks, Waiting u'r earliest reply.
    Rengaraj.R

    But as per the univ. norms we should have installed
    these three servers.You've got a really crazy professor. If you are using three J2EE servers, it's a pretty useless exercise. All follow the same set of guidelines.
    But as suggested, can't you type in the application server name in Google and get the information?
    http://www.blazix.com/download.html
    http://commerce.bea.com/products/weblogicplatform/weblogic_prod_fam.jsp
    http://www.jboss.org/downloads/index

  • Hi, i am trying to open and view a report that comes from another server with different odbc connection

    hi, i am trying to open and view a report that comes from another server with different odbc connection
    i created a crystal report for a mysql database on my machine and everything works great
    but we have other reports that come from other machines with different odbc connection
    and this its not working when opens the report asks for credentials
    and i cannot use the remote ip for these reports that come from other machine
    question
    if i cannot connect to remote ip to open the report
    for each report i have to create a database the report database on my machine and then open the report ?
    or there is some other way to open the report ?
    i am using visual studio 2013 and mysql and
       <add key="MYSQLODBCDRIVER" value="{MySQL ODBC 5.3 UNICODE Driver}"/>
    thanks

    short
    i have a report that it was created on another server with a specific dsn
    now i am trying to open the report on my machine
    the database from the other server does not exist on my machine
    the server machine where the report was created the ip its not accessible
    question ?
    can i open the report on my machine or its impossible ?
    thanks

Maybe you are looking for

  • What's the point of pre-ordering an album?

    A couple of weeks ago I pre-ordered the Glee Soundtrack Vol. 2 priced @$9.99 It just became available and I got an email advising me I can now download it. When I do, I get a pop-up saying that the final price is now $12.99 not the $9.99 that was dis

  • Share library without login

    Hello, I'm from Austria and my English is not that good, so i hope you'll understand me...... I'm using Windows Server 2003 R2 Enterprise Edition with the PC where I store my iTunes-Library and the audiofiles. What I want is, that i can start the pc

  • OVM Server Pool shows Error

    We are running OVM 2.2 on HP chassis with passthrough modules. Our OVM environment crashed hard three times because of the HP hardware we were using. I was able to restart most of the vm and get things running. I now have a error status on my server

  • Hdiutil create srcdevice - image not mountable

    Has anyone been able to mount or restore an image created from a hard disk using hdiutil create -srcdevice (as opposed to -srcfolder)? From googling I get the impression that the answer is no. I have now a backup image created from the main volume of

  • Workflow Change Documents - cProjects 4.0

    Dear Experts, I have set all pre-requisites I anticipated I needed to, to have the cProjects workflow work good. But finally, I see no email. This is what I have done: Set the requierd (from the configuration guide) under tcodes: SCDO, SWED and SWEC.