charu latha

Ranch Hand
+ Follow
since Aug 20, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by charu latha

I have a WebService that was built using WL workshop.

My input XML(header alone ) to this webservice is



I am trying to read all the header values using the code below :



What i get in the console is :

length of element1
UpdateAccountControlPortTypeImpl - parseHeaderValues
UpdateAccountControlPortTypeImpl - getElementByTagName
UpdateAccountControlPortTypeImpl - getElementByTagName
UpdateAccountControlPortTypeImpl - getElementByTagName
UpdateAccountControlPortTypeImpl - getElementByTagName
UpdateAccountControlPortTypeImpl - getElementByTagName
UpdateAccountControlPortTypeImpl - getElementByTagName
UpdateAccountControlPortTypeImpl - getElementByTagName
UpdateAccountControlPortTypeImpl - parseHeaderValues
Header Details : {attributeName=, requestorRole=, transactionId=, requestorIdTy
pe=, attributeValue=, applicationId=, id=}

The header values never come back. Any inputs on why this is happening?
13 years ago
The two string variables are select clauses which need the other two parameters that i have set.

I have code that is working in production like this.


When the statement actually executes it will substitute the value of the other SQL statement that is referred to.



I have the above snippet of code in my class. It always throws a invalid column index . I have double checked my query to make sure that i am expecting only 5 parameters. I have tried hard coding the values and that query goes through without an issue. I have double checked to see if the values that i am setting in query are not null. That looks ok also.

Anyone shed any light on why i am getting this error?

Thanks
client.executeMethod throws the http exception and yes i did look up the answer provided there before i started a thread here for my issue.

Thanks!
14 years ago
I am trying to execute a WebService. My method looks as below :



When i execute the above method it keeps giving me :


I've been using this code for a while without any issues. Just today it started giving me this error.

Any suggestions?
14 years ago
ok here is my string JOS� LEAL. The e is what i have to replace. I know how to replace it ie., use the replaceAll of the String method. However i dont know how to actually recognize this character in my Java code.
16 years ago
Sorry my second string should have been "&234;" However that got replaed in the website. If only i knew how to read this character......
16 years ago
I have a string which has an e with a circumflex. I need to be able to parse this string and replace this e with a circumflex with some other characters/strings

I wanted to use the replaceAll function with Strings so that i need not do an explicit parsing for each of these characters. However i am not sure how i can read this special character from my string.

Here is what i tried

16 years ago
If i configure a shutdown class to close some pools will that get executed when i do a force shutdown of weblogic?
17 years ago
I must be a real dumb person. I cant seem to get tcp mon working either. I am assuming that i have to enter in the admin tab :

local port : <some port number where the monitor can run>
server name : <name/ip of the host where the webservice runs>
server port : <port number which hosts the service>

Is the above assumption correct?
17 years ago
Nope thats not changed. Anytime i want to run the apache implementation it executes just fine.
17 years ago
Will try out the tcpmon. In the meantime i also noticed that i get an exception and that is Permission(java.net.SocketException <url with port number> connect, resolve).

Again i havent changed the URL or the ip for this request
17 years ago
I am trying to send an envelope over HTTP. I initally had an apache implementation that looked like :



The above code worked just fine.

I changed the above implementation to :



And this one does not work. I am using the same request for both the implementations. The second implementation always gives me a 500 HTTP_INTERNAL_ERROR. Obviously something is wrong and i am unable to decipher what.

Can someone throw light please?
17 years ago


if the javascript that i am using in my JSP page. Incidentally i have two fields as you can see. I am calling the function and the function seems to be called correctly as i get the alert message. However my other alert does not seem to be working nor is the location.href. Any idea on why and if i have done something wrong please point it out.

Thanks