Mikhael Jenings

Greenhorn
+ Follow
since Apr 14, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Mikhael Jenings

Ok, I will read them through this time.

Sorry, still a newbie, to the jargon and the tools.

Thanks David
14 years ago
:-)

I did say I went through that part of the manual.

That part says what basedir is, but does not say where I can find more information about basedir and what other properties(if thats what they are called ?) are available for use.


Thanks
14 years ago
Hello,

This is a newbie question.
I looked at the Ant Manual and went thru "Writing a Simple Buildfile". However, I cannot locate information pertaining to some basic stuff like,
- what is basedir ?
- what properties are available by default ?

Where do I look for those ?


Thanks
14 years ago
I did that Peter.
Wasn't quite getting there, so I posted here.

Anything now.
14 years ago
Hello there,

I needed to know how do browsers work ?
It would be good if I could be pointed to a good technical description of a browser's innards.


Thanks
14 years ago
Thanks Kamal.

Can you please point me to the relevant documents on edocs ?
And, I needed information on how to setup development for exploded deployment ?


Thanks
14 years ago
Sorry, I missed to mention the version.

It is for weblogic server versions 9.x and 10.x.


Thanks
14 years ago
Hi,

I wanted to know,

1. the purpose of weblogic.jar and weblogic.xml, for applications deployed on weblogic server ?

2. how to deploy an application from an exploded directory structure, rather than going to console everytime ?
how to write out the folder ?
where to write out the folder ?


Thanks
14 years ago
Hello,

I wanted to know what IDE to use for developing applications for JBoss Portal 2.7 ?
There is the JBoss tools plugins for eclipse ide, but there isn't anything specific for creating jboss-portal projects.

Can anyone help ?


Thanks
14 years ago
Hi,

How do we put request parameters onto the URL using html ?
To make it more clear, how do we write HTML to include request parameters on the URL, whose values we know beforehand ?


Thanks
I am extremely sorry, I made a mistake.

The snippet is not from an ant file, it is from a properties file.
Now how does this work ?
(I don't see any other file containing the values for the tokens.)


Thanks
14 years ago
Please look at the below snippet from an ant file,

......
# foo @BUILD_DATE@
fooVersion=@BUILD_NUMBER@
#
# License Keys
#
licenseKey=@LICENSE_KEY@
licenseSecure=@LICENSE_SECURE@


# Spring substitution properties
barService.portName=BarService
barService.serviceName=BarServiceService
barService.wsdlDocumentUrl=@BAR_SERVICE_WSDL_URL@
......

This is from a project using Spring(changed a bit though).

I wanted to know how does the @BUILD_NUMBER@ and the other @...@ work ?
What are these called ?
What do they mean ?
Where are they getting the values from ?



Thanks
14 years ago
Hello,

How does file-upload work ?
Why do frameworks and/or servers have special tags to indicate file-uploads ? (Beehive framework has so)


Thanks
the image tags displayed out empty... here is what they contain

<body onload="pageLoad()">
<img src="image01.jpg" />
<script src="bar02.js"></script>
<img src="image02.jpg" />
<script src="bar03.js"></script>
</body>

Hello,

An argument with a colleague got me thinking, in what sequence does an HTML page load ?
Take the below code, for example, having images, style-sheet and javacript files



And, does the browser use one connection to fetch all the resources for the HTML page ?


Thanks