Syntax error before '@' token

Hey all, uber noob here just starting out. Working with the Stephen Kochan book 'Programming in Objective-C', and having a problem compiling a sample program. I receive the error "syntax error before '@' token" when I try to build and run the following code. I'm sure it's something completely ridiculous, but I can't see it for the life of me and can't find anything on the interwebs.
(The error is after the last import and before the @interface declaration.)
Thanks in advance,
~Mark
#import <stdio.h>
#import <objc/Object.h>
@interface Fraction: Object
int numerator;
int denominator;
-(void) print;
-(void) setNumerator: (int) n;
-(void) setDenominator: (int) d;
-(int) numerator;
-(int) denominator;
@end
//-- @implementation section --
@implementation Fraction;
-(void) print
printf(" %i/%i ", numerator,denominator);
-(void) setNumerator: (int) n
numerator = n;
-(void) setDenominator: (int) d
denominator = d;
-(int) numerator
return numerator;
-(int) denominator
return denominator;
@end
//-- program section --
int main (int argc, const char * argv[])
Fraction *myFraction = [[Fraction alloc] init];
[myFraction setNumerator: 1];
[myFraction setDenominator: 3];
printf ("The value of myFraction is: %i/%i\n", [myFraction numerator], [myFraction denominator]);
[myFraction free];
return 0;
}

Ah, you are using the old edition of Kochan and some things have changed. The import statements should just be:
#import <Foundation/Foundation.h>
I recommend that you get the 2nd edition of the book. Although the hard copy hasn't been published yet it is available as a pdf from Safari Rough Cuts http://safari.informit.com/9780321605559 ).

Similar Messages

  • Syntax error on token "Enum", Identifier expected

    Hello,
    We are using the LinkType class(com.sapportals.wcm.repository.enum.LinkType) but at the import statement we get an error message: Syntax error on token "Enum", Identifier expected
    Configuration:
    JDK version: jdk1.5.0_17
    NWDS 7.1 SP7 CE
    import com.sapportals.wcm.repository.enum.LinkType;
    Has anyone experienced the same issue and found a workaround or solution?
    Regards,
    Edwin.

    Thanks, but that is not the problem... Unfortunately.
    The class we needed (linkType) is found in the KM API for NWDS 04, but this KM API is not available anymore in NWDS 7.1...
    So we will have to redesign the application and re-do the developments...
    Regards,
    Edwin.

  • Syntax error on token

    Hi, I am new to Java. I am getting a compiler error I am not able to resolve the error. Can somebody Please meout? Below is the error that I am getting.
    Syntax error on token "LinkedList", "interface", "class" expected.
    Below is the code snippet on which I am getting this error.
    public LinkedList getPolicyBaseRecordByPriorId(BigDecimal priorPolicyId) throws TFGSessionException {

    To put it another way:
    Your method definitions have to appear inside of classes. Unlike many other languages, Java does not allow for free-standing functions like that.

  • Syntax error on token "class", invalid Expression

    Hai,
    i am new to java beans and i have written the following code which gives an error
    Code jsp:
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>beancode</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body>
    <!--<form name="form1" action="beancode" method="POST"> -->
    Name: <input type="text" name ="nname"> <br><br><br>
    Address: <input type="text" name ="naddress"> <br><br><br>
         <input type = "submit" value="Submit">
    <% useBean id="sampl"; class="beancode.class"; scope="page"; %>
    <% setProperty name="sampl"; property="*"; %>
    <%--</jsp:useBean> --%>
    <table border="1">
              <tr><td>S.NO</td><td>NAME</td><td width="95">ADDRESS</td></tr>
    <%
              int count =1;
              while (rs.next())
         String name = rs.getString("Name");
              String address = rs.getString("ADDRESS");
    %>
              <tr>
                   <td>
    <%
                        out.print(count);
    %>               </td>
                   <td>
    <%                     out.println(name);
    %>                </td>
                   <td>
    <%                     out.print(address);
                        count++;
    %>               </td>
              </tr>
    <%          }
    %>
         </table>
    <!--</form> -->
    </body>
    </html>
    JAVA Class code:
    import java.sql.*;
    * @author
    public class beancode
    private String employid;
    private Connection con = null;
    // private ResultSet rs = null;
    private PreparedStatement st = null;
    String name, address;
    /** Creates a new instance of beancode */
    public beancode()
    {ok
    try
              Class.forName("com.mysql.jdbc.Driver");
              String url = "jdbc:mysql://localhost:3306/test";
              Connection con =DriverManager.getConnection(url,"root","shasi");
              Statement s = con.createStatement();
              ResultSet rs = s.executeQuery ("Select * FROM Test");
    catch(Exception e)
              System.out.println(e.getMessage());
    public void setemployid(String nname,String naddress)
              name = nname;
              address = naddress;
         public String getemployid()
              return(name);
         public String getemployadd()
              return(address);
    public void insert()
    try
    String s1="insert into samp values('"+name+"','"+address+"')";
    st = con.prepareStatement(s1);
    st.executeUpdate();
    st.clearParameters();
    st.close();
    catch(Exception m)
         public static void main(String args[])
                   beancode b = new beancode();
                   b.insert();
    The error
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 18 in the jsp file: /bean.jsp
    Generated servlet error:
    Syntax error on token "class", invalid Expression
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:328)
         org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:397)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:288)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:293)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    PLEASE HELP ME OUT
    I AM WAITING PLEASE
    Thanks,
    Shasi

    You can try to use the xml form of tag use bean and not <% like this:
    <jsp:useBean id="sampl" class="beancode" scope="page" />
    <jsp:setProperty name="sampl"; property="*" />
    and in the class attribute specify the fully qualified class name without the extension

  • Error: [SQLServer JDBC Driver]Syntax error at token 0, line 0 offset 0

    Hi:
    I´m working with system driver at de JDBC connection in VA. When a record is inserted/updated this error is display:
    NWMss  SQLServer JDBC Driver  Syntax error at token 0, line 0 offset 0
    The record is inserted/updated but when the operation ends the exception is throw.
    I Google the error but I didn´t find how to solve it.
    Any idea?
    Thanks a lot for your time on this post.
    Rocío.

    Hi,
    Rocío Lorena Suárez wrote:
    NWMss  SQLServer JDBC Driver  Syntax error at token 0, line 0 offset 0
    I think that you may be trying to construct an SQL query using some logic. Is that right?
    I hav encountered this problem when trying these types of code - If possible please debug the code and see if there is any particular case in which the SQL string in which the command is saved becomes null.
    When it is null or blank - the SQL Driver will throw such an error.
    Also, if you can elaborate more on the problem - I can give you some more help.
    Thanks.
    p256960

  • Syntax errors before running power shell

    Is there a way that we get compile time errors before actually running the script in powershel
    SQL Server is kind enough to provide us Parse option in SSMS to get the errors before actually running the code
    MLC

    Nothing built-in to PowerShell can do this. If you want something simple, you could use the PSParser to look for anything that might be wrong with the syntax, but wouldn't do anything advanced like check for invalid commands.
    $script = (Get-Content test.ps1)
    $errors = [System.Management.Automation.PSParseError[]] @()
    $tokens = [Management.Automation.PsParser]::Tokenize($script, [ref] $errors)
    #Show errors found
    $Errors
    For something more advanced you would need to roll your own script checker using this or if running V3 and above, the AST methods. You could also look at using something like
    ScriptCop.
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • MDX query : Syntax error at token 'NONEMPTYMEMBER'

    Syntax error when executing this very simplified MDX query :
    WITH
    MEMBER [ANNEE].[YEAR1] AS
    NONEMPTYMEMBER FY10
    [FY10]
    MEMBER [ANNEE].[YEAR2] AS
    NONEMPTYMEMBER [FY10]
    [FY10]
    SELECT
    {[YEAR1],[YEAR2]} ON COLUMNS
    FROM [MICOPIGE.COM_MBU]
    Syntax error in input MDX query on line 9 at token 'NONEMPTYMEMBER'
    Note that line 9 "NONEMPTYMEMBER FY10" is a copy of line 4
    No error if I delete line 4
    Any help to understand and fix this error would be greatly appreciated.

    Precision : My goal is to reduce the 30mn duration of a complex MDX query with many calculated members, using the NONEMPTYMEMBER token.

  • Small Syntax error on token

    Hey everyone. Im trying to debug my program and it is giving me a syntax error.
    if (Me >0 )
                    System.out.println(Spot[0]);
                else if(Total < 50)
                    System.out.println(Spot[0] );
                else if(Total >= 50 && <= 100) //syntax error at the <= sign
                    System.out.println(Spot[0]  + "Good Job");That is a segment of my code, and it gives me the same error for the same <= sign for a few lines after that as well. Because the "else if " continues on with some other values.
    Any Ideas?

    > else if(Total >= 50 && <= 100) //syntax error at the <= signThat's a shorthand notation which is not available in Java. You just have
    to spell it out like this:else if(Total >= 50 && Total <= 100)kind regards,
    Jos

  • Error on token(jsp error)

    Hi i am writing a code in which i have to call one jsp page from another but as soon as the control gets transferred i get the error msg as:
    Syntax error on token(s), misplaced construct(s)
    16: if(rs.next()==false)
    17: {
    18:
    19: <jsp:forward page="success.jsp"/>
    20:
    21: }
    22: %>
    An error occurred at line: 19 in the jsp file: /second/process.jsp
    Syntax error, insert "AssignmentOperator Expression" to complete Assignment
    16: if(rs.next()==false)
    17: {
    18:
    19: <jsp:forward page="success.jsp"/>
    20:
    21: }
    22: %>
    An error occurred at line: 19 in the jsp file: /second/process.jsp
    Syntax error, insert ";" to complete Statement
    16: if(rs.next()==false)
    17: {
    18:
    19: <jsp:forward page="success.jsp"/>
    20:
    21: }
    22: %>
    An error occurred at line: 19 in the jsp file: /second/process.jsp
    forward cannot be resolved
    16: if(rs.next()==false)
    17: {
    18:
    19: <jsp:forward page="success.jsp"/>
    20:
    21: }
    22: %>
    An error occurred at line: 19 in the jsp file: /second/process.jsp
    The operator / is undefined for the argument type(s) String, void
    16: if(rs.next()==false)
    17: {
    18:
    19: <jsp:forward page="success.jsp"/>
    20:
    21: }
    22: %>
    An error occurred at line: 19 in the jsp file: /second/process.jsp
    Syntax error on tokens, delete these tokens
    16: if(rs.next()==false)
    17: {
    18:
    19: <jsp:forward page="success.jsp"/>
    20:
    21: }
    22: %>
    An error occurred at line: 22 in the jsp file: /second/process.jsp
    Syntax error, insert "}" to complete Statement
    19: <jsp:forward page="success.jsp"/>
    20:
    21: }
    22: %>
    23:
    24: <%
    25: else
    An error occurred at line: 31 in the jsp file: /second/process.jsp
    Syntax error, insert "Finally" to complete TryStatement
    28: <jsp:forward page="fail.jsp"/>
    29: <%
    30: }
    31: }
    32: %>
    33: <%catch(Exception e)
    34: {
    An error occurred at line: 32 in the jsp file: /second/process.jsp
    Syntax error, insert "}" to complete Block
    29: <%
    30: }
    31: }
    32: %>
    33: <%catch(Exception e)
    34: {
    35:
    I am using MS-ACCESS AS DATABASE.
    the jsp code is:
    {color:#ff0000}<%@ page contentType="text/html; charset=UTF-8"%>
    <%@ page import="java.io.{color}{color:#ff0000}*"%>*
    *<%@ page import = "java.sql.*"%>
    <%
    String account=request.getParameter("ac");
    String password=request.getParameter("pass");
    String url="Jdbc:Odbc:Namrata";
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con=DriverManager.getConnection(url);
    Statement stmt=con.createStatement();
    ResultSet rs=stmt.executeQuery("select from database1 where Account="+account+"and Password="+password);
    if(rs.next()==false)
    <jsp:forward page="success.jsp"/>
    %>
    <%
    else
    %>
    <jsp:forward page="fail.jsp"/>
    <%
    %>
    <%catch(Exception e)
    out.println("the exception is:"+e);
    %>{color}

    Namrata.Kakkar wrote:
    but i have google searched and came to know that in jsp whatever java code we have to write we will write in tagsThat was not very good advice. Like I said, get Sun's Java EE tutorial (it's free) and learn how to do it the correct way.

  • Cant resolve syntax error.

    In the current program I am trying to read multiple text files from a folder. I keep getting the following syntax error
    "Syntax error on token ";", { expected after this token". I highlighted the line where im getting this error in red.
    import java.io.*;
    import java.util.*;
    public class CacheData {
      // Directory path here
        String path = "C:\\myfiles\\*.txt";
        String files;
        File folder = new File(path);
        File[] listOfFiles = folder.listFiles();
        for (int i = 0; i < listOfFiles.length; i++)
            if (listOfFiles[i].isFile())
                files = listOfFiles[i].getName();
                if (files.endsWith(".txt") || files.endsWith(".TXT"))
                    System.out.println(files);
                    TreeMap<String, Integer> frequencyMap = new TreeMap<String, Integer>();
                    String currentLine="";
                    File textFile = new File(files);
                    try {
                        BufferedReader br = new BufferedReader(new FileReader(textFile));
                        while ((currentLine = br.readLine()) != null) {
                            currentLine = currentLine.toLowerCase();
                            StringTokenizer parser = new StringTokenizer(currentLine, " \t\n\r\f.,;:!?'");
                            while (parser.hasMoreTokens()) {
                                String currentWord = parser.nextToken();
                                Integer frequency = frequencyMap.get(currentWord);
                                if (frequency == null) {
                                    frequency = 0;
                                frequencyMap.put(currentWord, frequency + 1);
                        br.close();
                    } catch (FileNotFoundException e) {
                    } catch (IOException e) {
                        // TODO Auto-generated catch block

    In the current program I am trying to read multiple text files from a folder. I keep getting the following syntax error
    "Syntax error on token ";", { expected after this token". I highlighted the line where im getting this error in red.
    Code MUST BE in a method or static block.
    Your code HAS NO METHODS.
    I suggest you start by working with the many examples in the 'Reading, Writing, and Creating Files' trail of The Java Tutorials.
    https://docs.oracle.com/javase/tutorial/essential/io/file.html
    Then clone one of those examples and modify it for your own requirements.

  • Entry-SQL syntax error: CASE not allowed

    Hello All. When I use sap netweaver developer to develop webdynpro applications, I always meet that jdbc error.
    when using inner join,left join, or using case when in the sql, it will pop up Entry-SQL syntax error.
    But I have run the sql in Microsoft SQL Server studio successfully.
    The SQL statement "UPDATE SAPNWDDB.Z_SERIAL SET LASTSERIAL = CASE WHEN ENDWITH IS NOT NULL THEN CASE WHEN LASTSERIAL + 1 > ENDWITH THEN ISNULL(STARTWITH, 0) ELSE LASTSERIAL + 1 END ELSE LASTSERIAL + 1 END WHERE SERIALNO = ?" contains the syntax error[s]: - 1:43 - Entry-SQL syntax error: CASE not allowed
    - 1:78 - Entry-SQL syntax error: CASE not allowed
    - 1:124 - SQL syntax error: the token "(" was not expected here
    Can someone help me? Thank you.

    Hi Arun Jaiswal ,
    Thank you for your answer. But I have tried query in sql editor. Actually it can work. Other than "CASE" syntax, it seems not support inner join and left join in webdynpro either. I even can not query the db views.
    That's imposible jdbc not support these simple syntex. I wonder there is any config control the sql compatibility level.
    I have developped a java programm to test it. It is ok. No error. But the same case pop up error in java webdynpro application.I don't know why.
    I am entry level webdynpro developper.
    Hopefully you can help me.
    Thank you.
    Edited by: zegunlee330 on Sep 3, 2010 4:18 AM

  • I dont really think that the math header has syntax errors.

    Hi,
    This is a very serious accusation from make.
    Mini:Evaluator develop$ make
    bison -d grammar.y
    grammar.y: conflicts: 24 shift/reduce
    flex rules.l
    cc -0 -o Evaluator grammar.tab.c lex.yy.c -ly -ll -lm
    In file included from grammar.y:3:
    /usr/include/architecture/i386/math.h:310: error: syntax error before numeric constant
    /usr/include/architecture/i386/math.h:355: error: syntax error before numeric constant
    make: * [Evaluator] Error 1
    Mini:Evaluator develop$
    Any ideas as to why I would be getting these two errors?

    Often it is because you forgot a semicolon or something in the header file before, or the source file. Eliminate files (or lines) one by one until the error goes away.

  • Syntax error in my code and I can't figure out the problem

    When I try to compile a program, I get this message:
    Syntax error on token "(", "Identifier" expected
    This is the part of the code that is giving me trouble:
    JTextPane textPane = createTextPane();
              JScrollPane paneScrollPane = new JScrollPane(textPane);
              paneScrollPane.setVerticalScrollBarPolicy(
                                  JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
              paneScrollPane.setPreferredSize(new Dimension(250, 155));
              paneScrollPane.setMinimumSize(new Dimension(10, 10));Can you see what's wrong?
    Thanks

    The code's syntax is perfectly fine. The compiler is not falgging an error message in this part of your code. One silly thing you can do:
    Try out this silly change...I don't think it will make any difference but still.
    paneScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);That is, put it all in a single line.
    If it is already in a single line then you can be sure that the problem is being flagged from elsewhere in your code and this portion.
    Vijay :-)

  • Syntax error setting the dgmgrl

    DB:11.2.0.1
    OS:Linux
    RAC:11.2.0.2
    Get the error below while trying to set it in the primary side.
    DGMGRL> edit database eioidp1_dal set property DbFileNameConvert = '+DB_ORCL_DAT0098','+DB_ORCL_DAT0099','+DB_ORCL_FRA0098','+DB_ORCL_FRA0099';
    edit database eioidp1_dal set property DbFileNameConvert = '+DB_ORCL_DAT0098','+DB_ORCL_DAT0099','+DB_ORCL_FRA0098','+DB_ORCL_FRA0099';
    ^
    Syntax error before or at ","

    Hi,
    DGMGRL> edit database eioidp1_dal set property 'LogFileNameConvert'='+DB_ORCL_DAT0098,+DB_ORCL_DAT0099,+DB_ORCL_FRA0098,+DB_ORCL_FRA0099';
    Property "LogFileNameConvert" updated
    DGMGRL> edit database eioidp1_dal set property 'DbFileNameConvert'='+DB_ORCL_DAT0098,+DB_ORCL_DAT0099,+DB_ORCL_FRA0098,+DB_ORCL_FRA0099';
    Property "DbFileNameConvert" updated
    DGMGRL> exit
    DGMGRL> show database verbose eioidp1_dal
    Database - eioidp1_dal
    Role: PRIMARY
    Intended State: TRANSPORT-ON
    Instance(s):
    eioidp11
    Warning: ORA-16714: the value of property DbFileNameConvert is inconsistent with the database setting
    Warning: ORA-16714: the value of property LogFileNameConvert is inconsistent with the database setting
    eioidp12
    Warning: ORA-16714: the value of property DbFileNameConvert is inconsistent with the database setting
    Warning: ORA-16714: the value of property LogFileNameConvert is inconsistent with the database setting

  • Forms 10g compile : syntax error near unexpected token `in

    Hi,
    I am writing a code to compile FORMS 10g(10.1.2.0.2) in HP_UX one by one.
    this is the code---frm10g.sh
    *#!/bin/ksh*
    *# . ~oracle/forms/server/default.env*
    *# . sid icache*
    TERM=vt220
    *if [ $# != 2 ]*
    then
    echo Usage : $0 module_name module_type
    exit 1
    fi
    case $2 in
    FORM|form|F|f) ext1='fmb' ;ext='fmx' ; modtyp='FORM' ;;
    PLL|pll|p|lib|LIB) ext1='pll' ;ext='plx' ; modtyp='LIBRARY' ;;
    MENU|menu|M|m) ext1='mmb' ;ext='mmx' ; modtyp='MENU' ;;
    **) echo invalid parameter ; exit 1 ;*
    esac
    echo Generating $1.$ext
    frmcmp module=$1.$ext1 userid=abc/abc@abc output_file=../$1.$ext module_type=$modtyp batch=NO compile_all=special > ./log/$1.log
    when I try to excute above file frm10g.sh in command line i get following error. Please let me know how to fix it.
    [abc]u01/app/oracle/product/10.1.2/forms/forms/Forms10g:. frm10g.sh INV FORM
    : command not found
    : command not found
    'bash: ./frm10g.sh: line 13: syntax error near unexpected token `in
    'bash: ./frm10g.sh: line 13: `case $2 in
    I really aapreciate your help.
    Thanks
    Sandy

    Sandy,
    I must apologize. The Compile.sh does not come with the Oracle Dev Suite installation. However, the following is the contents of the compile.sh script we use. This script compiles a single form.
    #!/usr/bin/ksh
    ORACLE_HOME=/d01/oracle/ias1012;export ORACLE_HOME
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib32:$ORACLE_HOME/ctx/lib:/usr/java1.2/jre/lib/sparc:$ORACLE_HOME/jdk/jre/lib/sparc:/usr/lib:/usr/dt/lib:/usr/openwin/lib:/usr/ucblib:usr/ccs/lib; export LD_LIBRARY_PATH
    MODULE_NAME=`echo $1|cut -d. -f1`
    MODULE_SUFFIX=`echo $1|cut -d. -f2`
    MODULE_MESG=${2:-"Compiling $1"}
    OK_MESG=${3:-"  Compiled sucessfully"}
    . .setpass_cir
    APP_PW='cir/'`eimauth -g cir`'@database'
    echo "************************************************************************* "
    echo ${MODULE_MESG}
    frmcmp.sh module=/d01/oracle/forms/${MODULE_NAME}.fmb userid=${APP_PW} compile_all=yes batch=yes
    RC=$?
    case "$RC" in
      0)
        echo ${OK_MESG}
        echo "Compile errors, return code: $RC "
        cat ${MODULE_NAME}.err
        echo "Compile errors in $1, press [enter] to continue.\c"
        read x
    esac
    eval exit $RCYou should be able to modify this to suit your needs.
    Craig...

Maybe you are looking for

  • Windows 7 desktop and AEBS-OK, old Windows XPpro laptop Can't find it?

    New Dell Desktop running Windows 7 ( what a mistake I made....) finally configured to work wirelessly with the Airport Extreme. Even printer hooked up to USB port works ( finally) 2 iPhones see the network and conncet immediately but old IBM laptop r

  • Purchase conditions

    Hi My client want to see the report on purchase order condition types wise. like in purchase orders we have condition tabs. In that we mention what are the conditions like Excise duty, vat etc. How can we capture those data in BW. Are there any stand

  • Mail server connection problem

    Mail in my macbook pro from time to time interrupts mail server connection (mac mini server). As i discoveredn turn off turn on wi fi reestablish connection. Does anybody know how to solve the problem?

  • Router Keeps Crashing

    Hi all, Up until a few weeks back I'd had a BT HomeHub 1.0 with no problems, Connection at about 7mb and not a problem in sight, now since then my router has taken to freezing completely without reason and cannot be accessed via hub manager or intern

  • SQL query to list the "Administrative category" field for all applications

    yesterday i started a thread to list the "Optional reference" field for all cm applications in a SSRS report. I've got the query with the help of Torsten. https://social.technet.microsoft.com/Forums/en-US/00419e6e-e3c2-4b80-b6af-2a24ced1032d/sql-quer