Search:

Type: Posts; User: technokraft123; Keyword(s):

Search: Search took 0.02 seconds.

  1. Spring LinkedIn API company name search is case sensitive

    Hi Everyone,
    CompanyOperations.getCompanyByUniversalName is case sensitive in search.
    e.g., amazon and Amazon is different...

    Whereas i saw a note in LinkedIn API saying all searches are...
  2. Need to access a Company Profile from LinkedIn

    Hi Guys,
    I am new to Spring Social. I have a requirement wherein i need to follow below sequence of steps in order:

    1. Show a text field to user where he enters his company's linked in url
    2....
  3. Replies
    3
    Views
    1,017

    My code is not doing Context.lookup (this was...

    My code is not doing Context.lookup (this was pre-spring snippet)...But now my code instead loads the datasource object from spring context file...and thus i want to know whether the datasource...
  4. Replies
    3
    Views
    1,017

    JNDI datasource look up

    Hi All
    I normally look up datasource which is local to my app as:

    Context ctx = new InitialContext();
    context.lookup.....

    I want to configure the spring context file to specify a jndi...
  5. I have indeed successfully tried the above...

    I have indeed successfully tried the above approach...But when my client invokes my method, i want him to just do Application.setApplicant() and not applicant.setApplication()....The main issue with...
  6. Yes...i have had a very detail look at the...

    Yes...i have had a very detail look at the reference guide...I tried all possible ways and then i realised that there is one major difference btw the ways and my requirement....

    My table structure...
  7. Have u ever noticed such useless db structure

    Table Application
    application_id - primary key
    application_type

    Table Applicant_Address
    applicant_id - primary key
    application_id - refers...
  8. Replies
    3
    Views
    704

    i am having something like: Student { Set...

    i am having something like:

    Student
    {
    Set names; //this is a collection of Name objects
    }

    Class Name
    {
    String name;
  9. Replies
    3
    Views
    704

    A simple Relationship

    Hi All
    I wanted to have some discussion on this:

    Table Student
    student_id primary key
    student_name
    student_phone

    Table Student_add_details
    address_id primary key
  10. Replies
    10
    Views
    1,379

    Yes i had the same way...even i want to avoid the...

    Yes i had the same way...even i want to avoid the link table in the code...But the problem i was facing then was

    1. It was trying to insert null into the student_details.student_rel_id (i was...
  11. Replies
    10
    Views
    1,379

    Its working....wow

    Hi
    Thanks a lot for ur detail explaination...Its working and has gone ahead from this road block...though i am sorting some other issues now :)...
  12. Replies
    10
    Views
    1,379

    Yes i am having a structure like this class...

    Yes i am having a structure like this

    class Student
    Set student_rel

    Class Student_Rel
    Set student_details
    Student student

    Class Student_Details
  13. Replies
    10
    Views
    1,379

    I tried the suggestions...However i am getting...

    I tried the suggestions...However i am getting the following SQL exception:

    cannot insert NULL into ("test"."student_rel"."student_id")

    I can see that there is no mapping for the student_id...
  14. Replies
    10
    Views
    1,379

    Not working

    Hi
    I tried it...but while inserting in the 3rd table student_details, it finds student_rel_id as null...Also i can see that it never tries to insert in the link table "student_rel"...I have...
  15. Replies
    1
    Views
    648

    Formula element

    Hi
    I want some nice explaination of different uses of the formula element for a one-to-one mapping...I am really bugged up by seeing formula having a query some where and some where just a...
  16. Or else instead of having a common data access...

    Or else instead of having a common data access class...I can use the individual DAOs as reqd

    DAO1.method1()
    DAO2.method2()

    Can i define a proxy to handle these type of calls?...I want...
  17. Replies
    10
    Views
    1,379

    Query regarding a link table in the DB

    Hi All
    Supposed i have a table student which has fields as:

    student_id number - this is the primary key
    student_name varchar
    student_surname varchar

    A table student_rel which is the...
  18. Transaction not getting rolled back

    Hi
    my spring config file is configured as follows:



    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"...
  19. Defining a Transaction for spring with hibernate and Oracle as DB

    Hi All
    I am using the spring hibernate template to save into DB..I have not yet used transaction...How can i define the transaction manager for hibernate in spring config and also how to use the...
  20. Using Transaction for hibernate and oracle as DB

    Hi All
    I am using the spring hibernate template to save into DB..I have not yet used transaction...How can i define the transaction manager for hibernate in spring config and also how to use the...
Results 1 to 20 of 20