Questions tagged [webobjects]

WebObjects™ is Apple, Inc.'s set of pure-Java frameworks for building enterprise applications.

WebObjects™ is Apple, Inc.'s set of pure-Java frameworks for building enterprise Web and Java-Client applications and serves as the backend for almost all of Apple's internet-based applications including the iTunes Store, the App Store and the Apple website.

WebObjects was originally written by NeXT in the mid-1990's using Objective-C and was later ported entirely to Java. Many of the same software design patterns and concepts that are prevalent in Apple's Cocoa frameworks are also heavily used in WebObjects.

At the core of WebObjects is the Enterprise Object Framework (EOF), a powerful Object-Relational Mapping engine that almost entirely eliminates the need to write SQL code, making it simple to run the same application with just about any database engine, from sqlite to Oracle.

On top of EOF is an equally powerful templating engine for generating any kind of text-based output such as HTML, XML, JSON, plist, xls, etc.

A single application written with WebObjects is capable of vending web pages, REST-based web services and Java-Client applications simultaneously.

60 questions
7
votes
2 answers

Internet Explorer ignoring my cookies

I am having a strange problem with Internet Explorer not accepting my cookies. This is the cookie: set-cookie: USUSERNAME=LrceSVu6mUJ9Ztmvp4oKSQ%3D%3D; version="1"; expires=Mon, 15-Jun-2009 11:42:21 GMT; path=/; domain=.us.is It does not get stored…
4
votes
3 answers

Java memory leak when running on Red Hat but no memory leak on Mac OS X

I have a java webobjects app which is showing memory leak problems when running on Red Hat but we had no such problems when it was running on Mac OS X. The JVMs are similar. Mac OS X 10.6.5 using java 1.6.0_22 64 bit from Apple Red Hat EL 5.0…
Rudiger
  • 6,749
  • 13
  • 51
  • 102
2
votes
1 answer

interprocess communication in webobjects (jvm, wotaskd, apache module)

I am using the Java edition of Apple Webobjects and was wondering how it all works under the hood. For an app to run successfully it would appear that one needs the java WebObjects Application running in the java virtual machine, an apache instance…
murungu
  • 2,090
  • 4
  • 21
  • 45
2
votes
4 answers

I want good reference books or video links that may help me in learning Webobjects using Eclipse

Can any one post some links that help me in learning WebObjects with eclipse?
Raviraja
  • 406
  • 2
  • 5
  • 17
2
votes
0 answers

How to get documentation or reference list of Apple's iTunes web objects services

Apple's Search API doesn't provide me all the information I need. I saw from this post that How can I fetch information about the app/song/video etc. from iTunes Store? that there is a web service (e.g.…
stifin
  • 1,390
  • 3
  • 18
  • 28
2
votes
1 answer

passing variable from one session to another session in java

I am using two sessions namely CCXSession and Session in my sample web object application project, here Session class is inherited from CCXSession. For the purpose of localization I need to send the session object from Session to CCXSession, but I…
fresher
  • 127
  • 11
2
votes
1 answer

You don't have permission to access /Apps/WebObjects on this server Apache/2.2.21 (Amazon) Server

When I am trying to give input in HTML format like Test within the HTML tags through WOText and WOTextField components, I am getting the above mentioned forbidden error You don't have permission to access …
2
votes
6 answers

Create PDFs from multipage forms in WebObjects

I would like to automatically generate PDF documents from WebObjects based on mulitpage forms. Assuming I have a class which can assemble the related forms (java/wod files) is there a good way to then parse the individual forms into a PDF instead of…
N8g
  • 636
  • 2
  • 8
  • 19
1
vote
0 answers

Can not install WOLips Goodies Eclipse Plugin on CentOS 6

So, I'm using CentOS 6 desktop to do WebObjects development. Normally I do WO development on Mac, but our office only has Linux-based desktops so I'm going through the hassle of getting the team set up with the appropriate development environment.…
1
vote
1 answer

getting Russian input from web into java applcation

I obviously am missing something here. I have a web app where the input for a form may be in English or, after a keyboard switch, Russian. The meta tag for the page is specifying that the page is UTF-8. That does not seem to matter. If I type in…
Ray Kiddy
  • 3,521
  • 3
  • 25
  • 32
1
vote
1 answer

WebObjects and jQuery problems with umlauts

iam trying to connect WebObjects and jQuery. The problem I have is that if i want to get a response from a WOComponent with jQuery (.ajax() , .load(), .get()) the german umlauts are not rendered correctly. I get questionmarks an so on. Is there…
lennykey
  • 1,195
  • 2
  • 12
  • 25
1
vote
1 answer

Maven WebObjects, Wonder, maven build does not include framework resources (images etc)

I have worked with WebObjects for quite some time. I decided to move to a maven build and for some reason my associated frameworks resources are not being found in /Contents/Frameworks in the built product. So when I run the D2W application I am…
1
vote
1 answer

how to close currently created cmd.exe*32 and conhost.exe*32 using java code after execution of java program?

Actually i am running webobjects program through WOMonitor 5.4. If i execute program through WOMonitor then after instance up it creates two more exe (i.e. cmd.exe*32 and conhost.exe*32) that run in Task Manager as a process and it consumes more…
Samdani
  • 11
  • 4
1
vote
2 answers

Scraping WebObjects website & REST

I need to programmatically interact with a WebObjects website and extract data from the responses. The particular WebObjects site I am scraping uses component actions and stores sessions in cookies (not urls). This means that all urls look something…
johnrl
  • 583
  • 6
  • 17
1
vote
2 answers

Query records that fall between two week numbers

I'm looking to create a query in Oracle (Web Intelligence to be specific) that selects records based on the current week number. I'm using the ISO standard so the format is "IW". I understand this is an unusual request (to query based on week#.…
kschembri
  • 41
  • 1
  • 7
1
2 3 4