Wednesday, 22 November 2006
|
| copyright Mark 23:53:41 |
| | any ideas on how to get round copyright Ta
|
| | 10 answers | Add comment |
Wednesday, 25 October 2006
|
| WAS 6.1 error 109 Harry Clark 15:00:44 |
| | What does the following mean, in the Windows Event Viewer? Thanks. ========= Event ID 109
Could not determine the process id of the java process. Changing the IBMWAS61 Service - userNode01 service status to the "stopped" state. To prevent this error, try recreating this service with the -logRoot parameter. The value of the logRoot parameter should be the directory in which the server's .pid file is created. ========== I got here by a circuitous path. I've developed a web app in Eclipse, using J2SE 5.0. I want to deploy it in Websphere Application Server 6.1. I have the trial version download. I generated a WAR in Eclipse, specifying IBM WAS 6.0 as the server runtime. I could not create a WAS 6.1 runtime in Eclipse. A plug-in or something is missing. Anyway, I deployed the WAR successfully in WAS 6.1, or so it told me. I then brought up the first page of my web app (login). But not the next page, 404 error. In the process of looking around in the admin pages I got some kind of Java Exception. I shut down and restarted WAS, with the result above. I'm not confident the WAR was correct, since the app uses J2SE 5.0, which is only in WAS 6.1. Any comments on the server start or the WAR question are appreciated. Thanks.
Mocha Java
|
| | 4 answer | Add comment |
Friday, 6 October 2006
|
| Opening .exe in an unconventional way Guest 15:41:39 |
| | Im on a networked High School computer and Im trying to open an .exe that does not show up in anything but "open menues". I want to open this .exe but when I try opening it in Word its all in code. If I try in IE it says access to that resource is disallowed on this machine. I want to open the program, I dont want the coding. I only have a couple of programs to work with. IE, Word, Excel. I hope someone can tell me how to do this. Thank you. |
| | 1 answer | Add comment |
Friday, 29 September 2006
|
| Exporting Sparky 14:41:46 |
| | A friend of mine recently began to use QuickBooks. Since we are in the same business, I offered to export my items list to save him the trouble of entering each of the 1000+ items. When he imported the .iif file, all of the items transferred over, but not their descriptions. The item number and price imported, but no the description. We tried several times without success. Any ideas?
|
| | 9 answers | Add comment |
Monday, 18 September 2006
|
| Music! Jim Romano 16:25:56 |
| | Hello,
I am new to the newsgroup scene and downloaded xnews as my client to search for and share music. However, I am struggling to find any files that are downloadable. Do I have to be in certain newgroups? Do they start with a particular prefix?
Thanks!!!
|
| | 5 answers | Add comment |
Tuesday, 5 September 2006
|
| Dead code Guillaume Smietanski 16:56:06 |
| | Hello, we are developping some software, which shall be certified with the RTCA-DO-178B requirements ("Software Considerations in Airborne Systems and Equipment Certification"). The dead code is prohibited. But the "dead code" definition is for me not clear enough. So I want to know if you consider that the following code depicts some dead codes. This would be the complete code of a project NO other function (of course except the stdio library needed for the printf function) would be written:
#include <stdio.h> typedef enum tagMyEnum { usedValue =0, secondUsedValue, unusedValue /* Is ist a "dead code": the compiler produces here code which will never used? */ } MyEnum;
int main( int arg, char * argv[]); void deadCodeFunction(void); int setPointer( char *p_value); int convertEnumToInt(MyEnum value); void deadCodeFunction( void ) { printf("\nThis function is never called."); /*Unused code = dead code isn't it? */ }
int setPointer( char *p_value){ int result; if ( p_value != NULL){ *p_value =0; result = 1; } else { result = 0; /*For me in this software configuration this is a dead code (p_value is checked before setPointer is called)*/ } return result; } /*Instead of the previous version the following would avoid the "dead code": int setPointer (char *p_value){ int result=0; if (p_value != NULL){ *p_value = 0; result=1; } return result; }*/
int convertEnumToInt(MyEnum value){ if (value == usedValue ){ return 1; } else { return 0; } }
int main(int arg, char * argv[]){ char a; int b=0; if (setPointer(&a)){ printf("\na is set"); } else { printf("\nerror");/*Dead code because the adress of a cannot be NULL or I have a real pb */ } if (argv[0] != NULL) { if (setPointer(argv[0])){ printf("\nReset argv[0]"); } else { printf("\nerror"); /* next dead code */ } } else { printf("\nargv[0] is undefined"); /*normaly argv[0] shall contains the name of the software so it should be always defined. Here this is much more ambigous as before */ } b=convertEnumToInt(usedValue); b += convertEnumToInt(secondUsedValue); /*not really clever but it is only to depict some possible error*/ printf ("\nb = %d", b); }
In advance thanks a lot for any comments.
Best regards, Guillaume Smietanski -- comp.lang.c.moderated - moderation address: clcm@plethora.net
|
| | 23 answer | Add comment |
Friday, 1 September 2006
|
| can't find com.ibm.ejs.jts.jts.CurrentFactory Royster 09:32:12 |
| | Does anyone know where to find this class file? I've searched every jar I can find to no avail. I'm running WSAD 5.1.2 and trying to retrieve a JNDI entry.....
|
| | 5 answers | Add comment |
Monday, 14 August 2006
|
| Decisions, Decisions....... Troubled By Software 23:36:46 |
| | Java, ASP, C#Net.....I got more opinions than Custer had enemies
Project: Workflow, 2000 users, scalable to 10,000, approval process for vacations, e-form tracking, standard reporting, Exchange email used as tickler and notification system, IIS platorm 2000, Sharepoint present, to reside on company Intranet. Web-based (webware) or server-based, no client side software to install
Users: Morons, will use Intranet attached PC's and touch screen kiosks, 1,000 online between Nov15 and Dec1.
Options for languages? All are open.
Budget: $100,000
Build Time: approximately 60 days to beta testing, 30 days to full implementation after beta.
Comments are appreciated. First project like this, yikes!!
TBS
|
| | 3 answer | Add comment |
|
| RUP "Business Vision Document" and "Vision Document" Guest 22:39:15 |
| | Hello, I am a bit confused, but could some-one explain what is the difference between the RUP "Business Vision Document" and "Vision Document"? How are they used, and what audience are they aimed at?
Best Regards,
Mike Little
|
| | 1 answer | Add comment |
|
| websphere 6 with jre 1.5 ? Eldie 20:31:40 |
| | Hi! Does someone knows if websphere 6 (for windows) can be upgraded to use a jre 1.5?
Thank you
|
| | Add comment |
|
| Re: Agile Adoption in Silicon Valley Phlip 19:51:53 |
| | bill turner wrote:
Phlip responded that there had been some radio advertising in the> Valley seeking XP/Agile folk, and that the Valley was a bellweather> for industry trends. Shortly after that, I was between projects and> went to visit some people I know who live there and work in the field.> None had heard the advertisement to which Phlip referred, though I> don't doubt that it may have been broadcast (for what it is worth,> Phlip's statement regarding the ad was hearsay, he didn't claim to her> it himself). Confession: KFOG runs web-only advertisements in their station breaks on their online streaming broadcast. I heard it there.
The point: Such ads must cost a similar amount of money, with the expectation of reaching a more technocratic demographic. Disregarding the listeners on other continents...
These numbers do not show much penetration Yup. Then the fun starts when you interview and need to reveal your TDD chops to compete. If a shop gives me a programming test, I'm set. If not, then simply denouncing Debugger-Driven Development can sound too much like idle USENET zealotry.
However, shops that practice pure XP often recruit directly in the community, the way books like /What Color is your Parachute/ say is better than job listings.
XP is probably now in the same position as Linux was 8 years ago, as OO was 20 years ago. It is now crossing from the early-adopter curve to the emerging technology curve. And those technologies, at that time, probably did not register prominently in the job listings. And the XP mailing list doesn't ring with multiple wails "where are the jobs doing this?"
Next, thought-leaders like Google, Microsoft, Sun, Time-Warner, etc. are starting to use it. The same as Linux 8 years ago or OO 20 years ago, for similar companies.
In conclusion, it seems the Valley does not believe there is enough> payback to broadly adopt Agile methods, or that there are other> unresolved concerns regarding its use. I really doubt any of the Agile consultants who work the Valley would allow you to connect your survey to that conclusion.
-- Phlip http://c2.com/cgi/wiki?ZeekLand <-- NOT a blog!!!
|
| | 4 answer | Add comment |
|
| create a shared Lib with a variable Name Ok171 19:19:54 |
| | Hello @ all,
I want to create a shared Lib with a Name from a variable.
Some thing like this:
$AdminConfig create Library $scope "{name $Name} {classPath $classpath}"
But when I do this, the Name is $Name.
Any Ideas?
THX
|
| | 2 answer | Add comment |
|
| Problem installing WAS 6.0 on RAD 6.0 Technocrat 19:14:14 |
| | I m trying to create a new server (6.0) on RAD 6.0 patform. I say new server--> add server and select WAS 6.0 in the options, provide the installation directory as the one in the runtimes directory (base_v6) and hit finish. It seems to install and it shows up in the list of server at the botton in the server window.
When i add a project , it automatically starts the server and is hung in that state for ever. It keeps on saying starting... with some errors in the between. The errors says see console for details while the console is blank.
I m using Win XP and i already have a was 5.1 test env server running succesfully on my RAD ..
Any suggestions will be appreciated..
Thanks
|
| | Add comment |
|
| display runtime classpath in websphere Guest 18:46:22 |
| | How would I determine the runtime classpath for a J2EE application? I am looking for the server runtime classpath when an application runs within the J2EE container. thanks
|
| | 2 answer | Add comment |
|
| ORB threads in CW state for a long time Vinoth S 18:41:57 |
| | Hi all, We have 3 different applications deployed on 3 different application server on a single box.Http Server is also installed on the same server. The number for httpd process seems to be increasing at regular interval.Started at 25 in the morning and running at 50 in the afternoon, there is no pattern of fluctuation.Number is propotional with Time.
Each server has both the EJB and the Web Module.
Java core dumps are taken for all 3 applications at time gap of 5 minutes.
Inference from the core : 1) All the ORB threads are in CW state. 2) currently no ORB thread was in R state. 3) Where in the Web requests seems to be catered in a proper fashion. 4) over the timespan of 5 minutes there was no change in the no. of ORB threads waiting in all the 3 applications and still no threads in the R state. 5) There exists a proper fashion in web request handling. 6) no deadlock detected in the threads of any servers.
Please let me know your inference from the above pattern, Network team claims that there is no issue on there part. Environment : WAS v5.1.1 and AIX 5.3
Thanks in Advance.
Regards, Vinoth S
|
| | 1 answer | Add comment |
|
| Can I make an ISO DVD? Guest 17:57:32 |
| | I have an ISO of WinXP with sp2 ready to go, but found out it is too big for my CD. Can I just switch it to a DVD and it will work the same? Something tells me no...if it is no, how can I get around this...
|
| | 1 answer | Add comment |
|
| Strange CDS Mare 17:52:40 |
| | Hello, I burned some dvds same way same format. Question is why do some work on dvd player and others don't.
Mare
|
| | 2 answer | Add comment |
|
| WAS6 ND create node /cell by script Guest 17:16:30 |
| | Dear,
Can I use script to create the node /cell on websphere 6 ND?
THKS
|
| | 1 answer | Add comment |
|
| getting the username in a web service Mehmet Gunacti 17:15:13 |
| | we have set up basic authentication for a web service. the clients have to send the user credentials in http header. websphere authenticates the user and calls our web service' method. is there a way to get the user credentials in the web service method ?
(in web apps we would call HttpServletRequest's getRemoteUser() method.)
thanks in advance
|
| | Add comment |
|
| http get requests in app server logs Unknown 17:14:53 |
| | IHS and Wbsphere are deployed separately on two physical machines.
Yet, I see HTTP GET requests logged in the app server's log.
Some people are saying this normal, and other claim that something is wrong. Which is it?
|
| | 7 answers | Add comment |
|
| Websphere 6 ND software life Cycle Guest 17:14:46 |
| | Dear,
Where can i found the information about Websphere 6 ND software life cycle?
THKS
|
| | 2 answer | Add comment |
|
| Codecs Updates Bob 17:06:24 |
| | I am considering updating my codecs with
K-Lite Mega Codec Pack 1.56
http://fileforum.betanews.com/detail/KLite_Mega_Codec_Pack/1080441198/1/
I have been advised to uninstall all existing codecs.
1) How would I go about that? Some installations offer uninstallers but not all, especially the applications which installed their own codecs.
2) Why uninstall any codecs in the first place? Why not just overwrite the old ones with the new ones in the K-Lite pack?
--
"One must realize that the world is a network of real and virtual combat zones where the stakes are high, struggle is the primary mode of being and only total victory is acceptable. -- Sun Tzu, "The Art Of War"
|
| | 4 answer | Add comment |
|