What's up with Java formatting standards?

I've always wondered about this:
The Standard:
public class HelloWorld{
  public static void main (String [] args){
    System.out.println("Hello World");
}VS.
The way I do it:
public class HelloWorld
  public static void main (String [] args)
    System.out.println("Hello World");
}I like my way because the code is more readable. Braces are matched on the same column, so it is much easier to trace braces, yet the first method is the standard that most people (including people in the industry) use... It's just always sorta bothered me, and I wanted to know if there is a reason that I'm not seeing that people do this? It gets especially nasty when there are a bunch of loops and other things nested. Following the braces then just gets insane...

(C: A simple explanation woulda sufficed. But who
cares about vertical space? What about the case when
a certain loop takes up more than a page or something
like that, then tracing the brace back is very
difficult because you can't trace it back to the word
above it. Yeah, in my example, there's very little
difference and either way looks fine, but in some
situations with loops that have tons of if-else
statments in them and for loops and all that, it gets
pretty nasty, and hard to follow.i don't follow what you are saying. i care about vertical space because it is much easier to read. instead of confining my search to a open brace when traversing up code to find the scope, i look for any character that starts on the same column as my close brace. there is no difference really... unless you are doing some weird code... if a loop, as you say, goes past one page in your format, it may not go past one page in my format making my format more easily readable because it is condensed... it is all a matter of opinion but whenever i get code like yours, i run it through Eclipse to condense it down to a more readable format (for me).

Similar Messages

  • What Is Wrong With Java? STILL NOT ANSWERED, PLEASE ANSWER!

    So today (10 PM January 20th), the Firefox Plugin Checker said that my Java version was outdated. I also got a pop-up saying that my current version of Java at the time (Java 7 update 10) had vulnerabilities. So to try and fix this, I went to the Java page and downloaded the update (Java 7 update 11).
    To check and see if my update was working, I went to Java's check page, as well as another page I use. And here I discovered a problem. I got a notification that an old version of Java had been detected, and another prompt to download the current version (which I had already done). So I erased all versions of Java from my control panel, and tried to check it again. And when I did, I got this: http://oi50.tinypic.com/35b6xx2.jpg and http://oi47.tinypic.com/15fg37p.jpg.
    As you can see, both pages tell me that I need to install a missing plugin of some sort. So, thinking this would resolve the issue, I clicked the Install Missing Plugin button. This is what it told me was missing: http://oi45.tinypic.com/302uwbl.jpg. So I clicked next to install it.... and got this: http://oi45.tinypic.com/2cici0x.jpg, which I assume means that the plugin did not install. So I pressed Manual Install... and was lead/linked right back to the Java download page (where it all began, and what doesn't seem to be working in the first place)
    I go to check my plugins again (Just to make sure and also for extra information), and it appears to say that my Java version is current (is that what "Java Deployment Toolkit 7.0.110.21" is? I don't know, I am not good at technology at all. Either way, here is what it looks like: http://oi48.tinypic.com/4kxzz4.jpg). So...if it is current, why is it not working (i.e. I am unable to play games, DO MY COLLEGE CLASSWORK, or play Java-based games)?
    If it helps anything, here is what my control panel looks like in regards to Java right now: http://oi45.tinypic.com/2qlxu9t.jpg Am I missing anything that would make Java work?
    And before anyone says that Java is not essential: It may be that way to you, but I need Java to do classwork for college. Veterinary college.
    So, in short, what is going on with Java, and how can I fix it?
    EDITEDITEDIT: I Have found that I can do my classwork without Java.
    HOWEVER, this DOES NOT mean that the problem is solved or over with. I STILL WANT TO KNOW HOW TO FIX THIS PROBLEM AND GET JAVA TO WORK. Even if I never actually need it, I would still like to have a (working!!!) Java version because of two reasons: 1) I would rather have such a program and not need it, than need such a program and not have it, and 2) aesthetics. Sorry to say, but I am very particular about how things look when it comes to my belongings, and the fact that Java is messing up is making me actually stressed. In short, I still want the above issue solved, even if it's just purely for the sake of Peace Of Mind.

    STILL HAVE NOT GOTTEN A REPLY. PLEASE ANSWER ASAP, AS THIS IS STILL IMPORTANT TO ME. COME ON NOW, I KNOW THAT THERE ARE PEOPLE ONLINE AND ANSWERING QUESTIONS!!

  • What is up with JAVA

    Dear Experts,
    I am new to the Java programming language, and I just purchased the Jbuilder 4 development kit. Everything is going okay; however, I would like to know the advantages of writing in JAVA as opposed to writing in other languages. I pretty much need the complete spiel on the power of the this new language and how it will help me in future, as far as jobs are concerned.
    Also, I need a couple of things defined:
    JDK
    JDBC
    HOW TO USE JAVA IN CONJUCTION WITH A WEB PAGE - THE INSERTION POINT (IN HTML) AND THE LIKE.
    Finally, is J Builder a good tool?
    Thank you group,
    Robert Lawrence Perkins
    P.S. I need a mentor, please help.

    Java is by far the best programming language that I've worked with so far. Here're a few of the advantages it has:
    1] Portable - Java is portable. That means a program developed under one Operating System will work just fine on a different Operating System. So far only some of the more popular OS's are supported i.e. UNIX, Windows etc. The cliche "write once, run anywhere" is more true for Java than for any other language nad this is a really big plus
    2] Object-Oriented - Java is a purely object oriented language. You can find various comparisions between Java and C++. I'll like to point out that for it's time C++ was not bad, but now Java is definitely a better choice
    3] Robust - Java is a fairly robust language and has a very rich set of tools for developers. Newer additions are being made to the language at a rapid pace and there's practically nothing that one can't get done with Java
    4] Security - Java places a lot of emphasis on security. With the advent of the Internet this is a very big plus again
    JDK - Is the acronym for Java Developer's Kit. The JDK consists of the various Application Programming Interfaces (APIs). These APIs enable developers to develop applications rapidly since most of the functionality needed is already provided by the APIs rapidly and "one does not need to reinvent the wheel"
    JDBC - Java Database Connectivity is a again an API designed for fast and efficient extraction of data from a Relational Database Management System (RDBMS) using SQL queries
    HOW TO USE JAVA IN CONJUCTION WITH A WEB PAGE - THE INSERTION POINT (IN HTML) AND THE LIKE.
    There are several ways Java is deployed in conjunction with Web pages. Depending upon the application's requirements you might make use of 'Applets'. You can find more information on applets at
    http://java.sun.com/docs/books/tutorial/applet/index.htm
    Amongst the other technologies servlets are pretty commonly used. See
    HREF http://java.sun.com/products/servlets
    for more information. A good reference book would be "Core Servlets and Java Server Pages" by Marty Hall.
    Finally, is J Builder a good tool?
    It is a good tool but I think it's utility to a beginner is limited. If you're just starting developing in Java you'll probably be better of starting at scratch. That way, you'll be able to know the language better. Once you acquire enough familiarity with the language then you might want to move to an IDE. This is just my personal opinion. I personally prefer using JEXT for editing most of my stuff and the ubiquituos command-line for compiling and building. You should know what suits you best once you start developing yourself
    Future Prospects: This is what lot of people are betting on. With the rapid endorsement of the Java platform definitely there's going to be a lot of progress

  • What's wrong with Java readline()?

    I just updated to OS X 10.6.8 and installed the Java update 1.6.0_26-b03-384.
    It appears that BufferedReader.readLine() is broken for reading input lines from the console.  readLine() does not terminate with a newline.
    This is pretty basic.  What's up?
    import java.io.*;
              This class demonstrates how to read a line of text from the keyboard
    class ReadLine{
              public static void main(String[] args) throws IOException{
                        String CurLine = ""; // Line read from standard in
                        System.out.println("Enter a line of text (type 'quit' to exit): ");
                        InputStreamReader converter = new InputStreamReader(System.in);
                        BufferedReader in = new BufferedReader(converter);
                        while (!(CurLine.equals("quit"))){
                                  CurLine = in.readLine();
                                  if (!(CurLine.equals("quit"))){
                                            System.out.println("You typed: " + CurLine);

    As it turns out, there's nothing wrong with ReadLine(), the problem was Ant 1.8.2.
    http://issues.apache.org/bugzilla/show_bug.cgi?id=50960
    The Apache distribution is dated late 2010.  The Apple version of 1.8.2 states that it was compiled on June 3, 2011, but if Apple built from the distribution and not from the corrected svn trunk that would explain it.
    My work-around was to install and link ant 1.8.1.

  • What's wrong with java.util.Date type?

    Hi!
    When I try to persist object having field of type java.util.Date I get the
    following SQL logged by Kodo with subsequent transaction rollback:
    2002-11-14 15:03:35,099 INFO
    [com.solarmetric.kodo.impl.jdbc.ee.ManagedConnecti
    onFactoryImpl.supportcrm/kodo] INSERT INTO BILLY.TT_COMMENTS(COMMENT_TYPE,
    TEXT,
    CREATED_BY, ID, SUBJECT, CREATE_DATE, TT_MAIN_ID) VALUES (1, '1', 10, 279,
    '1',
    {ts '2002-11-14 15:03:35.059'}, 147)
    When I change "{ts '2002-11-14 15:03:35.059'}" with "TO_DATE('2002-11-14
    15:03', 'YYYY-DD-MM HH24:MI')" in SQL editor
    and execute it everything works fine.
    What does "{ts '..'}" mean? Is it a SQL generation error?
    Thank you in advance.
    Best regards,
    Alexey Maslov

    I've created my own dictionary with dateToSQL() method overridden.
    Now it works fine. But it's a kind of strange. Oracle is used often and my
    JDBC drivers
    are the most recent (at least, from the oracle.com).
    Anyway, thank you again.
    "Alexey Maslov" <[email protected]> wrote in message
    news:[email protected]...
    Patric,
    Thank you for response.
    We're using Oracle 8.1.7 via OCI driver from Oracle 9.2.
    I've already tried 2.4.0 and it works fine there but I've found another
    problem there
    preventing me from using it. See my post in solarmetric.kodo.betanewsgroup.
    >
    "Patrick Linskey" <[email protected]> wrote in message
    news:[email protected]...
    That's odd -- what version of Oracle are you using?
    Moving to Kodo JDO 2.4.0
    (http://www.solarmetric.com/Software/beta/2.4.0) will almost certainly
    get rid of this problem, as we use exclusively prepared statements in
    it, and therefore pass dates etc. to JDBC as parameters.
    But, to get things working with your Oracle database and Kodo JDO 2.3,
    you could create your own extension of OracleDictionary and override the
    dateToSQL() method to generate the appropriate TO_DATE() syntax. See our
    documentation for more details on creating custom database dictionaries.
    -Patrick
    Alexey Maslov wrote:
    I've added TRACE level logging for transactions in JBoss and got
    original
    exception:
    NestedThrowables:
    com.solarmetric.kodo.impl.jdbc.sql.SQLExceptionWrapper: [SQL=INSERT
    INTO
    BILLY.T
    T_MAIN(TT_SOLUTION_ID, DELAY_REASON, TT_STATE_ID, ID, CONTACT_PHONE,
    CANCEL_REAS
    ON, OPER_DESCR, TT_TYPE_ID, CREATED_BY, EXP_CLOSE_DATE,SERV_OPEN_DATE,
    OPEN_DAT
    E, FLAGS, TAKEN_BY, TT_CAT_ID, SUBJECT_ID, SUBJECT, SERV_CLOSE_DATE)
    VALUES
    (NUL
    L, NULL, 1, 439, NULL, NULL, '____________ ________________ ________________', 7, 5, {ts
    '2002-11-14 1
    8:38:16.075'}, NULL, {ts '2002-11-14 18:18:16.075'}, 0, NULL, 11,24099,
    '1', NU
    LL)] ORA-00904: invalid column name
    at
    com.solarmetric.kodo.impl.jdbc.runtime.SQLExceptions.throwFatal(SQLEx
    ceptions.java:17)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.insert(JDBCSt
    oreManager.java:421)
    at
    com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.insert(D
    ataCacheStoreManager.java:265)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.insert(StateManagerImpl
    ..java:1783)
    atcom.solarmetric.kodo.runtime.PNewState.flush(PNewState.java:31)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.flush(StateManagerImpl.
    java:372)
    at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.flush(Persistence
    ManagerImpl.java:426)
    at
    com.solarmetric.kodo.ee.EEPersistenceManager.beforeCompletion(EEPersi
    But when I try to execute the statement above against the database
    manually
    everything works fine.
    I'm absolutely desperate!
    P.S. On 2.4.0 RC the operation invoking this database insert completes
    fine.
    "Alexey Maslov" wrote in message
    news:[email protected]...
    Hi!
    When I try to persist object having field of type java.util.Date I
    get
    the
    following SQL logged by Kodo with subsequent transaction rollback:
    2002-11-14 15:03:35,099 INFO
    [com.solarmetric.kodo.impl.jdbc.ee.ManagedConnecti
    onFactoryImpl.supportcrm/kodo] INSERT INTOBILLY.TT_COMMENTS(COMMENT_TYPE,
    TEXT,
    CREATED_BY, ID, SUBJECT, CREATE_DATE, TT_MAIN_ID) VALUES (1, '1',
    10,
    >>>
    279,
    '1',
    {ts '2002-11-14 15:03:35.059'}, 147)
    When I change "{ts '2002-11-14 15:03:35.059'}" with
    "TO_DATE('2002-11-14
    15:03', 'YYYY-DD-MM HH24:MI')" in SQL editor
    and execute it everything works fine.
    What does "{ts '..'}" mean? Is it a SQL generation error?
    Thank you in advance.
    Best regards,
    Alexey Maslov
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    Best regards,
    Alexey Maslov

  • What's wrong with java.util.Date??

    Hi all,
    I was just practicing a bit of java.util ,when i was compiling my code-
    import java.util.Date;
    import java.text.SimpleDateFormat;
    class DateStamp{
    public static void Main(String args[]){
    doDate1;
    String D;
    int D1,D2,D3;
    Date dt=new Date();
    SimpleDateFormat sdf=new SimpleDateFormat("dd-mm-yyyy");
    /*When using method .setDate(x) ,is x an integer or String?can x=2/5/2002 or 2-5-2002?*/
    public void doDate1{
    dt.setDay(12);
    dt.setMonth(12);
    dt.setYear(102);
    D=dt.getTime();
    D.parseInt(D1);D=""
    D=sdf.getTime();
    D.parseInt(D2);
    int D3=D2-D1;
    int D3=D3/86400000;/*How do you convert milisec-to-days?*/
    D=D3.toString().
    System.out.println(D+"days have elapsed since then");
    the compiler said this-
    File Compiled...
    --------------------------- Javac Output ---------------------------
    DateStamp.java:7: Invalid expression statement.doDate1;^DateStamp.java:14: Instance variables can't be void: doDate1public void doDate1; ^2 errors
    this problem is persistant, and i'm a java newbie ,Does anyone know what's wrong here?
    Thanks!
    Regards,
    aesh83

    How do you get System date onto a Date variable?Calendar.getInstance().getTime() returns a java.util.Date for the current time. You can also use System.currentTimeMillis() and turn it into a Date.
    Will date.after(Date when) method work when Date
    variables are in milisecs?Date.after(Date when) compares two date objects. As the JavaDoc says "Returns:
    true if and only if the instant represented by this Date object is strictly later than the instant represented by when" To me that says that milliseconds are taken into account, I.E. comparing dates actually compares the date plus the time portion.
    >
    What methods-
    *Convert a date(dd/mm/yy) to milisec?If you look in the javaDoc you'll see "long getTime() Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this Date object." Calendar also has the getTimeInMillis() method.
    *Convert a milisec value to a date(dd/mm/yy)?Calendar.setTimeInMillis(long);
    I'm have this little problem.
    When using GregorianCalander-
    *need to initialize?
    *need set today's date?Calendar.getInstance() will return an appropriate Calendar object for the current locale initialized to the current date/time.
    *how do you check if a date exceeds 3 weeks?I'm not sure what you mean. There are a couple of roll(...) methods that will allow you to add a unit of time to a date. I.E. you could add three weeks to a date.
    To ignore the time portion of a date just set the time to "00:00"
    Col

  • What the HELL with java.util.Scanner

    Hello people...
    Somebody have a pointer that teaches how to work with Scanner, or everybody fells like me, as this API just don't work well!!!?
    At this right moment I have the same JAR file, run something at linux and work well, but when at windows got an exception...

    http://java.sun.com/developer/JDCTechTips/2004/tt1201.html
    http://java.sun.com/docs/books/tutorial/essential/io/scanning.html
    ~Tim

  • HT5246 What about users with Java installed?

    What about users who have Java installed? Do they not need to run this program? Why?

    The flashback malware removal tool is included in the latest security update. If you've downloaded all your updates, it's been installed and if you got no message you had no malware.

  • What's up with Java Zero Day, and is Snow Leopard endangered?

    That.

    Patched or not and regardless of the version, I'd keep Java disabled, period. Best place for Java is shackled, locked up and caged.
    http://krebsonsecurity.com/2012/08/attackers-pounce-on-zero-day-java-exploit/
    If you do not need Java, get rid of it, and if you do need it for specific applications or sites, limit your use of Java to those sites and applications, using a secondary browser for that purpose.

  • JTDS not connecting with SQL Server 2008 R2 SP2 + SSL with Java 6 U34-35

    Environment:
    Windows 7 Pro 32-bit
    SQL Server 2008 R2 SP2 (Forced Encryption = Yes, No Certificate provided to server)
    Java 6 Update 27-35 and Java 7 Update 2-7
    jTDS 1.2.2 and 1.2.6
    Under the following setup, our Java application is able to connect to the SQL Server database:
    - SQL Server 2008 R2 SP2
    - Java 6 Update 27-33 or Java 7 Update 2-5
    just switching the JVM to the following would cause the application to be unable to connect to the database:
    - Java 6 Update 34 or 35, or Java 7 Update 6 or 7
    Browsing through the Java 6 Update 34 release notes, it looks like nothing big was changed, so I'm wondering what has changed with Java 6 U34 and Java 7 U6. I was also looking through a packet sniffer, and indeed the behavior of Java 6 Update 33 and lower was different from Java 6 Update 34 (although I couldn't understand the messages being passed, the number of connections and messages were different).
    * This is different from the issue with Java 6 Update 29-30 and Java 7 wherein they were patched for the BEAST SSL vulnerability. That was fixed with the SP2 patch for SQL Server 2008 R2, and for SQL Server 2008 you'd need a hotfix aside from SP3. After patching the server with those updates, Java 6 Update 29-33 and Java 7 U1-5 should be able to connect to the database.
    * If I do switch off Force Encryption, all Java versions are able to connect to the database.
    Edited by: user1357749 on Oct 12, 2012 1:20 AM

    Hi,
    It's four months later, but my colleague and I have reproduced the same behavior in both our commercial product, and a very simple example class. It's exactly as you describe it, where the latest versions of both Java 6 and 7 (and several previous versions) hang during the first jTDS SQL query to the DB (immediately after the SSL and handshake). It also happens with the Microsoft JDBC driver.
    If you disable the BEAST SSL fix (-Djsse.enableCBCProtection=false), then the connections work without any problems. So, while this is different from the original BEAST SSL problem and subsequent fix, it really seems like some additional changes were made to the fix in a later Java release that broke things.
    My colleague has filed a bug with Oracle, and is awaiting a response. We also filed a bug at the jTDS project (#690 - http://sourceforge.net/p/jtds/bugs/690/) that has simple reproduction steps. A contributer at the jTDS project agrees that this seems to be a problem with the JRE, and is not specific to jTDS.
    I hope that Oracle will address this issue soon. We need to periodically update the JRE due to vulnerabilities, and we need to have SSL for our JDBC connections for security reasons. This bug puts us and others in a difficult position.

  • Adobe X PDF files converted to jpg, edited and converted back to PDF have ragged, unclear text.  I didn't have this problem with Acrobat 9 standard.  What is the remedy for this.  If this is the best I can expect, I won't be able to use X standard.

    Adobe X PDF files converted to jpg, edited and converted back to PDF have ragged, unclear text.  I didn't have this problem with Acrobat 9 standard.  What is the remedy for this.  If this is the best I can expect, I won't be able to use X standard.

    I can't imagine any worse workflow than converting to JPEG to edit text, then back to PDF. Text in a PDF is a vector thing, smooth at all resolutions. And JPEG is made for photos. EVERY conversion to JPEG and back loses quality but how much loss there is will vary.
    If you must go to an image format, try PNG.

  • 10.8.3 update kills cd-roms created with Mac OS Standard HFS format

    Archived CD's created with HFS (MacOS Standard in get info) would mount and you could copy and open documents with no problems a couple of weeks ago in 10.8.2. But after 10.8.3 update are now mounting but you cannot copy or open the files on them.
    Below a CD in finder under 10.8.3, while trying to copy to desktop and trying to open from CD.
    Below same CD in finder of 10.8.2. CD contents show with thumnail preview and the document opens from the CD no problem.
    Why would Apple drop support for HFS in an incremental update with no documentation able to be found anywhere? Any ideas?

    I can't reproduce that. I have a very old backup CD, made in April of 2000 and using the Mac OS Standard format. It works just fine on my 10.8.3 system:
    As you can see, I can open an image file on that CD just fine.
    It's important to note that home-burned CDs don't last forever. They have a limited shelf life, and if they're being used (and exposed to light) frequently, that life will be shorter. All CDs will eventually fail, and I'm guessing that's what happened with yours. Perhaps they are failing in a way that 10.8.2 could deal with, but 10.8.3 can't? I don't know.
    I did see some very strange behavior from the first disk I tried, which was also Mac OS Standard, but was much older (it had no date on it, but I'm guessing mid-90s). Files would show up very briefly, then would disappear from view. Even the Terminal behaved oddly when trying to list the contents. Trying to copy folders to the hard drive resulted in -43 (ie, file not found) errors. It looks like that disk has failed.

  • What's the best output format to burn a dvd with?

    what's the best output format to burn a dvd with? I normally select a h264, but i don't know which preset i should use (between "match source high bitrate and hd1080...)

    A DVD is Standard Definition... export using the MPEG2-DVD preset and import the TWO (audio and video) files in Encore for authoring
    CS5-thru-CC PPro/Encore tutorial list http://forums.adobe.com/thread/1448923 will help
    The bottom section of the link above has several Adobe links, and other information, on downloading Premiere Pro CS6 and the bundled Encore CS6, and the TWO ADDED downloads for the Encore library content, to author a DVD or BluRay... and the tutorial list includes learning how to use Encore... pay particular attention to the picture in reply 3 at this link - https://forums.adobe.com/thread/1516173

  • Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    1. Use the mouse to select the field and then press the space bar.
    2. A null string is the same as zero. What is the result for division by zero?

  • Sneak Preview Java 04s : what to do with it?

    Hi everyone,
    I downloaded and installed Sneak Preview 04s full Java edition. I'm a BW consultant, not too experience with Portal, and I can't fin out what to do with this installation. I thought this Java edition would also give me access to an classic BW application server with all regular BI screens like RSA1 etc... but i'm not able to find that.
    Can you please shred some light on what you guys achieved to do with Java editions, if classic BI screens are accessible through Portal or if I should rather go to ABAP edition of sneak preview?
    thanks!

    Finally found answers in the forum.

Maybe you are looking for

  • How to add a new field to the notification mail

    Hi All, We want to add the description of the GOA to the notification mail. Currently when an approval is required the following mail is sent: #CONTRACT.VERSIONTYPENAME# no.#CONTRACT.OBJECT_ID# was designated for release by employee#CONTRACT.CHANGEDB

  • Shellexecute ex error on installing lenovo drivers

    Hi, I bought a used T400 with a fresh Win7 professional x64 install already on it. The seller forgot to install the lenovo drivers, so I downloaded the appropriate ones from lenovo website.  Every time I try to install one (such as the Intel display

  • Safari / Preview

    After updating to Lion  my applications, including Safari and Preview always start with the last opened document or webpage before I close the application. I checked sysyem preferences, set Safari to Provate browsing, delete the plist and restarted m

  • PDF Order Forms

    I just started a film business for shooting weddings and such. I also recently started a website. Tallproductions.com I want to be able to have an order form that people can click on and download that then just has some blanks so they can enter text

  • Basic HTTP Authentication

    Hi everyone, I'm trying to make a portal/gateway environment where a user can be automatically logged in other applications using Basic HTTP Authentication. To do this I have enabled the Basic HTTP Authentication in the psconsole (under Secure Remote