Help coderanch get a
new server
by contributing to the fundraiser

Parul Dholakia

Greenhorn
+ Follow
since Jul 03, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Parul Dholakia

Thanks a lot, it worked.
22 years ago
Hi,
I am trying to get the initial context and I have written this piece of code.
This works fine with Websphere APplication server installed on NT but wheb I try to connect to Websphere APplication server installed on Solaris, It fails, and the error
returned is..
javax.naming.CommunicationException. Root exception is org.omg.CORBA.COMM_FAILURE: minor code: 1 completed: No
any help please..
The code I ahve written is :
properties.put(Context.PROVIDER_URL,"iiop://"+strHostName+":"+strPort);
properties.put(Context.INITIAL_CONTEXT_FACTORY,com.ibm.ejs.ns.jndi.CNInitialContextFactory);
ic = new InitialContext(properties);

thanks in advance.
22 years ago
Hello,
Sir,
Can't I run with anyother JRE like SUN?
Can you give me the link to your article. It would be of great help to me.
thanks in advance,
Parul.
22 years ago
Hello,
If I want to run, EJB client for an EJB in Webspshere and I do not want to install full JDK on client's machine, what are the requierd files? From where I get the list of files required like java.exe and othetrs.
It erquires ejs.jar and ujc. jar as per documentation. Any other files required ?
thanks and regards,
parul.
22 years ago
Thanks Kyle Brown. It works !!!
Hello,
I am having a small problem. I have the valid initail context.I want to get reference to one of the EJBHome using lookup. But I don't know the exact path taht has to be given in look up. I know it is there for sure, jsut full path, I don't know. So can i search for it ? Some sort of context.search(MyEjbHome)..which will return me the full path ..or any other way, where I can get the full tree in context and then I will search in that.
I am working on WAS 3.5 .
thanks and regards,
parul.
I have written a small code..
ctxtInitCtxt = getInitialContext();// private method call
String s1 = Attributes.qualifyRepositoryHomeName(strHostName, "");
System.out.println(s1);
//lookup for NodeHome
Object obj = ctxtInitCtxt.lookup(s1 + "NodeHome");
nodeHome = (NodeHome)PortableRemoteObject.narrow(
obj, com.ibm.ejs.sm.beans.NodeHome.class);
I am getting the initial context but lookup fails. It gives nameNotFoundException
"ejsadmin/node/192.168.2.12/homes/NodeHome" . Why this should happen ? It works with another Websphere application server .
Thanks in advcance.
parul.
22 years ago
I have successfully installed Websphere application server 3.5 Advanced edition on Windows NT. Now I am trying to install on SUN. There is Oracle 8.1 already installed on Sun. When I execute file startServer.sh to start Admin service on Sun, it gives JDBC classes not found error. When i looked at startServer.sh, it was looking out for jdbc classes in classes 111.zip where as there was classes 12.zip on my machine. So i changed classes111.zip to classes12.zip with correct path in StartServer.sh. Still the problem is same. Can you please help me.
22 years ago
How Can I convert HTML to XML.
Basically I want to parse HTML and get Data out of it.
23 years ago
How Can I convert HTML to XML.
Basically I want to parse HTML and get Data out of it.
HI
If I am accessing EJB from CORBA, will there be any limitations?
thanks
parul.
23 years ago
Can I convert EJB to idl ? I yes how ?
thanks
parul.
Hi,
Can a C++ Client Talk to EJB if yes how ?
thanks
parul.
Can I access an EJB from C++ client any idea or hint ?
23 years ago
Hi all,
I have got the information that there is a servlet in WAS 3.5 which is developed by IBM. It reads the performance data and puts it in a xml file. any one knows the name of it and how to get it ?
23 years ago